/* =========================================================
   BetCompareLatvia.com — light editorial design system
   White / cream + dark carmine red · Latvian betting comparison
   Inspired by clean comparison-site aesthetics
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #b0122a;            /* primary — dark carmine (Latvian) */
  --red-bright: #d81f3f;
  --red-deep: #8a0f20;
  --red-soft: #fbe9ec;       /* pale red tint bg */
  --carmine: #9e1b32;
  --gold: #e0a12e;
  --gold-soft: #fbf1dc;
  --green: #16a34a;
  --green-soft: #e7f6ec;
  --orange: #ea6a1e;

  --bg: #fbf7f3;             /* warm off-white page */
  --bg-alt: #f5efe8;         /* slightly darker band */
  --surface: #ffffff;        /* cards */
  --ink: #1d1418;            /* headings/text near-black */
  --ink-soft: #4b4247;
  --muted: #786f75;
  --muted-dim: #a7999f;
  --line: #ece3db;
  --line-2: #e3d8ce;

  --shadow-sm: 0 2px 8px rgba(40,20,25,.05);
  --shadow: 0 10px 30px rgba(60,25,35,.08);
  --shadow-lg: 0 24px 60px rgba(60,25,35,.16);
  --grad-red: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  --grad-red-bright: linear-gradient(135deg, var(--red-bright), var(--red));
  --radius: 18px;
  --wrap: 1220px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--ink-soft); line-height: 1.6; position: relative; overflow-x: hidden;
}
/* soft warm ambient wash */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 30% at 90% -5%, rgba(176,18,42,.06), transparent 60%),
    radial-gradient(ellipse 40% 30% at -5% 8%, rgba(224,161,46,.08), transparent 60%);
}
h1,h2,h3,h4 { color: var(--ink); }
.display, h1, .section-head h2, .serif { font-family: 'Playfair Display', Georgia, serif; }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.section { padding: 74px 0; position: relative; }
.section.alt { background: var(--bg-alt); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 700; font-size: 15px; border: none; border-radius: 12px; padding: 15px 26px; transition: transform .2s, box-shadow .2s, background .2s; position: relative; overflow: hidden; font-family: inherit; }
.btn-primary { background: var(--grad-red-bright); color: #fff; box-shadow: 0 10px 24px rgba(176,18,42,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(176,18,42,.36); }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-18deg); transition: left .6s; }
.btn-primary:hover::after { left: 130%; }
.btn-gold { background: linear-gradient(135deg, #f0b73f, var(--gold)); color: #3a2600; box-shadow: 0 10px 24px rgba(224,161,46,.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224,161,46,.4); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: 13.5px; border-radius: 10px; }

/* ---------- Badge / pill / chip ---------- */
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-soft); border: 1px solid rgba(176,18,42,.16); padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1.2px; }
.badge.gold { background: var(--gold-soft); border-color: rgba(224,161,46,.3); color: #9a6a12; }
.badge.green { background: var(--green-soft); border-color: rgba(22,163,74,.25); color: var(--green); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(22,163,74,.6); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line-2); padding: 8px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }

/* ---------- Top bar ---------- */
.topbar { background: var(--grad-red); color: #fff; font-size: 12.5px; font-weight: 600; text-align: center; padding: 8px 16px; letter-spacing: .2px; }
.topbar b { font-weight: 800; }

/* ---------- Nav ---------- */
.nav { background: rgba(255,255,255,.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; }
.nav-logo { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.4px; display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-red); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(176,18,42,.3); flex-shrink: 0; }
.nav-logo .accent { color: var(--red); }
.nav-logo small { font-size: 10px; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--red); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; padding: 8px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .3s; }

/* ---------- Section titles ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.kicker { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-weight: 700; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; background: var(--red-soft); padding: 6px 14px; border-radius: 100px; }
.section-head h2 { font-size: 46px; font-weight: 800; color: var(--ink); letter-spacing: -.5px; line-height: 1.08; margin-bottom: 14px; }
.section-head h2 .grad, .section-head h2 em { color: var(--red); font-style: normal; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s } .reveal.d2 { transition-delay: .16s } .reveal.d3 { transition-delay: .24s } .reveal.d4 { transition-delay: .32s }
@media (prefers-reduced-motion: reduce){ .js .reveal{opacity:1!important;transform:none!important} }

/* particles kept faint for texture (optional) */
.particles, .floodlights, .grid-overlay, .sports-bg { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; padding: 56px 0 66px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.hero h1 { font-size: 58px; line-height: 1.05; letter-spacing: -1px; color: var(--ink); margin-bottom: 22px; font-weight: 800; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero h1 .u { position: relative; color: var(--red); }
.hero .lead { font-size: 18px; color: var(--ink-soft); max-width: 520px; margin-bottom: 22px; }
.hero .lead b { color: var(--ink); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero-check { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.hero-check svg { flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 12px; }
.hero-stat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); flex: 1; }
.hero-stat b { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--ink); display: block; line-height: 1; }
.hero-stat b .rd { color: var(--red); }
.hero-stat span { font-size: 12px; color: var(--muted); }

/* hero media: photo mosaic + floating featured card */
.hero-media { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; }
.hero-grid img { width: 100%; height: 100%; object-fit: cover; }
.hero-grid .tall { grid-row: span 2; }
.hero-media .ribbon-top { position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--grad-red); color: #fff; font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 8px; text-transform: uppercase; letter-spacing: .8px; box-shadow: var(--shadow); }
.hero-media .ribbon-247 { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(29,20,24,.78); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 8px; }

.feat-card { position: absolute; left: -26px; bottom: -26px; z-index: 4; width: 300px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-lg); }
.feat-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.feat-top .n1 { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .6px; display: flex; align-items: center; gap: 5px; }
.feat-top .lic { font-size: 11px; color: var(--green); font-weight: 700; }
.feat-logo { height: 52px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 12px; }
.feat-bonus { font-size: 15px; font-weight: 800; color: var(--ink); }
.feat-bonus small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.feat-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 12px 0; }
.feat-stats div { background: var(--bg-alt); border-radius: 9px; padding: 8px 6px; text-align: center; }
.feat-stats b { font-size: 13px; color: var(--ink); display: block; } .feat-stats span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.feat-card .btn { width: 100%; justify-content: center; }

