/* ==========================================================================
   GREGORY'S FINE TAILORING — "Midnight Atelier"
   Core stylesheet · Vanilla CSS
   Palette sampled directly from the brand logo (#F0D820 gold / #000 black)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Core — sampled from logo */
  --gold:        #F0D820;
  --gold-deep:   #C9A227;
  --gold-soft:   #FFF3B0;
  --ink:         #0A0A0B;
  --charcoal:    #141416;
  --charcoal-2:  #1E1E22;
  --bone:        #F7F5F0;
  --chestnut:    #704840;

  /* Text */
  --text-hi:       #F8F8F8;
  --text-mid:      #C3C3CB;   /* 4.5:1+ on --ink */
  --text-low:      #9A9AA4;   /* large text / meta only */
  --text-on-light: #141416;
  --text-on-gold:  #141416;

  /* Effects */
  --glass:      rgba(255,255,255,.06);
  --glass-hi:   rgba(255,255,255,.09);
  --glass-brd:  rgba(240,216,32,.18);
  --hairline:   rgba(255,255,255,.10);
  --grad-gold:  linear-gradient(135deg,#F0D820 0%,#C9A227 50%,#F0D820 100%);
  --shadow-1:   0 1px 2px rgba(0,0,0,.35);
  --shadow-2:   0 4px 12px rgba(0,0,0,.40), 0 12px 32px rgba(0,0,0,.35);
  --shadow-3:   0 8px 24px rgba(0,0,0,.45), 0 24px 60px rgba(0,0,0,.50),
                inset 0 0 0 1px rgba(255,255,255,.04);
  --glow-gold:  0 0 32px rgba(240,216,32,.22);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Space */
  --space-section: clamp(4.5rem, 9vw, 9rem);
  --container:     1280px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --radius:        4px;
  --radius-lg:     10px;

  /* z-index scale */
  --z-base:      1;
  --z-sticky:    10;
  --z-dropdown:  300;
  --z-mobilebar: 900;
  --z-overlay:   999;
  --z-modal:     1000;

  /* Motion */
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-io:   cubic-bezier(.65,0,.35,1);
  --dur-fast:  180ms;
  --dur-mid:   280ms;
  --dur-slow:  700ms;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 148px;   /* clears the sticky top bar + header */
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* Fabric-weave texture over the dark ground */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-base);
  opacity: .035;
  background-image:
    repeating-linear-gradient(45deg,  #fff 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 4px);
}

/* --------------------------------------------------------------------------
   3. ACCESSIBILITY
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: calc(var(--z-modal) + 10);
  padding: .85rem 1.75rem;
  background: var(--gold);
  color: var(--text-on-gold);
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--dur-mid) var(--ease-out);
}
.skip-link:focus { top: 0; }

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

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text-hi);
}
h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.25; }
h4 { font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.35; }

p { max-width: 68ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-mid);
  font-weight: 300;
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.serif-italic { font-style: italic; color: var(--gold); }

/* --------------------------------------------------------------------------
   5. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 900px; }

.section {
  position: relative;
  padding-block: var(--space-section);
  overflow: hidden;   /* clips .watermark + .float-deco so they never widen the document */
}
.section--light { background: var(--bone); color: #3A3A42; }
.section--light h1, .section--light h2,
.section--light h3, .section--light h4 { color: var(--text-on-light); }
.section--light .lede { color: #4A4A55; }
.section--light .eyebrow { color: var(--gold-deep); }
.section--light .eyebrow::before,
.section--light .eyebrow::after { background: var(--gold-deep); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* Ghost watermark numeral behind sections */
.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 1;
  font-weight: 300;
  color: rgba(255,255,255,.022);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.section--light .watermark { color: rgba(20,20,22,.04); }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .95rem 2.1rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out),
              color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* gold sheen sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.42) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }

.btn--gold {
  background: var(--grad-gold);
  background-size: 200% 100%;
  color: var(--text-on-gold);
  box-shadow: var(--shadow-2), var(--glow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: var(--shadow-3), 0 0 44px rgba(240,216,32,.34);
}

.btn--ghost {
  background: transparent;
  color: var(--text-hi);
  border: 1px solid rgba(255,255,255,.28);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,216,32,.06);
}

