/* ============================================================
   BOARDS & BEYOND — Global System
   Variables · Typography · Spacing · Buttons · Utilities
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── Custom Properties ──────────────────────────────────── */

:root {
  /* Colors */
  --sage-deep:     #1C2D25;
  --sage:          #2F4A3D;
  --sage-mid:      #3A5547;
  --sage-light:    #4B6658;
  --cream:         #E6D4BA;
  --cream-soft:    #D9C7AA;
  --cream-dim:     rgba(230, 212, 186, 0.55);
  --cream-faint:   rgba(230, 212, 186, 0.2);
  --gold:          #C89B4F;
  --gold-light:    #E0B76A;
  --gold-dim:      rgba(200, 155, 79, 0.12);
  --gold-border:   rgba(200, 155, 79, 0.3);
  --white-warm:    #FDFAF5;
  --black-sage:    #111a14;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type Scale */
  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.375rem;   /* 22px */
  --text-xl:   1.75rem;    /* 28px */
  --text-2xl:  2.25rem;    /* 36px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  3.75rem;    /* 60px */
  --text-5xl:  5rem;       /* 80px */
  --text-6xl:  6.5rem;     /* 104px */

  /* Tracking */
  --track-wide:    0.08em;
  --track-wider:   0.14em;
  --track-widest:  0.22em;

  /* Spacing */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-7:  3.5rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-14: 7rem;
  --sp-16: 8rem;
  --sp-20: 10rem;
  --sp-24: 12rem;

  /* Layout */
  --container: 1320px;
  --container-wide: 1480px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --hero-shell: 1500px;
  --hero-gutter: clamp(1.5rem, 5.8vw, 7rem);

  /* Motion */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  200ms;
  --dur-base:  360ms;
  --dur-slow:  600ms;
}

/* ─── Reset ──────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Offset anchored sections so they don't land under the fixed nav */
  scroll-padding-top: clamp(76px, 10vh, 104px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background-color: var(--sage-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── Typography Utilities ───────────────────────────────── */

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--gold);
}

.label--cream {
  color: var(--cream-dim);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 7.5vw, var(--text-6xl));
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.12;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
  line-height: 1.3;
}

em, i, .italic-gold {
  font-style: italic;
  color: var(--gold-light);
}

.body-lg {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream);
}

.body-base {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
}

.body-sm {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream-dim);
}

/* ─── Layout ─────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad {
  padding-block: clamp(var(--sp-12), 10vw, var(--sp-24));
}

.section-pad--sm {
  padding-block: clamp(var(--sp-8), 7vw, var(--sp-16));
}

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--sage-deep);
  padding: 0.875rem 2.25rem;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(230, 212, 186, 0.3);
  color: var(--cream);
  padding: 0.875rem 2.25rem;
}

.btn-outline:hover {
  border-color: rgba(230, 212, 186, 0.7);
  background: var(--cream-faint);
}

.btn-ghost {
  color: var(--cream);
  padding: 0;
  gap: var(--sp-1);
}

.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn-ghost:hover .arrow { transform: translateX(5px); }

.btn-ghost--gold {
  color: var(--gold);
}

/* ─── Gold Rule ──────────────────────────────────────────── */

.gold-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ─── Section Header ─────────────────────────────────────── */

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.section-header .label {
  margin-bottom: var(--sp-1);
}

/* ─── Image Placeholder (until real photos replace these) ── */

.img-bg {
  background: linear-gradient(145deg, var(--sage) 0%, var(--sage-deep) 100%);
  position: relative;
  overflow: hidden;
}

.img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 70%, rgba(200, 155, 79, 0.07), transparent 55%);
  pointer-events: none;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  var(--dur-slow) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-smooth);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
[data-reveal][data-delay="5"] { transition-delay: 400ms; }

/* ─── Misc Utilities ─────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) { .hide-mobile { display: none !important; } }
@media (min-width: 768px) { .hide-desktop { display: none !important; } }


/* ============================================================
   NAV
   Transparent on hero → solid on scroll. Mobile menu.
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
  padding-block: 1.4rem;
  background: transparent;
}

.nav--scrolled {
  background: rgba(28, 45, 37, 0.97);
  border-bottom-color: rgba(230, 212, 186, 0.08);
  padding-block: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* While the mobile menu is open the bar must read as part of the full-screen
   menu — drop the scrolled background / border / blur so only the logo + X
   float on top, exactly like at the hero. (Higher specificity than
   .nav--scrolled so it wins regardless of scroll state.) */
.nav--menu-open,
.nav--menu-open.nav--scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ─── Inner Layout ───────────────────────────────────────── */

.nav__inner {
  position: relative;
  z-index: 101; /* keep logo + burger above the full-screen mobile menu */
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr 210px;
  align-items: center;
  gap: 2rem;
}

/* ─── Logo ───────────────────────────────────────────────── */

.nav__logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo-img {
  height: 78px;
  width: auto;
  display: block;
  margin-right: 0;
}

.nav__wordmark {
  display: block;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(224, 183, 106, 0.28);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f0e8d5;
  line-height: 1.25;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__logo:hover .nav__wordmark {
  color: var(--gold-light);
}

/* ─── Links ──────────────────────────────────────────────── */

.nav__links {
  justify-self: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3vw, 3.4rem);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4ead8;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

/* ─── CTA ────────────────────────────────────────────────── */

.nav__cta {
  justify-self: end;
  border: 1px solid rgba(224, 183, 106, 0.75);
  color: #e0b76a;
  padding: 1rem 2.35rem;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav__cta:hover {
  border-color: var(--gold);
  background: rgba(200, 155, 79, 0.08);
  transform: translateY(-1px);
}

/* ─── Burger ─────────────────────────────────────────────── */

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  justify-self: end;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  /* Phosphor glyph instead of empty <span> bars: a real font icon renders
     reliably across every engine (the empty-flex-item hamburger went missing
     in mobile Safari) and matches the project's Phosphor icon system. */
  font-size: 1.85rem;
  line-height: 1;
  color: var(--cream);
}

.nav__burger-icon {
  /* dark halo keeps the cream glyph legible over any part of the hero photo */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.5);
}

