/* ==========================================================================
   NexusCasinoReview — dark, high-energy sportsbook-adjacent design system
   Deep charcoal palette, single vivid orange accent, heavy display type
   against light body copy, sharp geometric edges, snappy micro-interactions.
   ========================================================================== */

:root {
  --bg: #15130f;
  --bg-alt: #1b1712;
  --footer-bg: #0d0b08;

  --surface-1: #1e1a15;
  --surface-2: #241f18;
  --surface-3: #2a241b;

  --ink: #ece3d2;
  --ink-soft: #b6ac99;
  --ink-faint: #7d7566;

  --accent: #f2711f;
  --accent-light: #ff9142;
  --accent-dim: rgba(242, 113, 31, 0.4);
  --accent-glow: rgba(242, 113, 31, 0.25);
  --accent-wash: rgba(242, 113, 31, 0.1);

  --muted-burgundy: #7a4438;
  --muted-burgundy-glow: rgba(122, 68, 56, 0.28);
  --muted-emerald: #46614f;
  --muted-emerald-glow: rgba(70, 97, 79, 0.28);

  --line: rgba(236, 227, 210, 0.09);
  --line-strong: rgba(236, 227, 210, 0.17);

  --shadow-soft: 0 25px 60px -35px rgba(0, 0, 0, 0.75);
  --shadow-card: 0 14px 34px -24px rgba(0, 0, 0, 0.7);
  --glow-accent: 0 0 1px rgba(242, 113, 31, 0.45), 0 0 44px -6px rgba(242, 113, 31, 0.25);

  --display: "Archivo Black", "Arial Black", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius: 2px;
  --cut: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--surface-2); color: var(--accent-light);
  padding: 0.8em 1.2em; z-index: 200; border: 1px solid var(--accent-dim);
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.kicker--light { color: var(--accent-light); }
.kicker--light::before { background: var(--accent-light); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule--gold { height: 2px; background: linear-gradient(90deg, var(--accent), transparent 85%); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 700; font-size: 0.94rem;
  padding: 0.85em 1.5em; border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; transition: box-shadow 0.15s ease-out, border-color 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  white-space: nowrap;
}
/* Restrained default: dark surface, thin orange border — used broadly */
.btn-primary { background: var(--surface-2); color: var(--accent-light); border-color: var(--accent-dim); }
.btn-primary:hover { border-color: var(--accent); background: var(--surface-3); box-shadow: var(--glow-accent); }
/* Rare, solid, saturated — reserved for the one key action per view; angled corner as the brand's signature cut */
.btn-gold {
  background: var(--accent); color: #191510; border-color: var(--accent); font-weight: 800;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn-gold:hover { background: var(--accent-light); border-color: var(--accent-light); box-shadow: var(--glow-accent); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink-soft); color: var(--accent-light); }
.btn-ghost { background: transparent; color: var(--accent-light); padding-left: 0; padding-right: 0; }
.btn-ghost .arrow { transition: transform 0.15s ease-out; }
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-on-dark.btn-outline { color: var(--ink); border-color: rgba(236, 227, 210, 0.28); }
.btn-on-dark.btn-outline:hover { border-color: var(--ink); }

/* ---------- Badge 18+ ---------- */
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2em; height: 2.2em; border-radius: 50%;
  background: var(--surface-2); color: var(--accent-light);
  font-family: var(--display); font-weight: 400; font-size: 0.8rem; letter-spacing: -0.02em;
  border: 1px solid var(--accent-dim);
  flex-shrink: 0;
}
.badge-18--lg { width: 3.4em; height: 3.4em; font-size: 1.2rem; }

/* ==========================================================================
   Topbar + Masthead
   ========================================================================== */
.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-faint);
  background: var(--bg-alt);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.55em; padding-bottom: 0.55em; flex-wrap: wrap; }
