/* ═══════════════════════════════════════════════════════════════
   LUMIÈRE — Salon & Spa · "Champagne Noir"
   Design tokens, base, and per-section styles.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  /* Core surfaces */
  --ink:        #0E0D0B;
  --charcoal:   #16140F;
  --surface:    #1E1B15;
  --surface-2:  #262218;

  /* Champagne gold system */
  --gold:       #C9A45C;
  --gold-light: #E6CD9A;
  --gold-dark:  #8F6F35;
  --gold-10:    rgba(201, 164, 92, 0.10);
  --gold-25:    rgba(201, 164, 92, 0.25);

  /* Light counterpoint */
  --cream:      #F2ECDF;
  --cream-2:    #E7DEC9;

  /* Text */
  --text-hi:    #F4EFE6;
  --text-body:  #B9B2A3;
  --text-mute:  #7D766A;
  --text-dark:  #171410;

  /* Utility */
  --line:       rgba(244, 239, 230, 0.08);
  --success:    #9CB380;
  --error:      #C97B6B;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
  --fs-hero: clamp(2.8rem, 8vw, 6.5rem);
  --fs-h2:   clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h3:   clamp(1.4rem, 2vw, 1.75rem);

  /* Layout */
  --container: 1240px;
  --nav-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--text-body);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Film-grain overlay — kills the "flat website" look */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%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='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; color: var(--text-hi); }

h2 { font-size: var(--fs-h2); letter-spacing: 0.01em; }
h2 em { font-style: italic; color: var(--gold); }

section[id] { scroll-margin-top: 90px; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }

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

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

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 3000;
  padding: 0.7rem 1.4rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  transform: translateY(-250%);
  transition: transform 0.3s;
}
.skip-link:focus { transform: none; }

/* ── Shared layout & utilities ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { position: relative; padding-block: clamp(5rem, 12vw, 9rem); }
.section-alt { background: var(--charcoal); }
.section .container { position: relative; z-index: 1; }

.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.4rem;
}
.eyebrow-line { display: inline-block; width: 42px; height: 1px; background: var(--gold-25); }
.eyebrow-center { justify-content: center; }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); max-width: 720px; }
.section-head-center { margin-inline: auto; text-align: center; }

/* Oversized stroke-only numerals */
.ghost-num {
  position: absolute;
  top: clamp(2rem, 6vw, 4rem);
  right: clamp(1rem, 5vw, 4rem);
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-25);
  user-select: none;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0.85rem 2.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans); font-weight: 400; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); }

.btn-outline { border-color: var(--gold-dark); color: var(--gold); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--gold-dark); color: var(--ink); }

.btn-block { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; min-height: 48px;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-hi);
  position: relative;
  padding-inline: 0.2rem;
}
.btn-ghost::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px;
  height: 1px; background: var(--gold);
  transform: scaleX(0.35); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* Duotone treatment for all photography */
.hero-media img,
.arch img,
.gallery-item img,
.booking-media > img {
  filter: saturate(0.85) contrast(1.05);
}

/* Arch figure — the boutique signature shape */
.arch {
  position: relative;
  overflow: hidden;
  border-radius: 240px 240px 0 0;
  background: var(--surface)
    radial-gradient(ellipse at 50% 30%, var(--gold-10), transparent 70%);
}
.arch::before {
  content: "✦";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold-25); font-size: 2rem;
}
.arch img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ═══════════════ NAV ═══════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.nav--scrolled {
  background: rgba(14, 13, 11, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* Keep logo + close button above the open mobile menu */
.menu-open .site-nav {
  z-index: 300;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  transition: height 0.4s;
}
.nav--scrolled .nav-inner { height: 64px; }

.logo {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-hi);
  justify-self: start;
  white-space: nowrap;
}
.logo-star { color: var(--gold); font-size: 0.85em; }

.nav-links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav-links a {
  position: relative;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-body);
  padding: 0.8rem 0.1rem;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-hi); }
.nav-links a::after {
  content: "";
  position: absolute; left: 50%; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s;
}
.nav-links a.active { color: var(--text-hi); }
.nav-links a.active::after { transform: translateX(-50%) scale(1); }

.nav-cta { justify-self: end; padding: 0.55rem 1.7rem; min-height: 44px; font-size: 0.72rem; }

