/* ==========================================================
   FLAGMAN — styles.css
   Archetype: Soviet / Constructivist
   Palette: Signal Red · Ink Black · Off-white
   Fonts: Barlow Condensed 800 (head) + Inter (body)
   ========================================================== */

/* 1. CUSTOM PROPERTIES
   ========================================================== */
:root {
  --c-red:       #CC2200;
  --c-red-lt:    #E03318;
  --c-red-dk:    #A81B00;
  --c-ink:       #0D0D0D;
  --c-ink-soft:  #1F1F1F;
  --c-white:     #FAFAF8;
  --c-alt:       #F2EEE9;
  --c-card:      #FFFFFF;
  --c-muted:     #4A4540;
  --c-border:    #D5CEC6;
  --c-border-lt: #E8E3DC;
  --font-head:   'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:      0px;
  --radius-sm:   2px;
  --shadow-card: 0 1px 4px rgba(13,13,13,0.10), inset 0 0 0 1px rgba(213,206,198,0.6);
  --container:   1100px;
  --transition:  0.18s ease;
}

/* 2. RESET
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-red-lt); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
details summary { cursor: pointer; }

/* 3. TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-red);
  display: block;
  margin-bottom: 0.6rem;
}
.dateline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
}
.dateline strong { color: var(--c-ink); }

/* 4. LAYOUT
   ========================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section     { padding: 4.5rem 0; }
.section-alt { background: var(--c-alt); padding: 4.5rem 0; }

/* 5. SKIP LINK
   ========================================================== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--c-red); color: var(--c-white);
  padding: 0.5rem 1rem; z-index: 9999;
  font-size: 0.875rem; text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* 6. RED RULE
   ========================================================== */
.red-rule { height: 3px; background: var(--c-red); }
.red-rule-thin { height: 1px; background: var(--c-red); opacity: 0.25; }

/* 7. HEADER
   ========================================================== */
header {
  background: var(--c-card);
  border-bottom: 3px solid var(--c-red);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 60px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-flag {
  width: 32px;
  height: 32px;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-flag svg { width: 20px; height: 20px; color: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-wordmark {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--c-ink);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav */
nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-list { display: none; gap: 0; align-items: center; }
.nav-list a, .nav-dropdown-btn {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover, .nav-dropdown-btn:hover {
  color: var(--c-red);
  background: rgba(204,34,0,0.05);
}

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--c-card);
  border: 2px solid var(--c-ink);
  min-width: 160px;
  display: none; z-index: 200; overflow: hidden;
}
.nav-dropdown.is-open { display: block; }
.nav-dropdown li a {
  display: block; padding: 0.55rem 1rem;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  border-radius: 0;
  border-bottom: 1px solid var(--c-border-lt);
  color: var(--c-ink); text-decoration: none;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--c-red); color: var(--c-white); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; z-index: 301; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-ink); transition: transform 0.3s, opacity 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--c-ink);
  z-index: 200; flex-direction: column; align-items: stretch; justify-content: center;
}
.mobile-nav-overlay.is-open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--c-white); text-decoration: none;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav-overlay a:hover { color: var(--c-red); background: rgba(204,34,0,0.1); }
.mobile-ops-section { border-top: 3px solid var(--c-red); margin-top: 0.5rem; }
.mobile-ops-label {
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  padding: 0.75rem 2rem 0.3rem;
}
.mobile-ops-section a { font-size: 1.2rem; color: rgba(255,255,255,0.8); padding: 0.5rem 2rem; }
.mobile-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 2rem; color: rgba(255,255,255,0.6);
  cursor: pointer; padding: 0.25rem;
}
.mobile-close:hover { color: var(--c-white); }

/* 8. HERO
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-white);
  padding: 5.5rem 0 5rem;
}
/* Red vertical column on left — constructivist signature */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--c-red);
}
/* Ink stripe next to it */
.hero::after {
  content: '';
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 2px;
  background: var(--c-ink);
  opacity: 0.15;
}
/* Red corner wedge */
.hero-wedge {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 180px 180px 0 0;
  border-color: var(--c-red) transparent transparent transparent;
  opacity: 0.06;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--c-red);
  flex-shrink: 0;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 0.5rem;
  line-height: 0.95;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-red);
}

.hero-dateline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 2rem;
}
.hero-dateline strong { color: var(--c-ink); font-weight: 700; }

