/* ============================================================
   SECRET LEVEL — Speakeasy PC Club
   Layout container: E — asymmetric-12 (boxed 1280px, section heads
   in cols 1–4, content in cols 5–12; hero & form break to full width)
   Spacing scale: airy (128px / 72px sections; 64px mobile)
   ============================================================ */

:root {
  /* palette */
  --c-bg: #f3efe0;          /* light bg (single contrast section) */
  --c-bg-dark: #0a0f0b;     /* primary dark bg (near-black green) */
  --c-ink: #f3efe0;         /* text on dark */
  --c-ink-inv: #0a0f0b;     /* text on light */
  --c-a1: #2f9e6b;          /* emerald (secondary accent) */
  --c-a2: #d4af37;          /* gold (primary accent) */
  --c-line: rgba(212, 175, 55, 0.4); /* gold hairline */
  --c-dim: rgba(243, 239, 224, 0.66);

  /* fonts */
  --f-display: "Cinzel", Georgia, serif;
  --f-body: "Barlow", system-ui, sans-serif;

  /* radius / border */
  --r-card: 8px;
  --bd: 1.5px solid var(--c-line);

  /* spacing scale (8px step) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* airy section rhythm */
  --sect-y: 128px;
  --block-y: 72px;

  --w-container: 1280px;
}

@media (max-width: 768px) {
  :root { --sect-y: 64px; --block-y: 48px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg-dark);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; margin: 0; }
p { margin: 0 0 var(--s-2); }

/* ---------- utilities ---------- */
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-a2); color: var(--c-ink-inv); padding: var(--s-2);
  font-family: var(--f-display);
}
.u-skip-link:focus { left: 8px; top: 8px; }

.container {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 600px) { .container { padding-inline: 20px; } }

/* ============================================================
   NAV — nav-ticket-cta
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 15, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: var(--bd);
}
.nav__inner {
  max-width: var(--w-container);
  margin-inline: auto;
  padding: 12px 32px;
  display: flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap;
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; }
.nav__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--c-a2); color: var(--c-ink-inv);
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  border-radius: 6px;
}
.nav__name { font-family: var(--f-display); font-size: 18px; letter-spacing: 0.03em; }
.nav__badge {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-a2);
  border: 1px dashed var(--c-line);
  padding: 5px 10px; border-radius: 4px;
}
.nav__links {
  margin-left: auto;
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 13px; letter-spacing: 0.04em;
}
.nav__links > a:not(.nav__cta) { position: relative; padding: 4px 0; color: var(--c-dim); }
.nav__links > a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--c-a1); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links > a:not(.nav__cta):hover,
.nav__links > a.is-active { color: var(--c-ink); }
.nav__links > a:not(.nav__cta):hover::after,
.nav__links > a.is-active::after { transform: scaleX(1); }

/* ticket-stub CTA */
.nav__cta--ticket {
  position: relative;
  background: var(--c-a2); color: var(--c-ink-inv);
  font-family: var(--f-display); font-size: 13px;
  padding: 9px 18px 9px 22px;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 38%, calc(100% - 5px) 50%, 100% 62%, 100% 100%, 0 100%, 0 62%, 5px 50%, 0 38%);
}
.nav__cta--ticket::before {
  content: ""; position: absolute; left: 12px; top: 6px; bottom: 6px;
  border-left: 2px dashed rgba(10, 15, 11,0.45);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 40px; height: 34px;
  background: transparent; border: var(--bd); border-radius: 6px;
  cursor: pointer;
}
.nav__toggle-bar, .nav__toggle-bar::before, .nav__toggle-bar::after {
  display: block; width: 18px; height: 2px; background: var(--c-ink);
  margin: 0 auto; position: relative; transition: transform 0.2s ease;
}
.nav__toggle-bar::before { content: ""; position: absolute; top: -6px; left: 0; }
.nav__toggle-bar::after { content: ""; position: absolute; top: 6px; left: 0; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__badge { order: 3; margin-left: auto; }
  .nav__links {
    order: 4; flex-basis: 100%; margin-left: 0;
    flex-direction: column; align-items: flex-start; gap: var(--s-2);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .nav__links.is-open { max-height: 380px; opacity: 1; padding-top: var(--s-2); }
  .nav__cta--ticket { align-self: stretch; text-align: center; }
}
@media (max-width: 480px) {
  .nav__badge { font-size: 9px; }
  .nav__inner { padding: 10px 20px; }
}

/* ============================================================
   HERO — hero-centered-fullbleed  (Warp Reveal)
   ============================================================ */
.s-hero {
  position: relative;
  min-height: 92vh;
  display: grid; place-items: center;
  padding: 120px 32px 96px;
  overflow: hidden;
  text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(10, 15, 11,0.35), rgba(10, 15, 11,0.9) 78%),
    linear-gradient(180deg, rgba(10, 15, 11,0.55), rgba(10, 15, 11,0.92));
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c-a2); margin-bottom: var(--s-3);
}