.topbar__links { display: flex; align-items: center; gap: 1.3em; }
.topbar a { text-decoration: none; transition: color 0.12s ease-out; }
.topbar a:hover { color: var(--accent-light); }
.lang-switch { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: 0.3em 0.85em; font-weight: 700; text-decoration: none; color: var(--ink-soft); }
.lang-switch a.is-active { background: var(--accent); color: #191510; }

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21, 19, 15, 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 1.1em; padding-bottom: 1.1em; }
.masthead__brand { display: flex; align-items: baseline; gap: 0.6em; text-decoration: none; }
.masthead__brand-mark { font-family: var(--display); font-weight: 400; font-size: 1.45rem; letter-spacing: -0.01em; color: var(--ink); }
.masthead__brand-tag { display: none; }
@media (min-width: 720px) {
  .masthead__brand-tag { display: inline; font-size: 0.72rem; color: var(--ink-faint); border-left: 1px solid var(--line-strong); padding-left: 0.8em; max-width: 220px; line-height: 1.3; }
}
.masthead__nav { display: none; align-items: center; gap: 1.9em; }
@media (min-width: 960px) { .masthead__nav { display: flex; } }
.masthead__nav a {
  text-decoration: none; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
  position: relative; padding-bottom: 3px; transition: color 0.12s ease-out;
}
.masthead__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.18s ease-out;
}
.masthead__nav a:hover, .masthead__nav a.is-active { color: var(--ink); }
.masthead__nav a:hover::after, .masthead__nav a.is-active::after { transform: scaleX(1); }
.masthead__actions { display: flex; align-items: center; gap: 1em; }

.nav-toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 0.5em 0.7em; background: none; }
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); background: var(--bg);
}
.mobile-nav.is-open { display: flex; }
@media (min-width: 960px) { .mobile-nav { display: none !important; } }
.mobile-nav a { padding: 0.9em clamp(1.25rem, 4vw, 3rem); text-decoration: none; font-weight: 700; border-top: 1px solid var(--line); color: var(--ink-soft); }
.mobile-nav a.is-active { color: var(--accent-light); }

/* ==========================================================================
   Azulejo pattern helpers — dark, duotone panels with a signature angled cut
   ========================================================================== */
.azulejo-panel {
  position: relative; background-color: #241d13; color: var(--ink);
  background-image: url('/images/pattern/azulejo.svg');
  background-size: 180px 180px; background-repeat: repeat;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--accent-dim);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}
.azulejo-panel::before {
  /* soft directional light-bleed, not a loud gradient */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 12% 0%, rgba(242, 113, 31, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(10, 8, 5, 0.25), rgba(10, 8, 5, 0.82));
}
.azulejo-panel::after {
  /* fine grain for a desaturated, photographic feel */
  content: "";
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.azulejo-panel--gold { background-color: #2a2013; }
.azulejo-panel--gold::before {
  background:
    radial-gradient(70% 60% at 88% 100%, rgba(242, 113, 31, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(10, 8, 5, 0.3), rgba(10, 8, 5, 0.85));
}
.azulejo-panel > * { position: relative; z-index: 1; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(3rem, 7vw, 6rem); position: relative; }
.hero::before {
  content: ""; position: absolute; top: -10%; left: 50%; width: 900px; height: 500px; transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-wash), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: end; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 7fr 5fr; } }
.hero__eyebrow { margin-bottom: 1.1em; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4.2rem); max-width: 15ch; letter-spacing: -0.015em; color: var(--ink); }
.hero__dek { font-family: var(--sans); font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 46ch; margin: 1.1em 0 1.6em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1em; margin-bottom: 2em; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 0.4em 1.6em; font-size: 0.85rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 1.1em; }
.hero__meta strong { color: var(--ink); font-weight: 700; }

