@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --bg-paper: #FFF8F0;
  --bg-card: #FFFFFF;
  --bg-muted: #F3EDE4;
  --ink-primary: #2C2C2C;
  --ink-secondary: #6B6B6B;
  --ink-light: #9A9A9A;
  --brand: #7B2D3B;
  --brand-light: #A04050;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --alert: #dc2626;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', 'Source Sans Pro', Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-primary);
  background: var(--bg-paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-light); }
a:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; color: var(--ink-primary); }

/* Skip */
.skipNav {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--brand);
  color: #fff;
  padding: .4rem 1rem;
  font-weight: 600;
  z-index: 1000;
  transition: top .2s;
}
.skipNav:focus { top: .5rem; color: #fff; }

/* ========== HEADER — H04 utility bar + main nav ========== */
.utilityRail {
  background: var(--brand);
  color: #fff;
  font-size: .75rem;
  padding: .3rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  align-items: center;
}
.utilityRail a { color: rgba(255,255,255,.85); font-size: .75rem; }
.utilityRail a:hover { color: #fff; }
.utilityRail .ageNotice {
  margin-right: auto;
  font-weight: 600;
  letter-spacing: .04em;
}

.masthead {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: .7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}
.masthead .brandImg { height: 30px; width: auto; }

.masthead .editorialNav { display: flex; gap: 1.5rem; list-style: none; }
.masthead .editorialNav a {
  color: var(--ink-secondary);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s;
}
.masthead .editorialNav a:hover,
.masthead .editorialNav a[aria-current="page"] { color: var(--brand); }

.masthead .menuTrigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-primary);
  padding: .3rem;
}
.masthead .menuTrigger svg { width: 22px; height: 22px; }

@media (max-width: 800px) {
  .masthead .editorialNav { display: none; }
  .masthead .menuTrigger { display: block; }
}

/* Mobile overlay */
.overlayNav {
  position: fixed;
  inset: 0;
  background: rgba(255,248,240,.98);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.overlayNav.revealed { opacity: 1; pointer-events: auto; }
.overlayNav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink-primary);
}
.overlayNav a:hover { color: var(--brand); }
.overlayNav .dismissBtn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink-primary);
}

/* ========== HERO — R10 magazine cover ========== */
.coverHero {
  background: var(--bg-muted);
  padding: 4rem 1.5rem 3rem;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  max-width: 1320px;
  margin: 0 auto;
  gap: 1rem;
}
.coverHero .headlineBlock {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
}
.coverHero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .8rem;
}
.coverHero h1 span { color: var(--brand); }
.coverHero .editionBadge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .8rem;
}

.coverHero .secondaryBlock {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  text-align: right;
}
.coverHero .secondaryBlock p {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--ink-secondary);
  max-width: 440px;
  margin-left: auto;
}

@media (max-width: 800px) {
  .coverHero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding: 2.5rem 1.5rem 2rem;
  }
  .coverHero .headlineBlock,
  .coverHero .secondaryBlock {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }
  .coverHero .secondaryBlock { text-align: left; }
  .coverHero .secondaryBlock p { margin-left: 0; }
}

