/* =========================================================
   classementplateformes — éditorial · informationnel · FR
   ========================================================= */

:root {
  --atomic-tangerine: #ff6b35;
  --peach-glow: #f7c59f;
  --beige: #efefd0;
  --steel-azure: #004e89;
  --baltic-blue: #1a659e;

  --ink: #04253f;
  --ink-soft: rgba(4, 37, 63, 0.72);
  --ink-muted: rgba(4, 37, 63, 0.55);
  --line: rgba(0, 78, 137, 0.14);
  --line-strong: rgba(0, 78, 137, 0.28);
  --bg: #fbfaf2;
  --surface: #ffffff;
  --surface-soft: rgba(247, 197, 159, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0, 78, 137, 0.06), 0 6px 18px rgba(0, 78, 137, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 78, 137, 0.08), 0 22px 44px rgba(0, 78, 137, 0.08);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --section-y: clamp(56px, 8vw, 110px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--steel-azure); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--atomic-tangerine); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-azure);
  font-weight: 600;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--atomic-tangerine); border-radius: 50%; display: inline-block; }
.eyebrow .lucide { width: 16px; height: 16px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;text-transform: uppercase !important;

}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--steel-azure);
  color: #fff;
  position: relative;
  
}
.brand-mark::after {
  content: "";
  position: absolute; right: -4px; bottom: -4px;
  width: 12px; height: 12px;
  background: var(--atomic-tangerine);
  border-radius: 4px;
}
.brand-mark .lucide { width: 18px; height: 18px; }
.brand strong { color: var(--steel-azure); font-weight: 600; letter-spacing: -0.01em; }

.nav-list {
  display: flex; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
}
.nav-list a:hover { color: var(--ink); background: var(--surface-soft); }
.nav-list a.active { color: var(--ink); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--atomic-tangerine); border-radius: 2px;
}

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.burger .lucide { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-list {
    position: fixed;
    top: 72px; right: 16px;
    flex-direction: column;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-list.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .burger { display: inline-flex; }
}

/* =========================================================
   TRUST BAR (block A — editorial)
   ========================================================= */
.trust-bar {
  background: linear-gradient(180deg, var(--surface-soft) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding-block: 14px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.trust-bar .pip { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar .pip .lucide { width: 14px; height: 14px; color: var(--steel-azure); }
.trust-bar .sep {
  width: 4px; height: 4px; background: var(--line-strong); border-radius: 50%;
}

/* =========================================================
   HERO (block A continued)
   ========================================================= */
.hero {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  
}
.hero h1 .accent {
  color: var(--steel-azure);
  font-style: italic;
  font-weight: 400;
}
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 62%, var(--peach-glow) 62%);
  padding: 0 2px;
}
.hero-lede {
  font-size: 1.12rem;
  max-width: 56ch;
  color: var(--ink-soft);
  margin-top: 28px;
}
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.hero-meta .stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--steel-azure);
}
.hero-meta .stat small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute; inset: -1px -1px auto auto;
  width: 70px; height: 6px;
  background: var(--atomic-tangerine);
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-card h3 .lucide { color: var(--atomic-tangerine); }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-card li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.hero-card .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--surface-soft);
  display: grid; place-items: center;
  color: var(--steel-azure);
}
.hero-card .ic .lucide { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-meta { gap: 24px; }
}

/* =========================================================
   METHODOLOGY STRIP (block B)
   ========================================================= */
.method-strip {
  background: var(--ink);
  color: #fff;
  padding-block: 22px;
}
.method-strip .row {
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.method-strip .row > span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,.85);
}
.method-strip .lucide { width: 16px; height: 16px; color: var(--peach-glow); }
.method-strip .row > b {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  color: var(--peach-glow);
  font-size: 0.95rem;
}

/* =========================================================
   OPERATORS DIRECTORY (block C)
   ========================================================= */