/* swap menu ⇄ close on open */
.nav__burger-icon--close {
  display: none;
}

.nav__burger--open .nav__burger-icon--menu {
  display: none;
}

.nav__burger--open .nav__burger-icon--close {
  display: inline-block;
}

/* ─── Mobile Menu (full-screen editorial) ────────────────── */

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 99; /* above page content, just under .nav (100) so the burger/close button stays clickable */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding-block: clamp(7rem, 16vh, 9.5rem) clamp(2.5rem, 7vh, 4rem);
  background-color: #0a160f;
  background-image:
    radial-gradient(130% 90% at 78% 6%, rgba(75, 102, 88, 0.26), transparent 58%),
    radial-gradient(100% 60% at 12% 100%, rgba(200, 155, 79, 0.07), transparent 60%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base) var(--ease-out);
}

.nav__mobile--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__mobile-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.nav__mobile-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1.8rem, 4.5vh, 2.8rem);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__mobile-tick {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.nav__mobile-links li {
  border-top: 1px solid rgba(224, 183, 106, 0.14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-slow, 520ms) var(--ease-out),
              transform var(--dur-slow, 520ms) var(--ease-out);
}

.nav__mobile-links li:last-child {
  border-bottom: 1px solid rgba(224, 183, 106, 0.14);
}

.nav__mobile--open .nav__mobile-links li {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile--open .nav__mobile-links li:nth-child(1) { transition-delay: 0.10s; }
.nav__mobile--open .nav__mobile-links li:nth-child(2) { transition-delay: 0.16s; }
.nav__mobile--open .nav__mobile-links li:nth-child(3) { transition-delay: 0.22s; }
.nav__mobile--open .nav__mobile-links li:nth-child(4) { transition-delay: 0.28s; }
.nav__mobile--open .nav__mobile-links li:nth-child(5) { transition-delay: 0.34s; }

.nav__mobile-link {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding-block: clamp(1rem, 2.3vh, 1.45rem);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f4ead8;
  transition: color var(--dur-fast) var(--ease-out),
              padding-left var(--dur-base) var(--ease-out);
}

.nav__mobile-index {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.85;
}

.nav__mobile-link:hover,
.nav__mobile-link:focus-visible {
  color: var(--gold-light);
  padding-left: 0.55rem;
}

.nav__mobile-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: clamp(2.2rem, 5vh, 3.2rem);
}

.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(224, 183, 106, 0.75);
  color: var(--gold-light);
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.nav__mobile-cta:hover {
  background: rgba(200, 155, 79, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.nav__mobile-meta {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 212, 186, 0.42);
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}


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

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: #07130d;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(3, 12, 7, 0.84) 0%,
      rgba(3, 12, 7, 0.56) 36%,
      rgba(3, 12, 7, 0.10) 62%,
      rgba(3, 12, 7, 0.03) 100%
    ),
    linear-gradient(180deg,
      rgba(3, 12, 7, 0.40) 0%,
      rgba(3, 12, 7, 0.04) 40%,
      rgba(3, 12, 7, 0.50) 100%
    );
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--hero-gutter);
  padding-top: clamp(7.5rem, 10.5vh, 9.5rem);
  padding-bottom: clamp(2rem, 3.5vh, 3.5rem);
  display: flex;
  align-items: center;
}

.hero__content {
  width: min(100%, 700px);
  display: flex;
  flex-direction: column;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d9a84f;
  margin-top: 0;
  margin-bottom: clamp(0.85rem, 1.6vh, 1.35rem);
}

.hero__gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: #c89b4f;
  margin-bottom: clamp(1.5rem, 2.8vh, 2.5rem);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, min(7.4vw, 12vh), 8rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.035em;
  color: #fbf2df;
  margin-bottom: clamp(1.1rem, 2.2vh, 1.7rem);
}

.hero__headline em {
  color: #c89b4f;
  font-style: italic;
}

.hero__sub {
  max-width: 500px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(253, 250, 245, 0.86);
  margin-bottom: clamp(1.5rem, 2.8vh, 2.3rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: clamp(1.6rem, 3.2vh, 2.6rem);
}

.btn-hero-fill {
  min-width: 290px;
  justify-content: center;
  background: #f3e5c9;
  color: #102018;
  padding: 1.05rem 2.1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.btn-hero-fill:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-hero-link {
  color: #e0b76a;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #c89b4f;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast) var(--ease-out);
}

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: start;
  max-width: 680px;
  gap: 1.5rem;
  border-top: none;
  padding-top: 0;
  margin-top: clamp(1.2rem, 2.8vh, 2.2rem);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.hero__trust-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 183, 106, 0.7);
  border-radius: 999px;
  color: #e0b76a;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
}

