/* ===========================================================
   HQCasinoReview — editorial design system
   =========================================================== */

:root {
  --bg: #141210;
  --bg-raised: #1a1714;
  --text: #efe9df;
  --text-soft: #f5f1e8;
  --muted: #8a8478;
  --muted-2: #b3ab9c;
  --muted-3: #a89b8d;
  --accent: #c9584a;
  --accent-dim: #7a3b32;
  --serif: "Lora", Georgia, serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --edge: 1px solid rgba(239, 233, 223, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Kickers / mono labels ---------- */
.kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.kicker--muted { color: var(--muted); }

.stat-line {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}
.stat-line strong {
  color: var(--text-soft);
  font-weight: 500;
}
.stat-line .stat-dot {
  color: var(--accent);
  margin: 0 10px;
}

/* ---------- Age strip ---------- */
.age-strip {
  background: var(--bg-raised);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 20px;
  text-transform: uppercase;
}
.age-strip a { color: var(--muted-2); }
.age-strip a:hover { color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  padding: 26px 0;
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}
.wordmark:hover { color: var(--text-soft); }
.wordmark__dot { color: var(--accent); margin-right: 2px; }

.main-nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav a { color: var(--muted-2); padding-bottom: 4px; }
.main-nav a:hover { color: var(--text-soft); }
.main-nav a.is-active { color: var(--accent); }

.header-badge__age {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--bg);
  background: var(--text-soft);
  border-radius: 3px;
  padding: 3px 8px;
}
.header-badge__age--footer {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted-2);
  margin-right: 8px;
}

/* ---------- Grid system ---------- */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 28px;
}

.g-1-8   { grid-column: 1 / 9; }
.g-8-13  { grid-column: 8 / 13; }
.g-9-13  { grid-column: 9 / 13; }
.g-1-4   { grid-column: 1 / 5; }
.g-1-5   { grid-column: 1 / 6; }
.g-5-13  { grid-column: 5 / 13; }
.g-6-13  { grid-column: 6 / 13; }
.g-1-13  { grid-column: 1 / 13; }
.g-2-12  { grid-column: 2 / 12; }
.g-3-11  { grid-column: 3 / 12; }

@media (max-width: 860px) {
  .g-1-8, .g-8-13, .g-9-13, .g-1-4, .g-1-5, .g-5-13, .g-6-13, .g-2-12, .g-3-11 {
    grid-column: 1 / 13;
  }
}

/* ---------- Section rhythm ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.bleed-shift { background: var(--bg-raised); }

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 90px;
}
.hero h1 {
  font-size: 32px;
  line-height: 1.28;
  max-width: 620px;
}
.hero .lede {
  color: var(--muted-2);
  font-size: 14.5px;
  max-width: 460px;
  margin-top: 20px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-self: end;
}
.hero-stats .stat {
  font-family: var(--mono);
}
.hero-stats .stat .num {
  color: var(--accent);
  font-size: 20px;
  display: block;
}
.hero-stats .stat .lbl {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Body / editorial copy ---------- */
.editorial p, .editorial li {
  color: var(--muted-2);
  font-size: 14px;
}
.editorial h2 { font-size: 26px; margin-bottom: 22px; }
.editorial h3 { font-size: 19px; color: var(--text-soft); margin-bottom: 12px; }
.editorial ul { padding-left: 18px; margin: 0 0 1em; }
.editorial li { margin-bottom: 8px; }
.editorial strong { color: var(--text-soft); font-weight: 500; }

/* ---------- Score number (dimensional) ---------- */
.score-number {
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1;
  display: inline-block;
  transform: perspective(600px) rotateY(-10deg);
  text-shadow: 6px 6px 0 var(--accent-dim);
  transform-style: preserve-3d;
}
.score-number--mirror {
  transform: perspective(600px) rotateY(10deg);
  text-shadow: -6px 6px 0 var(--accent-dim);
}
.score-number sup {
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
  top: -30px;
}

/* ---------- Brand spotlight (mirrored asymmetric blocks) ---------- */
.spotlight { align-items: start; }
.spotlight__logo {
  height: 40px;
  margin-bottom: 26px;
}
/* Two-line/stacked logos (e.g. SmoothSpins) need more height than a
   single-line wordmark to render at a comparable, legible text size. */
.spotlight__logo--stacked {
  height: 78px;
  margin-bottom: 16px;
}
.spotlight__score-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spotlight__score-col .stat-line { margin-top: 8px; }
.spotlight h2 { font-size: 27px; margin-bottom: 16px; }
.spotlight .read-link {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}
.spotlight .read-link:hover { color: var(--accent); }

/* ---------- Pull quote (tilted plane) ---------- */
.pull-quote-wrap { padding: 60px 0; }
.pull-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 56px 44px 72px;
  background: var(--bg-raised);
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 10px 12px 0 rgba(0,0,0,0.35);
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--serif);
  font-size: 110px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Buttons / links ---------- */
.btn {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 11px 20px;
  border-radius: 3px;
  border: 1px solid var(--muted);
  cursor: pointer;
  background: transparent;
  color: var(--text-soft);
}
.btn--solid { background: var(--text-soft); color: var(--bg); border-color: var(--text-soft); }
.btn--ghost:hover { border-color: var(--text-soft); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); color: var(--text-soft); }

