/* ============================================================
   EarthnSoul Wellness & Spa — design system
   Palette: warm ivory, deep moss, sage, antique gold
   Type: Fraunces (display) + Jost (UI/body)
   ============================================================ */

:root {
  --ivory: #f8f4ec;
  --cream: #f1eadd;
  --sand: #e6dcc8;
  --moss: #3d4130;
  --moss-deep: #2b2e20;
  --moss-soft: #4c523a;
  --sage: #8b9474;
  --gold: #b3894d;
  --gold-soft: #cfa96b;
  --gold-text: #7a5c30;
  --ink: #262b23;
  --ink-soft: #5c6153;
  --white: #fffdf8;
  --shadow: 0 20px 60px rgba(38, 43, 35, 0.14);
  --shadow-sm: 0 8px 28px rgba(38, 43, 35, 0.1);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

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

body {
  font-family: "Jost", "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.serif-i { font-style: italic; font-weight: 300; color: var(--gold-text); }
.dark .serif-i { color: var(--gold-soft); }

/* ---------- scroll progress + intro veil ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 1200; transition: width 0.1s linear;
}
#veil {
  position: fixed; inset: 0; z-index: 2000; background: var(--moss-deep);
  display: grid; place-items: center; color: var(--cream);
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#veil.gone { opacity: 0; visibility: hidden; }
#veil .veil-logo {
  font-family: "Fraunces", serif; font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 300;
  animation: veilIn 1.1s var(--ease) both;
}
#veil .veil-sub {
  text-align: center; letter-spacing: 0.42em; font-size: 11px;
  text-transform: uppercase; color: var(--gold-soft); margin-top: 14px;
  animation: veilIn 1.1s 0.15s var(--ease) both;
}
@keyframes veilIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- nav ---------- */
section[id], footer[id] { scroll-margin-top: 72px; } /* keep anchored sections clear of the fixed nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1150;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  transition: background 0.45s, box-shadow 0.45s, height 0.45s;
  color: var(--cream);
}
.nav.solid {
  background: rgba(34, 42, 33, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(20, 24, 19, 0.25);
  height: 64px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: "Fraunces", serif; font-size: 20px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 400;
}
.brand-tag { font-size: 9.5px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-soft); }
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 30px); align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.85; position: relative; padding: 6px 0; transition: opacity 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-soft); transition: width 0.35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px;
  letter-spacing: 0.05em; opacity: 0.9; transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold-soft); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-gold {
  background: linear-gradient(135deg, #8f6b39, #a5824c);
  color: #fff; box-shadow: 0 10px 30px rgba(143, 107, 57, 0.4);
}
.btn-gold:hover { box-shadow: 0 16px 40px rgba(179, 137, 77, 0.45); }
.btn-ghost { border-color: rgba(248, 244, 236, 0.5); color: var(--cream); }
.btn-ghost:hover { background: rgba(248, 244, 236, 0.12); border-color: var(--cream); }
.btn-dark { background: var(--moss); color: var(--cream); }
.btn-dark:hover { background: var(--moss-deep); }
.btn-line { border-color: rgba(38, 43, 35, 0.3); color: var(--ink); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.burger {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  position: relative; z-index: 1101;
}
.burger span {
  display: block; height: 1.6px; background: var(--cream); margin: 6px 8px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; background: rgba(34, 42, 33, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  overflow-y: auto; padding: 60px 0;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--cream); font-family: "Fraunces", serif; font-size: clamp(26px, 7vw, 38px);
  padding: 10px; opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu .mm-contact { font-family: "Jost"; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-top: 26px; }

/* ---------- hero (split: copy left, arch video card right) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--white); overflow: hidden; background: var(--moss-deep);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 90% at 85% 15%, rgba(139, 148, 116, 0.22), transparent 65%),
    radial-gradient(60% 70% at 10% 95%, rgba(76, 82, 58, 0.5), transparent 70%),
    linear-gradient(160deg, #363a28 0%, var(--moss-deep) 55%, #24271b 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 60% at 82% 16%, rgba(179, 137, 77, 0.16), transparent 70%),
    radial-gradient(45% 55% at 6% 92%, rgba(138, 150, 120, 0.14), transparent 70%),
    radial-gradient(30% 34% at 60% 80%, rgba(207, 169, 107, 0.08), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2; width: min(1220px, 100%);
  margin: 0 auto; padding: 140px clamp(20px, 5vw, 48px) 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 56px); align-items: center;
}
.hero-visual { position: relative; justify-self: center; will-change: transform; }
.arch-card {
  position: relative; width: clamp(320px, 36vw, 520px); aspect-ratio: 0.8;
  border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(207, 169, 107, 0.35);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.arch-card video { width: 100%; height: 100%; object-fit: cover; }
.arch-outline {
  position: absolute; inset: 0; transform: translate(22px, 22px);
  border: 1px solid rgba(207, 169, 107, 0.4);
  border-radius: 26px; pointer-events: none;
}
.hero-badge {
  position: absolute; left: -34px; bottom: 44px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(34, 42, 33, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(207, 169, 107, 0.4); border-radius: 18px; padding: 13px 19px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), border-color 0.35s;
  animation: badgeFloat 6s ease-in-out infinite;
}
.hero-badge:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.hero-badge .hb-score { font-family: "Fraunces", serif; font-size: 27px; color: var(--gold-soft); letter-spacing: 0.03em; }
.hero-badge .hb-score i { font-style: italic; font-weight: 300; font-size: 19px; }
.hero-badge .hb-sub { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(241, 234, 221, 0.75); line-height: 1.5; }
@keyframes badgeFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hero-leaf {
  position: absolute; top: -8px; right: -30px; color: var(--gold-soft); font-size: 22px; opacity: 0.8;
  animation: leafSpin 14s linear infinite;
}
@keyframes leafSpin { to { rotate: 360deg; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold-soft); }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 72px); font-weight: 350; max-width: 14ch;
  text-wrap: balance;
}
.hero-sub {
  margin-top: 22px; max-width: 54ch; font-size: clamp(15.5px, 1.4vw, 18.5px);
  font-weight: 300; color: rgba(248, 244, 236, 0.88);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248, 244, 236, 0.82);
}
.chip svg { width: 15px; height: 15px; fill: var(--gold-soft); flex: none; }
.scroll-cue {
  position: absolute; right: clamp(20px, 4vw, 44px); bottom: 36px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(248, 244, 236, 0.7); font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* hero headline word-by-word rise (padding keeps g/y descenders from being clipped) */
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero h1 .w > span { display: inline-block; transform: translateY(110%); animation: wordUp 1s var(--ease) forwards; }
@keyframes wordUp { to { transform: none; } }

/* ---------- marquee ---------- */
.marquee {
  background: var(--moss); color: var(--cream); overflow: hidden;
  padding: 16px 0; border-top: 1px solid rgba(207, 169, 107, 0.25); border-bottom: 1px solid rgba(207, 169, 107, 0.25);
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee span {
  font-family: "Fraunces", serif; font-size: 15px; letter-spacing: 0.3em;
  text-transform: uppercase; white-space: nowrap; padding: 0 28px; opacity: 0.85;
}
.marquee i { color: var(--gold-soft); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- shared section scaffolding ---------- */
.section { padding: clamp(72px, 11vw, 130px) clamp(20px, 5vw, 48px); position: relative; }
.wrap { width: min(1200px, 100%); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: 12px;
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.section h2 { font-size: clamp(32px, 4.6vw, 56px); max-width: 20ch; text-wrap: balance; }
.lede { margin-top: 18px; max-width: 60ch; color: var(--ink-soft); font-weight: 300; font-size: 17px; }
.dark { background: var(--moss-deep); color: var(--cream); }
.dark .lede { color: rgba(241, 234, 221, 0.75); }
.dark .eyebrow { color: var(--gold-soft); }
.dark .eyebrow::before { background: var(--gold-soft); }
.cream { background: var(--cream); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal-scale.in { opacity: 1; transform: none; }

/* ---------- pillars / why us ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.why-media { position: relative; }
.why-media .ph-main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.why-media .ph-main img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.4s var(--ease); }
.why-media:hover .ph-main img { transform: scale(1); }
.why-media .ph-float {
  position: absolute; right: -8%; bottom: -10%; width: 46%;
  border-radius: 18px; overflow: hidden; border: 6px solid var(--ivory);
  box-shadow: var(--shadow); aspect-ratio: 1;
}
.why-media .ph-float img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; left: -14px; top: -14px; background: var(--moss); color: var(--cream);
  border-radius: 999px; padding: 14px 20px; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.why-badge b { color: var(--gold-soft); font-weight: 600; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
.pillar {
  background: var(--white); border: 1px solid rgba(38, 43, 35, 0.08); border-radius: 18px;
  padding: 24px 22px; transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: rgba(179, 137, 77, 0.4); }
.pillar .ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(179, 137, 77, 0.14), rgba(138, 150, 120, 0.14));
  margin-bottom: 14px;
}
.pillar .ic svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.pillar h3 { font-size: 19px; margin-bottom: 6px; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(48px, 7vw, 80px); text-align: center; }
.stat { padding: 26px 10px; border-top: 1px solid rgba(38, 43, 35, 0.14); }
.stat .num { font-family: "Fraunces", serif; font-size: clamp(34px, 4vw, 48px); color: var(--moss); }
.stat .num i { font-style: normal; color: var(--gold); font-size: 0.52em; }
.stat .lbl { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* ---------- signature spotlight ---------- */
.signature { overflow: hidden; }
.signature .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.sig-media { position: relative; border-radius: 26px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); aspect-ratio: 4 / 5; }
.sig-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6s ease; }
.signature.in-view .sig-media img { transform: scale(1); }
.sig-media .sig-tag {
  position: absolute; top: 18px; left: 18px; background: rgba(34, 42, 33, 0.75);
  backdrop-filter: blur(8px); color: var(--gold-soft); border: 1px solid rgba(207, 169, 107, 0.4);
  padding: 9px 16px; border-radius: 999px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
}
.sig-benefits { margin: 26px 0 8px; display: grid; gap: 12px; }
.sig-benefits li { display: flex; gap: 14px; align-items: flex-start; font-weight: 300; color: rgba(241, 234, 221, 0.88); }
.sig-benefits li::before {
  content: "✦"; color: var(--gold-soft); font-size: 13px; line-height: 1.9; flex: none;
}
.sig-price-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 30px; }
.price-pill {
  border: 1px solid rgba(207, 169, 107, 0.45); border-radius: 16px; padding: 14px 22px;
  display: flex; flex-direction: column; gap: 2px; min-width: 128px;
  transition: background 0.35s, transform 0.35s var(--ease);
}
.price-pill:hover { background: rgba(207, 169, 107, 0.1); transform: translateY(-3px); }
.price-pill .dur { font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(241, 234, 221, 0.65); }
.price-pill .amt { font-family: "Fraunces", serif; font-size: 26px; color: var(--gold-soft); }

/* ---------- treatments tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 8px; }
.tab {
  padding: 12px 22px; border-radius: 999px; border: 1px solid rgba(38, 43, 35, 0.2);
  background: transparent; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); transition: all 0.35s var(--ease);
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--moss); border-color: var(--moss); color: var(--cream); }
.tab-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn 0.6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.svc-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(38, 43, 35, 0.08); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-flag {
  position: absolute; top: 14px; left: 14px; background: #8f6b39; color: #fff;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.svc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 21px; }
.svc-body .desc { font-size: 14.5px; color: var(--ink-soft); margin: 10px 0 16px; flex: 1; }
.svc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.svc-meta span {
  font-size: 12.5px; letter-spacing: 0.06em; padding: 7px 13px; border-radius: 999px;
  background: rgba(138, 150, 120, 0.14); color: var(--moss-soft);
}
.svc-meta b { color: var(--gold-text); font-weight: 600; }
.svc-cta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.svc-cta .from { font-family: "Fraunces", serif; font-size: 24px; color: var(--moss); }
.svc-cta .from small { font-family: "Jost"; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); display: block; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); position: relative;
  padding: 12px 0; margin: -12px 0;
}
.link-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- couples ---------- */
.couple { overflow: hidden; }
.couple-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.tier {
  position: relative; border-radius: var(--radius); padding: 0; overflow: hidden;
  background: rgba(248, 244, 236, 0.04); border: 1px solid rgba(241, 234, 221, 0.14);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s;
}
.tier-img { aspect-ratio: 16 / 10; overflow: hidden; flex: none; }
.tier-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tier:hover .tier-img img { transform: scale(1.06); }
.tier-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.tier:hover { transform: translateY(-8px); border-color: rgba(207, 169, 107, 0.5); background: rgba(248, 244, 236, 0.07); }
.tier.hot { border-color: rgba(207, 169, 107, 0.65); background: linear-gradient(180deg, rgba(207, 169, 107, 0.12), rgba(248, 244, 236, 0.04)); }
.tier .hot-flag {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 1;
  background: linear-gradient(135deg, #8f6b39, #a5824c); color: #fff;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px;
  white-space: nowrap;
}
.tier h3 { font-size: 21px; min-height: 2.4em; }
.tier .t-dur { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(241, 234, 221, 0.6); margin-top: 8px; }
.tier .t-price { font-family: "Fraunces", serif; font-size: 44px; color: var(--gold-soft); margin: 14px 0 6px; }
.tier .t-price small { font-size: 16px; color: rgba(241, 234, 221, 0.55); }
.tier p { font-size: 14.5px; font-weight: 300; color: rgba(241, 234, 221, 0.78); flex: 1; margin-bottom: 22px; }
.couple-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.couple-strip .cs { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; }
.couple-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.couple-strip .cs:hover img { transform: scale(1.06); }

/* ---------- journey / your visit ---------- */
.journey-track { position: relative; margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.journey-track::before {
  content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 1px;
  background: rgba(38, 43, 35, 0.15);
}
.step { position: relative; padding-top: 70px; }
.step .n {
  position: absolute; top: 0; left: 0; width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(179, 137, 77, 0.5); color: var(--gold);
  display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 20px;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.step:hover .n { background: var(--gold); color: #fff; transform: scale(1.08); }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }
.step .tip { margin-top: 10px; font-size: 13px; color: var(--gold-text); font-style: italic; }

/* ---------- gallery ---------- */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.g-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 40px;
}
.g-item { border-radius: 16px; overflow: hidden; position: relative; cursor: zoom-in; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 1s; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(34, 42, 33, 0.35); color: var(--cream); font-size: 34px; font-weight: 200;
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500; background: rgba(24, 28, 22, 0.94);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; padding: 4vh 4vw;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.94); transition: transform 0.45s var(--ease);
}
.lightbox.open img { transform: none; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(248, 244, 236, 0.1); border: 1px solid rgba(248, 244, 236, 0.25);
  color: var(--cream); width: 50px; height: 50px; border-radius: 50%; font-size: 20px;
  display: grid; place-items: center; transition: background 0.3s;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(248, 244, 236, 0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- gifts & packages ---------- */
.gift-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: stretch; }
.gift-card-visual {
  position: relative; border-radius: 26px; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow);
}
.gift-card-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gift-card-visual .gc-overlay {
  position: relative; z-index: 1; width: 100%; padding: 34px;
  background: linear-gradient(180deg, transparent, rgba(24, 30, 23, 0.85)); color: var(--cream);
}
.gift-card-visual h3 { font-size: 30px; }
.gift-card-visual p { font-weight: 300; font-size: 15px; color: rgba(241, 234, 221, 0.85); margin: 8px 0 18px; }
.gift-list { display: flex; flex-direction: column; gap: 14px; }
.gift-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--white); border: 1px solid rgba(38, 43, 35, 0.09); border-radius: 16px; padding: 18px 22px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.gift-row:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: rgba(179, 137, 77, 0.4); }
.gift-row .g-name { font-size: 15.5px; font-weight: 500; }
.gift-row .g-sub { font-size: 12.5px; color: var(--ink-soft); }
.gift-row .g-price { font-family: "Fraunces", serif; font-size: 22px; color: var(--gold-text); white-space: nowrap; }
.pack-note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }

/* ---------- testimonials ---------- */
.reviews { overflow: hidden; }
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 12px; background: rgba(248, 244, 236, 0.06);
  border: 1px solid rgba(241, 234, 221, 0.18); padding: 14px 22px; border-radius: 16px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.google-badge:hover { border-color: rgba(207, 169, 107, 0.6); transform: translateY(-3px); }
.google-badge .gb-score { font-family: "Fraunces", serif; font-size: 34px; color: var(--gold-soft); }
.google-badge .gb-stars { color: var(--gold-soft); letter-spacing: 3px; font-size: 14px; }
.google-badge .gb-sub { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(241, 234, 221, 0.6); }
.rev-slider { position: relative; margin-top: 46px; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform 0.7s var(--ease); }
.rev-card { flex: 0 0 100%; padding: 0 4px; }
@media (min-width: 860px) { .rev-card { flex-basis: 50%; padding: 0 12px; } }
.rev-inner {
  background: rgba(248, 244, 236, 0.05); border: 1px solid rgba(241, 234, 221, 0.13);
  border-radius: var(--radius); padding: 36px 32px; height: 100%;
}
.rev-inner .quote-mark { font-family: "Fraunces", serif; font-size: 60px; line-height: 0.6; color: var(--gold-soft); display: block; margin-bottom: 20px; }
.rev-inner p { font-family: "Fraunces", serif; font-size: clamp(17px, 1.6vw, 21px); font-weight: 300; font-style: italic; color: rgba(241, 234, 221, 0.92); }
.rev-inner .who { margin-top: 22px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); }
.rev-nav { display: flex; gap: 12px; margin-top: 30px; }
.rev-btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(241, 234, 221, 0.3);
  background: none; color: var(--cream); display: grid; place-items: center; transition: all 0.35s;
}
.rev-btn:hover { background: var(--gold); border-color: var(--gold); }
.rev-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: stretch; }
.visit-info { display: flex; flex-direction: column; }
.v-block { padding: 22px 0; border-bottom: 1px solid rgba(38, 43, 35, 0.12); }
.v-block:first-of-type { padding-top: 0; }
.v-block .v-lbl { font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 8px; }
.v-block .v-val { font-size: 18px; font-weight: 400; }
.v-block .v-val a { display: inline-block; padding: 6px 0; margin: -6px 0; }
.v-block .v-val a:hover { color: var(--gold-text); }
.v-sub { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.trains { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.train {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 15px; font-family: "Helvetica Neue", Arial, sans-serif;
}
.t-green { background: #00933c; }
.t-orange { background: #ff6319; }
.t-yellow { background: #fccc0a; color: #111; }
.t-purple { background: #b933ad; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.map-frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); min-height: 460px;
  position: relative; background: var(--sand);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(0.82); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; margin: 44px auto 0; }
.faq {
  border-bottom: 1px solid rgba(38, 43, 35, 0.14);
}
.faq summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; cursor: pointer; font-family: "Fraunces", serif; font-size: clamp(18px, 2vw, 22px);
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary .fx {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(38, 43, 35, 0.25);
  display: grid; place-items: center; font-size: 18px; font-family: "Jost"; transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}
.faq[open] summary .fx { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: #fff; }
.faq .faq-a { padding: 0 4px 26px; color: var(--ink-soft); font-weight: 300; max-width: 62ch; }

/* ---------- final cta ---------- */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta .fc-bg { position: absolute; inset: 0; }
.final-cta .fc-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta .fc-bg::after { content: ""; position: absolute; inset: 0; background: rgba(28, 35, 27, 0.78); }
.final-cta .wrap { position: relative; z-index: 1; color: var(--cream); }
.final-cta h2 { margin: 0 auto; font-size: clamp(34px, 5.4vw, 66px); }
.final-cta .lede { margin-left: auto; margin-right: auto; color: rgba(241, 234, 221, 0.8); }
.final-cta .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
footer { position: relative; background: var(--moss-deep); color: rgba(241, 234, 221, 0.8); padding: 70px clamp(20px, 5vw, 48px) 120px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; width: min(1200px, 100%); margin: 0 auto; }
.foot-brand .brand-name { font-size: 24px; color: var(--cream); }
.foot-brand p { font-size: 14px; font-weight: 300; margin-top: 14px; max-width: 34ch; }
.foot-col h3 { font-family: "Jost"; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 500; }
.foot-col a, .foot-col span { display: block; font-size: 14.5px; padding: 8px 0; font-weight: 300; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(241, 234, 221, 0.25);
  display: grid; place-items: center; transition: all 0.35s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom {
  width: min(1200px, 100%); margin: 50px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(241, 234, 221, 0.12); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px; letter-spacing: 0.06em; color: rgba(241, 234, 221, 0.68);
}

/* ---------- mobile action bar ---------- */
.action-bar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 1050;
  display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px;
  background: rgba(34, 42, 33, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(207, 169, 107, 0.3); border-radius: 20px; padding: 10px;
  box-shadow: 0 14px 40px rgba(20, 24, 19, 0.4);
  transform: translateY(120%); transition: transform 0.5s var(--ease);
}
.action-bar.show { transform: none; }
.ab-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 6px; border-radius: 13px; font-size: 12.5px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--cream); background: rgba(248, 244, 236, 0.08);
}
.ab-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; flex: none; }
.ab-btn.book { background: linear-gradient(135deg, #8f6b39, #a5824c); color: #fff; font-weight: 500; }

/* floating desktop book button */
.float-book {
  position: fixed; right: 26px; bottom: calc(26px + env(safe-area-inset-bottom, 0px)); z-index: 1040;
  transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.float-book.show { transform: none; }
.float-book .btn { box-shadow: 0 16px 44px rgba(179, 137, 77, 0.5); }

/* back to top inside footer */
.to-top {
  position: absolute; right: clamp(20px, 5vw, 48px); top: -26px;
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold); border: 0; color: #fff;
  display: grid; place-items: center; transition: transform 0.35s var(--ease), background 0.35s;
}
.to-top:hover { transform: translateY(-5px); background: var(--gold-soft); }
.to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .g-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 96px; padding-bottom: 60px; gap: 32px; }
  .hero-visual { order: -1; margin: 0 auto; }
  .arch-card { width: min(88vw, 400px); }
  .hero h1 { font-size: clamp(34px, 9.4vw, 40px); }
  .hero-badge { left: -16px; bottom: 26px; padding: 10px 15px; }
  .hero-badge .hb-score { font-size: 24px; }
  .hero-leaf { right: -18px; }
  .why-grid, .signature .wrap, .gift-grid, .visit-grid { grid-template-columns: 1fr; }
  .why-media { margin-bottom: clamp(48px, 12vw, 110px); }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tier h3 { min-height: 0; }
  .journey-track { grid-template-columns: 1fr; gap: 34px; }
  .journey-track::before { display: none; }
  .couple-strip { grid-template-columns: 1fr 1fr; }
  .couple-strip .cs:nth-child(3) { display: none; }
  .why-media .ph-float { right: 4px; }
  .sig-media { max-width: 520px; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .svc-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .pillars { grid-template-columns: 1fr; }
  .action-bar { display: grid; }
  .float-book { display: none; }
  .nav-cta .btn { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  footer { padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)); }
  .hero-inner { padding-bottom: 80px; }
}

/* ---------- hero trust line ---------- */
.hero-trust {
  display: flex; align-items: center; gap: 12px; margin-top: 26px;
  font-family: "Fraunces", serif; font-style: italic; font-size: clamp(14.5px, 1.3vw, 17px);
  color: var(--gold-soft);
}
.hero-trust .ht-stars { font-style: normal; font-size: 11px; letter-spacing: 2px; color: var(--gold-soft); }

/* ---------- premium products ---------- */
.prod-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.prod-points { margin-top: 28px; display: grid; gap: 13px; }
.prod-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); font-weight: 300; }
.prod-points li b { color: var(--ink); font-weight: 500; }
.prod-points li::before { content: "✦"; color: var(--gold-text); font-size: 12px; line-height: 2; flex: none; }
.prod-photos { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; gap: 14px; }
.pp { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.pp img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pp:hover img { transform: scale(1.05); }
.pp-main { grid-column: span 2; grid-row: span 1; }
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-photos { grid-auto-rows: 170px; }
}

.brand-strip {
  margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: "Fraunces", serif; font-size: clamp(17px, 1.8vw, 22px); letter-spacing: 0.26em;
  color: var(--moss);
}
.brand-strip i { color: var(--gold-text); font-style: normal; }

/* ---------- westin partner band ---------- */
.westin { padding-top: clamp(56px, 8vw, 90px); padding-bottom: clamp(56px, 8vw, 90px); }
.westin-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.westin-photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 11; }
.westin-photo .ph-credit {
  position: absolute; right: 10px; bottom: 8px; font-size: 9.5px; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75); background: rgba(0, 0, 0, 0.35); padding: 3px 8px; border-radius: 8px;
}
.westin-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.westin-photo:hover img { transform: scale(1.04); }
.westin-stars { color: var(--gold-text); font-size: 15px; margin-top: 24px; letter-spacing: 4px; display: flex; align-items: center; gap: 16px; }
.westin-stars .ws-note { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 900px) { .westin-grid { grid-template-columns: 1fr; } }

