/* ============================================================
   Grant Gables Venue — design system
   Editorial luxury: Fraunces display serif + Outfit body,
   warm copper/cream/forest palette, layered tinted shadows.
   ============================================================ */

:root {
  /* Ink + neutrals (single warm gray family) */
  --ink: #221610;
  --ink-2: #41342a;
  --muted: #5f5246;
  --muted-2: #6f6052;

  /* Surfaces */
  --paper: #faf6ee;
  --paper-bright: #fffdf7;
  --cream: #f3ebdd;
  --cream-2: #ece1cd;
  --deep: #191009;
  --deep-2: #241710;
  --forest: #2c443a;
  --forest-deep: #20342c;
  --white: #ffffff;

  /* Accent — one copper accent, derived shades */
  --brand: #a6611e;
  --brand-dark: #7e4513;
  --brand-deepest: #5e3208;
  --brand-amber: #e2b077;   /* eyebrow/accent on dark surfaces only */
  --brand-tint: #f0e2cc;

  /* Lines */
  --line: #e6dac6;
  --line-soft: #eee4d3;

  /* Layered, warm-tinted shadows */
  --shadow-sm: 0 1px 2px rgba(34, 22, 16, .05), 0 3px 10px rgba(34, 22, 16, .05);
  --shadow-md: 0 2px 6px rgba(34, 22, 16, .05), 0 16px 38px -14px rgba(34, 22, 16, .2);
  --shadow-lg: 0 4px 12px rgba(34, 22, 16, .06), 0 34px 80px -26px rgba(34, 22, 16, .32);

  /* Radii scale: soft outer, tighter inner */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-bezel: 26px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --speed: .45s;

  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brand-tint); color: var(--brand-deepest); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin: 0; }
p { color: var(--muted); text-wrap: pretty; }
strong { color: var(--ink); }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Film grain — fixed, decorative, never on scrolling containers */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--paper-bright);
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 14px; }

:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ Typography ============ */
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
  font-variation-settings: "opsz" 100;
}

h1 { font-size: clamp(40px, 6.4vw, 76px); margin-bottom: 20px; }
h2 { font-size: clamp(30px, 4vw, 50px); }
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; }

.lead { font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.65; }

em, .accent-italic { font-style: italic; font-variation-settings: "opsz" 110; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brand);
  flex: 0 0 auto;
}

.section-dark .eyebrow, .hero .eyebrow, .cta-band .eyebrow, .page-hero-dark .eyebrow { color: var(--brand-amber); }
.section-dark .eyebrow::before, .hero .eyebrow::before, .cta-band .eyebrow::before { background: var(--brand-amber); }

/* ============ Header / nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, .92);
  border-bottom: 1px solid rgba(230, 218, 198, .8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: env(safe-area-inset-top);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  color: var(--paper-bright);
  background:
    radial-gradient(120% 120% at 20% 15%, #c07a31 0%, var(--brand) 45%, var(--brand-dark) 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .35), var(--shadow-sm);
  font-size: 17px;
  font-weight: 560;
}

.brand small {
  display: block;
  color: var(--muted-2);
  font-family: "Outfit", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links > a:not(.btn) {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color .25s var(--ease);
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links > a:not(.btn):hover { color: var(--brand-dark); }
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav-links a[aria-current="page"] { color: var(--brand-dark); font-weight: 600; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.8px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-primary {
  background: linear-gradient(180deg, #b26a23, var(--brand) 55%, #9a5717);
  color: var(--paper-bright);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 26px -10px rgba(126, 69, 19, .55);
}
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 16px 34px -12px rgba(126, 69, 19, .65); }

.btn-secondary {
  background: var(--paper-bright);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }

.btn-light {
  background: rgba(255, 253, 247, .14);
  border-color: rgba(255, 253, 247, .38);
  color: var(--paper-bright);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-light:hover { background: rgba(255, 253, 247, .24); }

.btn-solid-light {
  background: var(--paper-bright);
  color: var(--brand-deepest);
  box-shadow: 0 14px 32px -12px rgba(0, 0, 0, .45);
}

/* Button-in-button arrow chip */
.btn .arrow {
  width: 26px;
  height: 26px;
  margin-right: -8px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.btn-secondary .arrow { background: var(--brand-tint); color: var(--brand-dark); }
.btn-solid-light .arrow { background: var(--brand-tint); color: var(--brand-deepest); }
.btn:hover .arrow { transform: translate(2px, -1px); }

/* ============ Hero (home) ============ */
.hero {
  position: relative;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

/* Cinematic scroll-stage: tall section with a pinned stage the scroll scrubs through */
.hero.is-cinematic { height: 520vh; }
.hero.is-cinematic .hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 0;
}

.hero-stage > .wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  margin: 0;
}

