/* ============================================================
   Madcap Milwaukee — "Marquee Glow" design system
   Brand register. Committed warm palette, photography-led.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  /* warm tinted neutrals — never pure black/white */
  --ink:        oklch(0.20 0.018 64);   /* deep warm ink */
  --ink-2:      oklch(0.26 0.020 60);   /* raised dark surface */
  --ink-3:      oklch(0.32 0.018 58);   /* hairlines on dark */
  --paper:      oklch(0.972 0.010 78);  /* warm off-white page */
  --paper-2:    oklch(0.995 0.006 84);  /* card / raised paper */
  --line:       oklch(0.88 0.012 74);   /* hairline on light */

  --text:       oklch(0.27 0.018 62);   /* body on light */
  --text-soft:  oklch(0.46 0.016 60);   /* muted on light */
  --text-inv:   oklch(0.95 0.010 80);   /* body on dark */
  --text-inv-soft: oklch(0.78 0.014 74);

  /* committed accent — stage-light amber / champagne gold */
  --gold:       oklch(0.80 0.135 78);   /* champagne glow */
  --amber:      oklch(0.74 0.155 64);   /* deeper amber, CTAs */
  --amber-deep: oklch(0.62 0.150 56);   /* pressed / hover */
  --ember:      oklch(0.58 0.180 32);   /* warm red-ember accent */

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --maxw: 1240px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 64 / 0.06), 0 2px 8px oklch(0.2 0.02 64 / 0.05);
  --shadow:    0 10px 30px oklch(0.2 0.02 64 / 0.10), 0 2px 8px oklch(0.2 0.02 64 / 0.06);
  --shadow-lg: 0 30px 70px oklch(0.18 0.03 60 / 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);   /* ease-out-expo-ish */

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---- Layout primitive: one shared gutter for EVERYTHING ---- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); }
.h-display { font-size: clamp(2.6rem, 1.4rem + 5.6vw, 5.5rem); font-weight: 700; line-height: 0.98; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem); }
p { text-wrap: pretty; }
.lede { font-size: clamp(1.15rem, 1.05rem + 0.6vw, 1.5rem); line-height: 1.5; color: var(--text-soft); max-width: 60ch; }

/* kicker — used sparingly, not above every heading */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.kicker::before { content: ""; width: 1.6rem; height: 2px; background: var(--amber); border-radius: 2px; }

/* ---- Buttons ---- */
.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--amber); color: oklch(0.22 0.03 60); box-shadow: 0 8px 24px oklch(0.74 0.155 64 / 0.35); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 34px oklch(0.78 0.15 70 / 0.45); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-on-dark { border-color: oklch(1 0 0 / 0.28); color: var(--text-inv); }
.btn-on-dark:hover { background: oklch(1 0 0 / 0.08); border-color: oklch(1 0 0 / 0.55); transform: translateY(-2px); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.20 0.018 64 / 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
  transition: background 0.4s var(--ease);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.85rem;
}
.brand { display: flex; flex: none; align-items: center; gap: 0.7rem; color: var(--text-inv); }
.brand .brand-mark { white-space: nowrap; }
.brand-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.03em; line-height: 0.92;
}
.brand-mark .city { color: var(--gold); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; }
.brand .brand-mark .city { margin-top: 0.4rem; }   /* header logo: breathing room between the two rows */
.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav-links a {
  color: var(--text-inv-soft); font-weight: 600; font-size: 0.93rem;
  padding: 0.5rem 0.8rem; border-radius: 8px; transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--text-inv); background: oklch(1 0 0 / 0.06); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-tel { color: var(--text-inv); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text-inv); padding: 0.4rem; }

