/* =====================================================================
   THE BLUE CHEESE - stylesheet
   Hand-written, no frameworks, no external requests.
   Sections:  1 tokens  2 reset  3 layout  4 header  5 hero  6 blocks
              7 cards  8 forms/buttons  9 footer  10 overlays  11 utils
   ===================================================================== */

/* ---------- 1. TOKENS ------------------------------------------- */
:root {
  /* brand */
  --ink:        #070B16;   /* page background, near-black navy       */
  --ink-2:      #0D1426;   /* raised background                      */
  --surface:    #131C33;   /* cards                                  */
  --surface-2:  #1A2542;   /* card hover                             */
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.16);

  --cream:      #F3F1EA;   /* primary text                           */
  --muted:      #A4AEC8;   /* secondary text                         */
  --dim:        #8290AE;   /* tertiary text - WCAG AA on every bg    */

  --blue:       #7DA2FF;   /* accent                                 */
  --blue-deep:  #3F63D6;
  --blue-glow:  rgba(125, 162, 255, 0.20);
  --gold:       #D6B26B;   /* highlight, used sparingly              */

  /* type */
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
             "Times New Roman", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* spacing scale */
  --s1: 0.5rem;  --s2: 0.75rem; --s3: 1rem;    --s4: 1.5rem;
  --s5: 2rem;    --s6: 3rem;    --s7: 4.5rem;  --s8: 6.5rem;

  --radius:    14px;
  --radius-sm: 9px;
  --container: 1140px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s3);
  color: var(--cream);
}

h1 { font-size: clamp(2.25rem, 6vw, 3.9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 var(--s3); }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-color: rgba(125, 162, 255, 0.4);
    text-underline-offset: 3px; }