.hero-stage > .stat-strip { position: relative; z-index: 2; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 22s var(--ease) forwards;
  transform-origin: 60% 40%;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--deep);
}

@keyframes heroDrift {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(18, 10, 5, .86) 0%, rgba(18, 10, 5, .48) 30%, rgba(18, 10, 5, .08) 68%, rgba(18, 10, 5, .24) 100%),
    linear-gradient(100deg, rgba(18, 10, 5, .7) 0%, rgba(18, 10, 5, .24) 48%, rgba(18, 10, 5, 0) 78%);
}

/* Approach darken — intensifies as the camera nears the fountain (JS sets --approach) */
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(125% 85% at 50% 58%, transparent 38%, rgba(18, 10, 5, .55) 100%),
    linear-gradient(to top, rgba(18, 10, 5, .5), transparent 55%);
  opacity: var(--approach, 0);
  transition: opacity .12s linear;
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 126px;
  z-index: 4;
  padding: 0;
  width: min(560px, calc(100vw - 34px));
  max-width: none;
  color: var(--paper-bright);
  will-change: transform, opacity;
}

.hero-content[data-ribbon-side="right"] {
  left: auto;
  right: 0;
}

.hero-content[data-ribbon-side="center"] {
  left: 50%;
  right: auto;
  width: min(720px, calc(100vw - 48px));
  text-align: center;
}

.hero-content[data-ribbon-placement="high"] {
  top: 132px;
  bottom: auto;
}

.hero-content[data-ribbon-placement="mid"] {
  top: 38%;
  bottom: auto;
}

.hero-content[data-ribbon-placement="low"] {
  bottom: 126px;
}

.hero-content[data-ribbon-placement="center"] {
  top: 50%;
  bottom: auto;
}

.hero h1 { margin-bottom: 18px; color: var(--paper-bright); }

.hero .lead {
  max-width: 620px;
  color: rgba(255, 250, 240, .9);
}

.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ============ Hero greeting widget ============ */
.welcome-card {
  position: relative;
  max-width: none;
  padding: 18px 34px 19px 26px;
  overflow: hidden;
  background:
    radial-gradient(140% 110% at 10% 0%, rgba(255, 253, 247, .24), rgba(255, 253, 247, 0) 46%),
    linear-gradient(105deg, rgba(32, 19, 11, .68), rgba(72, 42, 20, .46) 58%, rgba(166, 97, 30, .34));
  border: 1px solid rgba(255, 253, 247, .28);
  border-left: 0;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    inset 0 -1px 0 rgba(255, 255, 255, .08),
    0 26px 70px -34px rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(22px) saturate(145%) contrast(105%);
  backdrop-filter: blur(22px) saturate(145%) contrast(105%);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .42);
  animation: cardArrive 1s var(--ease) both;
  transition: transform .42s var(--ease), opacity .34s var(--ease);
}

.welcome-card::before {
  content: "";
  position: absolute;
  inset: 1px 32px 1px 1px;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .08) 22%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(90% 80% at 18% 0%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 62%);
  opacity: .72;
  pointer-events: none;
}

.welcome-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 38px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-amber), rgba(255, 250, 240, .7), transparent);
  pointer-events: none;
}

.welcome-card[data-ribbon-side="right"] {
  padding: 18px 26px 19px 34px;
  text-align: right;
  background:
    radial-gradient(140% 110% at 90% 0%, rgba(255, 253, 247, .24), rgba(255, 253, 247, 0) 46%),
    linear-gradient(255deg, rgba(32, 19, 11, .68), rgba(72, 42, 20, .46) 58%, rgba(166, 97, 30, .34));
  border-left: 1px solid rgba(255, 250, 240, .18);
  border-right: 0;
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 34px 100%, 0 50%);
}

.welcome-card[data-ribbon-side="right"]::before {
  inset: 1px 1px 1px 32px;
  background:
    linear-gradient(240deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .08) 22%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(90% 80% at 82% 0%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 62%);
}

.welcome-card[data-ribbon-side="right"]::after {
  left: 38px;
  right: 0;
  background: linear-gradient(270deg, var(--brand-amber), rgba(255, 250, 240, .7), transparent);
}