/* D02 inline disclosure under hero */
.inlineDisclosure {
  max-width: 1320px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  font-size: .78rem;
  color: var(--ink-light);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ========== RANKING — C12 featured + compact ========== */
.editorPicks {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.editorPicks .ribbon {
  font-family: var(--serif);
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .4rem;
}
.editorPicks h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 2rem;
}

/* Featured card */
.featuredPick {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.08);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: center;
}
.featuredPick .pickLabel {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.featuredPick .casinoMark { height: 36px; width: auto; margin-bottom: .6rem; }
.featuredPick .bonusLine {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.featuredPick .bonusNote { font-size: .78rem; color: var(--ink-light); margin-bottom: .8rem; }
.featuredPick .verdict {
  font-size: .92rem;
  color: var(--ink-secondary);
  margin-bottom: .8rem;
}
.featuredPick .tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin-bottom: .6rem;
}
.featuredPick .tagRow li {
  background: var(--bg-muted);
  color: var(--ink-primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
}
.featuredPick .methods { font-size: .76rem; color: var(--ink-light); }

.featuredPick .scoreCol {
  text-align: center;
  border-left: 1px solid rgba(0,0,0,.06);
  padding-left: 2rem;
}
.featuredPick .bigScore {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
}
.featuredPick .scoreOf { font-size: .85rem; color: var(--ink-light); }
.goBtn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 1.6rem;
  margin-top: .8rem;
  transition: background .2s, transform .15s;
}
.goBtn:hover { background: var(--brand-light); color: #fff; transform: translateY(-1px); }

@media (max-width: 800px) {
  .featuredPick {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featuredPick .scoreCol { border-left: none; border-top: 1px solid rgba(0,0,0,.06); padding: 1rem 0 0; }
  .featuredPick .tagRow { justify-content: center; }
}

/* Compact cards */
.compactRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compactCard {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.5rem;
}
.compactCard .pickLabel {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .4rem;
}
.compactCard .casinoMark { height: 28px; width: auto; margin-bottom: .5rem; }
.compactCard .bonusLine { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.compactCard .bonusNote { font-size: .75rem; color: var(--ink-light); margin-bottom: .5rem; }
.compactCard .verdict { font-size: .85rem; color: var(--ink-secondary); margin-bottom: .6rem; }
.compactCard .tagRow { display: flex; flex-wrap: wrap; gap: .3rem; list-style: none; margin-bottom: .4rem; }
.compactCard .tagRow li { background: var(--bg-muted); color: var(--ink-primary); font-size: .7rem; font-weight: 600; padding: .15rem .5rem; }
.compactCard .methods { font-size: .72rem; color: var(--ink-light); margin-bottom: .6rem; }
.compactCard .scoreLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compactCard .scoreLine .rating {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
}
.compactCard .scoreLine .ratingOf { font-size: .75rem; color: var(--ink-light); }

@media (max-width: 800px) {
  .compactRow { grid-template-columns: 1fr; }
}

/* ========== METHODOLOGY — M10 mosaic cards ========== */
.mosaicSection {
  background: var(--bg-muted);
  padding: 3.5rem 1.5rem;
}
.mosaicSection .frame {
  max-width: 1100px;
  margin: 0 auto;
}
.mosaicSection .ribbon {
  font-family: var(--serif);
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .4rem;
}
.mosaicSection h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: .5rem;
}
.mosaicSection .introText {
  font-size: .95rem;
  color: var(--ink-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
}

.mosaicGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mosaicGrid .tile {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.3rem;
}
.mosaicGrid .tile h3 {
  font-size: .95rem;
  margin-bottom: .3rem;
}
.mosaicGrid .tile p {
  font-size: .83rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}
.mosaicGrid .tile:nth-child(1) { grid-column: span 2; }

@media (max-width: 800px) {
  .mosaicGrid { grid-template-columns: 1fr; }
  .mosaicGrid .tile:nth-child(1) { grid-column: span 1; }
}

/* ========== HELPLINE — L06 two-column support ========== */
.supportBand {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.supportBand .supportText h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.supportBand .supportText .phoneBig {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: .4rem;
}
.supportBand .supportText p {
  font-size: .9rem;
  color: var(--ink-secondary);
}

.supportBand .supportLinks h4 {
  font-size: .85rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-light);
  margin-bottom: .6rem;
}
.supportBand .supportLinks ul {
  list-style: none;
  margin-bottom: 1rem;
}
.supportBand .supportLinks li { margin-bottom: .3rem; }
.supportBand .supportLinks a { font-size: .88rem; }
.supportBand .adultNote {
  font-size: .72rem;
  color: var(--ink-light);
  background: var(--bg-muted);
  display: inline-block;
  padding: .2rem .5rem;
}

@media (max-width: 800px) {
  .supportBand { grid-template-columns: 1fr; }
}

/* ========== RG BANNER — G09 full-bleed ========== */
.alertBand {
  background: var(--alert);
  padding: 3rem 1.5rem;
  width: 100%;
}
.alertBand .frame {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.alertBand h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #fff;
  margin-bottom: .7rem;
}
.alertBand p {
  color: rgba(255,255,255,.93);
  font-size: .95rem;
  margin-bottom: .5rem;
}
.alertBand a { color: #fff; text-decoration: underline; }
.alertBand a:hover { color: rgba(255,255,255,.8); }

/* ========== FOOTER — F03 three columns ========== */
.colophon {
  background: #2C2C2C;
  color: rgba(255,255,255,.7);
  padding: 2.5rem 1.5rem 1.5rem;
}
.colophon .frame {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.colophon h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.colophon p { font-size: .8rem; line-height: 1.6; margin-bottom: .5rem; }
.colophon strong { color: rgba(255,255,255,.9); }
.colophon ul { list-style: none; }
.colophon li { margin-bottom: .25rem; }
.colophon a { color: rgba(255,255,255,.6); font-size: .82rem; }
.colophon a:hover { color: #fff; }

.colophon .footerLegal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  margin-top: .5rem;
  font-size: .72rem;
  text-align: center;
  color: rgba(255,255,255,.4);
}
.colophon .footerLegal a { color: rgba(255,255,255,.5); font-size: .72rem; }

@media (max-width: 800px) {
  .colophon .frame { grid-template-columns: 1fr; }
}

/* ========== INTERNAL PAGES ========== */
.heroBanner {
  background: var(--bg-muted);
  padding: 5rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.heroBanner h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.article h2 { font-size: 1.35rem; margin: 2rem 0 .6rem; color: var(--brand); }
.article h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.article p { margin-bottom: 1rem; }
.article ul, .article ol { margin: .5rem 0 1rem 1.5rem; }
.article li { margin-bottom: .35rem; }

.highlightBox {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.3rem;
  margin: 1.2rem 0;
}

.cautionBox {
  background: #FEF3F2;
  border-left: 3px solid var(--alert);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: .9rem;
}

.noteBox {
  background: #FFFBEB;
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: .9rem;
}

.editorialDate {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-light);
  padding: 1rem 1.5rem;
}