.hero__trust-title {
  display: block;
  color: #fff4df;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.hero__trust-desc {
  color: rgba(253, 250, 245, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 165px;
  margin: 0;
}

.hero__trust-divider {
  width: 1px;
  height: 56px;
  background: rgba(224, 183, 106, 0.28);
  margin-top: 2.6rem;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  /* Symmetric vertical padding so the hero content sits dead-centre
     regardless of whether the trust strip is showing */
  .hero__body {
    padding-top: clamp(6.5rem, 9vh, 8rem);
    padding-bottom: clamp(6.5rem, 9vh, 8rem);
    align-items: center;
  }

  .hero__headline {
    font-size: clamp(4rem, 7.4vw, 6rem);
  }

  .hero__bg {
    object-position: 68% center;
  }

  .hero__trust {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .nav {
    padding-block: 1.1rem;
  }

  .nav__wordmark {
    display: none;
  }

  .nav__logo-img {
    height: 58px;
  }

  .hero {
    min-height: 100svh;
    height: 100dvh;
  }

  .hero__body {
    min-height: 0;
    flex: 1;
    padding-top: 7rem;
    padding-bottom: 7rem;
    align-items: center;
  }

  /* Trust strip is desktop-only — on mobile it pushes the hero past
     the viewport. Hidden so the hero reads as a clean 100vh frame. */
  .hero__trust {
    display: none;
  }

  .hero__bg {
    object-position: 74% 36%;
  }

  /* Directional, layered scrim — protects the left-hand text column without
     flattening the photo. The woman (right) and the charcuterie board
     (centre-bottom) keep their light. Base colour is the olive ambient,
     never pure black, so the scrim fuses with the scene. */
  .hero__overlay {
    background:
      /* focal pool under the paragraph + "View Gallery" (bottom-left only) */
      radial-gradient(
        ellipse 62% 40% at 6% 96%,
        rgba(20, 24, 16, 0.58) 0%,
        rgba(20, 24, 16, 0.28) 38%,
        transparent 64%
      ),
      /* left → right protection for the headline / CTA column;
         fully clear past 62% so her face stays bright */
      linear-gradient(
        90deg,
        rgba(20, 24, 16, 0.72) 0%,
        rgba(20, 24, 16, 0.45) 35%,
        transparent 62%
      );
  }

  .hero__headline {
    font-size: clamp(2.95rem, 8.4vw, 5rem);
  }

  .hero__sub {
    max-width: 31ch;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .btn-hero-fill {
    min-width: 0;
    width: auto;
  }

  .btn-hero-link {
    align-self: flex-start;
    /* most exposed element over the photo — subtle backup contrast */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 430px) {
  .nav__logo-img {
    height: 50px;
  }
}


/* ============================================================
   SERVICES
============================================================ */

.experience-section {
  background: linear-gradient(180deg, #0a1610 0%, #0e1b12 55%, #111d14 100%);
  color: #f3e5c9;
  padding-block: clamp(4rem, 9vw, 7rem); /* unified section rhythm */
  padding-inline: 0;
  border-top: 1px solid rgba(200, 155, 79, 0.18);
}

.experience-wrap {
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.experience-intro {
  align-self: center;
  padding: 0 1rem 0 0;
  display: flex;
  flex-direction: column;
}

.experience-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c89b4f;
  margin-bottom: 1.35rem;
}

.experience-rule {
  display: block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #c89b4f 0%, rgba(200, 155, 79, 0.15) 100%);
  margin-bottom: 2.5rem;
}

.experience-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f5ead7;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.experience-intro h2 em {
  color: #dab06a;
  font-style: italic;
}

.experience-intro > p {
  max-width: 23rem;
  color: rgba(245, 234, 215, 0.58);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.experience-link,
.experience-featured a,
.mini-service a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d6a652;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(200, 155, 79, 0.42);
  text-decoration: none;
  opacity: 1;
  transition: color 300ms ease, border-color 300ms ease, opacity 300ms ease;
}

.experience-featured a,
.mini-service a {
  color: #e6b765;
  border-color: rgba(214, 166, 82, 0.55);
  text-shadow: 0 1px 8px rgba(4, 9, 5, 0.5);
}

.experience-link:hover,
.experience-featured a:hover,
.mini-service a:hover {
  color: #f0c87c;
  border-color: rgba(224, 183, 106, 0.85);
  opacity: 1;
}

.experience-link span,
.experience-featured a span,
.mini-service a span {
  display: inline-block;
  transition: transform 300ms ease;
}

.experience-link:hover span,
.experience-featured a:hover span,
.mini-service a:hover span {
  transform: translateX(5px);
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 340px);
  gap: 1rem;
  align-self: start;
}

.experience-featured {
  position: relative;
  height: 340px;
  min-height: 0;
  border: 1px solid rgba(200, 155, 79, 0.6);
  overflow: hidden;
  background: #091410;
  transition: border-color 400ms ease;
}

.experience-featured:hover {
  border-color: rgba(224, 183, 106, 0.78);
}

.featured-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,
      rgba(5, 11, 7, 0.92) 0%,
      rgba(5, 11, 7, 0.66) 22%,
      rgba(5, 11, 7, 0.3) 42%,
      rgba(5, 11, 7, 0.06) 58%,
      transparent 72%
    ),
    url("assets/service-20.webp") no-repeat;
  background-size: auto, cover;
  background-position: 0 0, 100% 38%;
  filter: saturate(1.08) contrast(1.04) brightness(1.12);
  transform: scale(1.06);
  transform-origin: 100% 40%;
  transition: transform 700ms cubic-bezier(0.22, 0, 0.05, 1), filter 700ms ease;
}

.experience-featured:hover .featured-bg {
  transform: scale(1.01);
  filter: saturate(1.12) contrast(1.03) brightness(1.18);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 3;
  background: #d6a652;
  color: #0a1308;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 2px 14px rgba(4, 9, 5, 0.35);
}

.featured-content {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
}

.service-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(224, 178, 96, 1);
  margin-bottom: 1.15rem;
  text-shadow: 0 1px 3px rgba(4, 9, 5, 0.9), 0 2px 12px rgba(4, 9, 5, 0.7);
}

.experience-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 2.4vw, 2.95rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #fffaf0;
  margin-bottom: 0.95rem;
  text-shadow: 0 1px 4px rgba(4, 9, 5, 0.9), 0 3px 18px rgba(4, 9, 5, 0.75);
}

.experience-featured p {
  max-width: 290px;
  color: rgba(250, 243, 230, 0.95);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.55rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(4, 9, 5, 0.9), 0 2px 12px rgba(4, 9, 5, 0.65);
}

.mini-service {
  position: relative;
  height: 340px;
  min-height: 0;
  padding: 1.85rem 1.85rem 1.75rem;
  border: 1px solid rgba(210, 190, 155, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 350ms ease;
}

.mini-service:nth-child(2),
.mini-service:nth-child(3),
.mini-service:nth-child(4) {
  background: #080f0a;
}

.mini-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 79, 0.1), transparent);
  pointer-events: none;
  z-index: 2;
}

.mini-service::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 9, 6, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
}

.mini-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(1.08) contrast(1.03) brightness(1.1);
  transform: scale(1.06);
  transform-origin: 65% 45%;
  transition: transform 700ms cubic-bezier(0.22, 0, 0.05, 1), filter 700ms ease;
}

.mini-service:hover .mini-bg {
  transform: scale(1.01);
  filter: saturate(1.12) contrast(1.02) brightness(1.16);
}