/* mobile nav */
@media (max-width: 1280px) {
  /* Right-cluster the actions so the hamburger sits at the far right,
     not sandwiched between brand and Book Now by space-between. */
  .nav-cta { margin-left: auto; order: 2; gap: 0.5rem; }
  .nav-toggle { display: inline-flex; order: 3; flex: none; position: relative; z-index: 61; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-toggle svg { width: 1.5rem; height: 1.5rem; }
  .nav-cta .btn { padding: 0.7rem 1.1rem; }
  /* backdrop-filter creates a containing block for fixed children, which would
     trap the slide-in panel inside the header's height. Drop it on mobile. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: oklch(0.19 0.018 64 / 0.96); }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 60;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--ink-2); padding: 5.5rem 1.25rem 2rem;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { display: block; padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav .nav-tel { display: none; }
}
@media (max-width: 440px) {
  .brand .brand-mark { font-size: 1.15rem; }
}
@media (max-width: 400px) {
  .brand-mark .city { letter-spacing: 0.2em; }
  .brand .brand-mark { font-size: 1.02rem; }
  .nav-cta .btn { padding: 0.6rem 0.9rem; font-size: 0.92rem; }
}
@media (max-width: 380px) {
  .brand .brand-mark { font-size: 0.92rem; }
  .brand-mark .city { letter-spacing: 0.14em; }
  .nav-cta { gap: 0.25rem; }
  .nav-cta .btn { padding: 0.55rem 0.7rem; font-size: 0.85rem; }
}
@media (max-width: 340px) {
  .brand .brand-mark { font-size: 0.82rem; }
  .site-header .wrap { width: calc(100% - 24px); }
  .nav-cta .btn { padding: 0.5rem 0.6rem; font-size: 0.8rem; }
}

/* ============================================================
   HERO — full-bleed photo, content on the SHARED gutter
   ============================================================ */
.hero { position: relative; background: var(--ink); color: var(--text-inv); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.18 0.02 64 / 0.55) 0%, oklch(0.18 0.02 64 / 0.30) 35%, oklch(0.16 0.025 58 / 0.92) 100%),
    radial-gradient(120% 90% at 80% 10%, oklch(0.74 0.155 64 / 0.22), transparent 55%);
}
.hero-inner { padding-block: clamp(5rem, 12vw, 9.5rem) clamp(3rem, 7vw, 5rem); }
.hero h1 { color: var(--paper-2); max-width: 18ch; }
.hero .lede { color: var(--text-inv-soft); margin-top: 1.4rem; max-width: 54ch; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* inline availability checker */
.availability {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  background: oklch(0.22 0.018 62 / 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  display: grid; gap: 1rem 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}
.availability .field { display: flex; flex-direction: column; gap: 0.4rem; }
.availability label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-inv-soft); font-weight: 700; }
.availability .av-title {
  grid-column: 1 / -1; font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--gold); display: flex; align-items: center; gap: 0.6rem;
}
.availability select {
  appearance: none; font: inherit; font-weight: 600;
  background: oklch(0.16 0.02 60 / 0.9); color: var(--text-inv);
  border: 1px solid oklch(1 0 0 / 0.18); border-radius: 10px;
  padding: 0.7rem 2.2rem 0.7rem 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23e9d8b0' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
  cursor: pointer;
}
.availability select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.availability .btn { grid-column: auto; height: fit-content; }
@media (max-width: 720px) {
  .availability { grid-template-columns: 1fr 1fr; }
  .availability .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-dark { background: var(--ink); color: var(--text-inv); }
.section-dark h2, .section-dark h3 { color: var(--paper-2); }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .lede { margin-top: 1rem; }
.section-dark .lede { color: var(--text-inv-soft); }

/* intro / split feature */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split.reverse > .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; }
.split-media .glow {
  position: absolute; inset: auto -8% -8% auto; width: 55%; aspect-ratio: 1; z-index: -1;
  background: radial-gradient(circle, var(--gold), transparent 65%); opacity: 0.5; filter: blur(8px);
}
.feature-list { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature-list svg { flex: none; width: 1.4rem; height: 1.4rem; color: var(--amber); margin-top: 0.15rem; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ink-3); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink-2); padding: clamp(1.25rem, 2.4vw, 1.9rem); }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.4rem); color: var(--gold); line-height: 1.02; letter-spacing: -0.02em; }
.stat .l { color: var(--text-inv-soft); margin-top: 0.5rem; font-size: 0.95rem; }