/* portal / pipe frame around h1 */
.hero__portal {
  position: relative;
  display: inline-block;
  padding: var(--s-3) var(--s-4) var(--s-4);
  margin-bottom: var(--s-4);
}
.hero__portal::before {
  content: ""; position: absolute; inset: 0;
  border: 2px solid var(--c-line);
  border-top-left-radius: 999px; border-top-right-radius: 999px;
  border-bottom-left-radius: var(--r-card); border-bottom-right-radius: var(--r-card);
  box-shadow: inset 0 0 40px rgba(212, 175, 55,0.06);
}
.hero__portal-stars { position: absolute; inset: 0; pointer-events: none; }
.hero__portal-stars .warp-star {
  position: absolute; top: 50%; left: 8%;
  color: var(--c-a1); font-size: 14px;
  opacity: 0; will-change: transform, opacity;
}

.hero__title {
  font-size: clamp(34px, 5.5vw, 68px);
  letter-spacing: 0.01em;
}
.hero__title-line { display: block; }
.hero__title-line--sub { color: var(--c-a1); font-size: 0.62em; }

/* warp reveal states (JS-driven) */
[data-warp-title] .hero__title-line {
  clip-path: inset(0 100% 0 0);
  transform: translateX(-24px);
  opacity: 0;
}
[data-warp-title].is-revealed .hero__title-line {
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  opacity: 1;
  transition: clip-path 0.6s ease, transform 0.6s ease, opacity 0.5s ease;
}
[data-warp-title].is-revealed .hero__title-line--sub { transition-delay: 0.18s; }

.hero__lead { color: var(--c-dim); font-size: 16.5px; max-width: 620px; margin-inline: auto; margin-bottom: var(--s-5); }

.hero__actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s-5); }