/* league chips */
.leagues { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 14px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); margin-top: 26px; }
.leagues .lg-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
.leagues .chip { padding: 6px 12px; font-size: 12.5px; }

/* ---------- Sponsored disclaimer bar ---------- */
.sponsored-bar { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sponsored-bar .wrap { padding-top: 16px; padding-bottom: 16px; display: flex; gap: 12px; align-items: flex-start; }
.sponsored-bar p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.sponsored-bar b { color: var(--ink-soft); }

/* ---------- Ticker ---------- */
.ticker { position: relative; overflow: hidden; background: var(--ink); }
.ticker::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; background: linear-gradient(270deg, var(--ink), transparent); }
.ticker-tag { position: absolute; left: 0; top: 0; bottom: 0; z-index: 3; display: flex; align-items: center; padding: 0 16px; background: var(--red); color: #fff; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.ticker-track { display: flex; width: max-content; animation: scrollx 44s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scrollx { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.odds-item { display: flex; align-items: center; gap: 11px; padding: 13px 26px; border-right: 1px solid rgba(255,255,255,.08); white-space: nowrap; font-size: 13.5px; }
.odds-item .team { color: #f3e9ea; font-weight: 600; }
.odds-item .odd { background: rgba(255,255,255,.08); color: #ffd9df; font-weight: 800; padding: 3px 9px; border-radius: 7px; font-size: 12.5px; }
.odds-item .odd.up { color: #5ee0a0; }
.odds-item .live { display: none; }

/* ---------- Divider ---------- */
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px 0; }
.divider .ln { height: 1px; width: 80px; background: var(--line-2); }
.divider svg { opacity: .5; }

/* ---------- Podium ---------- */
.podium { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: end; max-width: 860px; margin: 0 auto; }
.podium-col { background: var(--surface); border: 1px solid var(--line); border-radius: 16px 16px 0 0; padding: 22px 16px 16px; text-align: center; position: relative; box-shadow: var(--shadow-sm); transition: transform .3s; }
.podium-col:hover { transform: translateY(-5px); }
.podium-col .medal { font-size: 30px; } .podium-col .pname { font-weight: 800; color: var(--ink); font-size: 18px; margin-top: 4px; }
.podium-col .pscore { font-size: 13px; color: var(--red); font-weight: 800; }
.podium-col .pbar { margin: 14px -16px -16px; color: #fff; font-weight: 800; padding: 12px; font-size: 24px; font-family: 'Playfair Display', serif; display: flex; justify-content: center; align-items: flex-start; }
.podium-col.p1 { border-color: rgba(224,161,46,.5); box-shadow: 0 -8px 30px rgba(224,161,46,.14); }
.podium-col.p1 .pbar { background: linear-gradient(135deg,#f0b73f,var(--gold)); color:#3a2600; height: 120px; }
.podium-col.p2 .pbar { background: linear-gradient(135deg,#cfd4da,#a7b0ba); color:#2b2f36; height: 92px; }
.podium-col.p3 .pbar { background: linear-gradient(135deg,#d79a5e,var(--red)); color:#fff; height: 74px; }
.podium-col .crown { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-size: 24px; }

/* ---------- Sort controls ---------- */
.controls { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.controls button { background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-soft); padding: 10px 18px; border-radius: 100px; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: all .2s; font-family: inherit; }
.controls button:hover { border-color: var(--red); color: var(--red); }
.controls button.active { background: var(--grad-red); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(176,18,42,.28); }

/* =========================================================
   OPERATOR CARDS
   ========================================================= */
.cards { display: flex; flex-direction: column; gap: 16px; }
.op-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .28s, box-shadow .28s, border-color .28s; position: relative; box-shadow: var(--shadow-sm); }
.op-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.op-card.featured { border: 1.5px solid rgba(176,18,42,.35); box-shadow: 0 12px 34px rgba(176,18,42,.12); }
.op-card.featured::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-red); }
.ribbon { position: absolute; top: 16px; left: -40px; z-index: 3; background: linear-gradient(135deg,#f0b73f,var(--gold)); color: #3a2600; font-weight: 800; font-size: 11px; padding: 5px 46px; transform: rotate(-45deg); text-transform: uppercase; letter-spacing: .8px; box-shadow: var(--shadow-sm); }
.op-inner { display: flex; align-items: stretch; min-height: 168px; }
.op-rank { width: 68px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: var(--red); background: var(--red-soft); }
.op-rank small { font-size: 9px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; font-family: 'Inter',sans-serif; }
.featured .op-rank { color: #9a6a12; background: var(--gold-soft); font-size: 40px; }
.op-brand { width: 200px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 18px; border-right: 1px solid var(--line); }
.logo-box { width: 100%; height: 66px; border-radius: 11px; display: grid; place-items: center; overflow: hidden; }
.brand-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.op-info { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.op-info h3 { font-size: 21px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.op-info .tagline { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 13px; }
.features { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { background: var(--bg-alt); border: 1px solid var(--line); padding: 5px 11px; border-radius: 8px; font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.op-action { width: 206px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 18px; border-left: 1px solid var(--line); background: #fdfaf7; }
.rating-circle { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; font-size: 21px; font-weight: 800; color: var(--ink); position: relative; font-family: 'Playfair Display', serif; }
.rating-circle::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; padding: 3px; background: conic-gradient(var(--red) var(--pct), #eadfe0 var(--pct)); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px)); mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px)); }
.featured .rating-circle::before { background: conic-gradient(var(--gold) var(--pct), #f0e6d2 var(--pct)); }
.rating-label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.bonus-line { font-size: 12.5px; color: var(--green); font-weight: 700; text-align: center; line-height: 1.3; margin: 2px 0 6px; }
.op-cta { display: block; width: 100%; text-align: center; background: var(--grad-red-bright); color: #fff; padding: 11px 18px; border-radius: 10px; font-weight: 700; font-size: 13.5px; transition: transform .2s, box-shadow .2s; }
.op-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(176,18,42,.3); }
.featured .op-cta { background: linear-gradient(135deg,#f0b73f,var(--gold)); color: #3a2600; }
.op-review-toggle { background: none; border: none; color: var(--red); font-weight: 700; font-size: 12.5px; cursor: pointer; padding: 6px 0 0; font-family: inherit; display: inline-flex; align-items: center; gap: 5px; }
.op-review-toggle .chev { transition: transform .25s; }
.op-review-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.op-review { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.op-review.open { grid-template-rows: 1fr; border-top: 1px solid var(--line); }
.op-review > div { overflow: hidden; }
.op-review-inner { padding: 18px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.op-review-inner p { grid-column: 1/-1; color: var(--ink-soft); font-size: 14px; margin: 0 0 4px; }
.proscons h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.proscons.pros h5 { color: var(--green); } .proscons.cons h5 { color: var(--orange); }
.proscons ul li { font-size: 13.5px; color: var(--ink-soft); padding-left: 22px; position: relative; margin-bottom: 6px; }
.proscons.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.proscons.cons li::before { content: '–'; position: absolute; left: 2px; color: var(--orange); font-weight: 800; }

/* =========================================================
   PHOTO MOSAIC  (Sport nav tikai skaitli)
   ========================================================= */
.mosaic-section .mosaic-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.mosaic-copy h2 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--ink); line-height: 1.05; letter-spacing: -.5px; margin-bottom: 18px; }
.mosaic-copy h2 em { font-style: italic; color: var(--red); }
.mosaic-copy p { color: var(--ink-soft); font-size: 17px; margin-bottom: 14px; }
.mosaic-copy p b { color: var(--ink); }
.mosaic-copy .m-stats { display: flex; gap: 12px; margin: 24px 0; }
.mosaic-copy .m-stats div { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-sm); }
.mosaic-copy .m-stats b { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ink); display: block; line-height: 1; }
.mosaic-copy .m-stats span { font-size: 12px; color: var(--muted); }
.mosaic-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 118px; gap: 12px; }
.mosaic-grid figure { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.mosaic-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mosaic-grid figure:hover img { transform: scale(1.07); }
.mosaic-grid .r2 { grid-row: span 2; }
.mosaic-grid figcaption { position: absolute; left: 10px; bottom: 8px; z-index: 2; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; text-shadow: 0 2px 8px rgba(0,0,0,.8); }
.mosaic-grid figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5)); }

/* =========================================================
   ATMOSPHERE SECTION (mobile / live)
   ========================================================= */
.atmo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.atmo-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.atmo-photo img { width: 100%; height: 100%; object-fit: cover; }
.atmo-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,10,14,.85)); }
.atmo-photo .cap { position: absolute; left: 22px; bottom: 20px; z-index: 2; color: #fff; }
.atmo-photo .cap .lbl { display: inline-block; background: var(--red); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.atmo-photo .cap h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 24px; }
.atmo-copy h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1.08; margin-bottom: 16px; }
.atmo-copy h2 em { font-style: italic; color: var(--red); }
.atmo-copy > p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 22px; }
.atmo-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.atmo-feat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; box-shadow: var(--shadow-sm); }
.atmo-feat .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--red-soft); display: grid; place-items: center; font-size: 18px; margin-bottom: 10px; }
.atmo-feat h4 { font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.atmo-feat p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 780px; }
.compare thead th { background: var(--bg-alt); padding: 15px 18px; text-align: left; font-weight: 700; font-size: 12.5px; color: var(--red); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.compare tbody td { padding: 15px 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); }
.compare tbody tr:hover { background: #fdf6f2; }
.compare tbody tr.hl { background: var(--gold-soft); }
.compare tbody tr.hl td:first-child { color: #9a6a12; font-weight: 800; }
.compare .stars { color: var(--gold); letter-spacing: 1px; }
.check { color: var(--green); font-weight: 700; } .cross { color: var(--red); } .partial { color: var(--orange); }

/* ---------- Info / methodology / guide grid ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--red-soft); display: grid; place-items: center; font-size: 24px; margin-bottom: 15px; }
.info-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.info-card h3 .wpct { float: right; font-size: 11px; font-weight: 800; color: var(--red); background: var(--red-soft); padding: 2px 8px; border-radius: 6px; }

/* ---------- Showcase (legacy tiles, kept for compatibility) ---------- */
.showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.show-tile { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; box-shadow: var(--shadow-sm); }
.show-tile .art { position: absolute; inset: 0; z-index: 0; }
.show-tile .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show-tile .glass { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 30%, rgba(20,10,14,.9)); }
.show-tile .lbl { position: relative; z-index: 2; }
.show-tile .lbl span { font-size: 12px; font-weight: 700; color: #ffb3bd; text-transform: uppercase; letter-spacing: 1px; }
.show-tile .lbl h3 { font-size: 20px; color: #fff; font-weight: 800; margin-top: 4px; }
.show-tile .lbl p { color: rgba(255,255,255,.82); font-size: 13.5px; margin-top: 4px; }

/* ---------- Quiz ---------- */
.quiz { max-width: 700px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 38px; box-shadow: var(--shadow); }
.quiz-step { display: none; } .quiz-step.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.quiz .qnum { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.quiz h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ink); margin-bottom: 22px; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt { text-align: left; background: var(--bg); border: 1px solid var(--line-2); border-radius: 13px; padding: 16px 20px; cursor: pointer; color: var(--ink); font-size: 15.5px; font-weight: 600; transition: all .2s; display: flex; align-items: center; gap: 14px; font-family: inherit; }
.quiz-opt:hover { border-color: var(--red); background: var(--red-soft); transform: translateX(4px); }
.quiz-opt .emo { font-size: 22px; }
.quiz-progress { height: 6px; background: var(--bg-alt); border-radius: 4px; margin-bottom: 26px; overflow: hidden; }
.quiz-progress i { display: block; height: 100%; background: var(--grad-red); border-radius: 4px; transition: width .4s; }
.quiz-result { text-align: center; }
.quiz-result .rec-card { background: var(--red-soft); border: 1px solid rgba(176,18,42,.2); border-radius: 16px; padding: 26px; margin: 18px 0; }
.quiz-result .rec-logo { width: 170px; height: 56px; margin: 0 auto 14px; border-radius: 10px; display: grid; place-items: center; }
.quiz-restart { background: none; border: none; color: var(--red); cursor: pointer; font-weight: 700; font-family: inherit; margin-top: 6px; }

/* ---------- Calculator ---------- */
.calc { max-width: 700px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.calc-field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.calc-field input, .calc-field select { width: 100%; background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 11px; padding: 13px 15px; color: var(--ink); font-size: 15px; font-family: inherit; }
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(176,18,42,.12); }
.calc-out { margin-top: 22px; background: var(--red-soft); border: 1px solid rgba(176,18,42,.18); border-radius: 14px; padding: 22px; text-align: center; }
.calc-out .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--red); }
.calc-out .lbl { color: var(--muted); font-size: 13px; margin-top: 4px; }
.calc-note { color: var(--muted); font-size: 12.5px; text-align: center; margin-top: 14px; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.post-thumb svg, .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-cat { position: absolute; top: 13px; left: 13px; z-index: 2; background: rgba(255,255,255,.92); border: 1px solid var(--line); color: var(--red); font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 8px; text-transform: uppercase; letter-spacing: .6px; }
.post-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 14px; color: var(--muted-dim); font-size: 12px; margin-bottom: 10px; }
.post-body h3 { font-size: 19px; color: var(--ink); font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.post-body p { color: var(--muted); font-size: 14px; flex: 1; }
.post-body .more { margin-top: 14px; color: var(--red); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .more { gap: 10px; }
.post-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow); }
.post-featured .media { position: relative; min-height: 340px; }
.post-featured .media svg, .post-featured .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-featured .content { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.post-featured .content h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--ink); font-weight: 800; line-height: 1.15; margin: 14px 0; }
.post-featured .content p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }

/* ---------- Article ---------- */
.article { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.article-hero { position: relative; aspect-ratio: 21/9; border-radius: 20px; overflow: hidden; margin-bottom: 30px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.article-hero svg, .article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--ink); line-height: 1.12; margin-bottom: 16px; }
.article .art-meta { display: flex; gap: 14px; color: var(--muted-dim); font-size: 13.5px; margin-bottom: 26px; align-items: center; flex-wrap: wrap; }
.article-body { font-size: 17px; color: var(--ink-soft); line-height: 1.8; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--ink); margin: 36px 0 14px; }
.article-body h3 { font-size: 20px; color: var(--ink); margin: 26px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul.dots { margin: 0 0 20px; padding: 0; }
.article-body ul.dots li { position: relative; padding-left: 26px; margin-bottom: 12px; }
.article-body ul.dots li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.article-body a { color: var(--red); font-weight: 600; border-bottom: 1px solid rgba(176,18,42,.3); }
.article-body strong { color: var(--ink); }
.callout { background: var(--red-soft); border: 1px solid rgba(176,18,42,.18); border-left: 4px solid var(--red); border-radius: 12px; padding: 20px 24px; margin: 26px 0; color: var(--ink-soft); }
.callout b { color: var(--red); }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; background: var(--surface); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.article-body table th { background: var(--bg-alt); color: var(--red); text-align: left; padding: 12px 14px; }
.article-body table td { border-top: 1px solid var(--line); padding: 12px 14px; }
.author-box { display: flex; align-items: center; gap: 14px; padding: 22px 0; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.author-av { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-red); display: grid; place-items: center; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-box .ab-name { color: var(--ink); font-weight: 700; } .author-box .ab-desc { color: var(--muted); font-size: 13.5px; }
.share-row { display: flex; gap: 10px; align-items: center; margin: 22px 0; }
.share-row span { color: var(--muted); font-size: 13px; }
.share-row a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.share-row a:hover { color: var(--red); border-color: var(--red); background: var(--red-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 13px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { padding: 20px 24px; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 26px; color: var(--red); transition: transform .25s; flex-shrink: 0; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.75; }
.faq-a a { color: var(--red); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 24px; padding: 54px 44px; text-align: center; background: var(--grad-red); box-shadow: var(--shadow-lg); }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 17px; max-width: 560px; margin: 0 auto 26px; }
.cta-band .badge { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn-ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #d9cfd3; margin-top: 60px; padding: 52px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 340px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-brand .nav-logo .accent { color: #ff8095; }
.footer-brand .nav-logo small { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.7; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.6); font-size: 13.5px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #ff8095; }
.footer-bottom { padding-top: 26px; text-align: center; }
.rg-badges { display: flex; gap: 12px; justify-content: center; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.rg-badge { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 6px 12px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75); }
.disclaimer { color: rgba(255,255,255,.45); font-size: 12px; max-width: 820px; margin: 0 auto; line-height: 1.7; }

/* ---------- Age gate ---------- */
.agegate { position: fixed; inset: 0; z-index: 1000; background: rgba(40,20,25,.5); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 20px; }
.agegate[hidden] { display: none; }
.agegate-box { max-width: 430px; width: 100%; background: var(--surface); border-radius: 22px; padding: 38px 32px; text-align: center; box-shadow: var(--shadow-lg); animation: fadeUp .4s ease; }
.agegate-box .lm { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 16px; background: var(--grad-red); display: grid; place-items: center; box-shadow: 0 10px 24px rgba(176,18,42,.3); }
.agegate-box h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.agegate-box p { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.agegate-actions { display: flex; gap: 12px; } .agegate-actions .btn { flex: 1; justify-content: center; }
.agegate small { display: block; color: var(--muted-dim); font-size: 11.5px; margin-top: 18px; line-height: 1.6; }

/* ---------- Progress bars ---------- */
.scroll-progress, .read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: var(--grad-red-bright); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible, .quiz-opt:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 6px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero-inner, .mosaic-section .mosaic-inner, .atmo-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 30px auto 40px; }
  .feat-card { left: 10px; }
  .mosaic-copy { text-align: center; } .mosaic-copy .m-stats { justify-content: center; }
}
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 20px 16px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .section { padding: 52px 0; }
  .hero h1 { font-size: 40px; }
  .section-head h2, .mosaic-copy h2, .atmo-copy h2 { font-size: 32px; }
  .info-grid, .showcase, .post-grid, .atmo-feats { grid-template-columns: 1fr; }
  .post-featured { grid-template-columns: 1fr; } .post-featured .media { min-height: 220px; } .post-featured .content { padding: 28px; }
  .podium { grid-template-columns: 1fr; } .podium-col, .podium-col .pbar { height: auto!important; }
  .op-inner { flex-wrap: wrap; }
  .op-rank { width: 100%; height: 44px; flex-direction: row; gap: 8px; border-bottom: 1px solid var(--line); }
  .op-brand { width: 42%; border-right: 1px solid var(--line); } .op-info { flex-basis: 55%; }
  .op-action { width: 100%; border-left: none; border-top: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .op-action .op-cta { width: auto; flex: 1; min-width: 140px; }
  .op-review-inner { grid-template-columns: 1fr; }
  .mosaic-grid { grid-auto-rows: 96px; }
  .article h1 { font-size: 30px; } .article-body { font-size: 16px; }
  .quiz, .calc { padding: 24px; } .calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 33px; } .hero-stats { flex-direction: column; }
  .op-brand, .op-info { width: 100%; flex-basis: 100%; border-right: none; }
  .op-brand { border-bottom: 1px solid var(--line); }
  .section-head h2 { font-size: 27px; } .cta-band h2 { font-size: 26px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mosaic-grid { grid-template-columns: repeat(2,1fr); }
  .ticker-tag { display: none; }
  .wrap { padding: 0 16px; } .article { padding: 0 18px; }
}