a:hover { color: #A6C0FF; }

ul, ol { margin: 0 0 var(--s3); padding-left: 1.15rem; }
li { margin-bottom: 0.35rem; }

strong { color: #FFF; font-weight: 600; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s6) 0; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--blue-deep); color: #FFF; }

/* ---------- 3. LAYOUT ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s4);
}

.section { padding-block: var(--s7); }
.section--tight { padding-block: var(--s6); }
.section--alt { background: var(--ink-2); border-block: 1px solid var(--line); }

.section-head { max-width: 62ch; margin-bottom: var(--s6); }
.section-head p { color: var(--muted); font-size: 1.09rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s2);
}

.grid { display: grid; gap: var(--s4); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.split {
  display: grid;
  gap: var(--s6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: var(--s7); }
  .split--flip > :first-child { order: 2; }
}

/* ---------- 4. HEADER ------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue); color: #06101F; padding: 0.75rem 1.25rem;
  font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(7, 11, 22, 0.95);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); min-height: 72px;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--cream); text-decoration: none; flex-shrink: 0;
}
.brand:hover { color: var(--cream); }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text {
  font-family: var(--display); font-size: 1.16rem; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.1; white-space: nowrap;
}
.brand-text span { display: block; font-family: var(--body);
  font-size: 0.6rem; letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--dim); font-weight: 600; margin-top: 2px; }

.nav-links { display: none; align-items: center; gap: var(--s1); }
@media (min-width: 940px) { .nav-links { display: flex; } }

.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.94rem;
  font-weight: 500; padding: 0.5rem 0.8rem; border-radius: var(--radius-sm);
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--blue); border-radius: 2px;
}

/* Scoped to .nav so these beat the later .btn display rule. */
.nav .nav-cta { display: none; }
@media (min-width: 940px) { .nav .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  color: var(--cream); cursor: pointer; padding: 0;
}
@media (min-width: 940px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none; border-top: 1px solid var(--line);
  background: var(--ink-2); padding: var(--s3) 0 var(--s4);
}
.mobile-menu.is-open { display: block; }
@media (min-width: 940px) { .mobile-menu, .mobile-menu.is-open { display: none; } }
/* :not(.btn) so this never overrides the button layout below. */
.mobile-menu a:not(.btn) {
  display: block; padding: 0.85rem var(--s1); color: var(--cream);
  text-decoration: none; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:not(.btn)[aria-current="page"] { color: var(--blue); }
.mobile-menu .btn { margin-top: var(--s3); width: 100%; }

/* ---------- 5. HERO --------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(var(--s7), 12vw, var(--s8));
  background:
    radial-gradient(900px 520px at 68% -8%, rgba(63, 99, 214, 0.30), transparent 62%),
    radial-gradient(700px 460px at 12% 108%, rgba(125, 162, 255, 0.11), transparent 60%),
    linear-gradient(180deg, #080D1B 0%, var(--ink) 60%);
}
.hero::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.hero-inner { position: relative; max-width: 780px; }
.hero h1 { margin-bottom: var(--s4); }
.hero h1 em {
  font-style: normal; color: var(--blue);
  text-shadow: 0 0 44px var(--blue-glow);
}
.hero-lede {
  font-size: clamp(1.06rem, 2.1vw, 1.25rem); color: var(--muted);
  max-width: 60ch; margin-bottom: var(--s5);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3);
  margin-bottom: var(--s6);
}

.hero-facts {
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5);
  padding-top: var(--s4); border-top: 1px solid var(--line);
}
.hero-fact { display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.93rem; color: var(--muted); }
.hero-fact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px;
  color: var(--blue); }
.hero-fact strong { display: block; color: var(--cream); font-weight: 600; }

/* page banner (non-home pages) */
.page-head {
  padding-block: var(--s6) var(--s5);
  background:
    radial-gradient(700px 320px at 78% -30%, rgba(63, 99, 214, 0.22), transparent 60%),
    linear-gradient(180deg, #080D1B, var(--ink));
  border-bottom: 1px solid var(--line);
}
.page-head p { color: var(--muted); max-width: 62ch; font-size: 1.09rem;
  margin-bottom: 0; }

/* Big "coming soon" banner - deliberately oversized, so the page reads
   as a statement rather than as a page that failed to load. */
.coming-soon {
  position: relative; overflow: hidden;
  padding-block: clamp(var(--s6), 11vw, var(--s8));
  background:
    radial-gradient(760px 460px at 50% -10%, rgba(63, 99, 214, 0.34), transparent 64%),
    radial-gradient(620px 400px at 88% 110%, rgba(125, 162, 255, 0.12), transparent 62%),
    linear-gradient(180deg, #080D1B 0%, var(--ink) 70%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.coming-soon .crumbs,
.coming-soon .badge { justify-content: center; }
.coming-soon .crumbs { text-align: center; }

.coming-soon-kicker {
  font-family: var(--body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue);
  margin-bottom: var(--s3);
}

.coming-soon h1 {
  font-size: clamp(3.1rem, 13vw, 7.5rem);
  line-height: 0.92; letter-spacing: -0.045em;
  margin-bottom: var(--s4);
}
.coming-soon h1 em {
  font-style: normal; color: var(--blue);
  text-shadow: 0 0 60px var(--blue-glow);
}

.coming-soon-lede {
  font-size: clamp(1.04rem, 2.1vw, 1.22rem); color: var(--muted);
  max-width: 54ch; margin: 0 auto var(--s5);
}
.coming-soon .hero-actions { justify-content: center; margin-bottom: 0; }

.crumbs { font-size: 0.82rem; color: var(--dim); margin-bottom: var(--s3); }
.crumbs a { color: var(--dim); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin-inline: 0.45rem; opacity: 0.5; }

/* ---------- 6. BLOCKS ------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.42rem 0.85rem; border-radius: 999px;
  background: rgba(125, 162, 255, 0.10);
  border: 1px solid rgba(125, 162, 255, 0.28);
  color: var(--blue); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: var(--s4);
}
.badge svg { width: 14px; height: 14px; }

.notice {
  display: flex; gap: var(--s3); padding: var(--s4);
  background: rgba(214, 178, 107, 0.07);
  border: 1px solid rgba(214, 178, 107, 0.28);
  border-radius: var(--radius); color: var(--cream);
}
.notice svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold);
  margin-top: 2px; }
.notice p { font-size: 0.96rem; color: var(--muted); }
.notice strong { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table th, .hours-table td {
  text-align: left; padding: 0.72rem 0; border-bottom: 1px solid var(--line);
}
.hours-table th { font-weight: 500; color: var(--muted); }
.hours-table td { text-align: right; color: var(--cream);
  font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today th { color: var(--blue); font-weight: 600; }
.hours-table tr.is-today td { color: var(--blue); font-weight: 600; }

.open-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; margin-bottom: var(--s3);
}
.open-status .dot { width: 8px; height: 8px; border-radius: 50%;
  background: var(--dim); flex-shrink: 0; }
.open-status.is-open { color: #6FD59A; }
.open-status.is-open .dot { background: #6FD59A;
  box-shadow: 0 0 0 4px rgba(111, 213, 154, 0.16); }
.open-status.is-closed { color: var(--dim); }

.map-embed {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); aspect-ratio: 16 / 11;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.35) contrast(1.05); }

/* ---------- 7. CARDS -------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s4);
  transition: border-color 0.2s ease, background 0.2s ease,
              transform 0.2s ease;
}
.card:hover { border-color: var(--line-2); background: var(--surface-2); }
.card h3 { margin-bottom: var(--s2); }
.card p { color: var(--muted); font-size: 0.97rem; }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: var(--s3);
  background: rgba(125, 162, 255, 0.10);
  border: 1px solid rgba(125, 162, 255, 0.22);
  color: var(--blue);
}
.card-icon svg { width: 21px; height: 21px; }

.range-card { display: flex; flex-direction: column; }
.range-card ul {
  list-style: none; padding: 0; margin: var(--s3) 0 0;
  border-top: 1px solid var(--line); padding-top: var(--s3);
}
.range-card li {
  position: relative; padding-left: 1.35rem; font-size: 0.92rem;
  color: var(--muted); margin-bottom: 0.5rem;
}
.range-card li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  opacity: 0.65;
}

.merch-card { display: flex; flex-direction: column; }
.merch-price {
  margin-top: auto; padding-top: var(--s3); font-size: 0.88rem;
  color: var(--dim);
}
.merch-price b { color: var(--gold); font-size: 1.05rem;
  font-family: var(--display); font-weight: 600; }

/* FAQ accordion */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--s3); padding: var(--s4) 0; cursor: pointer;
  font-family: var(--display); font-size: 1.13rem; font-weight: 600;
  color: var(--cream); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-item summary .chev {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--dim);
  margin-top: 4px; transition: transform 0.22s ease, color 0.2s ease;
}
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--blue); }
.faq-answer { padding-bottom: var(--s4); color: var(--muted);
  max-width: 72ch; font-size: 1rem; }

/* ---------- 8. BUTTONS ------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem; padding: 0.82rem 1.5rem; border-radius: 999px;
  font-family: var(--body); font-size: 0.96rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease,
              border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(180deg, #6E97FF, var(--blue-deep));
  color: #050C1C; box-shadow: 0 8px 26px rgba(63, 99, 214, 0.35);
}
.btn--primary:hover { color: #050C1C; box-shadow: 0 10px 32px rgba(63, 99, 214, 0.5); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.03); border-color: var(--line-2);
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--cream); }

.btn--wa { background: #25D366; color: #04240F; }
.btn--wa:hover { background: #2AE874; color: #04240F; }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* contact tiles */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid;
  gap: var(--s2); }
.contact-list a, .contact-list .contact-static {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s3); border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--surface);
  color: var(--cream); text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-list a:hover { border-color: var(--line-2); background: var(--surface-2);
  color: var(--cream); }
