/* ============================================================================
   LUXE HAVEN — STYLESHEET
   Ported from the original design. You normally do not need to edit this file;
   business details and prices live in config.js.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS -- */
:root {
  --gold:        #D4AF37;
  --gold-2:      #C9A063;
  --gold-light:  #E6C868;
  --gold-dark:   #B68B3C;
  --gold-grad:   linear-gradient(135deg, #E6C868, #D4AF37 55%, #B68B3C);

  --bg:          #0D0C0B;
  --bg-alt:      #0B0A09;
  --bg-card:     #100F0D;
  --bg-deep:     #080706;

  --ink:         #F5F3EE;
  --ink-80:      rgba(245, 243, 238, 0.78);
  --ink-70:      rgba(245, 243, 238, 0.66);
  --ink-60:      rgba(245, 243, 238, 0.60);
  --ink-50:      rgba(245, 243, 238, 0.50);
  /* 0.48 is the floor: below this, small text drops under the WCAG AA
     contrast minimum (4.5:1) on our darkest background. Do not lower these. */
  --ink-45:      rgba(245, 243, 238, 0.48);
  --ink-40:      rgba(245, 243, 238, 0.48);

  --line:        rgba(212, 175, 55, 0.16);
  --line-soft:   rgba(245, 243, 238, 0.08);
  --gold-30:     rgba(212, 175, 55, 0.30);
  --gold-45:     rgba(212, 175, 55, 0.45);

  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x:       clamp(20px, 5vw, 64px);
  --section-y:   clamp(80px, 11vw, 150px);
  --maxw:        1180px;
}

/* ----------------------------------------------------------------- RESET -- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

::selection { background: rgba(212, 175, 55, 0.28); color: var(--ink); }

/* Keyboard focus. Anyone navigating by Tab needs to see where they are.
   :focus-visible means mouse users never see this ring — only keyboard users. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2723; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #3a352d; }

/* ------------------------------------------------------------ ANIMATIONS -- */
@keyframes lhReveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes lhFade   { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes lhScroll {
  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; }
}

.reveal { opacity: 0; transform: translateY(30px); }
.reveal.is-visible { animation: lhReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------ TYPOGRAPHY -- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.display-lg  { font-size: clamp(34px, 5vw, 58px); }
.display-xl  { font-size: clamp(40px, 6.4vw, 82px); line-height: 1; letter-spacing: -0.015em; }

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.eyebrow-row.is-centered { justify-content: center; }
.rule { width: 34px; height: 1px; background: var(--gold); flex-shrink: 0; }

.lede {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-60);
  font-weight: 300;
}

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }

/* Small gold diamond used in feature lists */
.diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s, color 0.35s, border-color 0.35s;
}

.btn-gold {
  color: var(--bg);
  background: var(--gold-grad);
  font-weight: 600;
  padding: 18px 44px;
  box-shadow: 0 14px 40px -14px rgba(212, 175, 55, 0.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -12px rgba(212, 175, 55, 0.65); }

.btn-gold-flat {
  color: var(--bg);
  background: var(--gold);
  font-weight: 600;
  padding: 15px 34px;
  font-size: 11.5px;
}
.btn-gold-flat:hover { transform: translateY(-2px); }

.btn-outline {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold-45);
  padding: 13px 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(245, 243, 238, 0.35);
  padding: 18px 40px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; }