.badge-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
}
.badge-srij  { background: var(--c-ink); color: var(--c-white); }
.badge-age   { background: var(--c-red); color: var(--c-white); }
.badge-rg    { background: transparent; color: var(--c-muted); border: 1px solid var(--c-border); }

/* 9. OPERATOR CARDS
   ========================================================== */
.section-ops { padding: 4.5rem 0; }
.section-note { font-size: 0.8rem; color: var(--c-muted); font-style: italic; margin-bottom: 2rem; }
.op-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); }
.op-card {
  background: var(--c-card);
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.op-card:hover { background: #FAFAF9; }
.op-card-inner { padding: 1.5rem; flex: 1; border-left: 5px solid var(--c-red); }
.op-card-kicker {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--c-red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.op-card-kicker::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--c-red);
  flex-shrink: 0;
}
.op-card-logo-wrap {
 
  background: var(--c-alt);
  border: 1px solid var(--c-border-lt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 1rem;
}
.op-card-logo { width: auto; height: auto; object-fit: contain; }
.op-card-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--c-ink);
}
.op-card-desc { font-size: 0.85rem; color: var(--c-muted); line-height: 1.55; margin: 0; }
.op-card-footer {
  padding: 0.85rem 1.5rem 0.85rem 2rem; /* left pad accounts for red border */
  border-top: 1px solid var(--c-border-lt);
  background: var(--c-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge-srij-card {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* 10. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.3rem; padding: 0.55rem 1.1rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--c-red); color: var(--c-white); }
.btn-primary:hover { background: var(--c-red-lt); color: var(--c-white); }
.btn-ink { background: var(--c-ink); color: var(--c-white); }
.btn-ink:hover { background: var(--c-ink-soft); }
.btn-ghost {
  background: transparent; color: var(--c-ink);
  border: 2px solid var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-white); text-decoration: none; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 0.9rem; }

/* 11. EDITORIAL SECTION
   ========================================================== */
.editorial-body { max-width: 680px; }
.editorial-body p { font-size: 0.95rem; color: var(--c-ink); }
.editorial-body strong { color: var(--c-red); }
.editorial-body a { color: var(--c-red); font-weight: 600; }

/* 12. METHODOLOGY GRID
   ========================================================== */
.method-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-border); margin-top: 2rem; border: 1px solid var(--c-border); }
.method-tile {
  background: var(--c-card);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.method-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-red);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-transform: uppercase;
}
.method-tile h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 0.4rem;
}
.method-tile p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.55; margin: 0; }

/* 13. FAQ
   ========================================================== */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); }
details { background: var(--c-card); }
details[open] { border-left: 4px solid var(--c-red); }
summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700; font-size: 0.92rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  color: var(--c-ink);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.4rem; color: var(--c-red); flex-shrink: 0; font-weight: 400; }
details[open] summary::after { content: '−'; }
.faq-body { padding: 0 1.25rem 1.1rem; font-size: 0.9rem; color: var(--c-muted); border-top: 1px solid var(--c-border-lt); padding-top: 0.85rem; }
.faq-body p { margin: 0; }
.section-faq-teaser .btn-ghost { margin-top: 1.5rem; }

/* 14. FOOTER
   ========================================================== */