.btn--dark {
  background: var(--ink);
  color: var(--text-hi);
  border: 1px solid var(--ink);
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

.btn--sm { min-height: 44px; padding: .7rem 1.4rem; font-size: .72rem; }
.btn--block { width: 100%; }

/* Text link with gold underline draw */
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;   /* keep "View Service" + arrow on one line */
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--dur-mid) var(--ease-out), gap var(--dur-mid) var(--ease-out);
}
.link-gold svg { width: 17px; height: 17px; flex: none; }   /* keep the arrow from collapsing */
.link-gold:hover { background-size: 100% 1px; gap: .85rem; }

/* --------------------------------------------------------------------------
   7. TOP BAR
   -------------------------------------------------------------------------- */
/* Sticky chrome: the top bar and the header travel together, so the header
   never needs a hard-coded `top` offset equal to the top bar's height. */
.site-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.topbar {
  position: relative;
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--glass-brd);
  font-size: .78rem;
  color: var(--text-mid);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 46px;
  padding-block: .35rem;
  transition: min-height var(--dur-mid) var(--ease-out);
}
.site-top.is-stuck .topbar__inner { min-height: 38px; }
.site-top.is-stuck .socials a { width: 30px; height: 30px; }
.topbar__group { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  transition: color var(--dur-fast) ease;
}
.topbar__item svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
a.topbar__item:hover { color: var(--gold); }

.socials { display: flex; align-items: center; gap: .4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--text-mid);
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease,
              background-color var(--dur-fast) ease;
}
.socials a svg { width: 15px; height: 15px; }
.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(240,216,32,.08);
}

/* --------------------------------------------------------------------------
   8. HEADER / NAV
   -------------------------------------------------------------------------- */
.header {
  position: relative;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--hairline);
  transition: background-color var(--dur-mid) ease,
              box-shadow var(--dur-mid) ease,
              border-color var(--dur-mid) ease;
}
.header.is-stuck {
  background: rgba(10,10,11,.95);
  box-shadow: var(--shadow-2);
  border-bottom-color: var(--glass-brd);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
  transition: padding var(--dur-mid) var(--ease-out);
}
.header.is-stuck .header__inner { padding-block: .6rem; }

/* Logo slot — image ONLY. No brand text is ever rendered here. */
.logo { display: block; flex: none; }
.logo img {
  width: 176px;
  height: auto;
  transition: width var(--dur-mid) var(--ease-out), opacity var(--dur-fast) ease;
}
.header.is-stuck .logo img { width: 142px; }
.logo:hover img { opacity: .82; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: .4rem 0;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--dur-fast) ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Dropdown */
.nav__item--has-menu { position: relative; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  /* NB: never `font: inherit` here — the shorthand resets size/family and the
     Services item would render larger than its sibling nav links. */
}
.nav__toggle svg {
  width: 11px; height: 11px;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__item--has-menu:hover .nav__toggle svg,
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 274px;
  padding: .6rem;
  background: rgba(20,20,22,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: var(--z-dropdown);
  transition: opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out),
              visibility var(--dur-mid);
}
.nav__item--has-menu:hover .dropdown,
.nav__item--has-menu:focus-within .dropdown,
.dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.dropdown a {
  display: block;
  padding: .7rem .95rem;
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--text-mid);
  transition: background-color var(--dur-fast) ease, color var(--dur-fast) ease,
              padding-left var(--dur-fast) ease;
}
.dropdown a:hover,
.dropdown a[aria-current="page"] {
  background: rgba(240,216,32,.09);
  color: var(--gold);
  padding-left: 1.3rem;
}

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) ease;
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-hi);
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast) ease;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Scroll progress */
.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(240,216,32,.55);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  padding: 6rem var(--gutter) 2.5rem;
  background: rgba(10,10,11,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out),
              visibility var(--dur-mid);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: var(--gutter);
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--text-hi);
}
.mobile-nav__close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a.m-link {
  display: block;
  padding: .95rem 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-hi);
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(16px);
}
.mobile-nav.is-open a.m-link {
  animation: mnav-in .5s var(--ease-out) forwards;
}
.mobile-nav a.m-link:hover,
.mobile-nav a.m-link[aria-current="page"] { color: var(--gold); }
.mobile-nav .m-sub {
  padding-left: 1.1rem;
  font-size: 1.15rem !important;
  font-family: var(--font-body) !important;
  color: var(--text-mid) !important;
  border-bottom-style: dashed;
}
.mobile-nav__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .8rem; }