.hamburger {
  display: none;
  justify-self: end;
  width: 48px; height: 48px;
  position: relative;
  z-index: 210;
}
.hamburger span {
  position: absolute; left: 12px;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
.hamburger span:nth-child(1) { top: 20px; }
.hamburger span:nth-child(2) { top: 27px; }
.menu-open .hamburger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { top: 23px; transform: rotate(-45deg); }

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s, visibility 0.45s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.menu-open { overflow: hidden; }

.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text-hi);
  padding: 0.35rem 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
  transition-delay: 0s;
}
.menu-open .mobile-menu-links a {
  opacity: 1; transform: none;
  transition-delay: calc(var(--i) * 60ms + 0.15s);
}
.mobile-menu-links a:hover { color: var(--gold); }

.mobile-menu-foot {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.85rem; letter-spacing: 0.12em;
  color: var(--text-mute);
}
.mobile-menu-foot span { color: var(--gold); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  background: var(--surface)
    radial-gradient(ellipse at 50% 40%, var(--gold-10), transparent 70%);
}
.hero-media::before {
  content: "✦";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold-25); font-size: 3rem;
}
.hero-media img {
  position: relative;
  width: 100%; height: 115%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 13, 11, 0.55) 0%,
    rgba(14, 13, 11, 0.35) 40%,
    rgba(14, 13, 11, 0.92) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(5rem, 12vh, 8rem);
  padding-top: 30vh;
}

.hero-eyebrow {
  color: var(--gold-light);
  animation: heroFade 1.2s var(--ease-out) 0.9s backwards;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-line { display: block; overflow: hidden; }
.hero-line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: heroUp 1.1s var(--ease-out) forwards;
}
.hero-line:nth-child(2) > span { animation-delay: 0.18s; }

.hero-sub {
  max-width: 46ch;
  margin-bottom: 2.6rem;
  color: var(--text-body);
  animation: heroFade 1.2s var(--ease-out) 1.1s backwards;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; align-items: center;
  animation: heroFade 1.2s var(--ease-out) 1.3s backwards;
}

@keyframes heroUp { to { transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } }

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: clamp(5rem, 12vh, 8rem);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  writing-mode: vertical-rl;
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-mute);
  animation: heroFade 1.2s var(--ease-out) 1.6s backwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: var(--gold);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.4rem;
  background: var(--ink);
}
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem;
  color: var(--text-mute);
  white-space: nowrap;
  margin-right: 2.75rem;
}
.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.9rem;
  margin-right: 2.75rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}

.about-figure {
  aspect-ratio: 4 / 5;
  outline: 1px solid var(--gold-25);
  outline-offset: 16px;
}
.about-figure:hover img { transform: scale(1.06); }

.about-copy h2 { margin-bottom: 1.8rem; }
.about-copy p + p { margin-top: 1.2rem; }

.signature {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-top: 1.8rem !important;
}

.about-stats {
  display: flex; gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.6rem;
}
.about-stat { border-top: 1px solid var(--gold-25); padding-top: 1.1rem; }
.about-stat strong {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: 2.6rem; line-height: 1;
  color: var(--gold-light);
}
.about-stat span {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mute);
}

/* ═══════════════ SERVICES ═══════════════ */
.services-tabs {
  display: flex; gap: 0.8rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  scroll-snap-align: start;
  min-height: 44px;
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.tab:hover { color: var(--text-hi); border-color: var(--gold-25); }
.tab[aria-selected="true"] {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: var(--gold-10);
}

.menu-panel { animation: panelIn 0.35s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }

.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.2rem;
  padding: 1.35rem 0.8rem;
  border-top: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s;
}
.menu-row:first-child { border-top: none; }
.menu-row:hover { background: var(--gold-10); padding-left: 1.6rem; }

.menu-item h3 { font-size: 1.35rem; margin-bottom: 0.15rem; }
.menu-item p { font-size: 0.86rem; color: var(--text-mute); }

.menu-dots {
  display: block;
  border-bottom: 1px dotted var(--gold-25);
  min-width: 2rem;
}

.menu-price {
  font-size: 0.95rem; letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}

.menu-foot {
  margin-top: 2.2rem;
  font-size: 0.9rem;
  color: var(--text-mute);
}
.menu-foot a { color: var(--gold); letter-spacing: 0.08em; }
.menu-foot a:hover { color: var(--gold-light); }