/* ---------- journal / blog ---------- */
.page-head { padding: 150px clamp(20px, 5vw, 48px) 60px; background: var(--moss-deep); color: var(--cream); }
.page-head .wrap { text-align: center; }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 350; }
.page-head .lede { margin: 14px auto 0; color: rgba(241, 234, 221, 0.78); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--white); border: 1px solid rgba(38, 43, 35, 0.08); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-card .pc-img { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post-card:hover .pc-img img { transform: scale(1.06); }
.post-card .pc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.post-card .pc-tag { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-text); }
.post-card h3 { font-size: 21px; }
.post-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.article { max-width: 760px; margin: 0 auto; padding: 60px clamp(20px, 5vw, 48px) 90px; }
.article h1 { font-size: clamp(32px, 4.6vw, 48px); margin-bottom: 18px; }
.article .art-meta { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 26px; }
.article h2 { font-size: clamp(23px, 3vw, 30px); margin: 38px 0 12px; max-width: none; }
.article p { margin: 0 0 16px; color: var(--ink-soft); font-weight: 300; }
.article .art-img { border-radius: 18px; overflow: hidden; margin: 30px 0; box-shadow: var(--shadow-sm); }
.article .art-cta { margin-top: 40px; padding: 30px; background: var(--cream); border-radius: 18px; text-align: center; }
.article .art-cta p { color: var(--ink); font-weight: 400; margin-bottom: 16px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- announcement banner (from back office) ---------- */
.announce-bar {
  position: fixed; left: 12px; right: 12px; top: calc(var(--nav-h) + 8px); z-index: 990;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: rgba(43, 46, 32, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(207, 169, 107, 0.45); border-radius: 16px;
  padding: 12px 44px 12px 18px; color: var(--cream); font-size: 14px;
  box-shadow: 0 14px 40px rgba(20, 24, 19, 0.35);
  animation: announceIn 0.6s var(--ease);
}
@keyframes announceIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.announce-bar a {
  color: var(--gold-soft); font-weight: 500; text-decoration: underline; text-underline-offset: 3px;
}
.announce-bar button {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(241, 234, 221, 0.7); font-size: 14px;
  width: 32px; height: 32px; border-radius: 50%;
}
.announce-bar button:hover { color: var(--cream); background: rgba(241, 234, 221, 0.1); }

/* ---------- booking overlay ---------- */
.book-modal {
  position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center;
  background: rgba(24, 28, 22, 0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  padding: 3vh 3vw;
}
.book-modal.open { opacity: 1; visibility: visible; }
.bm-panel {
  width: min(980px, 100%); height: min(860px, 92vh);
  background: var(--ivory); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55);
  transform: translateY(22px) scale(0.985); transition: transform 0.4s var(--ease);
}
.book-modal.open .bm-panel { transform: none; }
.bm-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 15px 20px; background: var(--moss-deep); color: var(--cream);
  flex: none;
}
.bm-brand { font-family: "Fraunces", serif; font-size: 16.5px; letter-spacing: 0.06em; }
.bm-brand i { font-style: normal; color: var(--gold-soft); }
.bm-close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(241, 234, 221, 0.3);
  background: none; color: var(--cream); font-size: 15px; display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s;
}
.bm-close:hover { background: rgba(241, 234, 221, 0.14); border-color: var(--cream); }
.bm-body { position: relative; flex: 1; background: #fff; }
.bm-body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bm-loading {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: var(--ivory); color: var(--ink-soft);
  font-size: 13.5px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: opacity 0.4s, visibility 0.4s;
}
.bm-loading.done { opacity: 0; visibility: hidden; }
.bm-spin {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(179, 137, 77, 0.25); border-top-color: var(--gold);
  animation: bmSpin 0.9s linear infinite;
}
@keyframes bmSpin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .book-modal { padding: 0; }
  .bm-panel { width: 100%; height: 100%; border-radius: 0; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .hero h1 .w > span { animation: none; transform: none; }
  .scroll-cue::after { animation: none; }
  .hero-badge, .hero-leaf { animation: none; }
  #veil { display: none; }
}

/* no-JS / slow-JS failsafe: veil dissolves on its own */
#veil { animation: veilAway 0.9s ease 2.6s forwards; }
@keyframes veilAway { to { opacity: 0; visibility: hidden; } }