.welcome-card[data-ribbon-side="center"] {
  padding: 34px 42px 36px;
  text-align: center;
  clip-path: none;
  border: 1px solid rgba(255, 253, 247, .34);
  border-radius: 8px;
  background:
    radial-gradient(110% 100% at 50% -10%, rgba(255, 253, 247, .26), rgba(255, 253, 247, 0) 44%),
    linear-gradient(145deg, rgba(255, 253, 247, .14), rgba(255, 253, 247, .06) 38%, rgba(166, 97, 30, .16)),
    rgba(24, 14, 9, .36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 0 34px rgba(255, 255, 255, .06),
    0 34px 90px -34px rgba(0, 0, 0, .82);
}

.welcome-card[data-ribbon-side="center"]::before {
  inset: 1px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08) 24%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(72% 70% at 50% 0%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 70%);
}

.welcome-card[data-ribbon-side="center"]::after {
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, .62), transparent);
}

.welcome-card > * { position: relative; z-index: 1; opacity: 0; animation: heroRise .8s var(--ease) forwards; }
.welcome-card > :nth-child(1) { animation-delay: .26s; }
.welcome-card > :nth-child(2) { animation-delay: .38s; }
.welcome-card > :nth-child(3) { animation-delay: .50s; }
.welcome-card > :nth-child(4) { animation-delay: .62s; }
.welcome-card > :nth-child(5) { animation-delay: .74s; }
.welcome-card > :nth-child(6) { animation-delay: .86s; }

@keyframes cardArrive {
  from { opacity: 0; transform: translateY(34px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.welcome-card h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4.6vw, 58px);
}
.welcome-card .lead {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(15.5px, 1.35vw, 17px);
  line-height: 1.52;
}
.welcome-card[data-ribbon-side="right"] .lead,
.welcome-card[data-ribbon-side="right"] .hero-fact {
  margin-left: auto;
}

.welcome-card[data-ribbon-side="center"] .welcome-kicker,
.welcome-card[data-ribbon-side="center"] .hero-ribbons {
  justify-content: center;
}

.welcome-card[data-ribbon-side="center"] .lead,
.welcome-card[data-ribbon-side="center"] .hero-fact {
  margin-left: auto;
  margin-right: auto;
}
.hero-ribbons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 0;
  width: auto;
  max-width: min(520px, calc(100vw - 28px));
  pointer-events: auto;
}

.hero-ribbons .btn {
  position: relative;
  min-height: 38px;
  justify-content: flex-start;
  padding: 9px 19px 9px 16px;
  font-size: 12.75px;
  border-radius: 0;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, .72);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 10px 50%);
  overflow: visible;
  isolation: isolate;
}

.hero-ribbons .btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 10px 50%);
  background: inherit;
  border: inherit;
  box-shadow: inherit;
}

.hero-ribbons .btn::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 24px;
  bottom: 7px;
  height: 1px;
  background: rgba(255, 250, 240, .34);
  opacity: .7;
}

.hero-ribbons .btn-light {
  background: rgba(255, 253, 247, .1);
  min-height: 31px;
  padding: 7px 16px 7px 13px;
  font-size: 11.75px;
}

.hero-ribbons .btn .arrow {
  width: 19px;
  height: 19px;
  margin-right: -6px;
  font-size: 11px;
}

.hero-ribbons[data-ribbon-side="right"] {
  align-items: flex-end;
  margin-left: auto;
}

.hero-ribbons[data-ribbon-side="right"] .btn {
  justify-content: flex-end;
  padding: 9px 16px 9px 19px;
  clip-path: polygon(18px 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 18px 100%, 0 50%);
}

.hero-ribbons[data-ribbon-side="right"] .btn::before {
  clip-path: polygon(18px 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 18px 100%, 0 50%);
}

.hero-ribbons[data-ribbon-side="right"] .btn::after {
  left: 24px;
  right: 10px;
}

.hero-ribbons[data-ribbon-side="right"] .btn-light {
  padding: 7px 13px 7px 16px;
}