.hero__visual {
  min-height: 320px; padding: 2.2em;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-soft), var(--glow-accent);
  will-change: transform;
}
.hero__visual-num { font-family: var(--display); font-weight: 400; font-size: 4.3rem; line-height: 1; color: var(--accent-light); }
.hero__visual-caption { font-size: 0.85rem; letter-spacing: 0.04em; max-width: 24ch; color: var(--ink); }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { display: flex; flex-direction: column; gap: 0.7em; margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 62ch; }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.section__intro { color: var(--ink-soft); font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Issue index (home) ---------- */
.issue-list { border-top: 1px solid var(--line-strong); }
.issue-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0; border-bottom: 1px solid var(--line-strong);
  text-decoration: none; color: inherit; transition: background 0.15s ease-out, padding-left 0.15s ease-out;
}
.issue-row:hover { background: rgba(242, 113, 31, 0.06); padding-left: 0.6em; }
.issue-row__num { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--accent); width: 2.2ch; }
.issue-row__title { font-size: clamp(1.15rem, 2vw, 1.6rem); margin-bottom: 0.25em; }
.issue-row__dek { color: var(--ink-soft); font-size: 0.95rem; max-width: 60ch; }
.issue-row__cta { font-weight: 800; font-size: 0.88rem; display: flex; align-items: center; gap: 0.5em; white-space: nowrap; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.03em; }
.issue-row__cta .arrow { transition: transform 0.15s ease-out; }
.issue-row:hover .issue-row__cta .arrow { transform: translateX(5px); }

/* ---------- Trust grid ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
.trust-item { border-left: 2px solid var(--accent-dim); padding-left: 1.2em; }
.trust-item__num { font-family: var(--display); font-weight: 400; color: var(--ink-faint); font-size: 0.9rem; }
.trust-item h3 { font-size: 1.1rem; margin: 0.3em 0 0.4em; }
.trust-item p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- Pull quote ---------- */
.pull-quote { position: relative; max-width: 48ch; margin: 0 auto; text-align: center; padding: 1em 0; }
.pull-quote__mark { font-family: var(--display); font-weight: 400; font-size: 3.6rem; color: var(--accent); line-height: 0.4; display: block; margin-bottom: 0.3em; text-shadow: 0 0 30px var(--accent-glow); }
.pull-quote blockquote { font-family: var(--sans); font-weight: 600; font-style: normal; font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin: 0; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- Responsible band ---------- */
.responsible-band { padding: clamp(3.4rem, 7vw, 5.6rem) 0 clamp(3rem, 6vw, 5rem); position: relative; clip-path: polygon(0 22px, 100% 0, 100% 100%, 0 100%); }
.responsible-band__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 820px) { .responsible-band__grid { grid-template-columns: 1fr auto; } }
.responsible-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--ink); max-width: 18ch; }
.responsible-band p { font-family: var(--sans); color: var(--ink-soft); max-width: 52ch; margin-top: 0.7em; }

/* ---------- FAQ teaser ---------- */
.faq-teaser-list { display: flex; flex-direction: column; }
.faq-teaser-row { padding: 1.2em 0; border-bottom: 1px solid var(--line-strong); font-family: var(--sans); font-weight: 700; font-size: 1.08rem; }
.faq-teaser-row:first-child { border-top: 1px solid var(--line-strong); }

/* ---------- About teaser ---------- */
.about-teaser { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 820px) { .about-teaser { grid-template-columns: 3fr 5fr; } }
.about-teaser__mark { font-family: var(--display); font-weight: 400; font-size: 5.5rem; color: var(--surface-3); line-height: 1; }

/* ==========================================================================
   Casinos list page
   ========================================================================== */
.page-head { padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(1.6rem, 3vw, 2.4rem); }
.page-head__title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0.3em 0 0.5em; }
.page-head__intro { color: var(--ink-soft); max-width: 62ch; font-size: 1.05rem; }
.page-head__register { margin-top: 1.2em; }