.mini-service:nth-child(2) .mini-bg {
  background:
    linear-gradient(0deg,
      rgba(5, 11, 7, 0.92) 0%,
      rgba(5, 11, 7, 0.64) 24%,
      rgba(5, 11, 7, 0.28) 46%,
      rgba(5, 11, 7, 0.05) 62%,
      transparent 76%
    ),
    url("assets/board-gift-boxes-2.webp") no-repeat;
  background-size: auto, cover;
  background-position: 0 0, 68% center;
}

.mini-service:nth-child(3) .mini-bg {
  background:
    linear-gradient(0deg,
      rgba(5, 11, 7, 0.92) 0%,
      rgba(5, 11, 7, 0.64) 24%,
      rgba(5, 11, 7, 0.28) 46%,
      rgba(5, 11, 7, 0.05) 62%,
      transparent 76%
    ),
    url("assets/beyond.webp") no-repeat;
  background-size: auto, cover;
  background-position: 0 0, 68% center;
}

.mini-service:nth-child(4) .mini-bg {
  background:
    linear-gradient(0deg,
      rgba(5, 11, 7, 0.92) 0%,
      rgba(5, 11, 7, 0.64) 24%,
      rgba(5, 11, 7, 0.28) 46%,
      rgba(5, 11, 7, 0.05) 62%,
      transparent 76%
    ),
    url("assets/services-3.webp") no-repeat;
  background-size: auto, cover;
  background-position: 0 0, 68% center;
}

.mini-service .service-number,
.mini-service h3,
.mini-service > p {
  position: relative;
  z-index: 1;
}

.mini-service:hover {
  border-color: rgba(200, 155, 79, 0.18);
}

.mini-service .service-number {
  margin-bottom: 0;
  flex-shrink: 0;
}

.mini-service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #fffaf0;
  margin-top: auto;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(4, 9, 5, 0.9), 0 3px 16px rgba(4, 9, 5, 0.72);
}

.mini-service > p {
  color: rgba(250, 243, 230, 0.94);
  font-size: 0.85rem;
  line-height: 1.65;
  flex-shrink: 0;
  padding-bottom: 2.25rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(4, 9, 5, 0.88), 0 2px 11px rgba(4, 9, 5, 0.6);
}

.mini-service a {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  z-index: 2;
}

/* ─── Editorial card metadata (replaces page-implying CTAs) ── */

.service-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d6a652;
  text-shadow: 0 1px 8px rgba(4, 9, 5, 0.5);
}

.service-meta::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(214, 166, 82, 0.55);
  flex-shrink: 0;
}

.mini-service .service-meta {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  z-index: 2;
}

@media (max-width: 1240px) {
  .experience-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-intro {
    padding-right: 0;
    max-width: 640px;
  }

  .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 290px);
  }

  .experience-featured,
  .mini-service {
    height: 290px;
  }
}

@media (max-width: 780px) {
  .experience-wrap {
    padding-inline: 1.5rem;
  }

  .experience-intro h2 {
    font-size: clamp(2.4rem, 6.5vw, 3.2rem);
  }

  .experience-cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.9rem;
  }

  .experience-featured {
    height: auto;
    min-height: 400px;
  }

  .mini-service {
    height: auto;
    min-height: 300px;
  }

  .featured-content {
    left: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
  }

  .mini-service {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .mini-service a {
    left: 1.5rem;
    bottom: 1.25rem;
  }
}



/* ============================================================
   GALLERY — Luxury Editorial Photo Wall
============================================================ */

.gallery-luxury {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 102, 88, 0.18), transparent 42%),
    linear-gradient(180deg, #08120c 0%, #0d1a12 100%);
  padding-block: clamp(4rem, 9vw, 7rem); /* unified section rhythm */
  border-top: 1px solid rgba(224, 183, 106, 0.12);
  color: #f5ead7;
}

.gallery-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 35%, rgba(224,183,106,0.07), transparent 25%),
    radial-gradient(circle at 86% 60%, rgba(75,102,88,0.16), transparent 34%);
  pointer-events: none;
}

.gallery-luxury__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
}

/* ─── Header ─────────────────────────────────────────────── */

.gallery-luxury__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 3.2vw, 3rem);
}

.gallery-luxury__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c89b4f;
  margin-bottom: 1rem;
}

.gallery-luxury__ornament {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 1.3rem;
  background: linear-gradient(90deg, transparent, #c89b4f, transparent);
}

.gallery-luxury__header h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #f5ead7;
  margin-bottom: 0.9rem;
}

.gallery-luxury__header h2 em {
  color: #dab06a;
  font-style: italic;
}

.gallery-luxury__header p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(245, 234, 215, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

/* ─── Photo Wall ─────────────────────────────────────────── */

.gallery-luxury__grid {
  display: grid;
  /* Center column is the editorial centerpiece — widest. Left narrowest. */
  grid-template-columns: 1fr 1.4fr 1.1fr;
  /* Side columns split evenly at the 50fr line; center stays 62/38 (main / below). */
  grid-template-rows: 50fr 12fr 38fr;
  height: clamp(600px, 50vw, 740px);
  gap: 0.9rem;
}

.gallery-luxury__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #08120c;
}

.gallery-luxury__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(4, 9, 6, 0.25) 100%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

.gallery-luxury__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.9);
  transition:
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 800ms ease;
}

.gallery-luxury__item:hover img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.08) brightness(0.96);
}

/* Center: tall main centerpiece (62fr) + short wide image below (38fr) */
.gallery-luxury__item--main          { grid-column: 2 / 3; grid-row: 1 / 3; }
.gallery-luxury__item--bottom-center { grid-column: 2 / 3; grid-row: 3 / 4; }
/* Side columns: equal-height top and bottom (50fr / 50fr), identical left & right */
.gallery-luxury__item--left          { grid-column: 1 / 2; grid-row: 1 / 2; }
.gallery-luxury__item--bottom-left   { grid-column: 1 / 2; grid-row: 2 / 4; }
.gallery-luxury__item--top-right     { grid-column: 3 / 4; grid-row: 1 / 2; }
.gallery-luxury__item--right         { grid-column: 3 / 4; grid-row: 2 / 4; }

/* ─── CTA Footer ─────────────────────────────────────────── */

.gallery-luxury__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

.gallery-luxury__footer span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 106, 0.55), transparent);
}