.hero-ribbons[data-ribbon-side="center"] {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-ribbons[data-ribbon-side="center"] .btn {
  clip-path: none;
  border-radius: var(--r-pill);
  justify-content: center;
}

.hero-ribbons[data-ribbon-side="center"] .btn::before {
  clip-path: none;
  border-radius: inherit;
}

.hero-ribbons[data-ribbon-side="center"] .btn::after {
  display: none;
}

[data-tour-kicker],
[data-tour-title],
[data-tour-copy],
[data-tour-fact],
[data-tour-primary],
[data-tour-secondary] {
  transition: opacity .34s var(--ease), transform .34s var(--ease);
}

[data-tour-primary] {
  transition-delay: .08s;
}

[data-tour-secondary] {
  transition-delay: .16s;
}

.welcome-card.is-switching [data-tour-kicker],
.welcome-card.is-switching [data-tour-title],
.welcome-card.is-switching [data-tour-copy],
.welcome-card.is-switching [data-tour-fact] {
  opacity: 0;
  transform: translate3d(-38px, 10px, 0);
}

.welcome-card[data-ribbon-side="right"].is-switching [data-tour-kicker],
.welcome-card[data-ribbon-side="right"].is-switching [data-tour-title],
.welcome-card[data-ribbon-side="right"].is-switching [data-tour-copy],
.welcome-card[data-ribbon-side="right"].is-switching [data-tour-fact] {
  transform: translate3d(38px, 10px, 0);
}

.hero-ribbons.is-switching [data-tour-primary],
.hero-ribbons.is-switching [data-tour-secondary] {
  opacity: 0;
  transition-delay: 0s;
}

.hero-ribbons.is-switching [data-tour-primary] {
  transform: translate3d(-62px, 16px, 0) scale(.96);
}

.hero-ribbons.is-switching [data-tour-secondary] {
  transform: translate3d(-42px, 16px, 0) scale(.96);
}

.hero-ribbons[data-ribbon-side="right"].is-switching [data-tour-primary] {
  transform: translate3d(62px, 16px, 0) scale(.96);
}

.hero-ribbons[data-ribbon-side="right"].is-switching [data-tour-secondary] {
  transform: translate3d(42px, 16px, 0) scale(.96);
}

.hero.is-cinematic .hero-actions .btn {
  transition:
    opacity .34s var(--ease),
    transform .42s var(--ease),
    background .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease),
    color .3s var(--ease);
}

.welcome-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  border-radius: var(--r-pill);
  background: transparent;
  border: 0;
  color: var(--paper-bright);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
}
.welcome-pulse {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-amber);
  box-shadow: 0 0 0 0 rgba(226, 176, 119, .6);
  animation: welcomePulse 2.6s var(--ease) infinite;
}
@keyframes welcomePulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 176, 119, .55); }
  70% { box-shadow: 0 0 0 11px rgba(226, 176, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 176, 119, 0); }
}

.welcome-meta {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, .15);
  color: rgba(255, 250, 240, .66);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .03em;
}

.hero-fact {
  position: relative;
  max-width: 460px;
  margin: -4px 0 18px;
  padding-left: 18px;
  color: rgba(255, 250, 240, .76);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-amber);
  box-shadow: 0 0 0 5px rgba(226, 176, 119, .16);
}

.welcome-card[data-ribbon-side="center"] .hero-fact {
  max-width: 540px;
  padding-left: 0;
}

.welcome-card[data-ribbon-side="center"] .hero-fact::before {
  display: none;
}

.hero-tour-meter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 250, 240, .18);
}

.hero-tour-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--tour-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-amber), var(--paper-bright));
}

/* Scroll cue — fades out on scroll via JS (opacity only) */
.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 124px;
  z-index: 3;
}
.scroll-cue-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  color: rgba(255, 250, 240, .74);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  animation: heroRise 1s var(--ease) .9s both;
  transition: color .3s var(--ease);
}
.scroll-cue-inner:hover { color: var(--paper-bright); }
.scroll-cue-track {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 250, 240, .42);
  border-radius: var(--r-pill);
}
.scroll-cue-dot {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: var(--r-pill);
  background: var(--brand-amber);
  animation: scrollCueDot 1.9s var(--ease) infinite;
}
@keyframes scrollCueDot {
  0% { opacity: 0; transform: translateY(0); }
  28% { opacity: 1; }
  68% { opacity: 1; transform: translateY(13px); }
  100% { opacity: 0; transform: translateY(13px); }
}

@media (max-width: 760px) {
  .hero.is-cinematic { height: 420svh; }
  .welcome-card { max-width: 100%; }
  .scroll-cue { display: none; }
}

/* Stat strip — glass panel */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 250, 240, .22);
  background: rgba(20, 12, 7, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper-bright);
}

.stat-strip > div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 250, 240, .14);
}
.stat-strip > div:last-child { border-right: 0; }

.stat-strip strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper-bright);
}