.spread { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-strong); }
.spread:last-child { border-bottom: 1px solid var(--line-strong); }
.spread-item { display: grid; grid-template-columns: 1fr; }
@media (min-width: 860px) { .spread-item { grid-template-columns: 5fr 7fr; } }
.spread-item:nth-child(even) .spread-item__visual { order: 2; }
.spread-item__visual { min-height: 220px; padding: 2em; display: flex; flex-direction: column; justify-content: space-between; }
@media (min-width: 860px) { .spread-item__visual { min-height: 340px; } }
.spread-item__body { padding: clamp(1.8rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.spread-item__brand { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.2em; }
.spread-item__entity { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 1em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5em; margin-bottom: 1.2em; }
.pill { display: inline-flex; align-items: center; gap: 0.4em; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35em 0.9em; font-size: 0.76rem; font-weight: 700; color: var(--ink-soft); }
.pill--gold { border-color: var(--accent-dim); color: var(--accent-light); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5em; margin-bottom: 1.4em; }
.tag { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.3em 0.7em; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); }

/* ==========================================================================
   Review (article) page
   ========================================================================== */
.article-head { padding: clamp(2.2rem, 5vw, 3.6rem) 0 clamp(1.5rem, 3vw, 2rem); }
.article-head__title { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0.25em 0 0.4em; }
.article-head__dek { font-family: var(--sans); font-weight: 500; font-style: normal; color: var(--ink-soft); font-size: clamp(1.1rem, 1.8vw, 1.4rem); max-width: 58ch; }
.article-head__byline { display: flex; flex-wrap: wrap; gap: 1.2em; margin-top: 1.4em; font-size: 0.85rem; color: var(--ink-faint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0.9em 0; }

.article-banner { height: clamp(180px, 30vw, 320px); margin: clamp(1.5rem, 3vw, 2.5rem) 0; display: flex; align-items: center; justify-content: center; }
.article-banner__mono { font-family: var(--display); font-weight: 400; font-size: clamp(4rem, 10vw, 8rem); color: var(--accent-light); letter-spacing: -0.02em; text-shadow: 0 0 60px var(--accent-glow); }

.article-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 960px) { .article-layout { grid-template-columns: 7fr 4fr; } }
.article-body { font-size: 1.06rem; color: var(--ink-soft); }
.article-body p:first-of-type::first-letter {
  font-family: var(--display); font-weight: 400; font-size: 3.4em; float: left; line-height: 0.85; padding: 0.05em 0.1em 0 0; color: var(--accent-light);
}
.article-body h2 { font-size: 1.35rem; margin: 1.6em 0 0.6em; color: var(--ink); }

.sidebar-card { background: var(--surface-1); border: 1px solid var(--line-strong); padding: 1.6em; position: sticky; top: 96px; box-shadow: var(--shadow-card); }
.sidebar-card + .sidebar-card { margin-top: 1.5rem; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1em; font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.fact-row { display: flex; justify-content: space-between; gap: 1em; padding: 0.6em 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.fact-row:last-child { border-bottom: none; }
.fact-row dt { color: var(--ink-faint); }
.fact-row dd { margin: 0; text-align: right; font-weight: 700; color: var(--ink); }
.license-item { padding: 0.8em 0; border-bottom: 1px solid var(--line); }
.license-item:last-child { border-bottom: none; }
.license-item__num { font-weight: 800; color: var(--ink); }
.license-item__scope { color: var(--ink-soft); font-size: 0.86rem; margin: 0.2em 0 0.4em; }
.license-item__link { font-size: 0.8rem; font-weight: 800; color: var(--accent-light); text-decoration: none; }
.license-item__link:hover { text-decoration: underline; }

.marginalia-cols { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin: 1.6em 0; }
@media (min-width: 620px) { .marginalia-cols { grid-template-columns: 1fr 1fr; } }
.marginalia h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.8em; color: var(--ink-faint); font-family: var(--sans); font-weight: 800; }
.marginalia li { position: relative; padding-left: 1.3em; margin-bottom: 0.7em; font-size: 0.96rem; color: var(--ink-soft); }
.marginalia li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.verdict-box { position: relative; border: 1px solid var(--accent-dim); padding: clamp(1.6rem, 3vw, 2.4rem); margin: 2em 0; background: var(--surface-2); box-shadow: var(--glow-accent); }
.verdict-box h2 { margin-bottom: 0.5em; }
.verdict-box p { color: var(--ink-soft); }
.rating { display: flex; align-items: center; gap: 0.15em; margin: 0.8em 0 1em; }
.rating__tile { width: 22px; height: 22px; background: var(--surface-3); border: 1px solid var(--line-strong); }
.rating__tile.is-filled { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px -2px var(--accent-glow); }
.rating__note { font-size: 0.78rem; color: var(--ink-faint); }

.inline-disclaimer { font-size: 0.85rem; color: var(--ink-faint); border-left: 2px solid var(--muted-burgundy); padding-left: 1em; margin: 1.6em 0; }

.article-actions { display: flex; flex-wrap: wrap; gap: 1em; margin: 2em 0; }
.also-in-edition { border-top: 1px solid var(--line-strong); padding-top: 2em; margin-top: 2em; }

/* ==========================================================================
   Generic content pages (about / faq / responsible / legal)
   ========================================================================== */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.3rem; margin: 1.4em 0 0.5em; }
.prose p { color: var(--ink-soft); }

.method-list { display: grid; grid-template-columns: 1fr; gap: 1.8rem; margin: 2rem 0; }
@media (min-width: 720px) { .method-list { grid-template-columns: 1fr 1fr; } }
.method-item { display: flex; gap: 1em; }
.method-item__num { font-family: var(--display); font-weight: 400; font-size: 1.5rem; color: var(--accent); flex-shrink: 0; width: 1.6ch; }
.method-item h3 { font-size: 1.02rem; margin-bottom: 0.3em; }
.method-item p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.callout { padding: clamp(1.6rem, 3vw, 2.2rem); margin: 2rem 0; background: var(--surface-1); border: 1px solid var(--line-strong); }
.callout--gold { border-color: var(--accent-dim); box-shadow: var(--glow-accent); }
.callout--terracotta { border-left: 3px solid var(--muted-burgundy); box-shadow: 0 0 40px -20px var(--muted-burgundy-glow); }
.callout--green { border-left: 3px solid var(--muted-emerald); box-shadow: 0 0 40px -20px var(--muted-emerald-glow); }
.callout h3 { margin-bottom: 0.5em; }
.callout p { color: var(--ink-soft); margin-bottom: 1em; }

.checklist li { position: relative; padding-left: 1.6em; margin-bottom: 0.8em; color: var(--ink-soft); }
.checklist li::before { content: "!"; position: absolute; left: 0; top: 0; width: 1.1em; height: 1.1em; border-radius: 50%; background: var(--muted-burgundy); color: var(--ink); font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Team / two-col layout used on About */
.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .two-col { grid-template-columns: 7fr 5fr; } }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.form-field { margin-bottom: 1.3em; }
.form-field label { display: block; font-weight: 800; font-size: 0.86rem; margin-bottom: 0.5em; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.8em 1em; border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.98rem; background: var(--surface-1); color: var(--ink);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent-dim); box-shadow: 0 0 0 3px var(--accent-wash); outline: none; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.4em; }
.success-box { border: 1px solid var(--muted-emerald); background: var(--surface-1); padding: 2rem; box-shadow: 0 0 50px -22px var(--muted-emerald-glow); }
.success-box h2 { margin-bottom: 0.4em; }