@keyframes mnav-in { to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 92vh, 940px);
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: -2;
  will-change: transform;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 40%, rgba(10,10,11,.94) 0%, rgba(10,10,11,.74) 45%, rgba(10,10,11,.9) 100%),
    linear-gradient(180deg, rgba(10,10,11,.6) 0%, transparent 30%, rgba(10,10,11,.98) 100%);
}
.hero__inner { position: relative; max-width: 860px; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lede { margin-bottom: 2.5rem; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* word-by-word headline reveal */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(2deg);
  animation: word-in .85s var(--ease-out) forwards;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.15rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-hi);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  border-radius: 100px;
}
.trust-pill svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .6rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-low);
}
.scroll-cue__line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2.4s ease-in-out infinite;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(240,216,32,.07) 0%, transparent 55%),
    var(--ink);
}
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero .lede { max-width: 62ch; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.6rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-low);
}
.breadcrumb a { color: var(--text-mid); transition: color var(--dur-fast) ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .55; }
.breadcrumb [aria-current="page"] { color: var(--gold); }

/* --------------------------------------------------------------------------
   10. STATS
   -------------------------------------------------------------------------- */
.stats {
  border-block: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(240,216,32,.035), transparent);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.stat {
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
  text-align: center;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-low);
}

/* --------------------------------------------------------------------------
   11. CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 60% at 50% 0%, rgba(240,216,32,.10), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-mid) ease;
}
.card:hover { border-color: var(--glass-brd); box-shadow: var(--shadow-3); }
.card:hover::before { opacity: 1; }

a.card, .card--link { cursor: pointer; }
a.card:hover { transform: translateY(-8px); }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(240,216,32,.05);
  transition: background-color var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out);
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { background: rgba(240,216,32,.12); transform: translateY(-2px); }

.card h3 { margin-bottom: .8rem; }
.card p { margin-bottom: 1.5rem; font-size: .95rem; }
.card .link-gold { margin-top: auto; align-self: flex-start; }

.card__num {
  position: absolute;
  top: 1.1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}

/* 3D tilt wrapper */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt > * { transform: translateZ(28px); }