/* ═══════════════ STATS ═══════════════ */
.stats {
  background: var(--charcoal);
  border-block: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 1rem 1.5rem;
  border-left: 1px solid var(--gold-25);
}
.stat:first-child { border-left: none; }
.stat-num {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 12px;
  break-inside: avoid;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface)
    radial-gradient(ellipse at 50% 35%, var(--gold-10), transparent 70%);
}
.gallery-item::before {
  content: "✦";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold-25); font-size: 2rem;
}
.gallery-item img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery-item.tall img { aspect-ratio: 3 / 4; }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.05) 55%, rgba(14,13,11,0.75) 100%);
  opacity: 0.55;
  transition: opacity 0.5s;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1rem;
  z-index: 1;
  text-align: left;
  font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s, transform 0.45s var(--ease-out);
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }

.gallery-foot { margin-top: 3rem; text-align: center; }

/* ═══════════════ TEAM ═══════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.team-card {
  text-align: center;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); }

.team-card .arch {
  aspect-ratio: 3 / 4;
  margin-bottom: 1.4rem;
  outline: 1px solid transparent;
  outline-offset: 10px;
  transition: outline-color 0.5s;
}
.team-card .arch img { filter: grayscale(35%) saturate(0.85) contrast(1.05); }
.team-card:hover .arch { outline-color: var(--gold-25); }
.team-card:hover .arch img { filter: grayscale(0%) saturate(1) contrast(1.05); transform: scale(1.05); }

.team-card h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.team-role {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════ PACKAGES (cream) ═══════════════ */
.section-cream { background: var(--cream); }
.section-cream h2 { color: var(--text-dark); }
.section-cream h2 em { color: var(--gold-dark); }
.section-cream .eyebrow { color: rgba(23, 20, 16, 0.55); }
.section-cream .eyebrow-line { background: rgba(143, 111, 53, 0.5); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.package-card {
  background: var(--cream-2);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  color: rgba(23, 20, 16, 0.75);
}
.package-card h3 { color: var(--text-dark); font-size: 1.7rem; margin-bottom: 1rem; }

.package-price { margin-bottom: 1.8rem; }
.package-price strong {
  font-family: var(--serif); font-weight: 400;
  font-size: 2.6rem; line-height: 1;
  color: var(--text-dark);
}
.package-price span {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(23, 20, 16, 0.5);
}

.package-list { list-style: none; margin-bottom: 2.2rem; flex-grow: 1; }
.package-list li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-top: 1px solid rgba(23, 20, 16, 0.08);
  font-size: 0.95rem;
}
.package-list li:first-child { border-top: none; }
.package-list li::before {
  content: "✦";
  position: absolute; left: 0; top: 0.6rem;
  color: var(--gold-dark); font-size: 0.75rem;
}

.package-featured {
  background: var(--ink);
  border: 1px solid var(--gold-dark);
  color: var(--text-body);
  transform: scale(1.04);
  box-shadow: 0 40px 80px -30px rgba(14, 13, 11, 0.45);
  position: relative;
}
.package-featured h3, .package-featured .package-price strong { color: var(--text-hi); }
.package-featured .package-price span { color: var(--text-mute); }
.package-featured .package-list li { border-top-color: var(--line); }
.package-featured .package-list li::before { color: var(--gold); }

.package-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  padding: 0.35rem 1.2rem;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials { overflow: hidden; }
.ghost-quote {
  position: absolute;
  top: clamp(1rem, 4vw, 3rem); left: clamp(0.5rem, 4vw, 4rem);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 1;
  color: var(--gold-10);
  user-select: none;
  pointer-events: none;
}

.slider { max-width: 820px; margin-inline: auto; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
  padding: 0 clamp(0.5rem, 3vw, 2.5rem);
}

.stars { color: var(--gold); letter-spacing: 0.35em; margin-bottom: 1.6rem; font-size: 0.85rem; }

.slide blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  color: var(--text-hi);
  margin-bottom: 2.2rem;
}

