:root {
  --bg: #f5efe5;
  --text: #1f1b17;
  --muted: #5b5349;
  --copy: #4f473e;
  --line: rgba(31, 27, 23, 0.10);
  --panel: rgba(255, 251, 246, 0.74);
  --accent: #355847;
  --accent-soft: #d5c2aa;
  --shadow: 0 18px 48px rgba(52, 37, 20, 0.08);
  --shadow-strong: 0 22px 58px rgba(52, 37, 20, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 194, 170, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f3eb 0%, #f2eadf 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

body.has-promo-banner .site-header {
  top: 42px;
}

@media (max-width: 720px) {
  body.has-promo-banner .site-header {
    top: 40px;
  }
}

.header-shell {
  padding: 16px 0;
  transition: padding 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border: 1px solid transparent;
  transition:
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header:not(.is-scrolled) .header-inner {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
  padding-top: 12px;
}

.site-header.is-scrolled .header-inner {
  width: min(920px, calc(100% - 32px));
  max-width: 920px;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 18px;
  border-color: rgba(31, 27, 23, 0.08);
  background: rgba(255, 250, 244, 0.62);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 14px 34px rgba(52, 37, 20, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  white-space: nowrap;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active::after {
  transition: none;
}

/* =========================
   GENERIC
========================= */

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-copy {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.75;
}

/* =========================
   HERO
========================= */

.contact-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 162px 0 88px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-light-1 {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -110px;
  background: radial-gradient(circle, rgba(213, 194, 170, 0.62) 0%, rgba(213, 194, 170, 0) 72%);
  animation: driftOne 18s infinite alternate;
}

.hero-light-2 {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(53, 88, 71, 0.12) 0%, rgba(53, 88, 71, 0) 72%);
  animation: driftTwo 20s infinite alternate;
}

.contact-balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.32;
  transition:
    opacity 2s ease,
    transform 2s ease,
    border-color 2s ease,
    box-shadow 2s ease;
}

.contact-ball::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0.08;
  transition: opacity 2s ease;
}

.contact-ball.is-active {
  opacity: 0.95;
  transform: scale(1.03);
}

.contact-ball.is-active::before {
  opacity: 1;
}

.contact-ball-1 {
  width: 420px;
  height: 420px;
  top: 8%;
  right: 9%;
  border: 1.5px solid rgba(31, 27, 23, 0.12);
}

.contact-ball-1::before {
  border: 1.5px solid rgba(31, 27, 23, 0.28);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.05),
    0 0 42px rgba(213, 194, 170, 0.16),
    0 0 78px rgba(31, 27, 23, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.contact-ball-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 8%;
  border: 1.5px solid rgba(183, 134, 83, 0.12);
}

.contact-ball-2::before {
  border: 1.5px solid rgba(183, 134, 83, 0.26);
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.045),
    0 0 30px rgba(183, 134, 83, 0.13),
    0 0 56px rgba(183, 134, 83, 0.085),
    inset 0 0 0 1px rgba(255, 255, 255, 0.022);
}

.contact-ball-3 {
  width: 520px;
  height: 520px;
  top: 34%;
  left: 22%;
  border: 1.5px solid rgba(53, 88, 71, 0.10);
}

.contact-ball-3::before {
  border: 1.5px solid rgba(53, 88, 71, 0.23);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(53, 88, 71, 0.11),
    0 0 42px rgba(53, 88, 71, 0.072),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.contact-hero-copy {
  margin: 22px auto 0;
  max-width: 700px;
  color: var(--copy);
  font-size: 1.06rem;
  line-height: 1.8;
}

/* =========================
   CONTACT MAIN
========================= */

.contact-main-section {
  position: relative;
  padding: 18px 0 96px;
}

.contact-main-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-copy {
  padding: 18px 8px 0 0;
}

.contact-section-copy {
  max-width: none;
  margin-left: 0;
}

.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-highlight {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid rgba(31, 27, 23, 0.08);
  box-shadow: 0 12px 30px rgba(52, 37, 20, 0.05);
}

.contact-highlight-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.contact-highlight p {
  margin: 0;
  color: var(--copy);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-form-wrap {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(31, 27, 23, 0.08);
  box-shadow:
    0 18px 42px rgba(52, 37, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 18px;
  height: 100%;

}

.hidden-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 27, 23, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(53, 88, 71, 0.34);
  box-shadow: 0 0 0 4px rgba(53, 88, 71, 0.08);
  background: #ffffff;
}

.contact-form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

/* =========================
   CTA
========================= */

.contact-cta-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(213, 194, 170, 0.12), transparent 28%),
    linear-gradient(180deg, #5a635a 0%, #464e47 100%);
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.14),
    rgba(255,255,255,0)
  );
}

.contact-cta-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 231, 184, 0.18) 0%, rgba(246, 231, 184, 0) 72%);
  filter: blur(90px);
  pointer-events: none;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.contact-cta-kicker {
  color: #f3e3b0;
}

.contact-cta-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #fffdf7;
}