/* Feature card (glass) */
.feature {
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.feature__icon { color: var(--gold); margin-bottom: 1.1rem; }
.feature__icon svg { width: 30px; height: 30px; }
.feature h4 { margin-bottom: .6rem; }
.feature p { font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------------------
   12. MEDIA / LAYERED IMAGES
   -------------------------------------------------------------------------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.media-frame img {
  width: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}
.media-frame:hover img { transform: scale(1.06); }
.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.layered { position: relative; }
.layered__main { position: relative; z-index: 2; }
.layered__float {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 46%;
  z-index: 3;
  border: 6px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.layered__badge {
  position: absolute;
  left: -6%;
  top: 8%;
  z-index: 4;
  display: grid;
  gap: .15rem;
  place-items: center;
  padding: 1.1rem 1.4rem;
  background: var(--grad-gold);
  color: var(--text-on-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3);
  text-align: center;
}
.layered__badge strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
}
.layered__badge span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

/* Floating decorative SVG */
.float-deco {
  position: absolute;
  color: var(--gold);
  opacity: .13;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   13. VIDEO FACADE
   -------------------------------------------------------------------------- */
.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--hairline);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.25), rgba(10,10,11,.7));
  transition: opacity var(--dur-mid) ease;
}
.video-facade:hover::after { opacity: .7; }
.video-facade__btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  color: var(--text-on-gold);
}
.video-facade__btn i {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold), var(--shadow-3);
  transition: transform var(--dur-mid) var(--ease-out);
}
.video-facade__btn i svg { width: 30px; height: 30px; margin-left: 4px; }
.video-facade:hover .video-facade__btn i { transform: scale(1.09); }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   14. REVIEWS
   -------------------------------------------------------------------------- */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.rating-summary__score {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stars { display: inline-flex; gap: .18rem; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter-pill {
  min-height: 44px;
  padding: .6rem 1.35rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  cursor: pointer;
  transition: color var(--dur-fast) ease, border-color var(--dur-fast) ease,
              background-color var(--dur-fast) ease;
}
.filter-pill:hover { color: var(--gold); border-color: var(--gold); }
.filter-pill[aria-pressed="true"] {
  color: var(--text-on-gold);
  background: var(--grad-gold);
  border-color: transparent;
  font-weight: 600;
}

.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out), opacity var(--dur-mid) ease;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: var(--glass-brd); }
.review.is-hidden { display: none; }
.review__quote {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: .6;
  color: var(--gold);
  opacity: .35;
}
.review p { font-size: .97rem; color: var(--text-mid); margin: 0; }
.review__foot {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
}
.review__avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--text-on-gold);
  font-weight: 600;
  font-size: 1.05rem;
}
.review__name { font-weight: 500; color: var(--text-hi); font-size: .92rem; }
.review__meta { font-size: .74rem; color: var(--text-low); }
.review__g { margin-left: auto; flex: none; }
.review__g svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   15. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  display: flex;
  overflow: hidden;
  padding-block: 1.6rem;
  border-block: 1px solid var(--hairline);
  background: rgba(240,216,32,.03);
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  flex: none;
  gap: 3rem;
  padding-right: 3rem;
  align-items: center;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  white-space: nowrap;
  color: var(--text-hi);
  opacity: .55;
}
.marquee span::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* --------------------------------------------------------------------------
   16. ACCORDION (FAQ)
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--hairline); }
.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--text-hi);
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}
.acc-trigger:hover, .acc-trigger[aria-expanded="true"] { color: var(--gold); }
.acc-icon {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--glass-brd);
  border-radius: 50%;
  transition: background-color var(--dur-fast) ease, transform var(--dur-mid) var(--ease-out);
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%,-50%);
  transition: opacity var(--dur-fast) ease, transform var(--dur-mid) var(--ease-out);
}
.acc-icon::before { width: 13px; height: 1.5px; }
.acc-icon::after  { width: 1.5px; height: 13px; }
.acc-trigger[aria-expanded="true"] .acc-icon { background: rgba(240,216,32,.10); transform: rotate(180deg); }
.acc-trigger[aria-expanded="true"] .acc-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.acc-panel {
  overflow: hidden;
  height: 0;
  transition: height var(--dur-mid) var(--ease-io);
}
.acc-panel__inner { padding-bottom: 1.7rem; }
.acc-panel__inner p { font-size: .97rem; }

/* --------------------------------------------------------------------------
   17. FORM
   -------------------------------------------------------------------------- */
.form-card {
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1.25rem;
}
.field { position: relative; display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1.1rem;
  font-size: .96rem;
  font-weight: 300;
  color: var(--text-hi);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) ease, background-color var(--dur-fast) ease,
              box-shadow var(--dur-fast) ease;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0D820' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 17px;
  padding-right: 2.8rem;
  cursor: pointer;
}
.field select option { background: var(--charcoal); color: var(--text-hi); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-low); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(240,216,32,.05);
  box-shadow: 0 0 0 3px rgba(240,216,32,.14);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #FF6B6B;
  background: rgba(255,107,107,.06);
}
.field-error {
  display: none;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
  font-size: .8rem;
  color: #FF8A8A;
}
.field-error.is-visible { display: flex; }
.field-error svg { width: 14px; height: 14px; flex: none; }

.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: .7rem;
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: .9rem;
}
.form-status.is-visible { display: flex; }
.form-status--error { background: rgba(255,107,107,.10); border: 1px solid rgba(255,107,107,.4); color: #FF9E9E; }
.form-status--ok { background: rgba(240,216,32,.10); border: 1px solid var(--glass-brd); color: var(--gold-soft); }
.form-status svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading .btn__spinner { display: block; }
.btn__spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(20,20,22,.3);
  border-top-color: var(--text-on-gold);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* --------------------------------------------------------------------------
   18. INFO / NAP CARD
   -------------------------------------------------------------------------- */
.info-card {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.info-row {
  display: flex;
  gap: 1rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--hairline);
}
.info-row:last-of-type { border-bottom: 0; }
.info-row__icon { color: var(--gold); flex: none; margin-top: 3px; }
.info-row__icon svg { width: 19px; height: 19px; }
.info-row dt {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: .28rem;
}
.info-row dd { margin: 0; color: var(--text-hi); font-size: .97rem; }
.info-row dd a { transition: color var(--dur-fast) ease; }
.info-row dd a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.hours-table th, .hours-table td { padding: .55rem 0; text-align: left; font-weight: 400; }
.hours-table th { color: var(--text-mid); font-weight: 400; }
.hours-table td { color: var(--text-hi); text-align: right; }
.hours-table tr + tr { border-top: 1px dashed rgba(255,255,255,.07); }
.hours-table .is-today th, .hours-table .is-today td { color: var(--gold); font-weight: 500; }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(1) invert(.92) contrast(.85);
  transition: filter var(--dur-slow) ease;
}
.map-embed:hover { filter: grayscale(.35) invert(.9) contrast(.9); }