.stat-strip span {
  color: rgba(255, 250, 240, .72);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============ Sections ============ */
.section { padding: 104px 0 112px; position: relative; }
.section-soft {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(166, 97, 30, .05), transparent 65%),
    var(--cream);
}
.section-dark {
  background:
    radial-gradient(1100px 540px at 15% 8%, rgba(226, 176, 119, .08), transparent 60%),
    radial-gradient(800px 500px at 95% 95%, rgba(44, 68, 58, .35), transparent 65%),
    var(--deep);
  color: var(--paper-bright);
}
.section-dark h2, .section-dark h3 { color: var(--paper-bright); }
.section-dark p { color: rgba(250, 244, 234, .72); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .5fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head p { font-size: 17px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .68fr);
  gap: 64px;
  align-items: center;
}
.split-flip { grid-template-columns: minmax(360px, .68fr) minmax(0, .92fr); }

/* ============ Image frames — double-bezel ============ */
.frame {
  position: relative;
  margin: 0;
  padding: 7px;
  border-radius: var(--r-bezel);
  background: var(--paper-bright);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}

.frame-inner {
  position: relative;
  border-radius: calc(var(--r-bezel) - 7px);
  overflow: hidden;
  background: var(--cream-2);
}

.frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(34, 22, 16, .08), inset 0 1px 1px rgba(255, 255, 255, .25);
  pointer-events: none;
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .9s var(--ease);
}

.frame:hover img { transform: scale(1.045); }

.frame-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(20, 12, 7, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 250, 240, .92);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
}

.section-dark .frame {
  background: rgba(255, 250, 240, .06);
  border-color: rgba(255, 250, 240, .12);
}

/* ============ Editorial numbered feature rows ============ */
.feature-rows { display: grid; }

.feature-row {
  display: grid;
  grid-template-columns: 64px minmax(0, .85fr) minmax(0, 1.4fr) 40px;
  gap: 26px;
  align-items: center;
  padding: 30px 6px;
  border-top: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row:hover { background: rgba(255, 253, 247, .85); }

.feature-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 30px;
  color: var(--brand);
  line-height: 1;
}

.feature-row h3 { font-size: 24px; }
.feature-row p { font-size: 15.5px; }

.feature-go {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  color: var(--brand-dark);
  font-size: 15px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.feature-row:hover .feature-go { background: var(--brand); border-color: var(--brand); color: var(--paper-bright); transform: translateX(4px); }

/* ============ Icon grid (amenities) — borderless tiles ============ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 40px;
}

.icon-tile {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
}

.icon-tile h3 { font-size: 19px; margin-bottom: 6px; }
.icon-tile p { font-size: 15px; line-height: 1.6; }

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--brand-dark);
}
.icon-badge svg { width: 24px; height: 24px; }

/* Inline icon rows (home amenity strip) */
.amenity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.amenity-strip .icon-tile { border-top: 0; padding: 8px 0; }

/* ============ Cards (kept minimal where still used) ============ */
.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--paper-bright);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.card p + p { margin-top: 10px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 15.5px;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  border-radius: var(--r-pill);
  background-color: var(--brand-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e4513' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.section-dark .feature-list li { color: rgba(250, 244, 234, .78); }
.section-dark .feature-list li::before { background-color: rgba(226, 176, 119, .2); }

/* ============ Page hero (subpages) ============ */
.page-hero {
  position: relative;
  padding: 88px 0 84px;
  background:
    radial-gradient(820px 380px at 92% -10%, rgba(166, 97, 30, .09), transparent 60%),
    radial-gradient(620px 320px at -5% 110%, rgba(44, 68, 58, .07), transparent 60%),
    linear-gradient(180deg, var(--paper-bright), var(--paper));
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .55fr);
  gap: 56px;
  align-items: center;
}

.page-hero .lead { font-size: 18px; }
.page-hero h1 { font-size: clamp(36px, 4.6vw, 60px); }

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
}
.crumb a { color: var(--brand-dark); }
.crumb a:hover { text-decoration: underline; }
.crumb span[aria-hidden] { opacity: .5; }

/* ============ Media band ============ */
.media-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.media-band .frame img { aspect-ratio: auto; height: 100%; min-height: 360px; }
.media-band .frame { display: grid; }
.media-band .frame-inner { display: grid; }