/* ------------------------------------------------------------------- NAV -- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(11, 10, 9, 0);
  border-bottom: 1px solid rgba(212, 175, 55, 0);
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.is-scrolled {
  background: rgba(11, 10, 9, 0.85);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 23px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.72);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.55);
  padding: 12px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 24px; height: 1.5px; background: var(--gold); display: block; }
.burger span:last-child { width: 16px; align-self: flex-end; }

/* ----------------------------------------------------------- MOBILE MENU -- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(11, 10, 9, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  animation: lhFade 0.4s ease both;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 6px; }
.menu-close {
  position: absolute;
  top: 26px; right: 26px;
  background: none; border: none;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  font-family: var(--serif);
}

/* ------------------------------------------------------------------ HERO -- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(13, 12, 11, 0.55) 0%,
    rgba(13, 12, 11, 0.15) 32%,
    rgba(13, 12, 11, 0.25) 60%,
    rgba(13, 12, 11, 0.92) 100%);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(70px, 9vh, 120px);
  pointer-events: none;
}
.hero-place { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hero-place .rule { width: 46px; }
.hero-place span:last-child {
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero p {
  margin: 30px 0 0;
  max-width: 50ch;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.75;
  color: var(--ink-80);
  font-weight: 300;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 42px;
  pointer-events: auto;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
.hero-scroll span:first-child {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-45);
}
.hero-scroll .line {
  width: 1px; height: 46px; background: var(--gold);
  animation: lhScroll 2.6s ease-in-out infinite;
}

/* -------------------------------------------------------------- SECTIONS -- */
.section { padding: var(--section-y) var(--pad-x); scroll-margin-top: 90px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid rgba(212, 175, 55, 0.10); border-bottom: 1px solid rgba(212, 175, 55, 0.10); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-wide { max-width: 1240px; margin: 0 auto; }

/* ------------------------------------------------------ THREE MOVEMENTS -- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step { background: var(--bg); padding: clamp(34px, 4vw, 56px) clamp(26px, 3vw, 44px); }
.step-num {
  font-family: var(--serif);
  font-size: 64px; font-weight: 400;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 600; font-size: 27px;
  margin: 22px 0 14px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.step p { font-size: 15px; line-height: 1.75; color: var(--ink-60); font-weight: 300; margin: 0; }

/* -------------------------------------------------------------- SERVICES -- */
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 60px;
}
.services-head h2 { max-width: 16ch; }
.services-head p { font-size: 15px; line-height: 1.75; color: var(--ink-50); font-weight: 300; max-width: 42ch; margin: 0; }

.featured {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 28px;
}
.featured img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.featured-body {
  padding: clamp(34px, 4vw, 58px);
  display: flex; flex-direction: column; justify-content: center;
}
.tag {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 6px 14px; border-radius: 2px;
  font-weight: 600; margin-bottom: 24px;
}
.featured-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.meta-row { display: flex; align-items: center; gap: 18px; margin: 18px 0 22px; }
.meta-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-60); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.price-lg { font-family: var(--serif); font-size: 30px; color: var(--gold); font-weight: 500; }
.featured-body p { font-size: 15.5px; line-height: 1.75; color: var(--ink-60); font-weight: 300; margin: 0 0 26px; max-width: 46ch; }
/* "What's Included" disclosure — a native <details> so it's keyboard-
   operable and readable with JS off; the chevron is the only decoration. */
.includes { margin: 18px 0; }
.includes summary {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; list-style: none; user-select: none;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  padding: 4px 0;
}
.includes summary::-webkit-details-marker { display: none; }
.includes summary::marker { content: ''; }
.includes summary .chev {
  width: 7px; height: 7px; flex-shrink: 0;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}
.includes[open] summary .chev { transform: rotate(45deg); }
.includes-list {
  column-width: 190px;
  column-gap: 22px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}
.includes-list span {
  display: flex; align-items: flex-start; gap: 10px;
  break-inside: avoid;
  font-size: 13px; line-height: 1.6;
  color: var(--ink-70); font-weight: 300;
  padding-bottom: 8px;
}
.includes-list .diamond { width: 4px; height: 4px; margin-top: 6px; }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 28px; }

.card {
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.8);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 30px 28px 32px; }
.card-body h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; margin: 0 0 12px; color: var(--ink); }
.card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.card-meta .meta-label { font-size: 11px; }
.card-meta .dot { width: 3px; height: 3px; }
.card-meta .price { font-family: var(--serif); font-size: 24px; color: var(--gold); font-weight: 500; }
.card-body p { font-size: 14px; line-height: 1.7; color: rgba(245, 243, 238, 0.58); font-weight: 300; margin: 0 0 22px; }

