/* ============================================================
   HEARTLAND LUXURY ESCAPE — editorial dark luxury
   ============================================================ */

:root {
  /* Palette */
  --bg: #0F0E0C;
  --bg-2: #15130F;
  --bg-3: #1C1916;
  --cream: #F5EFE6;
  --cream-2: #E8DFD0;
  --muted: #9C928181;
  --line: rgba(245, 239, 230, 0.12);
  --line-strong: rgba(245, 239, 230, 0.22);
  --gold: #C9A961;
  --gold-2: #B8956A;
  --gold-warm: #D4B574;
  --terracotta: #B86F3C;
  --terracotta-2: #8B4A26;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", system-ui, sans-serif;

  /* Type scale (informational; hero special) */
  --text-xs: clamp(11px, 0.7vw, 12px);
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: clamp(17px, 1.2vw, 19px);
  --text-xl: clamp(22px, 2.4vw, 30px);
  --text-2xl: clamp(34px, 4.2vw, 56px);
  --text-3xl: clamp(48px, 7vw, 88px);
  --text-hero: clamp(60px, 10vw, 156px);

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);
  --maxw: 1320px;
  --maxw-text: 70ch;

  /* Motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select {
  font: inherit; color: inherit; background: transparent;
  border: 0; outline: 0; -webkit-appearance: none; appearance: none;
}
::selection { background: var(--gold); color: var(--bg); }

/* ----- Utilities ----- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.eyebrow__line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow--light { color: rgba(245,239,230,.85); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow--gold .eyebrow__line { background: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-3xl);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-warm);
}
.display--md { font-size: var(--text-2xl); line-height: 1.02; }

.btn {
  --b: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  border: 1px solid var(--b);
  border-radius: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--b);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn--gold { color: var(--bg); background: var(--gold); border-color: var(--gold); }
.btn--gold::before { background: var(--gold-warm); }
.btn--gold:hover { color: var(--bg); border-color: var(--gold-warm); }
.btn--ghost { color: var(--cream); background: transparent; border-color: var(--line-strong); }
.btn--ghost::before { background: var(--cream); }
.btn--ghost:hover { color: var(--bg); border-color: var(--cream); }
.btn--lg { padding: 18px 36px; font-size: 13px; }
.btn--block { display: flex; width: 100%; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--gold);
  pointer-events: none;
  transition: opacity .8s var(--ease), visibility .8s;
}
.intro.is-done { opacity: 0; visibility: hidden; }
.intro__mark {
  width: 200px; opacity: 0;
  animation: introIn 1.4s var(--ease) forwards;
}
@keyframes introIn {
  0% { opacity: 0; transform: translateY(8px); }
  35% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 22px var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15, 14, 12, 0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  padding: 14px var(--gutter);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold);
}
.logo-mark { width: 44px; height: 28px; color: var(--gold); }
.logo-mark--lg { width: 72px; height: 46px; }
.nav__wordmark {
  display: inline-flex; flex-direction: column; line-height: 1;
  color: var(--cream);
}
.nav__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.nav__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.78);
  position: relative;
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__link--accent { color: var(--gold) !important; }
.nav__cta {
  border: 1px solid var(--gold);
  padding: 10px 20px;
  color: var(--gold) !important;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--bg) !important; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 8px; right: 8px; height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 70px 0 0 0;
  background: var(--bg);
  padding: 32px var(--gutter);
  display: none;
  flex-direction: column; gap: 24px;
  z-index: 80;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--cream);
}
.nav__mobile a.nav__cta {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 24px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: kenburns 24s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(1.05) brightness(0.85);
}
@keyframes kenburns {
  0%   { transform: scale(1.12) translate(0, 0); }
  100% { transform: scale(1.25) translate(-2%, -2%); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.1) 30%, rgba(15,14,12,0.4) 65%, rgba(15,14,12,0.95) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(15,14,12,0.6) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.12 0'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(120px, 16vw, 200px);
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-hero);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__title .split {
  display: block;
}
.hero__title .split--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-warm);
  margin-left: clamp(20px, 6vw, 80px);
}
.hero__sub {
  max-width: 540px;
  font-size: var(--text-lg);
  color: rgba(245,239,230,0.88);
  margin: 0 0 36px;
  line-height: 1.55;
  font-weight: 300;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* Floating booking pill */