/* password of the week */
.hero__password {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px dashed var(--c-line); border-radius: var(--r-card);
  padding: 10px 18px;
}
.hero__password-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-dim); }
.hero__password-stars { font-size: 20px; color: var(--c-a2); letter-spacing: 4px; cursor: help; }
.hero__password-stars .star { opacity: 0; display: inline-block; transition: opacity 0.3s ease; }
.hero__password-stars.is-shown .star { opacity: 1; }
.hero__password-stars .peek-letter { color: var(--c-a1); }
.hero__password-hint { font-size: 11px; color: var(--c-a1); letter-spacing: 0.08em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-card);
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn--primary { background: var(--c-a2); color: var(--c-ink-inv); }
.btn--primary:hover { background: #e0c250; }
.btn--secondary {
  background: transparent; color: var(--c-ink);
  border: 1.5px dashed var(--c-line);
}
.btn--secondary:hover { border-color: var(--c-a1); color: var(--c-a1); }

/* key icon that turns on hover */
.btn__key {
  width: 15px; height: 15px; flex: none;
  background: currentColor;
  -webkit-mask: no-repeat center / contain;
  mask: no-repeat center / contain;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M14 2a6 6 0 0 0-5.7 7.9L2 16.2V22h5.8l.6-.6.6.6H11v-2h2v-2h2l1.1-1.1A6 6 0 1 0 14 2zm3 5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M14 2a6 6 0 0 0-5.7 7.9L2 16.2V22h5.8l.6-.6.6.6H11v-2h2v-2h2l1.1-1.1A6 6 0 1 0 14 2zm3 5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z'/></svg>");
  transition: transform 0.25s ease;
}
.btn:hover .btn__key { transform: rotate(30deg); }

/* ============================================================
   SECTIONS — asymmetric-12 heads
   ============================================================ */
.section {
  padding-block: var(--sect-y);
  border-top: 1px solid rgba(212, 175, 55,0.12);
}
.section > *:not(.book__grid):not(.entrance__band) {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 600px) { .section > * { padding-inline: 20px; } }

.section__head { margin-bottom: var(--block-y); }
.section__label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-a2); margin-bottom: var(--s-2);
}
.section__label--dark { color: #9a7d1f; }
.section__title { font-size: clamp(26px, 4.5vw, 46px); max-width: 14ch; }

/* asymmetric-12: on wide screens, head sits in left columns */
@media (min-width: 1024px) {
  .s-entrance, .s-stations, .s-rates, .s-hardware, .s-cases, .s-gallery, .s-faq, .s-games {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--s-4);
    align-items: start;
  }
  .s-entrance > *, .s-stations > *, .s-rates > *, .s-hardware > *,
  .s-cases > *, .s-gallery > *, .s-faq > *, .s-games > * {
    padding-inline: 0;
    max-width: none;
    margin-inline: 0;
  }
  .s-entrance { padding-inline: 32px; max-width: var(--w-container); margin-inline: auto; }
  .s-stations, .s-rates, .s-hardware, .s-cases, .s-gallery, .s-faq, .s-games {
    padding-inline: 32px; max-width: var(--w-container); margin-inline: auto;
  }
  .section__head { grid-column: 1 / 5; position: sticky; top: 96px; }
  .entrance__grid, .dossier-grid, .rates-grid, .hardware-grid,
  .cases-grid, .gallery-grid, .faq-list,
  .rates__firstvisit, .hardware__intro, .entrance__band, .games__body { grid-column: 5 / 13; }
}

/* ============================================================
   ENTRANCE
   ============================================================ */
.entrance__grid { display: grid; gap: var(--s-5); }
.entrance__copy p { color: var(--c-dim); }
.entrance__copy em { color: var(--c-a1); font-style: normal; }
.entrance__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s-3);
  border-left: 1px dashed var(--c-line); padding-left: var(--s-4);
}
.entrance__step { position: relative; }
.entrance__num {
  position: absolute; left: calc(-1 * var(--s-4) - 14px); top: 0;
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-bg-dark); border: 1.5px solid var(--c-a2);
  color: var(--c-a2); font-family: var(--f-display); font-size: 14px;
}
.entrance__step h3 { font-size: 19px; margin-bottom: 6px; }
.entrance__step p { color: var(--c-dim); margin: 0; }

.entrance__band {
  margin: var(--block-y) auto 0;
  max-width: var(--w-container); padding-inline: 32px;
}
.entrance__band img {
  width: 100%; border-radius: var(--r-card);
  border: var(--bd);
  /* pipe frame — semicircle mask on top */
  clip-path: inset(0 round 999px 999px var(--r-card) var(--r-card));
}
.entrance__band figcaption { color: var(--c-dim); font-size: 13px; margin-top: var(--s-2); font-style: italic; }
@media (max-width: 600px) { .entrance__band { padding-inline: 20px; } }

/* ============================================================
   DOSSIER CARDS (stations)
   ============================================================ */
.cases-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(3, 1fr); }

/* --- dossier grid: one open case file per row --- */
.dossier-grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }

.dossier {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: var(--s-5);
  align-items: stretch;
  border: var(--bd); border-radius: var(--r-card);
  /* tinted paper-file panel with a faint fibre texture + torn-file tab */
  background:
    linear-gradient(105deg, rgba(212,175,55,0.06), rgba(239,234,223,0.015) 42%),
    repeating-linear-gradient(0deg, rgba(243,239,224,0.018) 0 1px, transparent 1px 4px),
    rgba(239,234,223,0.02);
  padding: var(--s-4);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
/* fine gold hairline framing the "file" interior */
.dossier::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 5px;
  pointer-events: none;
}
.dossier:hover {
  border-color: var(--c-a2);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.25), 0 18px 40px -24px rgba(0,0,0,0.7);
  transform: translateY(-2px);
}