/* ============ Price panels ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 36px 34px;
  border-radius: var(--r-bezel);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.price-panel.featured {
  border-color: rgba(166, 97, 30, .45);
  box-shadow: 0 4px 12px rgba(126, 69, 19, .08), 0 34px 80px -26px rgba(126, 69, 19, .35);
}

.price-panel .tag {
  position: absolute;
  top: -14px;
  left: 32px;
}

.price-panel h2, .price-panel h3 { font-size: 27px; margin: 6px 0 4px; }

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 540;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  line-height: 1;
}

.price span {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-2);
}

.price-panel .section-actions { margin-top: auto; padding-top: 26px; }

.section-dark .price-panel {
  background: rgba(255, 250, 240, .045);
  border-color: rgba(255, 250, 240, .14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), var(--shadow-lg);
}
.section-dark .price-panel.featured { border-color: rgba(226, 176, 119, .5); }
.section-dark .price { color: var(--brand-amber); }
.section-dark .price span { color: rgba(250, 244, 234, .6); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-pill);
  padding: 7px 14px;
  background: var(--forest);
  color: #e9f1ec;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: var(--shadow-sm);
}
.tag-copper { background: var(--brand-dark); color: var(--brand-tint); }

/* ============ Quote band ============ */
.quote-band { text-align: center; padding: 96px 0; }

.quote-band blockquote {
  margin: 0 auto;
  max-width: 820px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 480;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.quote-band .quote-mark {
  display: block;
  margin: 0 auto 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 84px;
  line-height: .6;
  color: var(--brand);
  opacity: .55;
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted-2);
}

/* ============ Zig-zag space rows ============ */
.space-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.space-row:first-child { border-top: 0; padding-top: 0; }
.space-row:nth-child(even) .space-media { order: 2; }
.space-row h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.space-row p { max-width: 56ch; }

.space-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .02em;
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-2);
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 5, .35), transparent 45%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

.wide { grid-column: span 2; }
.tall { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(14, 8, 4, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

.lightbox.open { display: grid; }

.lightbox figure { margin: 0; display: grid; gap: 14px; justify-items: center; }

.lightbox img {
  max-height: 82vh;
  max-width: min(1100px, 92vw);
  width: auto;
  border-radius: var(--r-md);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

.lightbox figcaption { color: rgba(255, 250, 240, .75); font-size: 14px; }

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 250, 240, .3);
  background: rgba(255, 250, 240, .08);
  color: var(--paper-bright);
  font-size: 20px;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox-close:hover { background: rgba(255, 250, 240, .18); transform: rotate(90deg); }

/* ============ Reviews ============ */
.review-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.review-card {
  position: relative;
  padding: 34px 32px 28px;
  border-radius: var(--r-lg);
  background: var(--paper-bright);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card .quote-mark {
  position: absolute;
  top: 16px;
  right: 26px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--brand-tint);
}

.review-card blockquote {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
}

.review-card .who {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-2);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--brand);
}
.stars svg { width: 16px; height: 16px; }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 6px;
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-dark); }

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--brand-dark);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper-bright);
}

.faq-item p { padding: 0 56px 26px 6px; max-width: 75ch; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, .8fr);
  gap: 56px;
  align-items: start;
}

.contact-rail { display: grid; gap: 4px; }

.contact-line {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}
.contact-line:first-child { border-top: 0; }
.contact-line h3 { font-size: 18px; margin-bottom: 4px; }
.contact-line p { font-size: 15.5px; }
.contact-line a:hover { color: var(--brand-dark); text-decoration: underline; }

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-bezel);
  background: var(--paper-bright);
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
}

.form-panel h2 { font-size: 28px; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 15.5px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(166, 97, 30, .15);
}

textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }

.form-status { margin-top: 16px; font-weight: 600; color: var(--forest); }
.form-status a { color: var(--brand-dark); text-decoration: underline; }

.map-frame {
  margin-top: 26px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(226, 176, 119, .12), transparent 60%),
    linear-gradient(160deg, var(--forest), var(--forest-deep));
  color: var(--paper-bright);
  overflow: hidden;
}

.cta-band h2 { color: var(--paper-bright); }
.cta-band p { color: rgba(250, 244, 234, .75); max-width: 52ch; }

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

/* ============ Journey — multi-step CTA sequence ============ */
.journey-track {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.journey-thread {
  position: absolute;
  top: 28px;
  bottom: 30px;
  left: 27px;
  width: 2px;
  border-radius: 2px;
  background: rgba(226, 176, 119, .16);
  overflow: hidden;
}
.journey-thread-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-amber), #c98a3f);
  box-shadow: 0 0 12px rgba(226, 176, 119, .5);
  transition: height .2s linear;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.journey-node {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep-2);
  border: 1.5px solid rgba(226, 176, 119, .32);
  color: var(--brand-amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: border-color .6s var(--ease), box-shadow .6s var(--ease), transform .6s var(--ease);
}
.journey-step.in .journey-node {
  border-color: var(--brand-amber);
  box-shadow: 0 0 0 5px rgba(226, 176, 119, .08), 0 10px 30px -8px rgba(226, 176, 119, .45);
}