/* FAQ accordion */
.faq-list { border-top: 1px solid var(--line-strong); max-width: 78ch; }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.3em 0.2em; display: flex; align-items: center; gap: 1em;
  font-family: var(--sans); font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+"; font-family: var(--sans); font-weight: 800; color: var(--accent); font-size: 1.3rem; width: 1em; flex-shrink: 0; }
.faq-item[open] summary::before { content: "–"; }
.faq-item__answer { padding: 0 0.2em 1.4em 1.5em; color: var(--ink-soft); max-width: 68ch; }

/* Legal pages with TOC */
.legal-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 960px) { .legal-layout { grid-template-columns: 3fr 9fr; } }
.legal-toc { position: sticky; top: 96px; align-self: start; }
.legal-toc__title { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.9em; }
.legal-toc a { display: block; padding: 0.4em 0; font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; border-left: 2px solid var(--line); padding-left: 0.9em; transition: color 0.12s ease-out, border-color 0.12s ease-out; }
.legal-toc a:hover { color: var(--accent-light); border-left-color: var(--accent); }
.legal-section { padding-bottom: 2.2em; margin-bottom: 2.2em; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-section:last-child { border-bottom: none; }
.legal-section__num { font-family: var(--display); font-weight: 400; color: var(--accent); font-size: 1.05rem; margin-right: 0.3em; }
.legal-section h2 { font-size: 1.25rem; display: inline; }
.legal-section p { color: var(--ink-soft); margin-top: 0.8em; }

/* 404 */
.error-page { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.error-page__num { font-family: var(--display); font-weight: 400; font-size: clamp(4rem, 14vw, 9rem); color: var(--accent); line-height: 1; text-shadow: 0 0 60px var(--accent-glow); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: var(--ink-soft); border-top: 1px solid var(--line); }
.footer-top { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 4fr 3fr 3fr; } }
.footer-brand__mark { font-family: var(--display); font-weight: 400; font-size: 1.35rem; color: var(--ink); }
.footer-brand__about { font-size: 0.9rem; margin-top: 0.9em; max-width: 38ch; color: var(--ink-faint); }
.footer-col h3 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1em; }
.footer-col ul li { margin-bottom: 0.7em; }
.footer-col a { text-decoration: none; font-size: 0.92rem; color: var(--ink-soft); transition: color 0.12s ease-out; }
.footer-col a:hover { color: var(--accent-light); }