/* wax-seal / clip accent, top-right corner of the file */
.dossier__clip, .case__clip {
  position: absolute;
  width: 22px; height: 30px;
  border: 2px solid var(--c-a2); border-radius: 5px;
  background: transparent;
  transform: rotate(-8deg) translateY(-4px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 3;
}
.case__clip { top: -9px; left: var(--s-4); }
.dossier__clip {
  top: -10px; right: var(--s-5); left: auto;
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--c-a2);
  background:
    radial-gradient(circle at 50% 42%, rgba(212,175,55,0.35), rgba(212,175,55,0.08) 70%);
  box-shadow: inset 0 0 8px rgba(212,175,55,0.4);
}
.dossier__clip::after {
  content: "SL";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.04em;
  color: var(--c-a2);
}
[data-reveal].is-in .case__clip { transform: rotate(-8deg) translateY(0); opacity: 1; }
[data-reveal].is-in .dossier__clip { transform: rotate(-10deg) translateY(0); opacity: 1; }

.case__ref {
  font-size: 10.5px; letter-spacing: 0.14em; color: var(--c-a2);
  text-transform: uppercase; margin-bottom: var(--s-2);
}

/* photo side — the clipped evidence print */
.dossier__photo {
  position: relative;
  margin: 0;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: inset 0 0 0 1px rgba(10,15,11,0.4);
}
.dossier__photo img {
  width: 100%; height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 0; border-radius: 0; margin: 0;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.dossier:hover .dossier__photo img { transform: scale(1.04); filter: saturate(1) contrast(1.05); }
/* "EVIDENCE" corner tab on the photo */
.dossier__photo::after {
  content: "EXHIBIT";
  position: absolute; left: 0; bottom: 0;
  font-family: var(--f-body); font-size: 9px; letter-spacing: 0.22em;
  color: var(--c-ink-inv); background: var(--c-a2);
  padding: 3px 8px; border-top-right-radius: 4px;
}

/* body side — the typed report */
.dossier__body { display: flex; flex-direction: column; }

/* CONFIDENTIAL / ZONE stamp treatment */
.dossier__grade {
  align-self: flex-start;
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: 0.24em; color: var(--c-a2);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  padding: 5px 10px;
  border: 1.5px solid var(--c-a2); border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.15);
  transform: rotate(-1.5deg);
  opacity: 0.92;
}
.dossier h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 4px;
}
/* typewriter count label */
.dossier__count {
  font-family: var(--f-body);
  color: var(--c-a1); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px dashed var(--c-line);
}
.dossier p:last-child { color: var(--c-dim); margin: 0; }

@media (max-width: 720px) {
  .dossier {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .dossier__photo img { min-height: 200px; }
  .dossier__clip { right: var(--s-4); }
}

/* ============================================================
   RATES
   ============================================================ */
.rates-grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(3, 1fr); }
.rate {
  position: relative;
  border: var(--bd); border-radius: var(--r-card);
  padding: var(--s-4);
}
.rate--feature { border-color: var(--c-a1); background: rgba(47, 158, 107,0.05); }
.rate__tag {
  position: absolute; top: -11px; right: var(--s-3);
  background: var(--c-a1); color: var(--c-ink-inv);
  font-family: var(--f-display); font-size: 11px;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 0.05em;
}
.rate h3 { font-size: 22px; margin-bottom: var(--s-2); }
.rate__price { font-family: var(--f-display); font-size: 15px; color: var(--c-a2); margin-bottom: var(--s-2); }
.rate__price span { font-size: 34px; color: var(--c-ink); }
.rate__note { color: var(--c-dim); font-size: 14px; }
.rate__list { list-style: none; margin: var(--s-2) 0 0; padding: 0; }
.rate__list li { position: relative; padding-left: 18px; margin-bottom: 6px; font-size: 14px; }
.rate__list li::before { content: "→"; position: absolute; left: 0; color: var(--c-a1); }
.rates__firstvisit {
  margin-top: var(--block-y);
  border-left: 3px solid var(--c-a2); padding: var(--s-3) var(--s-4);
  background: rgba(212, 175, 55,0.05); border-radius: 0 var(--r-card) var(--r-card) 0;
  color: var(--c-dim);
}
.rates__firstvisit strong { color: var(--c-a2); font-family: var(--f-display); }

