/* ==========================================================
   PRIME CASINO ZONE — styles.css
   Archetype: Map/Cartographic (Carta Náutica)
   Palette: Parchment · Ocean Blue · Compass Red · Contour Brown
   Fonts: Libre Baskerville (head) + Inter (body) + JetBrains Mono (data)
   ========================================================== */

/* 1. CUSTOM PROPERTIES
   ========================================================== */
:root {
  --c-parchment:    #F5F0E6;
  --c-parchment-dk: #EAE4D4;
  --c-card:         #FDFCF7;
  --c-ink:          #1A1510;
  --c-ocean:        #1B4E7E;
  --c-ocean-lt:     #2A6AA8;
  --c-compass:      #B83226;
  --c-compass-lt:   #CF4538;
  --c-contour:      #8B7250;
  --c-muted:        #5C4E3C;
  --c-border:       #C8BEA8;
  --c-border-lt:    #DDD7C8;
  --c-white:        #FFFFFF;
  --font-head:      'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', Courier, monospace;
  --radius:         4px;
  --radius-card:    6px;
  --shadow-card:    0 1px 6px rgba(26,21,16,0.1), 0 0 0 1px rgba(200,190,168,0.4);
  --container:      1100px;
  --transition:     0.2s 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-parchment);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-ocean); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-ocean-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);
  line-height: 1.2;
  color: var(--c-ink);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.mono { font-family: var(--font-mono); }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ocean);
  display: block;
  margin-bottom: 0.6rem;
}

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

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

/* 6. CHART RULE (decorative map double-line)
   ========================================================== */
.chart-rule {
  height: 7px;
  background: linear-gradient(
    to bottom,
    var(--c-ocean)   0px, var(--c-ocean)   2px,
    transparent      2px, transparent      5px,
    var(--c-contour) 5px, var(--c-contour) 6px,
    transparent      6px
  );
  opacity: 0.5;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-compass {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--c-ocean);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-wordmark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--c-ink);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}

/* Coordinate bar (desktop) */
.coord-bar {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.5;
  flex-shrink: 0;
}
.coord-pos { color: var(--c-ocean); font-weight: 700; }
.coord-tz  { font-size: 0.58rem; }

/* Nav */
nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-list {
  display: none;
  gap: 0.1rem;
  align-items: center;
}
.nav-list a, .nav-dropdown-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--c-ink);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-list a:hover, .nav-dropdown-btn:hover {
  background: var(--c-parchment);
  color: var(--c-ocean);
}

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(26,21,16,0.12);
  min-width: 160px;
  display: none;
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown.is-open { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  border-radius: 0;
  border-bottom: 1px solid var(--c-border-lt);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: var(--c-parchment); }