/* ---- Packages (differentiated, not identical cards) ---- */
.packages { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width: 900px) { .packages { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.pkg {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem); display: flex; flex-direction: column;
  color: var(--text);   /* self-contained: don't inherit section context */
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg h3 { color: var(--ink); }
.pkg-price { color: var(--ink); }
.pkg-featured { background: var(--ink); color: var(--text-inv); border-color: var(--ink); position: relative; }
.pkg-featured h3, .pkg-featured .pkg-price { color: var(--paper-2); }
.pkg-featured .pkg-sub, .pkg-featured .pkg-feat li { color: var(--text-inv-soft); }
.pkg-tier { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; }
.pkg-tier.gold { color: var(--amber-deep); }
.pkg-featured .pkg-tier { color: var(--gold); }
.pkg-tier.platinum { color: oklch(0.48 0.02 250); }
.pkg-tier.diamond { color: oklch(0.55 0.10 230); }
.pkg-badge { position: absolute; top: -0.8rem; left: clamp(1.5rem,3vw,2.1rem); background: var(--amber); color: oklch(0.22 0.03 60); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; }
.pkg h3 { margin-top: 0.4rem; }
.pkg-sub { color: var(--text-soft); font-size: 0.95rem; margin-top: 0.1rem; }
.pkg-price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 1.6rem + 2vw, 2.8rem); margin: 1.1rem 0 0.2rem; }
.pkg-price small { font-size: 0.95rem; font-weight: 500; color: var(--text-soft); font-family: var(--font-body); }
.pkg-featured .pkg-price small { color: var(--text-inv-soft); }
.pkg-feat { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; align-content: start; gap: 0.7rem; flex: 1; }
.pkg-feat li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.pkg-feat svg { flex: none; width: 1.15rem; height: 1.15rem; color: var(--amber); margin-top: 0.2rem; }
.pkg-featured .pkg-feat svg { color: var(--gold); }
.pkg .btn { width: 100%; justify-content: center; }

/* add-ons */
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.addon { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; background: var(--paper-2); color: var(--text); }
.addon h3 { font-size: 1.2rem; color: var(--ink); }
.addon p { color: var(--text-soft); margin-top: 0.5rem; font-size: 0.96rem; }
.addon .ico { width: 2.6rem; height: 2.6rem; border-radius: 12px; display: grid; place-items: center; background: oklch(0.80 0.135 78 / 0.18); color: var(--amber-deep); margin-bottom: 1rem; }
.addon .ico svg { width: 1.4rem; height: 1.4rem; }

/* ---- Testimonials wall ---- */
.testi-grid { columns: 3 280px; column-gap: 1.4rem; }
.testi {
  break-inside: avoid; margin-bottom: 1.4rem; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--amber); letter-spacing: 0.1em; font-size: 0.95rem; }
.testi p { margin: 0.7rem 0 1rem; color: var(--text); }
.testi .who { font-weight: 700; font-family: var(--font-display); color: var(--ink); font-size: 0.98rem; }
.testi .occ { color: var(--text-soft); font-size: 0.85rem; }
.section-dark .testi { background: var(--ink-2); border-color: var(--ink-3); }
.section-dark .testi p { color: var(--text-inv); }
.section-dark .testi .who { color: var(--paper-2); }