.contact-list svg { width: 19px; height: 19px; color: var(--blue);
  flex-shrink: 0; }
.contact-list span { display: block; font-size: 0.74rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ---------- 9. FOOTER ------------------------------------------- */
.site-footer {
  background: #050810; border-top: 1px solid var(--line);
  padding-block: var(--s6) var(--s4); margin-top: var(--s6);
}
.footer-grid {
  display: grid; gap: var(--s5);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-bottom: var(--s5);
}
.footer-col h2 {
  font-family: var(--body); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  margin-bottom: var(--s3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: var(--blue); }
.footer-col p { color: var(--muted); font-size: 0.94rem; }

.footer-brand .brand { margin-bottom: var(--s3); }

.socials { display: flex; gap: var(--s2); margin-top: var(--s3); }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--muted);
}
.socials a:hover { color: var(--blue); border-color: var(--blue); }
.socials svg { width: 17px; height: 17px; }

.footer-legal {
  border-top: 1px solid var(--line); padding-top: var(--s4);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s4);
  justify-content: space-between; align-items: flex-start;
  font-size: 0.84rem; color: var(--dim);
}
.footer-legal p { margin: 0; max-width: 68ch; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: var(--s3); }
.footer-legal a { color: var(--dim); text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }

.footer-warning {
  margin-top: var(--s4); padding: var(--s3) var(--s4);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem; color: var(--dim); line-height: 1.6;
}
.footer-warning strong { color: var(--muted); font-weight: 600; }