.visit-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}
.visit-cta a.visit-btn {
  font-family: var(--mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--text-soft);
  padding: 12px 22px;
  border-radius: 3px;
}
.visit-cta a.visit-btn:hover { color: var(--text-soft); background: #b34738; }
.visit-cta .aff-note {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
}
.visit-cta .aff-note a { color: var(--muted-2); text-decoration: underline; }

/* ---------- Review header ---------- */
.review-hero { padding: 90px 0 70px; }
.review-hero__meta { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.review-hero__meta img { height: 42px; }
.review-hero__meta img.logo--stacked { height: 62px; }
.review-hero h1 { font-size: 32px; margin-bottom: 10px; }
.review-hero .lede { color: var(--muted-2); font-size: 14.5px; max-width: 520px; }
.review-hero__score { text-align: right; }
.review-hero__score .lbl {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 6px;
}

.review-stat-strip {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted-2);
  padding: 18px 0;
  border-top: var(--edge);
  border-bottom: var(--edge);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.review-stat-strip strong { color: var(--text-soft); font-weight: 500; }
.review-stat-strip span.sep { color: var(--accent); margin: 0 14px; }

/* ---------- Pros / watch-for lists (not cards) ---------- */
.signal-lists { row-gap: 40px; }
.signal-lists .kicker { margin-bottom: 18px; }
.signal-lists ul { list-style: none; padding: 0; margin: 0; }
.signal-lists li {
  padding: 10px 0;
  border-bottom: var(--edge);
  color: var(--muted-2);
  font-size: 13.5px;
  display: flex;
  gap: 12px;
}
.signal-lists li:last-child { border-bottom: none; }
.signal-lists li .mark { color: var(--accent); font-family: var(--mono); }

/* ---------- Verdict box (flat, no card feel) ---------- */
.verdict { padding: 40px 0 0; }
.verdict .kicker { margin-bottom: 10px; }
.verdict p { font-size: 15px; color: var(--text-soft); font-family: var(--serif); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-item {
  padding: 28px 0;
  border-bottom: var(--edge);
}
.faq-item:first-child { padding-top: 0; }
.faq-item .q {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
}
.faq-item .q .idx { color: var(--accent); font-family: var(--mono); font-size: 14px; }
.faq-item .a { color: var(--muted-2); font-size: 13.5px; max-width: 640px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid rgba(239,233,223,0.14);
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 12px 14px;
  border-radius: 3px;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note { font-size: 12px; color: var(--muted); margin-top: 24px; }
.confirm-banner {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 14px 18px;
  border-radius: 3px;
  margin-bottom: 30px;
}

/* ---------- Policy pages ---------- */
.policy h2 { font-size: 20px; margin: 40px 0 14px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--muted-2); font-size: 13.5px; }
.policy ul { padding-left: 18px; }
.policy .updated {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 90px 0 0;
  background: var(--bg-raised);
}
.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 28px;
  row-gap: 46px;
}
.footer-col--about { grid-column: 1 / 5; }
.footer-col--licences { grid-column: 5 / 9; }
.footer-col--pages { grid-column: 9 / 13; }
.footer-col--help { grid-column: 1 / 13; padding-top: 10px; }

@media (max-width: 860px) {
  .footer-col--about, .footer-col--licences, .footer-col--pages, .footer-col--help {
    grid-column: 1 / 13;
  }
}

.footer-tagline { color: var(--muted-2); font-size: 13px; max-width: 320px; margin-top: 16px; }
.footer-age { color: var(--muted); font-size: 12px; margin-top: 20px; display: flex; align-items: center; }

.licence-block { margin-bottom: 22px; }
.licence-block__name { font-family: var(--serif); font-size: 15px; color: var(--text-soft); margin-bottom: 4px; }
.licence-block__meta { color: var(--muted-2); font-size: 12px; margin-bottom: 6px; }
.licence-block a { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); text-decoration: underline; }
.licence-block a:hover { color: var(--accent); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 0; font-size: 13px; }
.footer-nav a { color: var(--muted-2); }
.footer-nav a:hover { color: var(--accent); }
.footer-nav .dot { color: var(--accent); margin: 0 10px; }

.help-logos { display: flex; flex-wrap: wrap; gap: 34px; align-items: center; }
.help-logo { opacity: 0.85; }
.help-logo:hover { opacity: 1; }

.site-footer__base {
  margin-top: 60px;
  padding: 26px 40px;
  border-top: var(--edge);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-line, .copyright {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.copyright a { color: var(--muted-2); text-decoration: underline; }

/* ---------- Cookie modal ---------- */
.cookie-modal {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-raised);
  border: 1px solid rgba(239,233,223,0.12);
  border-radius: 6px;
  padding: 22px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-modal.is-visible { opacity: 1; transform: translateY(0); }
.cookie-modal__text { font-size: 12.5px; color: var(--muted-2); margin-bottom: 16px; }
.cookie-modal__text .kicker { display: inline; margin-right: 6px; }
.cookie-modal__actions { display: flex; gap: 12px; justify-content: flex-end; }

/* ---------- Misc ---------- */
.divider-space { height: 1px; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }

.not-found { padding: 140px 0; text-align: center; }
.not-found .score-number { font-size: 90px; }