.hero__pill {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(820px, calc(100% - var(--gutter) * 2));
  background: rgba(15, 14, 12, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 2px;
  padding: 6px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.pill__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
}
.pill__field {
  padding: 14px 22px;
  border-right: 1px solid var(--line);
}
.pill__field:last-of-type { border-right: 0; }
.pill__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.pill__field input {
  width: 100%;
  color: var(--cream);
  font-size: 15px;
  cursor: pointer;
}
.pill__cta {
  background: var(--gold);
  color: var(--bg);
  padding: 18px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .4s var(--ease);
  align-self: stretch;
  display: flex; align-items: center;
}
.pill__cta:hover { background: var(--gold-warm); }

@media (max-width: 720px) {
  .hero__pill { display: none; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 50px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  color: rgba(245,239,230,0.65);
  z-index: 2;
}
.scroll-cue__label {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.scroll-cue__line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute; top: -60px; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--cream));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(120px); }
}

@media (max-width: 900px) {
  .scroll-cue { display: none; }
}

/* ============================================================
   WORLD CUP
   ============================================================ */
.wc {
  position: relative;
  padding: var(--section-y) var(--gutter);
  background: var(--bg-2);
  overflow: hidden;
  isolation: isolate;
}
.wc__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(184, 111, 60, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 100%, rgba(201, 169, 97, 0.10) 0%, transparent 60%);
  z-index: -1;
}
.wc__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.wc__meta {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin-bottom: 28px;
  color: var(--gold);
}
.wc__ball {
  width: 56px; height: 56px;
  color: var(--gold);
  animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.wc__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-3xl);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.wc__title em {
  font-style: italic;
  color: var(--gold-warm);
  display: block;
}
.wc__lede {
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: var(--text-lg);
  color: rgba(245,239,230,0.78);
  line-height: 1.6;
}

.wc__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 0;
  margin: 0 0 48px;
}
.wc__divider {
  width: 1px;
  background: var(--line);
  margin: 8px 0;
}
.wc__stat { padding: 8px 36px; min-width: 0; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.wc__stat:last-child .wc__num { font-size: clamp(28px, 3.2vw, 44px); white-space: nowrap; }
.wc__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.wc__nums { padding: 0 8px; color: rgba(201,169,97,0.5); }
.wc__lbl {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.65);
  margin-top: 10px;
}
.wc__fineprint {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
}