/* ---------- 10. OVERLAYS ---------------------------------------- */
/* Age gate. Hidden by default so the page is never blocked if JS
   fails or the visitor is a search engine crawler. */
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 7, 14, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: var(--s4); overflow-y: auto;
}
.age-gate.is-visible { display: grid; place-items: center; }
.age-gate-box {
  background: var(--ink-2); border: 1px solid var(--line-2);
  border-radius: 18px; box-shadow: var(--shadow);
  padding: var(--s6) var(--s5); max-width: 470px; width: 100%;
  text-align: center;
}
.age-gate-box svg.mark { width: 54px; height: 54px; margin: 0 auto var(--s4); }
.age-gate-box h2 { font-size: 1.72rem; margin-bottom: var(--s2); }
.age-gate-box p { color: var(--muted); font-size: 0.97rem; }
.age-gate-actions { display: grid; gap: var(--s2); margin-top: var(--s5); }
.age-gate-fine { margin-top: var(--s4); font-size: 0.78rem; color: var(--dim);
  line-height: 1.6; }
.age-gate-deny { display: none; }
.age-gate-deny.is-visible { display: block; }

body.is-gated { overflow: hidden; }

/* Floating action buttons, stacked bottom-right so they can never
   overlap each other. Directions is mobile-only; WhatsApp appears on
   every size, but only once a number is set in site_config.py. */
.float-stack {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}

.float-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  transition: transform 0.18s ease, background 0.18s ease;
}
.float-btn:active { transform: scale(0.94); }
.float-btn svg { width: 23px; height: 23px; }

/* Deliberately quiet: dark, translucent, thin border. Present but
   not shouting over the page. */
.float-btn--map {
  background: rgba(15, 22, 41, 0.88);
  border: 1px solid var(--line-2);
  color: var(--blue);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.40);
}
.float-btn--map:hover { background: rgba(26, 37, 66, 0.94); color: var(--blue); }

/* Desktop already has a Directions button in the header, so hide it. */
@media (min-width: 940px) { .float-btn--map { display: none; } }

.float-btn--wa {
  background: #25D366; color: #04240F; width: 54px; height: 54px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}
.float-btn--wa:hover { background: #2AE874; color: #04240F; }
.float-btn--wa svg { width: 27px; height: 27px; }

/* ---------- 11. UTILITIES --------------------------------------- */
.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;
}
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); }
.mb-4 { margin-bottom: var(--s4); }
.prose { max-width: 70ch; }
.prose h2 { margin-top: var(--s6); }
.prose h3 { margin-top: var(--s5); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { color: var(--muted); }

/* Scroll-in animation.
   Content is VISIBLE by default. Only once JavaScript has confirmed it is
   running (the .js class) do we hide it and fade it in. That way a blocked
   or broken script can never leave a visitor staring at a blank section. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { opacity: 1; transform: none; }

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

@media print {
  .site-header, .wa-float, .age-gate, .hero-actions, .site-footer nav { display: none !important; }
  body { background: #FFF; color: #000; }
}