.gallery-luxury__footer a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e0b76a;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  white-space: nowrap;
}

.gallery-luxury__footer a b {
  font-weight: 400;
  transition: transform 260ms ease;
}

.gallery-luxury__footer a:hover b {
  transform: translateX(5px);
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .gallery-luxury__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-luxury__item {
    aspect-ratio: 4 / 3;
  }

  .gallery-luxury__item--main {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .gallery-luxury__item--left,
  .gallery-luxury__item--top-right,
  .gallery-luxury__item--bottom-left,
  .gallery-luxury__item--bottom-center,
  .gallery-luxury__item--right {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .gallery-luxury {
    padding-block: 4rem;
  }

  .gallery-luxury__inner {
    padding-inline: 1.5rem;
  }

  .gallery-luxury__header {
    text-align: left;
    margin-inline: 0;
  }

  .gallery-luxury__header h2 {
    font-size: clamp(2.4rem, 6.5vw, 3.2rem);
  }

  .gallery-luxury__ornament {
    margin-left: 0;
  }

  .gallery-luxury__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 0.75rem;
  }

  .gallery-luxury__item,
  .gallery-luxury__item--main {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-luxury__footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .gallery-luxury__footer span {
    display: none;
  }
}


/* ============================================================
   OUR STORY — Editorial Feature
   Full-bleed photographic backdrop · magazine-style kicker,
   left-set editorial spread: kicker, display lede, two-paragraph
   narrative, gold rule, metadata. The charcuterie board lives in
   the image's right-hand negative space — kept clear of type.
   ============================================================ */

.story--editorial {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding-block: clamp(6rem, 8vw, 8rem);
  background-image: url("assets/about-story-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5ead7;
}

/* Gentle directional veil — lifts legibility on the left where the
   type sits, while the food on the right stays cinematic. */
.story--editorial .story__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7, 18, 13, 0.18) 0%,
      rgba(7, 18, 13, 0.08) 38%,
      rgba(7, 18, 13, 0.16) 70%,
      rgba(7, 18, 13, 0.42) 100%
    ),
    linear-gradient(180deg,
      rgba(7, 18, 13, 0.28) 0%,
      rgba(7, 18, 13, 0.04) 45%,
      rgba(7, 18, 13, 0.45) 100%
    );
  pointer-events: none;
}

.story--editorial .story__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
}

/* ─── Masthead (magazine kicker) ─────────────────────────── */

.story--editorial .story__masthead {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: clamp(3.5rem, 5vw, 5rem);
}

.story--editorial .story__tick {
  display: block;
  width: 38px;
  height: 1px;
  background: #c89b4f;
}

.story--editorial .story__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c89b4f;
}

/* ─── Feature column (left-set editorial block) ──────────── */

.story--editorial .story__feature {
  width: min(100%, 650px);
}

.story--editorial .story__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f8efdf;
  text-shadow: 0 2px 28px rgba(8, 14, 10, 0.45);
  margin-bottom: clamp(2rem, 3vw, 2.6rem);
}

.story--editorial .story__headline em {
  font-style: italic;
  color: #dab06a;
}

.story--editorial .story__copy {
  max-width: 560px;
}

.story--editorial .story__copy p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(230, 212, 186, 0.76);
}

.story--editorial .story__copy p + p {
  margin-top: 1.8rem;
}

.story--editorial .story__rule {
  display: block;
  width: min(100%, 430px);
  height: 1px;
  margin-top: clamp(2.4rem, 3.5vw, 3.4rem);
  margin-bottom: clamp(1.8rem, 2.5vw, 2.3rem);
  background: linear-gradient(
    90deg,
    rgba(200, 155, 79, 0.9),
    rgba(200, 155, 79, 0.25)
  );
}

.story--editorial .story__meta {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e0b76a;
}

.story--editorial .story__meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c89b4f;
  opacity: 0.8;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .story--editorial {
    min-height: 680px;
  }

  .story--editorial .story__feature {
    width: min(100%, 610px);
  }
}

@media (max-width: 760px) {
  /* The same full-bleed composition as desktop, adjusted for a narrow screen:
     the board stays inside the photographic background; a slightly deeper veil
     keeps the stacked copy legible while the food remains cinematic. */
  .story--editorial {
    min-height: 600px;
    padding-block: clamp(4rem, 9vw, 6rem);
    background-position: 70% center;
  }

  .story--editorial .story__overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 18, 13, 0.9) 0%,
      rgba(7, 18, 13, 0.8) 32%,
      rgba(7, 18, 13, 0.54) 64%,
      rgba(7, 18, 13, 0.42) 100%
    );
  }

  .story--editorial .story__inner {
    padding-inline: 1.75rem;
  }

  .story--editorial .story__masthead {
    margin-bottom: 2.25rem;
  }

  .story--editorial .story__feature {
    width: 100%;
  }

  .story--editorial .story__headline {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .story--editorial .story__copy {
    max-width: 100%;
  }

  .story--editorial .story__meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
}


/* ============================================================
   REVIEWS — Luxury Editorial Carousel
============================================================ */

.reviews-luxury {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(75, 102, 88, 0.22), transparent 42%),
    radial-gradient(circle at 18% 62%, rgba(224, 183, 106, 0.055), transparent 28%),
    linear-gradient(180deg, #08120c 0%, #0d1a12 100%);
  color: #f5ead7;
  padding-block: clamp(4rem, 9vw, 7rem); /* unified section rhythm */
  border-top: 1px solid rgba(224, 183, 106, 0.12);
}

.reviews-luxury::before {
  content: "\201C";
  position: absolute;
  right: clamp(1.5rem, 6vw, 7rem);
  top: clamp(4rem, 8vw, 7rem);
  font-family: var(--font-display);
  font-size: clamp(9rem, 15vw, 18rem);
  line-height: 1;
  color: rgba(245, 234, 215, 0.05);
  pointer-events: none;
}

.reviews-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(224, 183, 106, 0.045), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

.reviews-luxury__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
}

.reviews-luxury__header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.8rem, 5vw, 4.4rem);
}

.reviews-luxury__label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d9a84f;
  margin-bottom: 1rem;
}

.reviews-luxury__ornament,
.reviews-luxury__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.1rem;
}