@media (max-width: 700px) {
  .wc__row { flex-direction: column; gap: 24px; }
  .wc__divider { width: 60px; height: 1px; margin: 0; }
  .wc__stat { padding: 0; }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 96px);
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head__lede {
  max-width: 56ch;
  margin: 28px auto 0;
  font-size: var(--text-lg);
  color: rgba(245,239,230,0.7);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   RESIDENCE / FEATURES
   ============================================================ */
.residence {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.feature {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(96px, 12vw, 160px);
}
.feature:last-child { margin-bottom: 0; }
.feature--right .feature__media { order: 2; }
.feature--right .feature__text  { order: 1; }
.feature__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}
.feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  --py: 0px;
  --hover-scale: 1;
  transform: translate3d(0, var(--py), 0) scale(calc(1.04 * var(--hover-scale)));
  transition: --hover-scale .9s var(--ease), filter .6s var(--ease);
  will-change: transform;
}
@property --hover-scale { syntax: "<number>"; inherits: false; initial-value: 1; }
.feature__media:hover img { --hover-scale: 1.03; filter: brightness(1.05); }
.feature__media figcaption {
  position: absolute; bottom: 20px; left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(15,14,12,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border: 1px solid rgba(245,239,230,0.15);
  border-radius: 1px;
}

.feature__text { max-width: 520px; }
.feature__text p { color: rgba(245,239,230,0.78); margin: 24px 0 28px; font-size: var(--text-base); line-height: 1.7; }
.feature__list {
  display: grid;
  gap: 12px;
  margin: 0; padding: 0;
}
.feature__list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  color: rgba(245,239,230,0.85);
  letter-spacing: 0.01em;
}
.feature__list li:last-child { border-bottom: 1px solid var(--line); }
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature--right .feature__media { order: 0; }
  .feature--right .feature__text  { order: 1; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  padding: var(--section-y) var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.am-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.am {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.am:hover { background: rgba(201, 169, 97, 0.04); }
.am svg {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform .5s var(--ease);
}
.am:hover svg { transform: translateY(-3px); }
.am h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.am p {
  font-size: var(--text-sm);
  color: rgba(245,239,230,0.6);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) { .am-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .am-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--section-y) var(--gutter);
  background: var(--bg);
}
.loc-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.loc-map {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.loc-map::before {
  content: "Kansas City, MO";
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 1;
}
.map-svg { width: 100%; height: 100%; }

.loc-list { font-size: var(--text-base); }
.loc-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
}
.loc-list li:first-child { border-top: 1px solid var(--line); }
.loc-list__name { flex-shrink: 0; }
.loc-list__dots {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--line-strong) 33%, transparent 0);
  background-size: 6px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.loc-list__dist {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-list li { font-size: 18px; padding: 18px 0; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.book {
  padding: var(--section-y) var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.book-form {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.book-form__main {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 2px;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.bf-row:last-child, .bf-row > .bf-field:only-child { grid-template-columns: 1fr; }
.bf-field {
  display: flex; flex-direction: column;
}
.bf-field label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.bf-field .opt { color: rgba(245,239,230,0.4); font-weight: 400; }
.bf-field input, .bf-field textarea {
  padding: 14px 0;
  font-size: 16px;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease);
  font-family: inherit;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: rgba(245,239,230,0.35); }
.bf-field input:focus, .bf-field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.bf-field textarea { resize: vertical; min-height: 80px; }
.bf-hint {
  font-size: 12px;
  color: rgba(245,239,230,0.45);
  margin: 8px 0 0;
}

/* Stepper */
.stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 1px;
  align-self: flex-start;
}
.stepper__btn {
  width: 44px; height: 44px;
  font-size: 18px;
  color: var(--gold);
  transition: background .3s;
}
.stepper__btn:hover { background: rgba(201,169,97,0.08); }
.stepper__btn:disabled { color: rgba(245,239,230,0.2); cursor: not-allowed; }
.stepper__val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  min-width: 64px;
  text-align: center;
  color: var(--cream);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 8px 0;
}

@media (max-width: 600px) {
  .bf-row { grid-template-columns: 1fr; gap: 20px; }
}

/* WC badge */
.wc-badge[hidden] { display: none !important; }
.wc-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 24px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(201,169,97,0.18), rgba(201,169,97,0.05));
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.wc-badge svg { width: 18px; height: 18px; }

/* Summary panel */
.book-form__summary {
  background: var(--bg-3);
  border: 1px solid var(--gold);
  padding: 32px;
  border-radius: 2px;
  position: sticky;
  top: 100px;
}
.summary__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 8px 0 24px;
}
.summary__list { margin-bottom: 24px; }
.summary__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary__lbl { color: rgba(245,239,230,0.75); }
.summary__val { color: var(--cream); font-feature-settings: "tnum"; }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 0 24px;
  margin-bottom: 20px;
  border-top: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
}
.summary__total span:last-child { font-feature-settings: "tnum"; }
.summary__note {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.45);
  margin: 14px 0 0;
}

@media (max-width: 900px) {
  .book-form { grid-template-columns: 1fr; }
  .book-form__summary { position: static; }
}

/* ============================================================
   QUOTES
   ============================================================ */
.quotes {
  padding: var(--section-y) var(--gutter);
  background: var(--bg);
}
.quotes-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  margin: 0;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-2);
  position: relative;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.quote:hover { border-color: var(--gold); transform: translateY(-4px); }
