:root {
  --navy: #0F2544;
  --cream: #F4F1EA;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: "Allrounder Antiqua", Georgia, "Times New Roman", serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* -------- top-right hamburger toggle -------- */
.menu-toggle {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 50;
}
.menu-toggle span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--cream);
}

/* -------- menu overlay -------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay ul {
  list-style: none;
  text-align: center;
}
.menu-overlay li { margin: 0.75rem 0; }
.menu-overlay a {
  color: var(--cream);
  text-decoration: none;
  font-family: "Allrounder Antiqua", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.menu-overlay a:hover,
.menu-overlay a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}
.menu-close {
  position: absolute;
  top: 2.25rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

/* -------- main layout -------- */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}
body.home main { justify-content: center; }
body.page main { justify-content: flex-start; gap: 3rem; }

/* -------- hero / brand -------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand .the {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.brand .name {
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  font-weight: normal;
  line-height: 1.15;
}
.brand .company {
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.2em;
  margin-top: 0.75rem;
}
.shell {
  margin-top: 1.5rem;
  width: clamp(67px, 9.8vw, 101px);
  height: auto;
  filter: invert(1) saturate(0) brightness(1.05);
  mix-blend-mode: lighten;
}

/* -------- section title (CONTACT, etc.) -------- */
.section-title {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

/* -------- contact form -------- */
.contact {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.fields {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--cream);
  color: var(--navy);
  border: none;
  padding: 1.1rem 1.25rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  outline: none;
}
.contact-form textarea {
  min-height: 100%;
  height: 100%;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--navy);
  opacity: 1;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px var(--cream);
}
.submit-btn {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--cream);
  padding: 1rem 3rem;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: "Allrounder Antiqua", Georgia, serif;
  transition: background 0.2s, color 0.2s;
}
.submit-btn:hover {
  background: var(--cream);
  color: var(--navy);
}
.form-status {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  min-height: 1.5rem;
}
@media (max-width: 700px) {
  .fields { grid-template-columns: 1fr; }
  .contact-form textarea { min-height: 160px; }
}

/* -------- footer -------- */
footer {
  text-align: center;
  padding: 3rem 1.5rem 3rem;
}
.address {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.address p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
}
.socials a:hover {
  background: var(--cream);
  color: var(--navy);
}
.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.copyright {
  margin-top: 3rem;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .menu-toggle { top: 1.25rem; right: 1.25rem; }
  .menu-toggle span { width: 26px; }
  .menu-close { top: 1rem; right: 1.25rem; }
  main { padding: 6rem 1rem 1.5rem; }
  footer { padding: 2rem 1rem; }
  .copyright { margin-top: 2rem; font-size: 0.8rem; }
  .address p { font-size: 0.85rem; }
}