/* ============================================================
   GAMES
   ============================================================ */
.games__intro { color: var(--c-dim); font-size: 17px; max-width: 62ch; margin-bottom: var(--block-y); }
.games-grid { grid-column: auto; }
.games__free { margin-top: var(--s-5); }
.games__slot .rate__price { font-size: 20px; color: var(--c-a2); margin-bottom: var(--s-2); }
.games__slot .rate__note strong { color: var(--c-a1); }

/* ============================================================
   HARDWARE (light contrast section)
   ============================================================ */
.section--light { background: var(--c-bg); color: var(--c-ink-inv); border-top-color: rgba(10, 15, 11,0.12); }
.section--light .section__title { color: var(--c-ink-inv); }
.section--light .hardware__intro,
.section--light .faq__body p { color: rgba(10, 15, 11,0.72); }
.hardware__intro { font-size: 17px; max-width: 60ch; margin-bottom: var(--block-y); }
.hardware-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
.hardware__item { border-top: 2px solid rgba(10, 15, 11,0.6); padding-top: var(--s-2); }
.hardware__item h3 { font-size: 20px; margin-bottom: 6px; }
.hardware__item p { color: rgba(10, 15, 11,0.72); margin: 0; }

/* ============================================================
   CASE FILES
   ============================================================ */
.case {
  position: relative;
  border: 1px dashed var(--c-line); border-radius: var(--r-card);
  padding: var(--s-4);
  background: rgba(239,234,223,0.02);
}
.case p:last-child { color: var(--c-dim); margin: 0; font-size: 14px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(3, 1fr); }
.gallery__item { margin: 0; border: var(--bd); border-radius: var(--r-card); overflow: hidden; }
.gallery__item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery__item--framed img { clip-path: inset(0 round 999px 999px var(--r-card) var(--r-card)); }
.gallery__item figcaption {
  padding: var(--s-2) var(--s-3); font-size: 13px; color: var(--c-dim);
}
.gallery__grade {
  display: block; font-size: 10px; letter-spacing: 0.14em;
  color: var(--c-a2); text-transform: uppercase; margin-bottom: 3px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: var(--s-2); }
.faq__item {
  border: 1px solid rgba(10, 15, 11,0.2); border-radius: var(--r-card);
  padding: var(--s-2) var(--s-3);
  background: rgba(10, 15, 11,0.02);
}
.faq__item summary {
  font-family: var(--f-display); font-size: 18px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-2);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: #9a7d1f; font-size: 24px; line-height: 1; }
.faq__item[open] summary::after { content: "–"; }
.faq__body { padding-top: var(--s-2); }
.faq__body p { margin: 0; font-size: 14.5px; }

/* ============================================================
   BOOK / FORM  (breaks to full container width)
   ============================================================ */
.book__grid {
  max-width: var(--w-container); margin-inline: auto; padding-inline: 32px;
  display: grid; gap: var(--s-6); grid-template-columns: 1fr 1fr; align-items: start;
}
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .book__grid { padding-inline: 20px; } }
.book__pitch p { color: var(--c-dim); }
.book__aside { border-left: 2px solid var(--c-a1); padding-left: var(--s-3); }
.book__aside em { color: var(--c-a1); font-style: normal; }