/* --------------------------------------------------------------------------
   19. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--grad-gold);
  background-size: 200% 100%;
  color: var(--text-on-gold);
  text-align: center;
}
.cta-band h2 { color: var(--text-on-gold); margin-bottom: 1rem; }
.cta-band p {
  margin: 0 auto 2.25rem;
  color: rgba(20,20,22,.82);
  max-width: 58ch;
}
.cta-band .eyebrow { color: rgba(20,20,22,.75); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(20,20,22,.6); }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-band .btn--ghost { border-color: rgba(20,20,22,.4); color: var(--text-on-gold); }
.cta-band .btn--ghost:hover { background: rgba(20,20,22,.09); border-color: var(--ink); color: var(--ink); }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  background: #060607;
  border-top: 1px solid var(--hairline);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer__logo img { width: 180px; margin-bottom: 1.35rem; }
.footer p { font-size: .93rem; }
.footer h4 {
  margin-bottom: 1.35rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__links { display: grid; gap: .8rem; }
.footer__links a {
  font-size: .93rem;
  color: var(--text-mid);
  transition: color var(--dur-fast) ease, padding-left var(--dur-fast) ease;
}
.footer__links a:hover { color: var(--gold); padding-left: 6px; }
.footer .socials { margin-top: 1.5rem; }

.footer-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--hairline);
  font-size: .85rem;
  color: var(--text-low);
}
.footer-credits p { margin: 0; }
.footer-credits a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity var(--dur-fast) ease;
}
.footer-credits a:hover { opacity: .78; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   21. MOBILE STICKY ACTION BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-mobilebar);
  background: rgba(10,10,11,.94);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-top: 1px solid var(--glass-brd);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
.mobile-bar__inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 58px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-bar a svg { width: 19px; height: 19px; flex: none; }
.mobile-bar__call { background: var(--grad-gold); color: var(--text-on-gold); }
.mobile-bar__call svg { animation: ring 2.6s ease-in-out infinite; transform-origin: center; }
.mobile-bar__wa { background: #25D366; color: #06301A; }

/* --------------------------------------------------------------------------
   22. POPUP
   -------------------------------------------------------------------------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4,4,5,.82);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) ease, visibility var(--dur-mid);
  overflow-y: auto;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }

.popup {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  background: linear-gradient(160deg, rgba(30,30,34,.97), rgba(10,10,11,.98));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3), var(--glow-gold);
  transform: scale(.93) translateY(18px);
  opacity: 0;
  transition: transform 420ms var(--ease-out), opacity 420ms var(--ease-out);
  overflow: hidden;
}
.popup-overlay.is-open .popup { transform: scale(1) translateY(0); opacity: 1; }
.popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 45% at 50% 0%, rgba(240,216,32,.14), transparent 70%);
  pointer-events: none;
}
.popup > * { position: relative; }
.popup__close {
  position: absolute;
  top: .9rem; right: .9rem;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: color var(--dur-fast) ease, background-color var(--dur-fast) ease,
              transform var(--dur-mid) var(--ease-out);
}
.popup__close:hover { color: var(--gold); background: rgba(255,255,255,.06); transform: rotate(90deg); }
.popup__close svg { width: 19px; height: 19px; }
.popup__deco { color: var(--gold); margin: 0 auto 1.1rem; opacity: .9; animation: float 6s ease-in-out infinite; }
.popup__deco svg { width: 44px; height: 44px; margin-inline: auto; }
.popup h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); margin-bottom: 1rem; }
.popup p { margin: 0 auto 1.1rem; font-size: .97rem; }
.popup .highlight { color: var(--gold); font-weight: 500; }
.popup__actions { display: grid; gap: .9rem; margin-top: 1.75rem; }
.popup__later {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-low);
  transition: color var(--dur-fast) ease;
}
.popup__later:hover { color: var(--text-hi); text-decoration: underline; text-underline-offset: 4px; }
.popup__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--text-mid);
}
.popup__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.popup__trust svg { width: 14px; height: 14px; color: var(--gold); }

body.no-scroll { overflow: hidden; }

/* --------------------------------------------------------------------------
   23. GALLERY / LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: var(--glass-brd); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.15rem;
  text-align: left;
  background: linear-gradient(transparent, rgba(6,6,7,.94));
  color: var(--text-hi);
  font-size: .9rem;
  font-weight: 500;
}
.gallery-item__cap small {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 3.5rem 1.25rem;
  background: rgba(4,4,5,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) ease, visibility var(--dur-mid);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}
.lightbox__cap { margin-top: 1rem; text-align: center; color: var(--text-mid); font-size: .9rem; }
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--text-hi);
  transition: background-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.lightbox__btn:hover { background: rgba(240,216,32,.14); color: var(--gold); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   24. MISC BLOCKS
   -------------------------------------------------------------------------- */