/* 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);
  border-radius: 2px;
  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 overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-parchment);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav-overlay.is-open { display: flex; }
.mobile-nav-overlay a, .mobile-nav-overlay .mobile-op-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--c-ink);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--c-border-lt);
  width: 100%;
  text-align: center;
  display: block;
}
.mobile-nav-overlay a:hover { color: var(--c-ocean); }
.mobile-ops-section { width: 100%; }
.mobile-ops-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
  padding: 0.75rem;
}
.mobile-ops-section a {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--c-ocean);
  padding: 0.5rem 2rem;
}
.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--c-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* 8. HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--c-parchment);
}
/* Topographic contour lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 65% at 50% 45%, transparent 29%, rgba(139,114,80,0.10) 30%, transparent 31%),
    radial-gradient(ellipse 78% 56% at 50% 45%, transparent 41%, rgba(139,114,80,0.08) 42%, transparent 43%),
    radial-gradient(ellipse 66% 48% at 50% 45%, transparent 52%, rgba(139,114,80,0.06) 53%, transparent 54%),
    radial-gradient(ellipse 54% 40% at 50% 45%, transparent 62%, rgba(139,114,80,0.05) 63%, transparent 64%),
    radial-gradient(ellipse 42% 32% at 50% 45%, transparent 70%, rgba(139,114,80,0.04) 71%, transparent 72%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.compass-rose {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  color: var(--c-ocean);
}

.hero-coord {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--c-contour);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 1rem;
  color: var(--c-ink);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-style: italic;
  font-family: var(--font-head);
}

.badge-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.badge-srij  { background: rgba(27,78,126,0.08); color: var(--c-ocean); border: 1px solid rgba(27,78,126,0.25); }
.badge-age   { background: rgba(184,50,38,0.07); color: var(--c-compass); border: 1px solid rgba(184,50,38,0.2); }
.badge-rg    { background: rgba(139,114,80,0.08); color: var(--c-contour); border: 1px solid rgba(139,114,80,0.2); }

/* 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: 1.25rem;
}
.op-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-ocean);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.op-card:hover {
  box-shadow: 0 4px 16px rgba(26,21,16,0.14), 0 0 0 1px var(--c-border);
  transform: translateY(-2px);
}
.op-card-inner { padding: 1.25rem; flex: 1; }
.op-card-kicker {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--c-ocean);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.op-card-logo-wrap {
  width: 100%;
  height: 72px;
  background: var(--c-parchment);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.op-card-logo {
  max-width: 160px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.op-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--c-ink);
}
.op-card-coords {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--c-contour);
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.op-card-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 0;
}
.op-card-footer {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--c-border-lt);
  background: rgba(245,240,230,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge-srij-card {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--c-ocean);
  white-space: nowrap;
}
.op-card-actions { display: flex; gap: 0.5rem; }

/* 10. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-compass);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-compass-lt); color: var(--c-white); }
.btn-ghost {
  background: transparent;
  color: var(--c-ocean);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  background: var(--c-parchment);
  color: var(--c-ocean);
  border-color: var(--c-ocean);
  text-decoration: none;
}
.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }

/* 11. EDITORIAL SECTION
   ========================================================== */
.editorial-cols { max-width: 720px; }
.editorial-cols p { font-size: 1rem; color: var(--c-ink); }
.editorial-cols strong { color: var(--c-ocean); }
.editorial-cols a { font-weight: 600; }

/* 12. METHODOLOGY GRID
   ========================================================== */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.method-tile {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  position: relative;
}
.method-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--c-border);
  font-style: italic;
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  line-height: 1;
  user-select: none;
}
.method-tile h3 {
  font-size: 0.95rem;
  color: var(--c-ocean);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.method-tile p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0;
}

/* 13. FAQ ACCORDION
   ========================================================== */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
details {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
details[open] { border-color: var(--c-ocean); }
summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-ink);
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--c-ocean);
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 1.25rem 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: #1A1510;
  color: #B0A898;
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
footer a { color: #B0A898; }
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 #2E2820;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--c-contour);
  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-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-contour);
  margin-bottom: 0.75rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.875rem; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: #6E6358;
  line-height: 1.6;
}
.footer-disclaimer a { color: #8C7E70; }
.footer-disclaimer a:hover { color: #B0A898; }

/* 15. AGE GATE
   ========================================================== */
#pczAgeGate {
  position: fixed;
  inset: 0;
  background: rgba(26,21,16,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#pczAgeGate.hidden { display: none; }
.age-gate-card {
  background: var(--c-card);
  border-top: 4px solid var(--c-ocean);
  border-radius: var(--radius-card);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
}
.age-gate-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--c-ocean);
}
.age-gate-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  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-parchment);
  padding: 0.85rem;
  border-radius: var(--radius);
}
.age-gate-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--c-ocean);
}
.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-ocean); color: var(--c-white); }
.age-gate-enter:hover { background: var(--c-ocean-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);
}
.age-gate-rg {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--c-contour);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.age-gate-rg a { color: var(--c-contour); }

/* 16. COOKIE BANNER
   ========================================================== */
#pczCookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1510;
  color: #B0A898;
  padding: 1rem 1.5rem;
  z-index: 8000;
  border-top: 3px solid var(--c-ocean);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#pczCookieBanner.hidden { display: none; }