.contact-cta-text {
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(255, 247, 236, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  padding: 34px 0 38px;
  background:
    linear-gradient(180deg, #f2eadf 0%, #eee5d8 100%);
  border-top: 1px solid rgba(31, 27, 23, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(31, 27, 23, 0),
    rgba(31, 27, 23, 0.12),
    rgba(31, 27, 23, 0)
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-copy {
  margin: 12px 0 0;
  color: var(--copy);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 20px;
}

.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.22s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 251, 246, 0.85);
  border: 1px solid rgba(31, 27, 23, 0.10);
  box-shadow: 0 10px 24px rgba(52, 37, 20, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(31, 27, 23, 0.16);
  box-shadow: 0 16px 30px rgba(52, 37, 20, 0.10);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* =========================
   BUTTONS
========================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 700;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  transform: skewX(-24deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  animation: btnShine 0.9s ease forwards;
}

.btn-primary {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.btn-primary::before {
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.22) 50%,
    rgba(0,0,0,0.05) 70%,
    rgba(0,0,0,0) 100%
  );
}

.btn-primary:hover {
  background: #f7f7f7;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: rgba(255, 251, 246, 0.88);
  color: var(--text);
  border: 1px solid rgba(31, 27, 23, 0.16);
  box-shadow: 0 12px 30px rgba(52, 37, 20, 0.06);
}

.btn-secondary::before {
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.03) 30%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.03) 70%,
    rgba(0,0,0,0) 100%
  );
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  border-color: rgba(31, 27, 23, 0.22);
  box-shadow: 0 18px 40px rgba(52, 37, 20, 0.10);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes btnShine {
  0% {
    left: -130%;
  }
  100% {
    left: 150%;
  }
}

@keyframes driftOne {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(70px, 30px, 0);
  }
}

@keyframes driftTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50px, -24px, 0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {
  .contact-main-inner,
  .contact-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-cta-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-logo-wrap,
  .footer-links,
  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .site-header.is-scrolled .header-inner {
    width: calc(100% - 22px);
    padding: 12px 14px;
    border-radius: 16px;
  }

  .contact-hero {
    min-height: auto;
    padding: 170px 0 72px;
  }

  .contact-hero-title {
    font-size: clamp(2.35rem, 9vw, 4.2rem);
  }

  .form-grid,
  .contact-form-actions,
  .contact-cta-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .contact-form-wrap {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .contact-cta-section {
    padding: 72px 0 82px;
  }

  .site-footer {
    padding: 28px 0 32px;
  }

  .contact-ball-1 {
    width: 460px;
    height: 460px;
    top: 8%;
    left: 6%;
  }

  .contact-ball-2 {
    width: 320px;
    height: 320px;
    top: 28%;
    right: 12%;
  }

  .contact-ball-3 {
    width: 540px;
    height: 540px;
    bottom: -8%;
    left: 38%;
  }
}

@media (max-width: 560px) {
  .btn {
    width: 100%;
  }
}

/* =========================
   HAMBURGER (mobile)
========================= */

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, transform 0.12s ease;
}

.nav-hamburger:hover {
  background: rgba(31, 27, 23, 0.06);
}

.nav-hamburger:active {
  transform: scale(0.86);
}

.hamburger-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.18s ease,
    width     0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger-bar:nth-child(1) { width: 22px; }
.hamburger-bar:nth-child(2) { width: 16px; }
.hamburger-bar:nth-child(3) { width: 22px; }

.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
  transition:
    transform 0.46s cubic-bezier(0.34, 1.56, 0.64, 1),
    width     0.20s ease,
    opacity   0.18s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: translateX(10px);
  transition:
    width     0.18s ease,
    opacity   0.14s ease,
    transform 0.18s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
  transition:
    transform 0.46s cubic-bezier(0.34, 1.56, 0.64, 1) 0.04s,
    width     0.20s ease,
    opacity   0.18s ease;
}

/* Mobile nav panel */

.mobile-nav {
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.28s ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  max-height: 480px;
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px 20px;
  background: rgba(248, 243, 235, 0.96);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(31, 27, 23, 0.06);
  box-shadow: 0 16px 32px rgba(52, 37, 20, 0.10);
}

.mobile-nav-link {
  display: block;
  padding: 13px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition:
    color      0.2s ease,
    background 0.2s ease,
    transform  0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.3s ease;
  opacity: 0;
  transform: translateX(-14px);
}

.mobile-nav-link:hover {
  color: var(--text);
  background: rgba(31, 27, 23, 0.05);
}

.mobile-nav-link.is-active {
  color: var(--accent);
  background: rgba(53, 88, 71, 0.07);
}

.mobile-nav.is-open .mobile-nav-link             { opacity: 1; transform: translateX(0); }
.mobile-nav.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.04s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.20s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(6) { transition-delay: 0.24s; }

/* Mobile header: logo left, hamburger right */
@media (max-width: 720px) {
  .main-nav   { display: none !important; }
  .nav-hamburger { display: flex; }
  .header-inner {
    flex-direction: row !important;
    align-items: center !important;
  }
  .brand { justify-content: flex-start !important; }
}