.couples {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 3px;
  background: linear-gradient(120deg, var(--bg-card), var(--bg-alt));
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 4vw, 52px);
}
.couples h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 10px; color: var(--ink);
}
.couples p { font-size: 14.5px; line-height: 1.7; color: var(--ink-60); font-weight: 300; margin: 0; max-width: 50ch; }
.couples p .gold { color: var(--gold); }
.couples .btn { white-space: nowrap; }

/* ---------------------------------------------------------------- ADD-ONS -- */
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.addon-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 3px;
  background: var(--bg-card);
}
.addon-item .name { font-size: 13.5px; color: var(--ink-80); font-weight: 300; }
.addon-item .price {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--gold); white-space: nowrap;
}

/* -------------------------------------------------------------- PACKAGES -- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }

.pkg {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-card);
  padding: clamp(32px, 3.4vw, 44px) clamp(28px, 3vw, 38px);
  display: flex; flex-direction: column;
}
.pkg.is-featured {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(165deg, #161310, var(--bg-card));
  box-shadow: 0 30px 70px -30px rgba(212, 175, 55, 0.35);
}
.pkg-ribbon {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 6px 18px; border-radius: 2px;
  font-weight: 600; white-space: nowrap;
}
.pkg-label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-50); font-weight: 500; }
.pkg-visits { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 6px; }
.pkg-visits .n { font-family: var(--serif); font-size: 54px; font-weight: 500; color: var(--ink); line-height: 1; }
.pkg-visits .w { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); }
.pkg-save {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-30);
  padding: 6px 12px; border-radius: 2px; margin-bottom: 26px;
}
.pkg.is-featured .pkg-save {
  color: var(--bg); background: var(--gold);
  border-color: var(--gold); font-weight: 600;
}
.pkg-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.pkg-price .now { font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 500; line-height: 1; }
.pkg-price .was { font-size: 13px; color: var(--ink-45); font-weight: 300; text-decoration: line-through; }
.pkg-per { font-size: 12.5px; color: var(--ink-50); font-weight: 300; margin-bottom: 26px; }
.pkg-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.pkg-list span {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--ink-80); font-weight: 300;
}
.pkg-list .diamond { margin-top: 7px; }
.pkg .btn { margin-top: auto; padding: 15px; }
.pkg.is-featured .btn { padding: 16px; }

.packages-note {
  text-align: center; margin: 34px auto 0;
  font-size: 13.5px; color: var(--ink-45); font-weight: 300;
}

/* ------------------------------------------------------------ MEMBERSHIP -- */
.membership {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.membership h2 { max-width: 16ch; font-size: clamp(34px, 4.6vw, 56px); }
.membership .lede { margin: 22px 0 0; max-width: 48ch; }
.benefits { display: flex; flex-direction: column; gap: 15px; margin: 34px 0 38px; }
.benefits span {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 15px; color: var(--ink-80); font-weight: 300;
}
.benefits .diamond { width: 6px; height: 6px; margin-top: 7px; }

.member-card, .gift-card-art {
  position: relative;
  aspect-ratio: 1.6 / 1;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(245, 243, 238, 0.06);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.member-card { background: linear-gradient(135deg, #1c1813 0%, #2a2218 45%, #0f0d0a 100%); }
.member-card .glow {
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 65%);
  pointer-events: none;
}
.card-top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.card-top img { width: 48px; height: 48px; border-radius: 50%; }
.card-top span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.card-bottom { position: relative; }
.card-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink); line-height: 1;
}
.card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 18px; }
.card-foot .since { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); }
.card-foot .fee { display: flex; align-items: baseline; gap: 4px; }
.card-foot .fee .amt { font-family: var(--serif); font-size: 34px; color: var(--gold); font-weight: 500; line-height: 1; }
.card-foot .fee .per { font-size: 12px; color: var(--ink-60); font-weight: 300; }