.footer-regulators { border-top: 1px solid var(--line); padding: clamp(1.8rem, 3vw, 2.4rem) 0; }
.footer-regulators__title { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2em; }
.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 2.2rem; }
.badge-row a { display: flex; align-items: center; gap: 0.7em; text-decoration: none; color: var(--ink-soft); }
.badge-row img { height: 42px; width: auto; }
.badge-row span { font-size: 0.8rem; max-width: 16ch; }

.footer-bottom { border-top: 1px solid var(--line); padding: 1.4em 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1em; }
.footer-bottom__disclaimer { display: flex; align-items: center; gap: 0.8em; font-size: 0.8rem; max-width: 60ch; color: var(--ink-faint); }
.footer-bottom__rights { font-size: 0.78rem; color: var(--ink-faint); opacity: 0.7; }

/* ==========================================================================
   Cookie consent bar
   ========================================================================== */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  transform: translateY(120%); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  padding: 1rem;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__inner {
  max-width: 880px; margin: 0 auto; background: var(--surface-1); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft), var(--glow-accent); padding: 1.4rem 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem;
}
.cookie-bar__text { flex: 1 1 320px; }
.cookie-bar__text strong { display: block; font-family: var(--sans); font-weight: 800; font-size: 1.02rem; margin-bottom: 0.3em; color: var(--ink); }
.cookie-bar__text p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.cookie-bar__text a { color: var(--accent-light); font-weight: 700; }
.cookie-bar__actions { display: flex; gap: 0.8em; flex-shrink: 0; }
.cookie-bar__actions .btn { padding: 0.7em 1.2em; font-size: 0.88rem; }

@media (max-width: 560px) {
  .cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .cookie-bar__actions { justify-content: stretch; }
  .cookie-bar__actions .btn { flex: 1; justify-content: center; }
}