.checklist { display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; font-size: .97rem; }
.checklist svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }

.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  position: relative;
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--hairline);
}
.step__num {
  flex: none;
  width: 54px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  opacity: .85;
}
.step h4 { margin-bottom: .45rem; }
.step p { font-size: .95rem; margin: 0; }

.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}
.timeline__item { position: relative; padding-bottom: 2.5rem; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 7px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(240,216,32,.10);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .35rem;
}
.timeline__item p { font-size: .95rem; }

.area-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.15rem;
  font-size: .82rem;
  color: var(--text-hi);
  background: var(--glass);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); }
.area-chip svg { width: 14px; height: 14px; color: var(--gold); }

.post-card { overflow: hidden; padding: 0; }
.post-card__img { overflow: hidden; }
.post-card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.post-card:hover .post-card__img img { transform: scale(1.06); }
.post-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-weight: 600;
}

.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: .75rem; }
.prose p { margin-bottom: 1.15rem; }
.prose ul { display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.prose ul li { display: flex; gap: .8rem; }
.prose ul li::before { content: '—'; color: var(--gold); flex: none; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.notice {
  display: flex;
  gap: .9rem;
  padding: 1.25rem 1.4rem;
  background: rgba(240,216,32,.06);
  border: 1px solid var(--glass-brd);
  border-left-width: 3px;
  border-radius: var(--radius);
  font-size: .93rem;
}
.notice svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.notice p { margin: 0; }

/* --------------------------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__list { gap: 1.3rem; }
  .nav__link { font-size: .72rem; }
}

@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .burger { display: grid; }
  .layered__float { position: static; width: 100%; margin-top: 1.25rem; border-width: 0; }
  .layered__badge { left: auto; right: 1rem; top: 1rem; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }         /* room for the sticky action bar */
  .mobile-bar { display: block; }
  .topbar__group--left { display: none; }
  .topbar__item--email { display: none; }      /* would wrap the bar onto 2 rows */
  .topbar__inner { justify-content: center; gap: 1rem; }
  .topbar__group { flex-wrap: nowrap; gap: .9rem; }
  .socials { gap: .15rem; }
  .socials a { width: 44px; height: 44px; }    /* full touch target on mobile */
  .site-top.is-stuck .socials a { width: 40px; height: 40px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer-credits { flex-direction: column; text-align: center; gap: .5rem; }
  .hero { min-height: 84vh; }
  .hero__actions .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .section { padding-block: clamp(3.5rem, 12vw, 5rem); }
  .rating-summary { flex-direction: column; text-align: center; gap: 1rem; }
  .lightbox__prev { left: .5rem; }
  .lightbox__next { right: .5rem; }
  .step { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .logo img { width: 142px; }
  .header.is-stuck .logo img { width: 122px; }
  .btn { padding: .9rem 1.5rem; font-size: .74rem; }
  .marquee span { font-size: 1.15rem; }
  .popup { padding: 2rem 1.35rem; }
}

/* Desktop-only pointer effects */
@media (hover: none) {
  .tilt { transform: none !important; }
  .card:hover, .review:hover, .feature:hover, a.card:hover { transform: none; }
}