footer { background: var(--c-ink); color: #AAAAAA; padding: 3.5rem 0 2rem; }
footer a { color: #AAAAAA; }
footer a:hover { color: var(--c-white); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-white); margin-bottom: 0.2rem; }
.footer-sub { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red); margin-bottom: 1rem; }
.footer-addr { font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-email { font-size: 0.8rem; display: block; margin-bottom: 1rem; }
.footer-rg-row { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col-title { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-red); margin-bottom: 0.75rem; font-weight: 700; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.875rem; }
.footer-disclaimer { font-size: 0.72rem; color: #666; line-height: 1.65; }
.footer-disclaimer a { color: #888; }
.footer-disclaimer a:hover { color: #AAAAAA; }

/* 15. AGE GATE
   ========================================================== */
#flgAgeGate {
  position: fixed; inset: 0;
  background: rgba(13,13,13,0.96);
  z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
#flgAgeGate.hidden { display: none; }
.age-gate-card {
  background: var(--c-card);
  border-top: 5px solid var(--c-red);
  max-width: 480px; width: 100%; padding: 2.5rem;
  text-align: center;
}
.age-gate-icon {
  width: 48px; height: 48px; background: var(--c-red);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.age-gate-icon svg { width: 28px; height: 28px; color: white; }
.age-gate-title {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--c-ink); margin-bottom: 0.75rem;
}
.age-gate-sub { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 1.5rem; }
.age-gate-check {
  display: flex; align-items: flex-start; gap: 0.6rem; text-align: left;
  margin-bottom: 1.5rem; background: var(--c-alt); padding: 0.85rem;
}
.age-gate-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--c-red); }
.age-gate-check label { font-size: 0.875rem; color: var(--c-muted); cursor: pointer; }
.age-gate-btns { display: flex; flex-direction: column; gap: 0.6rem; }
.age-gate-btns .btn { width: 100%; }
.age-gate-enter { background: var(--c-red); color: var(--c-white); }
.age-gate-enter:hover { background: var(--c-red-lt); }
.age-gate-enter:disabled { background: var(--c-border); color: var(--c-muted); cursor: not-allowed; }
.age-gate-leave { background: transparent; color: var(--c-muted); border: 1px solid var(--c-border); text-transform: uppercase; }
.age-gate-rg { margin-top: 1rem; font-size: 0.68rem; color: var(--c-border); letter-spacing: 0.04em; }
.age-gate-rg a { color: var(--c-border); }

/* 16. COOKIE BANNER
   ========================================================== */
#flgCookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-ink); color: #AAAAAA;
  padding: 1rem 1.5rem;
  z-index: 8000; border-top: 3px solid var(--c-red);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
#flgCookieBanner.hidden { display: none; }
.cookie-text { font-size: 0.8rem; flex: 1; min-width: 200px; }
.cookie-text a { color: #888; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-accept { background: var(--c-red); color: var(--c-white); border: none; padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; }
.cookie-decline { background: transparent; color: #888; border: 1px solid rgba(255,255,255,0.12); padding: 0.45rem 1rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; }

/* 17. COMPLIANCE MODAL
   ========================================================== */
#flgModal {
  position: fixed; inset: 0;
  background: rgba(13,13,13,0.8);
  z-index: 8500; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
#flgModal.hidden { display: none; }
.cmodal-card {
  background: var(--c-card);
  border-top: 5px solid var(--c-red);
  max-width: 480px; width: 100%; padding: 2rem;
}
.cmodal-kicker { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--c-red); margin-bottom: 0.5rem; display: block; }
.cmodal-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; color: var(--c-ink); margin-bottom: 0.75rem; }
.cmodal-body { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 0.75rem; }
.cmodal-licence { font-size: 0.72rem; font-weight: 700; color: var(--c-ink); margin-bottom: 1rem; padding: 0.5rem 0.75rem; background: var(--c-alt); border-left: 3px solid var(--c-red); }
.cmodal-links { font-size: 0.75rem; margin-bottom: 1.25rem; color: var(--c-muted); }
.cmodal-links a { color: var(--c-red); font-size: 0.75rem; margin-right: 0.5rem; }
.cmodal-btns { display: flex; gap: 0.6rem; }
.cmodal-btns .btn { flex: 1; justify-content: center; }

/* 18. REVIEW PAGES
   ========================================================== */
body[data-page="review"] .review-hero {
  background: var(--c-alt);
  padding: 3rem 0;
  border-bottom: 3px solid var(--c-red);
}
.breadcrumb { font-size: 0.68rem; color: var(--c-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--c-red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.review-logo-wrap {
  width: 220px; height: 90px;
  background: var(--c-card); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 1.5rem;
}
.review-logo-wrap img { max-width: 180px; max-height: 70px; object-fit: contain; }
.review-hero h1 { margin-bottom: 0.75rem; }
.bonus-callout {
  background: var(--c-card);
  border-left: 5px solid var(--c-red);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem; color: var(--c-ink);
}
.licence-block {
  background: var(--c-alt);
  border: 1px solid var(--c-border);
  border-left: 5px solid var(--c-red);
  padding: 1.5rem; margin: 2rem 0;
}
.licence-block h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.licence-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.875rem; }
.licence-label { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--c-muted); min-width: 130px; flex-shrink: 0; padding-top: 2px; }
.licence-val { color: var(--c-ink); }
.licence-val a { color: var(--c-red); }
.review-body { max-width: 680px; }
.review-body p { font-size: 0.95rem; line-height: 1.75; }
.disclaimer-callout {
  background: var(--c-alt);
  border-left: 5px solid var(--c-border);
  padding: 1rem 1.25rem; margin: 2rem 0;
  font-size: 0.85rem; color: var(--c-muted); font-style: italic;
}
.review-cta-section { text-align: center; padding: 3rem 0; border-top: 3px solid var(--c-red); }
.review-cta-section h2 { margin-bottom: 1rem; }
.review-cta-smallprint { font-size: 0.72rem; color: var(--c-muted); margin-top: 0.75rem; font-style: italic; }

/* 19. STATIC PAGES
   ========================================================== */
body[data-page="static"] .static-hero { padding: 3rem 0 2rem; border-bottom: 3px solid var(--c-red); }
.static-hero h1 { margin-bottom: 0.4rem; }
.static-content { max-width: 720px; padding: 3rem 0; }
.static-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.static-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--c-red); text-transform: none; font-weight: 700; font-family: var(--font-body); }
.static-content p { font-size: 0.95rem; }
.static-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.static-content ul li { font-size: 0.95rem; margin-bottom: 0.3rem; }
.static-content a { font-weight: 600; }
.static-content table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1.5rem 0; }
.static-content th { background: var(--c-ink); color: var(--c-white); padding: 0.6rem 0.75rem; text-align: left; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
.static-content td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--c-border-lt); vertical-align: top; }
.static-content tr:nth-child(even) td { background: var(--c-alt); }
.rg-resource { background: var(--c-card); border: 1px solid var(--c-border); border-left: 5px solid var(--c-red); padding: 1.25rem; margin: 1rem 0; }
.rg-resource h3 { color: var(--c-red); margin-bottom: 0.4rem; font-size: 1rem; text-transform: none; font-family: var(--font-body); }
.rg-resource p { font-size: 0.875rem; color: var(--c-muted); }
.rg-resource a { font-weight: 700; color: var(--c-red); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 520px; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--c-muted); }
.form-group input, .form-group textarea { font-family: var(--font-body); font-size: 0.9rem; color: var(--c-ink); background: var(--c-card); border: 2px solid var(--c-border); padding: 0.65rem 0.85rem; width: 100%; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--c-red); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-notice { font-size: 0.8rem; color: var(--c-muted); font-style: italic; }