/* ------------------------------------------------------------ ATMOSPHERE -- */
.atmos { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.atmos img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.atmos-body {
  padding: clamp(70px, 9vw, 140px) clamp(34px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.atmos-body h2 { max-width: 15ch; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.06; }
.atmos-body .lede { margin: 26px 0 0; max-width: 46ch; }
.stats { display: flex; gap: 50px; margin-top: 44px; flex-wrap: wrap; }
.stat .n { font-family: var(--serif); font-size: 42px; color: var(--gold); font-weight: 500; line-height: 1; }
.stat .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-top: 8px; }

/* ---------------------------------------------------------- TESTIMONIALS -- */
.testimonials { padding: clamp(90px, 13vw, 170px) var(--pad-x); background: var(--bg-alt); border-top: 1px solid rgba(212, 175, 55, 0.10); }
.testimonials-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 80px; line-height: 0.6; color: var(--gold); opacity: 0.5; height: 42px; }
.testimonials blockquote {
  font-family: var(--serif);
  font-weight: 500; font-style: italic;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.28; letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  min-height: 2.4em;
  transition: opacity 0.5s;
}
.testimonial-by { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.testimonial-by .who { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.testimonial-by .what { font-size: 12.5px; color: var(--ink-50); font-weight: 300; }
.dots { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: var(--gold); opacity: 0.25;
  transition: opacity 0.4s;
}
.dots button.is-active { opacity: 1; }

/* ------------------------------------------------------------ GIFT CARDS -- */
.gifts-section {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  background: radial-gradient(120% 130% at 80% 10%, #16120c 0%, var(--bg) 55%);
  overflow: hidden;
  scroll-margin-top: 90px;
}
.gifts {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.gift-card-art {
  background: linear-gradient(140deg, #0f0d0a 0%, #241c12 50%, #3a2d17 100%);
  padding: clamp(26px, 3vw, 40px);
}
.gift-card-art .glow {
  position: absolute; bottom: -40%; left: -10%;
  width: 70%; height: 130%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 65%);
  pointer-events: none;
}
.gift-card-art .card-title { font-size: clamp(24px, 2.8vw, 32px); letter-spacing: 0.08em; line-height: 1.1; }
.gift-card-art .locale { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); margin-top: 16px; }
.gifts h2 { max-width: 14ch; font-size: clamp(34px, 4.6vw, 56px); }
.gifts .lede { margin: 22px 0 0; max-width: 46ch; }
.gift-amounts { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 12px; }
.gift-amount {
  flex: 1; min-width: 96px;
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  color: var(--ink-80);
  background: transparent;
  border: 1px solid var(--gold-30);
  padding: 18px 10px; border-radius: 3px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}
.gift-amount:hover { background: rgba(212, 175, 55, 0.14); border-color: var(--gold); color: var(--ink); }
.gift-note { font-size: 12.5px; color: var(--ink-45); font-weight: 300; margin: 0 0 28px; }

/* --------------------------------------------------------------- GALLERY -- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-2x1 { grid-column: span 2; }
.g-1x2 { grid-row: span 2; }

/* ----------------------------------------------------------------- VISIT -- */
.visit {
  display: grid; grid-template-columns: 1fr 1.12fr;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px; overflow: hidden;
  background: var(--bg-card);
}
.visit-body { padding: clamp(34px, 4vw, 54px); display: flex; flex-direction: column; gap: 32px; }
.visit-body h3 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 14px;
}
.visit-body address { font-style: normal; font-size: 16px; line-height: 1.7; color: var(--ink); font-weight: 300; }
.directions {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 12px 22px; border-radius: 2px;
  transition: all 0.3s;
}
.directions:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--gold); }
.hours-list { display: flex; flex-direction: column; gap: 11px; }
.hours-list div { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.hours-list .d { color: var(--ink-70); font-weight: 300; }
.hours-list .h { color: var(--ink); }
.contact-link {
  font-size: 14.5px; line-height: 1.9;
  color: var(--ink-70); font-weight: 300;
  text-decoration: none; display: block;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--gold); }
.policy { border-top: 1px solid var(--line-soft); padding-top: 24px; }
.policy p { font-size: 13.5px; line-height: 1.7; color: var(--ink-50); font-weight: 300; margin: 0; }
.map { position: relative; min-height: 440px; background: var(--bg-alt); border-left: 1px solid rgba(212, 175, 55, 0.14); }
.map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9) grayscale(0.15);
}
.map-vignette { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 90px 10px rgba(11, 10, 9, 0.55); }