.book__form {
  border: var(--bd); border-radius: var(--r-card);
  padding: var(--s-5);
  background: rgba(239,234,223,0.02);
  display: grid; gap: var(--s-3);
}
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-a2); }
.field input, .field select {
  font-family: var(--f-body); font-size: 15px;
  background: rgba(10, 15, 11,0.6); color: var(--c-ink);
  border: 1.5px solid var(--c-line); border-radius: 6px;
  padding: 11px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-a1);
  box-shadow: 0 0 0 3px rgba(47, 158, 107,0.15);
}
.field select { appearance: none; cursor: pointer; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.book__submit { justify-content: center; margin-top: var(--s-1); }
.form__status { margin: 0; font-size: 14px; min-height: 1.2em; }
.form__status.success { color: var(--c-a1); }
.form__status.error { color: #e77b6a; }

/* ============================================================
   FOOTER — footer-cta-repeat
   ============================================================ */
.footer { border-top: var(--bd); }
.footer__cta-band {
  max-width: var(--w-container); margin-inline: auto; padding: var(--block-y) 32px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212, 175, 55,0.15);
}
.footer__cta-band h2 { font-size: clamp(24px, 3.5vw, 38px); color: var(--c-a1); }
.footer__grid {
  max-width: var(--w-container); margin-inline: auto; padding: var(--block-y) 32px;
  display: grid; gap: var(--s-5); grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
}
.footer__col--contact a { color: var(--c-a1); }
.footer__col--contact a:hover { color: var(--c-ink); }
.footer__logo { font-family: var(--f-display); font-size: 22px; }
.footer__tag { color: var(--c-a2); font-size: 13px; margin-top: 6px; }
.footer__col h3 { font-size: 14px; letter-spacing: 0.08em; color: var(--c-a2); margin-bottom: var(--s-2); text-transform: uppercase; }
.footer__col a { display: block; color: var(--c-dim); font-size: 14px; padding: 3px 0; }
.footer__col a:hover { color: var(--c-ink); }
.footer__col p { color: var(--c-dim); font-size: 14px; margin: 0 0 4px; }
.footer__bottom {
  max-width: var(--w-container); margin-inline: auto; padding: var(--s-4) 32px;
  border-top: 1px solid rgba(212, 175, 55,0.15);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
}
.footer__disclaimer { margin: 0; color: var(--c-a2); font-family: var(--f-display); font-size: 15px; }
.footer__copy { margin: 0; color: var(--c-dim); font-size: 13px; }

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 1200px) and (min-width: 901px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; padding-inline: 20px; }
  .footer__cta-band, .footer__bottom { padding-inline: 20px; }
}

/* ============================================================
   LEGAL PAGES (secret-files/) — narrow reading column
   ============================================================ */
.legal__nav {
  display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap;
  max-width: 760px; margin-inline: auto;
  padding: var(--s-3) var(--s-4);
  border-bottom: var(--bd);
}
.legal {
  max-width: 760px; margin-inline: auto;
  padding: var(--block-y) var(--s-4) var(--sect-y);
}
.legal__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-a2); margin-bottom: var(--s-2); }
.legal__title { font-size: clamp(30px, 5vw, 52px); margin-bottom: var(--s-2); }
.legal__meta { color: var(--c-dim); font-style: italic; margin-bottom: var(--s-5); }
.legal h2 { font-size: clamp(20px, 3vw, 28px); color: var(--c-a2); margin: var(--s-5) 0 var(--s-2); }
.legal p { color: var(--c-dim); }
.legal a { color: var(--c-a1); text-decoration: underline; text-underline-offset: 3px; }
.legal__disclaimer {
  margin-top: var(--s-6);
  border-top: 1px solid rgba(212, 175, 55,0.2); padding-top: var(--s-3);
  color: var(--c-a2); font-family: var(--f-display); font-size: 15px;
}
@media (max-width: 600px) {
  .legal, .legal__nav { padding-inline: 20px; }
}

/* ============================================================
   RESPONSIVE GRID COLLAPSES
   ============================================================ */
@media (max-width: 1024px) {
  .rates-grid, .cases-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rates-grid, .cases-grid, .gallery-grid,
  .hardware-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL (motion layer)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* ============================================================
   REDUCED MOTION — kill all motion, content just appears
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-warp-title] .hero__title-line { clip-path: inset(0 0 0 0); transform: none; opacity: 1; }
  .hero__password-stars .star { opacity: 1; }
  .case__clip { opacity: 1; transform: rotate(-8deg); }
  .dossier__clip { opacity: 1; transform: rotate(-10deg); }
  .btn:hover .btn__key { transform: none; }
}