/* 20. ERROR PAGES
   ========================================================== */
body[data-page="error404"] { display: flex; flex-direction: column; min-height: 100vh; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
body[data-page="error404"] h1 { font-size: 6rem; color: var(--c-border); }
body[data-page="error404"] p { color: var(--c-muted); margin-top: 0.5rem; }
body[data-page="error403"] { display: flex; flex-direction: column; min-height: 100vh; align-items: center; justify-content: center; text-align: center; padding: 2rem; background: var(--c-ink); color: #AAAAAA; }
body[data-page="error403"] .err-code { font-size: 0.65rem; letter-spacing: 0.18em; color: var(--c-red); text-transform: uppercase; margin-bottom: 1rem; display: block; }
body[data-page="error403"] h1 { font-size: 2rem; color: var(--c-white); margin-bottom: 0.75rem; }
body[data-page="error403"] p { max-width: 420px; margin: 0 auto 1.5rem; font-size: 0.9rem; }
body[data-page="error403"] .err-rg { font-size: 0.65rem; letter-spacing: 0.06em; color: #666; margin-top: 2rem; }
body[data-page="error403"] .err-rg a { color: #666; }

/* 21. UTILITIES
   ========================================================== */
.text-muted  { color: var(--c-muted); }
.text-red    { color: var(--c-red); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none !important; }

/* 22. BREAKPOINTS — LAST
   ========================================================== */
@media (min-width: 640px) {
  .op-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .nav-list { display: flex; }
  .hamburger { display: none; }
  .age-gate-btns { flex-direction: row; }
  .age-gate-btns .btn { flex: 1; }
  .cmodal-btns { flex-direction: row; }
}
@media (min-width: 1024px) {
  .op-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ── Hero photo banner (image block under hero text) ── */
.hero-photo {
  padding: 1rem 0 2.5rem;
}
.hero-photo .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-photo-frame {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 12 / 5;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.18);
  display: block;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .hero-photo { padding: 0.5rem 0 1.5rem; }
  .hero-photo-frame { aspect-ratio: 16 / 10; border-radius: 6px; }
}