.reviews-luxury__ornament {
  width: min(260px, 60%);
  margin: 0 auto 1.6rem;
}

.reviews-luxury__ornament span,
.reviews-luxury__divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 106, 0.72), transparent);
}

.reviews-luxury__ornament svg,
.reviews-luxury__divider svg {
  width: 72px;
  height: 20px;
  stroke: #c89b4f;
  stroke-width: 1.1;
  stroke-linecap: round;
  opacity: 0.85;
}

.reviews-luxury__header h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f5ead7;
  margin-bottom: 1.55rem;
}

.reviews-luxury__header h2 em {
  display: inline-block;
  color: #dab06a;
  font-style: italic;
}

.reviews-luxury__header p {
  color: rgba(245, 234, 215, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}

.reviews-luxury__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.5rem);
}

.reviews-luxury__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}

.reviews-luxury__card {
  position: relative;
  min-height: 240px;
  padding: clamp(2.4rem, 3vw, 3.2rem);
  border: 1px solid rgba(200, 155, 79, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 78%, rgba(75, 102, 88, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 24px 80px rgba(0,0,0,0.16);
  overflow: hidden;
  transition: transform 360ms var(--ease-out), border-color 360ms var(--ease-out);
}

.reviews-luxury__card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 183, 106, 0.7);
}

.reviews-luxury__quote {
  display: block;
  font-family: var(--font-display);
  font-size: 5.2rem;
  line-height: 0.58;
  color: #e0b76a;
  margin-bottom: 1.1rem;
}

.reviews-luxury__card blockquote {
  max-width: 340px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.38;
  color: #f8ead2;
  margin-bottom: 2.4rem;
}

.reviews-luxury__rule {
  display: block;
  width: 52px;
  height: 1px;
  background: #c89b4f;
  margin-bottom: 1.65rem;
}

.reviews-luxury__card cite {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-style: normal;
}

.reviews-luxury__card cite strong {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #e4b96d;
}

.reviews-luxury__card cite span {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 234, 215, 0.55);
}

.reviews-luxury__leaf {
  position: absolute;
  right: 1.8rem;
  bottom: 1.6rem;
  width: 88px;
  height: 88px;
  stroke: #c89b4f;
  stroke-width: 1.35;
  stroke-linecap: round;
  opacity: 0.92;
}

.reviews-luxury__arrow {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(224, 183, 106, 0.48);
  border-radius: 999px;
  color: #e0b76a;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  line-height: 1;
  transition: all 260ms ease;
}

.reviews-luxury__arrow:hover {
  border-color: rgba(224, 183, 106, 0.8);
  background: rgba(224, 183, 106, 0.055);
  transform: translateY(-2px);
}

.reviews-luxury__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.05rem;
  margin-top: clamp(2.4rem, 4vw, 3.5rem);
}

.reviews-luxury__dots span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(245, 234, 215, 0.75);
  border-radius: 999px;
  display: block;
}

.reviews-luxury__dots .is-active {
  background: #e0b76a;
  border-color: #e0b76a;
}

.reviews-luxury__divider {
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

/* Desktop shows all three at once — controls are unnecessary */
@media (min-width: 1181px) {
  .reviews-luxury__arrow,
  .reviews-luxury__dots {
    display: none;
  }
}

/* Tablet / mobile: one testimonial per view, swipeable + arrows + dots */
@media (max-width: 1180px) {
  .reviews-luxury__carousel {
    grid-template-columns: auto 1fr auto;
  }

  .reviews-luxury__track {
    grid-template-columns: none;
    display: flex;
    gap: clamp(1.2rem, 2vw, 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-luxury__track::-webkit-scrollbar {
    display: none;
  }

  .reviews-luxury__card {
    flex: 0 0 100%;
    min-height: auto;
    scroll-snap-align: center;
  }
}

@media (max-width: 680px) {
  .reviews-luxury {
    padding-block: 4rem;
  }

  .reviews-luxury__inner {
    padding-inline: 1.5rem;
  }

  .reviews-luxury__header {
    text-align: left;
    margin-inline: 0;
  }

  .reviews-luxury__ornament {
    margin-left: 0;
  }

  .reviews-luxury__header h2 {
    font-size: clamp(2.4rem, 6.5vw, 3.2rem);
  }

  .reviews-luxury__carousel {
    grid-template-columns: 1fr;
  }

  .reviews-luxury__arrow {
    display: none;
  }

  .reviews-luxury__card {
    padding: 2rem 1.6rem;
  }

  .reviews-luxury__card blockquote {
    font-size: 1.35rem;
  }

  .reviews-luxury__leaf {
    width: 68px;
    height: 68px;
    opacity: 0.72;
  }
}


/* ============================================================
   CONTACT — Luxury Editorial Inquiry Section
   Full-bleed atmospheric background left; content/form inside
   the shared hero/services shell.
   ============================================================ */

.contact-luxury {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0c1811;
  border-top: 1px solid rgba(230, 212, 186, 0.08);
}

.contact-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(12,24,17,0.14) 0%,
      rgba(12,24,17,0.28) 30%,
      rgba(12,24,17,0.66) 48%,
      rgba(12,24,17,0.94) 62%,
      rgba(12,24,17,1.00) 72%
    ),
    linear-gradient(180deg,
      rgba(12,24,17,0.72) 0%,
      rgba(12,24,17,0.12) 44%,
      rgba(12,24,17,0.88) 100%
    ),
    url("assets/contact-left-bg.webp");
  background-size: 100% 100%, 100% 100%, 64% 100%;
  background-position: left center, left center, left center;
  background-repeat: no-repeat;
  z-index: 0;
}

.contact-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 78%, rgba(224,183,106,0.13), transparent 22%),
    radial-gradient(circle at 54% 40%, rgba(75,102,88,0.12), transparent 32%),
    linear-gradient(90deg,
      transparent 0%,
      rgba(12,24,17,0.08) 40%,
      rgba(12,24,17,0.32) 56%,
      transparent 72%
    );
}

.contact-luxury__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding-inline: var(--hero-gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}

/* ─── Story (left column — text only, image lives in ::before) */

.contact-luxury__story,
.contact-luxury__form-wrap {
  min-width: 0;
}