.journey-card {
  padding: 22px 26px 24px;
  border-radius: var(--r-lg);
  background: rgba(255, 250, 240, .045);
  border: 1px solid rgba(255, 250, 240, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.journey-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 176, 119, .42);
  background: rgba(255, 250, 240, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 22px 46px -22px rgba(0, 0, 0, .55);
}
.journey-card h3 { color: var(--paper-bright); margin-bottom: 8px; }
.journey-card p { color: rgba(250, 244, 234, .72); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }

.journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-amber);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .01em;
  transition: color .3s var(--ease);
}
.journey-cta .arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: var(--r-pill);
  background: rgba(226, 176, 119, .16);
  font-size: 12px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.journey-cta:hover { color: var(--paper-bright); }
.journey-card:hover .journey-cta .arrow { transform: translate(3px, -1px); background: rgba(226, 176, 119, .28); }

.journey-end {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  color: rgba(250, 244, 234, .58);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.journey-end-arrow {
  display: grid;
  place-items: center;
  width: 56px;
  color: var(--brand-amber);
  font-size: 20px;
  animation: journeyBob 1.8s var(--ease) infinite;
}
@keyframes journeyBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 600px) {
  .journey-step, .journey-end { grid-template-columns: 46px minmax(0, 1fr); gap: 16px; }
  .journey-node { width: 46px; height: 46px; font-size: 15px; }
  .journey-end-arrow { width: 46px; }
  .journey-thread { left: 22px; }
  .journey-card { padding: 18px 20px 20px; }
}

/* ============ Footer ============ */
footer {
  padding: 72px 0 0;
  background: var(--deep);
  color: rgba(250, 244, 234, .75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .9fr;
  gap: 40px;
  padding-bottom: 48px;
}

footer h3 {
  color: var(--paper-bright);
  font-size: 17px;
  margin-bottom: 14px;
}

.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-brand p { font-size: 15px; }

footer p, footer a { color: rgba(250, 244, 234, .68); }
footer a { transition: color .25s var(--ease); }
footer a:hover { color: var(--paper-bright); }

.footer-links { display: grid; gap: 9px; font-size: 15px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 244, 234, .12);
  padding: 22px 0 calc(26px + env(safe-area-inset-bottom));
}

.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(250, 244, 234, .45);
}

/* ============ Mobile sticky CTA ============ */
.mobile-cta { display: none; }

/* ============ Utilities ============ */
.u-gap-top { margin-top: 16px; }
.flat-hero .hero-stage { min-height: 680px; }
.form-note { margin: 8px 0 22px; font-size: 15px; }

/* ============ 404 ============ */
.notfound {
  min-height: calc(82svh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}
.notfound .section-actions { justify-content: center; }
.notfound .display-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(72px, 14vw, 150px);
  line-height: 1;
  color: var(--brand-tint);
  -webkit-text-stroke: 1.5px var(--brand);
}