.cookie-text { font-size: 0.8rem; flex: 1; min-width: 200px; }
.cookie-text a { color: #8C7E70; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--c-ocean);
  color: var(--c-white);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.cookie-decline {
  background: transparent;
  color: #8C7E70;
  border: 1px solid #2E2820;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  cursor: pointer;
}

/* 17. COMPLIANCE MODAL
   ========================================================== */
#pczModal {
  position: fixed;
  inset: 0;
  background: rgba(26,21,16,0.75);
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#pczModal.hidden { display: none; }
.cmodal-card {
  background: var(--c-card);
  border-top: 4px solid var(--c-compass);
  border-radius: var(--radius-card);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
}
.cmodal-kicker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-compass);
  margin-bottom: 0.5rem;
  display: block;
}
.cmodal-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  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-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-ocean);
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(27,78,126,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(27,78,126,0.15);
}
.cmodal-links { font-size: 0.75rem; margin-bottom: 1.25rem; color: var(--c-muted); }
.cmodal-links a { color: var(--c-ocean); 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-parchment-dk);
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-contour);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--c-ocean); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.review-logo-wrap {
  width: 220px;
  height: 100px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.review-logo-wrap img { max-width: 180px; max-height: 80px; object-fit: contain; }
.review-hero h1 { margin-bottom: 0.5rem; }
.bonus-callout {
  background: rgba(27,78,126,0.06);
  border-left: 4px solid var(--c-ocean);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--c-ink);
}
.licence-block {
  background: var(--c-parchment-dk);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  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-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-contour);
  letter-spacing: 0.06em;
  min-width: 130px;
  flex-shrink: 0;
  padding-top: 2px;
}
.licence-val { color: var(--c-ink); }
.licence-val a { color: var(--c-ocean); }
.review-body { max-width: 680px; }
.review-body p { font-size: 0.95rem; line-height: 1.75; }
.disclaimer-callout {
  background: rgba(139,114,80,0.06);
  border-left: 4px solid var(--c-contour);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  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: 1px solid var(--c-border);
}
.review-cta-section h2 { margin-bottom: 1rem; }
.review-cta-smallprint {
  font-size: 0.75rem;
  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: 1px solid var(--c-border);
}
.static-hero h1 { margin-bottom: 0.5rem; }
.static-hero .kicker { margin-bottom: 0.5rem; }
.static-content {
  max-width: 720px;
  padding: 3rem 0;
}
.static-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.static-content h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; color: var(--c-ocean); }
.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-parchment-dk);
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-contour);
  border-bottom: 2px solid var(--c-border);
}
.static-content td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--c-border-lt);
  vertical-align: top;
}
.static-content td a { font-size: 0.875rem; }
.rg-resource {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-ocean);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin: 1rem 0;
}
.rg-resource h3 { color: var(--c-ocean); margin-bottom: 0.4rem; font-size: 1rem; }
.rg-resource p { font-size: 0.875rem; color: var(--c-muted); }
.rg-resource a { font-weight: 700; color: var(--c-ocean); }
.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-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-contour);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-ink);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  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-ocean); box-shadow: 0 0 0 3px rgba(27,78,126,0.1); }
.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: 4rem; 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-parchment-dk);
}
body[data-page="error403"] .err-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--c-contour);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
body[data-page="error403"] h1 { font-size: 2rem; margin-bottom: 0.75rem; }
body[data-page="error403"] p { color: var(--c-muted); max-width: 400px; margin: 0 auto 1.5rem; }
body[data-page="error403"] .err-rg {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--c-contour);
  margin-top: 2rem;
}
body[data-page="error403"] .err-rg a { color: var(--c-contour); }

/* 21. UTILITIES
   ========================================================== */
.text-muted { color: var(--c-muted); }
.text-ocean  { color: var(--c-ocean); }
.text-mono   { font-family: var(--font-mono); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-2  { margin-bottom: 1rem; }
.hidden { display: none !important; }

/* 22. MOBILE BREAKPOINTS — ALWAYS 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; }
  .coord-bar { display: block; }
  header { position: sticky; }
  .age-gate-btns { flex-direction: row; }
  .age-gate-btns .btn { flex: 1; }
  .op-card-footer { flex-wrap: nowrap; }
  .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; }
}