.contact-luxury__story {
  position: relative;
  overflow: visible;
  border-right: none;
  background: transparent;
}

.contact-luxury__media {
  display: none;
}

.contact-luxury__content {
  max-width: 560px;
  padding: 0;
}

.contact-luxury__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c89b4f;
  margin-bottom: 1.2rem;
}

.contact-luxury__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: #c89b4f;
  margin-bottom: clamp(2rem, 3.5vh, 3rem);
}

.contact-luxury__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f5ead7;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.contact-luxury__content h2 em {
  color: #dab06a;
  font-style: italic;
}

.contact-luxury__content p {
  max-width: 440px;
  color: rgba(245, 234, 215, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.8;
}

.contact-luxury__content p.contact-luxury__direct {
  margin-top: 1.6rem;
  font-size: 0.98rem;
  color: rgba(245, 234, 215, 0.66);
}

.contact-luxury__direct a {
  color: #e0b76a;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid rgba(224, 183, 106, 0.4);
  transition: border-color 200ms ease;
}

.contact-luxury__direct a:hover {
  border-color: rgba(224, 183, 106, 0.9);
}

/* ─── Form side (right column) ───────────────────────────── */

.contact-luxury__form-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  background: transparent;
  padding-block: clamp(5rem, 8vw, 7rem);
  padding-inline: 0;
}

.contact-luxury__form {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.8vw, 1.75rem);
}

.contact-luxury__form-note {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  padding-bottom: clamp(1.1rem, 1.6vw, 1.5rem);
  border-bottom: 1px solid rgba(230, 212, 186, 0.1);
  color: rgba(245, 234, 215, 0.66);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Form rows and fields ───────────────────────────────── */

.contact-luxury .contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.contact-luxury .contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-luxury .contact__field label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(224, 183, 106, 0.82);
}

.contact-luxury .contact__field input,
.contact-luxury .contact__field select,
.contact-luxury .contact__field textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(230, 212, 186, 0.13);
  background: rgba(230, 212, 186, 0.03);
  color: #f5ead7;
  padding: 1rem 1.25rem;
  font-size: 0.97rem;
  font-weight: 300;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-luxury .contact__field input,
.contact-luxury .contact__field select {
  height: 58px;
}

.contact-luxury .contact__field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-luxury .contact__field input::placeholder,
.contact-luxury .contact__field textarea::placeholder {
  color: rgba(230, 212, 186, 0.3);
}

.contact-luxury .contact__field input:focus,
.contact-luxury .contact__field select:focus,
.contact-luxury .contact__field textarea:focus {
  border-color: rgba(224, 183, 106, 0.62);
  background: rgba(224, 183, 106, 0.045);
  box-shadow:
    0 0 0 1px rgba(224, 183, 106, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.16);
}

/* Date input: style the native browser chrome as much as possible */
.contact-luxury .contact__field input[type="date"] {
  color-scheme: dark;
}

.contact-luxury .contact__field input[type="date"]:not(:valid) {
  color: rgba(230, 212, 186, 0.3);
}

.contact-luxury .contact__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23E0B76A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.35rem center;
  padding-right: 3rem;
}

.contact-luxury .contact__field select option {
  background: #101d15;
  color: #f5ead7;
}

/* ─── Form footer ────────────────────────────────────────── */

.contact-luxury .contact__form-footer {
  padding-top: 0.2rem;
  display: flex;
  justify-content: flex-start;
}

/* ─── Submit button ──────────────────────────────────────── */

.contact-luxury__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #e0b76a, #c89b4f);
  color: #0c1811;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease;
}

.contact-luxury__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 50px rgba(200, 155, 79, 0.22);
}

.contact-luxury__submit:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

/* Sent state (set by JS on submit) */
.contact-luxury__submit:disabled {
  opacity: 0.6;
  transform: none;
  cursor: default;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .contact-luxury__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 0;
  }

  .contact-luxury::before {
    background-size: 100% 100%, 100% 100%, 100% 60%;
    background-position: left center, left center, center top;
  }

  .contact-luxury__story {
    padding-top: clamp(4rem, 9vw, 7rem); /* unified section rhythm */
    padding-bottom: 2.5rem;
  }

  .contact-luxury__form-wrap {
    padding: 0 0 clamp(4rem, 9vw, 7rem); /* unified section rhythm */
  }

  /* Once stacked, the form sits directly over the background image.
     The desktop fields (near-transparent fill) disappear into it and
     read as disabled — so give them a solid dark panel + clear border. */
  .contact-luxury .contact__field input,
  .contact-luxury .contact__field select,
  .contact-luxury .contact__field textarea {
    background: rgba(11, 19, 14, 0.62);
    border-color: rgba(224, 183, 106, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .contact-luxury .contact__field input::placeholder,
  .contact-luxury .contact__field textarea::placeholder {
    color: rgba(230, 212, 186, 0.42);
  }

  .contact-luxury .contact__field input:focus,
  .contact-luxury .contact__field select:focus,
  .contact-luxury .contact__field textarea:focus {
    background: rgba(11, 19, 14, 0.74);
    border-color: rgba(224, 183, 106, 0.7);
  }
}

@media (max-width: 760px) {
  .contact-luxury .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact-luxury__content h2 {
    font-size: clamp(2.4rem, 6.5vw, 3.2rem);
  }
}

@media (max-width: 400px) {
  .contact-luxury__content h2 {
    font-size: clamp(2.1rem, 6.5vw, 2.8rem);
  }
}


/* ============================================================
   FOOTER — Luxury Editorial Closing
============================================================ */

.footer-luxury {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 102, 88, 0.18), transparent 42%),
    linear-gradient(180deg, #101d15 0%, #08120c 100%);
  border-top: 1px solid rgba(224, 183, 106, 0.16);
  color: #f5ead7;
}

.footer-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(224, 183, 106, 0.055), transparent 26%),
    radial-gradient(circle at 82% 58%, rgba(75, 102, 88, 0.12), transparent 34%);
  pointer-events: none;
}

.footer-luxury__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-shell);
  margin-inline: auto;
  padding: clamp(5rem, 8vw, 7rem) var(--hero-gutter) clamp(2rem, 4vw, 3rem);
}