.slide figcaption { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.slide figcaption img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dark);
  padding: 2px;
  margin-bottom: 0.7rem;
  background: var(--surface);
}
.slide-name { font-family: var(--serif); font-size: 1.15rem; color: var(--text-hi); }
.slide-label {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mute);
}

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.slider-arrow {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  transition: border-color 0.3s, background 0.3s;
}
.slider-arrow:hover { border-color: var(--gold-dark); background: var(--gold-10); }

.slider-dots { display: flex; gap: 0.7rem; }
.slider-dot {
  width: 28px; height: 14px;
  position: relative;
}
.slider-dot::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 6px;
  height: 2px;
  background: var(--line);
  transition: background 0.3s;
}
.slider-dot.active::after, .slider-dot:hover::after { background: var(--gold); }

/* ═══════════════ BOOKING ═══════════════ */
.booking { background: var(--charcoal); }
.booking-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 640px;
}

.booking-media {
  position: relative;
  overflow: hidden;
  background: var(--surface)
    radial-gradient(ellipse at 50% 35%, var(--gold-10), transparent 70%);
}
.booking-media::before {
  content: "✦";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold-25); font-size: 2.5rem;
}
.booking-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.booking-media-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, transparent, rgba(14, 13, 11, 0.9));
}
.booking-media-overlay .eyebrow { color: var(--gold-light); margin-bottom: 0.9rem; }
.booking-hours {
  font-family: var(--serif);
  font-size: 1.4rem; line-height: 1.4;
  color: var(--text-hi);
  margin-bottom: 0.8rem;
}
.booking-phone {
  font-size: 0.85rem; letter-spacing: 0.22em;
  color: var(--gold);
}
.booking-phone:hover { color: var(--gold-light); }

.booking-form-wrap {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--surface);
}
.booking-form-wrap h2 { margin-bottom: 2.6rem; }

.booking-form { color-scheme: dark; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}
.field:focus-within label { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text-hi);
  font-family: var(--sans); font-weight: 300;
  font-size: 1rem;
  padding: 0.5rem 0.1rem;
  transition: border-color 0.35s;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 72px; }
.field select { cursor: pointer; }
.field select option, .field select optgroup { background: var(--surface); color: var(--text-hi); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field-msg {
  min-height: 1.1rem;
  font-size: 0.76rem;
  color: var(--error);
  padding-top: 0.25rem;
}

.field--error input,
.field--error select,
.field--error textarea { border-bottom-color: var(--error); }
.field--error label { color: var(--error); }

#booking-submit { margin-top: 0.6rem; }

.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn.is-loading::after {
  content: "";
  width: 14px; height: 14px;
  margin-left: 0.8rem;
  border: 1.5px solid rgba(14, 13, 11, 0.3);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-micro {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
}

.form-success { text-align: center; padding: 4rem 1rem; }
.success-star {
  display: block;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  animation: heroFade 0.8s var(--ease-out) backwards;
}
.form-success h3 { font-size: 2.2rem; margin-bottom: 0.9rem; }
.form-success h3:focus { outline: none; }
.form-success p { max-width: 40ch; margin-inline: auto; }

.link-reset {
  margin-top: 2rem;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-25);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}
.link-reset:hover { color: var(--gold-light); border-color: var(--gold); }

/* ═══════════════ CONTACT ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  align-content: start;
}

.contact-col h3 {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-col p { color: var(--text-body); }
.contact-col a:hover { color: var(--text-hi); }

.hours-row {
  display: flex; align-items: center; gap: 0.8rem;
  padding-block: 0.3rem;
  font-size: 0.95rem;
}
.hours-row .menu-dots { flex: 1; }

.socials { display: flex; gap: 0.9rem; }
.socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.socials a:hover { border-color: var(--gold-dark); background: var(--gold-10); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

/* Stylized map — never fails offline */
.map-panel {
  position: relative;
  display: block;
  min-height: 340px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s;
}
.map-panel:hover { border-color: var(--gold-25); }

.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines path {
  fill: none;
  stroke: rgba(201, 164, 92, 0.14);
  stroke-width: 1;
}
.map-lines .map-lane {
  stroke: rgba(201, 164, 92, 0.45);
  stroke-dasharray: 6 7;
}

.map-dot {
  position: absolute;
  left: 51%; top: 56%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.map-dot::before, .map-dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ripple 2.4s ease-out infinite;
}
.map-dot::after { animation-delay: 1.2s; }
@keyframes ripple {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(5); opacity: 0; }
}