/* ---- FAQ accordion (grid-rows transition) ---- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--ink);
}
.faq-q .pm { flex: none; width: 1.8rem; height: 1.8rem; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s; }
.faq-q .pm svg { width: 1rem; height: 1rem; color: var(--amber-deep); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--amber); border-color: var(--amber); }
.faq-item.open .faq-q .pm svg { color: oklch(0.22 0.03 60); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--text-soft); padding-bottom: 1.3rem; max-width: 70ch; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); grid-auto-rows: 200px; gap: 0.9rem; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; }

/* ---- CTA band ---- */
.cta-band { background: var(--ink); color: var(--text-inv); border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.6rem); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, var(--amber), transparent 65%); opacity: 0.35; }
.cta-band h2 { color: var(--paper-2); max-width: 18ch; }
.cta-band .lede { color: var(--text-inv-soft); margin-top: 0.8rem; }
.cta-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* badges row */
.badges { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.badges img { height: 76px; width: auto; opacity: 0.95; filter: drop-shadow(0 4px 10px oklch(0.2 0.02 60 / 0.15)); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .contact-grid .doors { order: -1; } }
.contact-line { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-line .ico { width: 2.4rem; height: 2.4rem; flex: none; border-radius: 10px; display: grid; place-items: center; background: oklch(0.80 0.135 78 / 0.18); color: var(--amber-deep); }
.contact-line .ico svg { width: 1.2rem; height: 1.2rem; }
.contact-line .lbl { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }
.contact-line .val { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.field-l { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field-l label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.field-l input, .field-l textarea, .field-l select {
  font: inherit; padding: 0.8rem 0.95rem; border: 1px solid var(--line);
  border-radius: 10px; background: var(--paper); color: var(--text); transition: border-color 0.25s, box-shadow 0.25s;
}
.field-l input:focus, .field-l textarea:focus, .field-l select:focus { outline: 0; border-color: var(--amber); box-shadow: 0 0 0 3px oklch(0.74 0.155 64 / 0.18); }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: var(--ink); color: var(--text-inv); padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); position: relative; isolation: isolate; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(110% 120% at 85% 0%, oklch(0.74 0.155 64 / 0.20), transparent 55%); }
.page-hero h1 { color: var(--paper-2); font-size: clamp(2.3rem, 1.6rem + 3.5vw, 4rem); max-width: 16ch; }
.page-hero .lede { color: var(--text-inv-soft); margin-top: 1rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; color: var(--text-inv-soft); font-size: 0.85rem; margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--text-inv-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--text-inv); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-links { list-style: none; display: grid; gap: 0.55rem; }
.footer-links a { color: var(--text-inv-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-3); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem; }
.foot-tel { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; font-weight: 700; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3rem; }
.eyebrow-center { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* ---- Clients nav pill (2026-09-27) ---- */
.nav-links a.nav-clients {
  border: 1px solid oklch(1 0 0 / 0.26); border-radius: 999px;
  color: var(--text-inv); margin-left: 0.4rem;
}
.nav-links a.nav-clients:hover { border-color: var(--gold); background: oklch(1 0 0 / 0.06); }
.nav-links a.nav-clients.active { border-color: var(--gold); color: var(--gold); }
@media (max-width: 1280px) {
  .nav-links a.nav-clients { margin: 0.6rem 0 0; border-radius: 12px; }
}

/* ---- Book page ---- */
.book-hero h1 { color: var(--paper-2); }
.book-hero .lede { color: var(--text-inv-soft); margin-top: 1rem; }
.availability-lg { max-width: 60rem; }
.availability-lg .av-title { font-size: 1.2rem; }
.availability-lg select { padding-block: 0.9rem; font-size: 1.05rem; }
.availability-lg .btn { padding-block: 1rem; }

.book-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3.5rem); counter-reset: none; }
.book-steps li { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.book-steps .step-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem); line-height: 1; color: var(--amber-deep); letter-spacing: -0.03em; }
.book-steps h3 { margin-top: 0.9rem; font-size: 1.35rem; }
.book-steps p { margin-top: 0.5rem; color: var(--text-soft); max-width: 36ch; }
.book-steps a { color: var(--amber-deep); font-weight: 700; }
@media (max-width: 820px) { .book-steps { grid-template-columns: 1fr; } }

.book-compare { padding-top: 0; }
.book-compare-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.pkg-lines { list-style: none; padding: 0; }
.pkg-lines li { display: grid; grid-template-columns: 1fr auto auto; gap: 1.5rem; align-items: baseline; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.pkg-lines li:first-child { border-top: 1px solid var(--line); }
.pkg-lines .pkg-tier { font-size: 1.3rem; }
.pkg-lines .pl-hours { color: var(--text-soft); }
.pkg-lines .pl-price { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--ink); min-width: 5ch; text-align: right; }
@media (max-width: 820px) { .book-compare-grid { grid-template-columns: 1fr; } }

/* ---- Clients page: login doors ---- */
.doors { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); display: grid; gap: 0.9rem; }
.doors h3 { margin-bottom: 0.3rem; }
.door {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); background: var(--paper);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.door:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow); }
.door:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.door-icon { width: 2.6rem; height: 2.6rem; padding: 0.6rem; border-radius: 50%; background: oklch(0.80 0.135 78 / 0.22); color: var(--amber-deep); }
.door-text { display: flex; flex-direction: column; gap: 0.15rem; }
.door-text strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.door-text span { color: var(--text-soft); font-size: 0.95rem; }
.door-arrow { width: 1.3rem; height: 1.3rem; color: var(--amber-deep); transition: transform 0.3s var(--ease); }
.door:hover .door-arrow { transform: translateX(3px); }