.directory {
  padding-block: var(--section-y);
}
.section-head {
  display: flex; justify-content: space-between;
  align-items: end; gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 { max-width: 22ch; margin: 8px 0 0; }
.section-head .note { max-width: 360px; font-size: 0.92rem; color: var(--ink-muted); }
@media (max-width: 720px) { .section-head { flex-direction: column; align-items: start; } }

.op-list {
  display: grid;
  gap: 18px;
}
.op-card {
  display: grid;
  grid-template-columns: 60px 160px 1fr 130px;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.op-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.op-index {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--steel-azure);
  font-weight: 400;
  line-height: 1;
  font-feature-settings: "tnum";
}
.op-index::before {
  content: "Nº";
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.op-logo {
  width: 100%;
  height: 70px;
  background: var(--ink);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
}
.op-logo img { width: 120px; height: 60px; object-fit: contain; }

.op-info h3 { margin: 0 0 6px; font-size: 1.3rem; }
.op-info p { margin: 0 0 10px; font-size: 0.94rem; }
.op-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 0.8rem; color: var(--ink-muted);
}
.op-meta span { display: inline-flex; align-items: center; gap: 6px; }
.op-meta .lucide { width: 13px; height: 13px; color: var(--steel-azure); }

.op-action {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 14px;
}
.op-score {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}
.op-score-bar {
  width: 4px; height: 36px;
  background: var(--atomic-tangerine);
  border-radius: 4px;
}
.op-score-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.op-score-lbl {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn .lucide { width: 16px; height: 16px; }
.btn-primary { background: var(--steel-azure); color: #fff; }
.btn-primary:hover { background: var(--baltic-blue); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--steel-azure); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--steel-azure); color: var(--steel-azure); }
.btn-block { width: 100%; }

.op-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding: 12px 4px 0;
  border-top: 1px dashed var(--line);
  margin-top: 18px;
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .op-card { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .op-logo { grid-column: 2 / 3; max-width: 200px; }
  .op-info { grid-column: 1 / -1; }
  .op-action { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
  .op-action .btn { flex: 1; }
}
@media (max-width: 520px) {
  .op-card { padding: 20px; gap: 16px; }
  .op-action { flex-direction: column; }
}

/* =========================================================
   EDITORIAL NOTE (block D)
   ========================================================= */
.editorial {
  padding-block: var(--section-y);
  background: var(--steel-azure);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.editorial::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  background: var(--baltic-blue);
  border-radius: 50%;
  opacity: 0.5;
}
.editorial .container { position: relative; }
.editorial h2 { color: #fff; max-width: 22ch; }
.editorial p { color: rgba(255,255,255,.82); max-width: 60ch; }
.editorial .eyebrow { color: var(--peach-glow); }
.editorial .editorial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.editorial-points {
  display: grid; gap: 22px;
}
.editorial-points .pt {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--atomic-tangerine);
}
.editorial-points .pt .ic {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--peach-glow);
}
.editorial-points .pt h4 { color: #fff; margin: 0 0 4px; font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.editorial-points .pt p { color: rgba(255,255,255,.7); font-size: 0.9rem; margin: 0; }

@media (max-width: 860px) { .editorial .editorial-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   RESPONSIBLE GAMBLING NOTICE (block E)
   ========================================================= */
.responsible-block {
  padding-block: var(--section-y);
}
.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.responsible-grid .lead h2 { margin-bottom: 16px; }
.responsible-grid .lead p { color: var(--ink-soft); }

.help-resources {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.help-resources h3 { font-size: 1.15rem; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.help-resources h3 .lucide { color: var(--atomic-tangerine); }
.help-resources ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.help-resources li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  transition: border-color .2s ease;
}
.help-resources li:hover { border-color: var(--steel-azure); }
.help-resources li strong { display: block; color: var(--ink); margin-bottom: 2px; }
.help-resources li small { color: var(--ink-muted); font-size: 0.82rem; }
.help-resources .tel {
  font-family: var(--font-display);
  color: var(--steel-azure);
  font-size: 1.05rem;
  white-space: nowrap;
}

@media (max-width: 860px) { .responsible-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   PRE-FOOTER (legal block)
   ========================================================= */
.pre-footer {
  background: var(--peach-glow);
  padding: 28px 0;
  border-top: 4px solid var(--atomic-tangerine);
}
.pre-footer .container {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  align-items: center;
}
.pre-footer .age-mark {
  width: 80px; height: 80px;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  border: 4px solid #fff;
}
.pre-footer p {
  margin: 0; font-size: 0.92rem;
  color: var(--ink);
}
@media (max-width: 520px) { .pre-footer .container { grid-template-columns: 60px 1fr; } .pre-footer .age-mark { width: 60px; height: 60px; font-size: 1.1rem; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding-block: 64px 28px;
}
.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 44px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand strong { color: var(--peach-glow); }
.footer-brand p { color: rgba(255,255,255,.62); font-size: 0.9rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: 0.92rem; }
.footer-links a:hover { color: var(--peach-glow); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,.7); margin: 0 0 8px; display: flex; gap: 8px; }
.footer-contact .lucide { width: 14px; height: 14px; color: var(--peach-glow); flex-shrink: 0; margin-top: 4px; }

.regulators-row {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-block: 28px;
  margin-bottom: 24px;
}
.regulators-row .container {
  display: flex; flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.regulators-row .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.regulators-list {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: center;
}
.regulators-list a {
  display: inline-flex;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity .2s ease;
}
.regulators-list a:hover { opacity: 1; }
.regulators-list img { height: 50px; width: auto; object-fit: contain; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  font-weight: 600; color: #fff;
}
.footer-bottom .age-badge::before {
  content: "18+";
  background: var(--atomic-tangerine);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-hero {
  padding-block: clamp(60px, 8vw, 90px) clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top right, var(--surface-soft) 0%, transparent 60%),
    var(--bg);
}
.page-hero .breadcrumbs {
  font-size: 0.82rem; color: var(--ink-muted);
  margin-bottom: 16px;
  display: flex; gap: 8px; align-items: center;
}
.page-hero .breadcrumbs a { color: var(--ink-muted); }
.page-hero .breadcrumbs a:hover { color: var(--steel-azure); }
.page-hero h1 { margin: 8px 0 16px; }
.page-hero p { max-width: 60ch; font-size: 1.05rem; }

.content-section {
  padding-block: clamp(56px, 7vw, 90px);
}
.content-section .container { max-width: 880px; }
.content-section h2 { margin-top: 1.4em; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { margin-top: 1.6em; font-size: 1.2rem; }
.content-section ul, .content-section ol {
  padding-left: 22px;
  color: var(--ink-soft);
}
.content-section li { margin-bottom: 8px; }
.content-section .meta-date {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--steel-azure);
  margin-bottom: 24px;
}
.content-section .callout {
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--atomic-tangerine);
  border-radius: var(--radius-md);
  margin-block: 28px;
}
.content-section .callout h3 { margin-top: 0; }

/* About — values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-block: 32px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.value-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-soft);
  display: grid; place-items: center;
  color: var(--steel-azure);
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.value-card p { font-size: 0.92rem; margin: 0; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info .item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-soft);
  display: grid; place-items: center;
  color: var(--steel-azure);
}
.contact-info strong { display: block; margin-bottom: 4px; color: var(--ink); }
.contact-info p { margin: 0; font-size: 0.92rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--steel-azure);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-soft);
  margin-bottom: 18px;
}
.form-check input { margin-top: 4px; }
.form-error {
  display: none;
  font-size: 0.82rem;
  color: #b3261e;
  margin-top: 6px;
}
.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select { border-color: #b3261e; }
.form-row.has-error .form-error { display: block; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 78, 137, 0.08);
  color: var(--steel-azure);
  font-size: 0.92rem;
}
.form-status.visible { display: block; }
.form-loader { display: none; align-items: center; gap: 8px; }
.form-loader.visible { display: inline-flex; }
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Responsible page resources */
.resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-block: 24px;
  margin-block: 24px;
  list-style: none;
  padding: 0;
}
.resources-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}
.resources-list img {
  height: 70px; width: auto; object-fit: contain;
  margin-bottom: 14px; background-color: #04253f;padding: 10px; border-radius: 10px;
}
.resources-list strong { display: block; color: var(--ink); margin-bottom: 4px; }
.resources-list small { display: block; font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 8px; }
.resources-list .tel { font-family: var(--font-display); color: var(--steel-azure); }
@media (max-width: 720px) { .resources-list { grid-template-columns: 1fr; } }

/* =========================================================
   AGE VERIFICATION POPUP
   ========================================================= */
.age-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(4, 37, 63, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.age-overlay.show { display: flex; }
.age-modal {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.age-modal-head {
  padding: 28px 28px 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--steel-azure), var(--baltic-blue));
  color: #fff;
}
.age-modal-head .age-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--atomic-tangerine);
  border: 4px solid #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 auto 14px;
}
.age-modal-head h2 { color: #fff; margin: 0 0 8px; font-size: 1.5rem; }
.age-modal-head p { color: rgba(255,255,255,.85); margin: 0; font-size: 0.92rem; }
.age-modal-body { padding: 28px; text-align: center; }
.age-modal-body p { font-size: 0.92rem; }
.age-modal-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 18px;
}
.age-modal-foot {
  padding: 14px 28px;
  background: var(--bg);
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

/* =========================================================
   COOKIE BANNER (corner card style)
   ========================================================= */
.cookie-banner {
  position: fixed;
  z-index: 150;
  left: 20px; bottom: 20px;
  max-width: 380px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  border-left: 4px solid var(--atomic-tangerine);
  display: none;
  animation: slideUp .35s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.cookie-banner h4 .lucide { color: var(--peach-glow); }
.cookie-banner p { color: rgba(255,255,255,.75); font-size: 0.88rem; margin: 0 0 14px; }
.cookie-banner a { color: var(--peach-glow); text-decoration: underline; }
.cookie-banner .actions { display: flex; gap: 8px; }
.cookie-banner .btn-primary { background: var(--atomic-tangerine); padding: 10px 14px; font-size: 0.85rem; }
.cookie-banner .btn-primary:hover { background: #e85a26; }
.cookie-banner .btn-ghost { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.2); padding: 10px 14px; font-size: 0.85rem; }
.cookie-banner .btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.4); }

@media (max-width: 520px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* =========================================================
   UTIL
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