/* ------------------------------------------------------------- FINAL CTA -- */
.final-cta {
  position: relative;
  padding: clamp(100px, 15vw, 200px) var(--pad-x);
  background: radial-gradient(120% 140% at 50% 0%, #1a1610 0%, var(--bg-alt) 60%);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  overflow: hidden;
}
.final-cta .halo {
  position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10), transparent 62%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta img {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 34px;
  box-shadow: 0 0 50px -10px rgba(212, 175, 55, 0.4);
}
.final-cta p {
  margin: 24px auto 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7; color: var(--ink-70);
  font-weight: 300; max-width: 42ch;
}
.final-cta .btn { margin-top: 42px; padding: 20px 52px; letter-spacing: 0.2em; }

/* ---------------------------------------------------------------- FOOTER -- */
.footer {
  background: var(--bg-deep);
  padding: clamp(60px, 8vw, 96px) var(--pad-x) 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  scroll-margin-top: 90px;
}
.foot-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
  padding-bottom: 52px; margin-bottom: 52px;
  border-bottom: 1px solid var(--line-soft);
}
.foot-cta h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0; color: var(--ink); line-height: 1.04;
}
.foot-cta p { margin: 12px 0 0; font-size: 15px; color: var(--ink-50); font-weight: 300; }
.foot-cta .btn { white-space: nowrap; }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 36px; padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-grid h4 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 20px;
}
.footer-grid p, .footer-grid address {
  font-style: normal;
  font-size: 14px; line-height: 1.8;
  color: var(--ink-70); font-weight: 300; margin: 0;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand .brand-name { font-size: 24px; letter-spacing: 0.12em; }
.footer-brand .brand-sub { font-size: 9px; letter-spacing: 0.34em; }
.footer-about { font-size: 14px; line-height: 1.8; color: var(--ink-50); font-weight: 300; max-width: 38ch; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 22px; }
.footer-links a {
  font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--ink-60); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: rgba(245, 243, 238, 0.2); }
.footer-contact a { font-size: 14px; line-height: 1.8; }
.social-link {
  font-size: 13px; letter-spacing: 0.12em;
  color: var(--gold); text-decoration: none;
  display: inline-block; margin-top: 16px;
}
.footer-legal {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding-top: 30px;
}
.footer-legal span { font-size: 12px; color: var(--ink-40); font-weight: 300; }

/* ---------------------------------------------------------- STICKY MOBILE -- */
.sticky-book {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 55;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); background: var(--gold-grad);
  border: none; padding: 18px; border-radius: 3px;
  cursor: pointer; font-weight: 600;
  box-shadow: 0 12px 34px -8px rgba(0, 0, 0, 0.7);
  text-decoration: none; text-align: center;
  animation: lhFade 0.4s ease both;
}

/* ------------------------------------------------------------- RESPONSIVE -- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .sticky-book.is-shown { display: block; }
}

@media (max-width: 920px) {
  .featured     { grid-template-columns: 1fr; }
  .cards3       { grid-template-columns: 1fr; }
  .packages     { grid-template-columns: 1fr; }
  .atmos        { grid-template-columns: 1fr; }
  .gallery      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .addons-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .membership   { grid-template-columns: 1fr; }
  .gifts        { grid-template-columns: 1fr; }
  .visit        { grid-template-columns: 1fr; }
  .foot-cta     { flex-direction: column; align-items: flex-start; }
  .map          { border-left: none; border-top: 1px solid rgba(212, 175, 55, 0.14); }
  .pkg.is-featured { margin-top: 14px; }
}

@media (max-width: 560px) {
  .steps       { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .services-head { display: block; }
  .services-head p { margin-top: 24px; }
}

/* Give the sticky bar room so it never covers the footer's last line */
@media (max-width: 1080px) {
  .footer { padding-bottom: 96px; }
}