/* ============ Reveal-on-scroll ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .feature-row { grid-template-columns: 48px 1fr 40px; }
  .feature-row p { grid-column: 2; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 32px; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 26px;
    background: var(--paper-bright);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }

  .nav-links > a:not(.btn) {
    padding: 15px 2px;
    font-size: 17px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links > a:not(.btn)::after { display: none; }

  .nav-links .btn { width: 100%; margin-top: 18px; }
}

@media (max-width: 920px) {
  .section { padding: 76px 0 84px; }
  .section-head, .split, .split-flip, .page-hero .wrap, .contact-grid, .media-band, .price-grid, .review-wall { grid-template-columns: 1fr; }
  .split-flip .frame { order: -1; }
  .space-row { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .space-row:nth-child(even) .space-media { order: -1; }
  .space-media { order: -1; }
  .section-head { gap: 14px; margin-bottom: 40px; }
  .split, .split-flip { gap: 36px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .amenity-strip { grid-template-columns: 1fr; gap: 8px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div:nth-child(2n) { border-right: 0; }
  .stat-strip > div { border-bottom: 1px solid rgba(255, 250, 240, .12); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .wrap { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 36px); }

  h1 { font-size: clamp(31px, 8.2vw, 40px); }
  h2 { font-size: clamp(24px, 6.6vw, 31px); }

  .hero-stage { min-height: calc(100svh - 72px); }
  .hero.is-cinematic .hero-stage { height: 100svh; }
  .hero-content {
    bottom: 190px;
    width: min(440px, calc(100vw - 16px));
    padding: 0;
  }
  .hero-content[data-ribbon-placement="high"] {
    top: 96px;
    bottom: auto;
  }
  .hero-content[data-ribbon-placement="mid"] {
    top: 36%;
    bottom: auto;
  }
  .hero-content[data-ribbon-placement="low"] {
    top: auto;
    bottom: 210px;
    transform: none;
  }
  .hero-content[data-ribbon-side="right"] { right: 0; }
  .hero-content[data-ribbon-side="center"] {
    left: 50%;
    width: min(430px, calc(100vw - 28px));
  }
  .hero-content[data-ribbon-placement="center"] {
    top: 48%;
    bottom: auto;
  }
  .welcome-card {
    padding: 13px 28px 14px 16px;
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%);
  }
  .welcome-card[data-ribbon-side="right"] {
    padding: 13px 16px 14px 28px;
    clip-path: polygon(26px 0, 100% 0, 100% 100%, 26px 100%, 0 50%);
  }
  .welcome-card[data-ribbon-side="center"] {
    padding: 17px 18px 18px;
    clip-path: none;
    border-radius: 8px;
  }
  .welcome-card h1 {
    margin-bottom: 6px;
    font-size: clamp(25px, 6.4vw, 32px);
  }
  .welcome-card[data-ribbon-side="center"] h1 {
    font-size: clamp(27px, 7vw, 34px);
  }
  .welcome-card .lead {
    margin-bottom: 9px;
    font-size: 13.5px;
    line-height: 1.36;
  }
  .welcome-card[data-ribbon-side="center"] .lead {
    max-width: 36ch;
    font-size: 13.25px;
  }
  .hero-fact {
    margin-bottom: 10px;
    padding-left: 14px;
    font-size: 11.75px;
    line-height: 1.32;
  }
  .hero-fact::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(226, 176, 119, .16);
  }
  .welcome-meta { display: none; }
  .hero .hero-actions {
    gap: 7px;
    margin-top: 20px;
  }
  .hero-ribbons {
    bottom: auto;
    max-width: 100%;
  }
  .hero-ribbons[data-ribbon-side="center"] {
    flex-direction: column;
    gap: 7px;
  }
  .hero .hero-actions .btn {
    width: auto;
    min-height: 30px;
    padding: 7px 15px 7px 12px;
    font-size: 11.5px;
    line-height: 1;
  }
  .hero .hero-ribbons[data-ribbon-side="right"] .btn {
    padding: 7px 12px 7px 15px;
  }
  .hero .hero-actions .btn-light {
    min-height: 27px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 10.75px;
  }
  .hero .hero-actions .btn .arrow {
    width: 16px;
    height: 16px;
    margin-right: -5px;
    font-size: 9px;
  }

  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div { padding: 16px 16px; min-width: 0; }
  .stat-strip strong { font-size: 22px; }
  .stat-strip span { font-size: 10.5px; letter-spacing: .06em; }

  .section { padding: 64px 0 72px; }
  .page-hero { padding: 60px 0 56px; }

  .feature-row { grid-template-columns: 1fr; gap: 8px; padding: 26px 2px; }
  .feature-num { font-size: 24px; }
  .feature-go { display: none; }

  .icon-grid { grid-template-columns: 1fr; gap: 0; }

  .price-panel { padding: 32px 26px 28px; }
  .price { font-size: 44px; }

  .field-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 28px 22px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .wide, .tall { grid-column: auto; grid-row: auto; }

  .faq-item summary { font-size: 17.5px; }
  .faq-item p { padding-right: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 253, 247, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 40px rgba(34, 22, 16, .12);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-cta a {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15.5px;
    transition: background .25s var(--ease);
  }

  .mobile-cta a:first-child { color: var(--brand-dark); }
  .mobile-cta a:first-child:active { background: var(--cream); }
  .mobile-cta a:last-child {
    background: linear-gradient(180deg, #b26a23, var(--brand) 55%, #9a5717);
    color: var(--paper-bright);
  }
  .mobile-cta a:last-child:active { filter: brightness(.95); }
}