.map-caption {
  position: absolute;
  left: 1.6rem; bottom: 1.4rem;
  font-size: 0.75rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light);
}

/* ═══════════════ FAQ ═══════════════ */
.faq-container { max-width: 780px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text-hi);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-25);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--sans); font-weight: 300; font-size: 1.1rem;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--gold-10); }

.faq-item p {
  padding: 0 3.5rem 1.6rem 0.2rem;
  max-width: 62ch;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  letter-spacing: 0.22em;
  text-align: center;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-25);
  user-select: none;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-col h3 {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--text-body);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 0.4rem; }

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem; letter-spacing: 0.25em;
  color: var(--text-hi);
  margin-bottom: 1rem;
}
.footer-brand p { max-width: 30ch; font-size: 0.92rem; }

.footer-news-copy { font-size: 0.92rem; margin-bottom: 1.2rem; }

.newsletter {
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.35s;
}
.newsletter:focus-within { border-color: var(--gold); }
.newsletter input {
  flex: 1;
  min-height: 48px;
  background: transparent; border: none;
  color: var(--text-hi);
  font-family: var(--sans); font-weight: 300; font-size: 0.95rem;
}
.newsletter input:focus { outline: none; }
.newsletter input::placeholder { color: var(--text-mute); }
.newsletter button {
  width: 48px; height: 48px;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
}
.newsletter button:hover { transform: translateX(4px); color: var(--gold-light); }

.newsletter-msg { min-height: 1.4rem; padding-top: 0.5rem; font-size: 0.8rem; color: var(--text-mute); }
.newsletter-msg.ok { color: var(--success); }
.newsletter-msg.err { color: var(--error); }

.footer-base {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-block: 1.8rem;
  font-size: 0.8rem;
  color: var(--text-mute);
}
.footer-base-links { display: flex; gap: 1.8rem; }
.footer-base-links a { transition: color 0.3s; }
.footer-base-links a:hover { color: var(--text-hi); }
.back-top { color: var(--gold); }

/* ═══════════════ LIGHTBOX ═══════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(14, 13, 11, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }

.lb-figure {
  max-width: min(1100px, 82vw);
  text-align: center;
}
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  margin-inline: auto;
  border: 1px solid var(--line);
}
.lb-figure figcaption {
  display: flex; align-items: baseline; justify-content: center; gap: 1.4rem;
  padding-top: 1.2rem;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light);
}
.lb-counter { color: var(--text-mute); }

.lb-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-hi);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.lb-close:hover { border-color: var(--gold-dark); background: var(--gold-10); }

.lb-arrow {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.15rem;
  transition: border-color 0.3s, background 0.3s;
}
.lb-arrow:hover { border-color: var(--gold-dark); background: var(--gold-10); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1200px) {
  .booking-grid { grid-template-columns: 1fr 1.4fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-figure { max-width: 480px; margin-inline: auto; }

  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .stat:nth-child(3) { border-left: none; }

  .gallery-grid { columns: 2; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .package-featured { transform: none; order: -1; }

  .booking-grid { grid-template-columns: 1fr; }
  .booking-media { min-height: 340px; }
  .booking-media > img { position: absolute; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-panel { min-height: 280px; }

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

@media (max-width: 640px) {
  section[id] { scroll-margin-top: 70px; }

  .hero-content { padding-top: 38vh; }
  .hero-scroll { display: none; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { gap: 1.1rem; }

  .menu-row {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
    padding-inline: 0.2rem;
  }
  .menu-row:hover { padding-left: 0.6rem; }
  .menu-dots { display: none; }
  .menu-price { justify-self: start; }

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

  /* Team becomes a swipe carousel with a peek of the next card */
  .team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card { flex: 0 0 76vw; scroll-snap-align: center; }

  .contact-cols { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-wordmark { letter-spacing: 0.12em; }

  .lb-arrow { position: absolute; bottom: 1.2rem; z-index: 2; }
  .lb-prev { left: 1.2rem; }
  .lb-next { right: 1.2rem; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track { animation: none; }
  .hero-line > span { transform: none; animation: none; }
  .hero-media img { transform: none; height: 100%; }

  html.js [data-reveal] { opacity: 1; transform: none; }
}