.footer-luxury__top {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.footer-luxury__brand {
  max-width: 380px;
}

.footer-luxury__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.footer-luxury__logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-luxury__logo span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.7vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #f5ead7;
}

.footer-luxury__rule,
.footer-luxury__nav span {
  display: block;
  width: 46px;
  height: 1px;
  background: #c89b4f;
}

.footer-luxury__rule {
  margin-bottom: 2rem;
}

.footer-luxury__brand p {
  color: rgba(245, 234, 215, 0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.4rem;
}

.footer-luxury__contact {
  margin-top: -1.4rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.01em;
}

.footer-luxury__contact a {
  color: #e0b76a;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-luxury__contact a:hover {
  color: #f0d49a;
}

.footer-luxury__social {
  display: flex;
  gap: 1rem;
}

.footer-luxury__social a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(224, 183, 106, 0.42);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #e0b76a;
  transition: all 240ms ease;
}

.footer-luxury__social a:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 183, 106, 0.75);
  background: rgba(224, 183, 106, 0.055);
}

.footer-luxury__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4.5vw, 5rem);
  padding-top: 0.4rem;
}

.footer-luxury__nav div {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(230, 212, 186, 0.065);
}

.footer-luxury__nav h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c89b4f;
}

.footer-luxury__nav a {
  color: rgba(245, 234, 215, 0.72);
  font-size: 1rem;
  line-height: 1.5;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-luxury__nav a:hover {
  color: #f5ead7;
  transform: translateX(4px);
}

.footer-luxury__statement {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(4rem, 7vw, 6rem);
}

.footer-luxury__statement > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 106, 0.72), transparent);
}

.footer-luxury__statement-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-luxury__botanical {
  display: flex;
  justify-content: center;
  opacity: 0.9;
}

.footer-luxury__botanical i {
  font-size: 1.9rem;
  color: #c89b4f;
  line-height: 1;
}

.footer-luxury__statement p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(224, 183, 106, 0.9);
  text-align: center;
  white-space: nowrap;
}

.footer-luxury__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  color: rgba(245, 234, 215, 0.52);
  font-size: 0.88rem;
}

.footer-luxury__bottom div {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 234, 215, 0.7);
}

.footer-luxury__bottom a {
  transition: color 220ms ease;
}

.footer-luxury__bottom a:hover {
  color: #e0b76a;
}

.footer-luxury__crafted {
  justify-self: end;
  color: rgba(245, 234, 215, 0.52);
}

.footer-luxury__crafted a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(245, 234, 215, 0.62);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 220ms ease, opacity 220ms ease;
}

.footer-luxury__neutron-mark {
  height: 17px;
  width: auto;
  opacity: 0.85;
  transition: opacity 220ms ease;
}

.footer-luxury__crafted a strong {
  font-weight: 600;
  color: rgba(224, 183, 106, 0.92);
  transition: color 220ms ease;
}

.footer-luxury__crafted a:hover {
  color: rgba(245, 234, 215, 0.8);
}

.footer-luxury__crafted a:hover strong {
  color: var(--gold-light);
}

.footer-luxury__crafted a:hover .footer-luxury__neutron-mark {
  opacity: 1;
}

@media (max-width: 980px) {
  .footer-luxury__top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-luxury__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-luxury__bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-luxury__crafted {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .footer-luxury__inner {
    padding-inline: 1.5rem;
  }

  .footer-luxury__nav {
    grid-template-columns: 1fr;
  }

  .footer-luxury__nav div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(230, 212, 186, 0.08);
    padding-top: 1.8rem;
  }

  .footer-luxury__statement {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .footer-luxury__statement > span {
    display: none;
  }

  .footer-luxury__statement-body {
    align-items: flex-start;
  }

  .footer-luxury__botanical {
    justify-content: flex-start;
  }

  .footer-luxury__statement p {
    white-space: normal;
    text-align: left;
  }
}


/* ============================================================
   LEGAL PAGES — Privacy Policy · Terms of Service
   Quiet editorial document layout that reuses the brand system.
   ============================================================ */

.legal-hero {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 102, 88, 0.18), transparent 46%),
    linear-gradient(180deg, #0a1610 0%, #111d14 100%);
  border-bottom: 1px solid rgba(200, 155, 79, 0.16);
  padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(2.8rem, 5vw, 4rem);
  text-align: center;
}

.legal-hero__inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-hero__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c89b4f;
  margin-bottom: 1.1rem;
}

.legal-hero__ornament {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 1.6rem;
  background: linear-gradient(90deg, transparent, #c89b4f, transparent);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #f5ead7;
}

.legal-hero h1 em {
  color: #dab06a;
  font-style: italic;
}

.legal-hero__meta {
  margin-top: clamp(1.2rem, 2vw, 1.6rem);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--cream-soft);
}

.legal {
  background: var(--sage-deep);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.legal__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Plain-language summary / disclaimer callout */
.legal__note {
  border: 1px solid var(--gold-border);
  border-left: 2px solid var(--gold);
  background: rgba(200, 155, 79, 0.05);
  padding: clamp(1.3rem, 2.4vw, 1.8rem) clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.legal__note p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--cream-soft);
}

.legal__note p + p {
  margin-top: 0.75rem;
}

.legal__section {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
}

.legal__section:first-of-type {
  margin-top: 0;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #f1e6d2;
  margin-bottom: var(--sp-3);
}

.legal h2 .legal__num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-right: 0.85rem;
  vertical-align: middle;
}

.legal h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.legal p,
.legal li {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
}

.legal p + p {
  margin-top: var(--sp-3);
}

.legal ul {
  list-style: none;
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal li {
  position: relative;
  padding-left: 1.4rem;
}

.legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.legal a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 220ms ease, color 220ms ease;
}

.legal a:hover {
  color: #f0c87c;
  border-bottom-color: var(--gold);
}

.legal strong {
  color: var(--cream-soft);
  font-weight: 500;
}

.legal__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 106, 0.35), transparent);
  margin-block: clamp(2.6rem, 5vw, 3.6rem);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: none;
}

.legal__back:hover {
  color: var(--gold-light);
  border-bottom: none;
}