.quote__mark {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}
.quote blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.quote figcaption {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.quote__name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}
.quote__role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
  margin-top: 6px;
}
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(60px, 8vw, 100px) var(--gutter) 36px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .logo-mark { color: var(--gold); margin-bottom: 24px; }
.footer__name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 12px;
}
.footer__tag {
  font-size: 13px;
  color: rgba(245,239,230,0.55);
  letter-spacing: 0.04em;
  margin: 0;
}
.footer__tag .dot { color: var(--gold); padding: 0 6px; font-size: 8px; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__h {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__cols a, .footer__cols p {
  display: block;
  font-size: 14px;
  color: rgba(245,239,230,0.75);
  margin: 0 0 8px;
  transition: color .3s;
}
.footer__cols a:hover { color: var(--cream); }
.footer__addr { font-size: 13px; color: rgba(245,239,230,0.5) !important; margin-top: 12px !important; }

.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(245,239,230,0.7);
  transition: border-color .3s, color .3s;
  margin: 0;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials a svg { width: 20px; height: 20px; }

.footer__bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245,239,230,0.4);
  letter-spacing: 0.04em;
}
.footer__fine { font-size: 11px; letter-spacing: 0.16em; }

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 150;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--gutter);
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15,14,12,0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn .4s var(--ease);
}
.modal__panel {
  position: relative;
  max-width: 540px; width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  padding: 48px 36px;
  text-align: center;
  border-radius: 2px;
  animation: panelIn .6s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute; top: 14px; right: 18px;
  width: 36px; height: 36px;
  font-size: 24px; color: var(--cream);
  opacity: 0.6;
  transition: opacity .3s;
}
.modal__close:hover { opacity: 1; }
.modal__seal {
  width: 64px; height: 64px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.modal__lede {
  color: rgba(245,239,230,0.75);
  margin: 16px 0 24px;
}
.modal__summary {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 20px;
  margin: 0 0 24px;
  font-size: 14px;
}
.modal__summary > div {
  display: flex; justify-content: space-between;
  padding: 6px 0;
}
.modal__summary > div + div { border-top: 1px solid var(--line); }
.modal__summary span:first-child { color: rgba(245,239,230,0.6); }

/* ============================================================
   REVEALS
   ============================================================ */
.reveal, .reveal-img, [data-stagger], [data-split] {
  opacity: 0;
}
.reveal {
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-img {
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal-img.is-in { opacity: 1; transform: translateY(0); }
.reveal-img { overflow: hidden; }
.reveal-img > img { transition: opacity 1.2s var(--ease); }

[data-stagger].is-in { opacity: 1; }
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  filter: blur(8px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
}
.split-word.is-in {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

/* Stagger delays */
.reveal[data-d="1"] { transition-delay: .05s; }
.reveal[data-d="2"] { transition-delay: .15s; }
.reveal[data-d="3"] { transition-delay: .25s; }
.reveal[data-d="4"] { transition-delay: .35s; }

/* ============================================================
   FLATPICKR — dark editorial override
   ============================================================ */
.flatpickr-calendar {
  background: var(--bg-2) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  border-radius: 2px !important;
  font-family: var(--sans) !important;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after { border-bottom-color: var(--gold) !important; }
.flatpickr-months .flatpickr-month {
  color: var(--cream) !important;
  fill: var(--cream) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--cream) !important;
  font-family: var(--serif) !important;
  font-size: 16px !important;
}
.flatpickr-weekday {
  color: var(--gold) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}
.flatpickr-day {
  color: var(--cream) !important;
  border-radius: 1px !important;
  border-color: transparent !important;
}
.flatpickr-day:hover {
  background: rgba(201,169,97,0.15) !important;
  border-color: rgba(201,169,97,0.3) !important;
}
.flatpickr-day.today {
  border-color: var(--gold) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.endRange {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-color: var(--gold) !important;
}
.flatpickr-day.inRange {
  background: rgba(201,169,97,0.2) !important;
  border-color: transparent !important;
  box-shadow: -5px 0 0 rgba(201,169,97,0.2), 5px 0 0 rgba(201,169,97,0.2) !important;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(245,239,230,0.2) !important;
}
.flatpickr-prev-month, .flatpickr-next-month { fill: var(--gold) !important; color: var(--gold) !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: currentColor !important; }
.flatpickr-current-month .numInputWrapper span.arrowUp::after { border-bottom-color: var(--gold) !important; }
.flatpickr-current-month .numInputWrapper span.arrowDown::after { border-top-color: var(--gold) !important; }
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: rgba(245,239,230,0.3) !important; }
