/* Table Markings — shared stylesheet */

:root {
  --ink: #232a31;
  --ink-2: #46525c;
  --slate: #5d7386;
  --slate-line: #ccd8e2;
  --bg: #f5f8fa;
  --band: #e3eaf1;
  --surface: #ffffff;
  --amber: #d9921c;
  --amber-dark: #b47410;
  --amber-deep: #8a5c07;
  --amber-soft: #f8ecd6;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  --r-lg: 20px;
  --r-md: 12px;
  --r-sm: 8px;

  --shadow-lift: 0 16px 32px -14px rgba(35, 42, 49, 0.22);
  --font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: 56px; /* room for the fixed age bar */
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 var(--s-4);
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

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

a { color: var(--amber-deep); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}

.wrap--letter { max-width: 860px; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 var(--s-4); }
.prose li { margin-bottom: var(--s-2); }

/* Section label */
.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: var(--s-3);
}

/* Links: dot-prefixed motif for inline links, brackets for nav */
.link {
  font-weight: 600;
  color: var(--amber-deep);
  text-decoration: none;
}
.link::before { content: "\00B7\00A0"; color: var(--amber); font-weight: 700; }
.link:hover, .link:focus-visible { text-decoration: underline; }

/* Buttons — solid amber fills everywhere */
.btn {
  display: inline-block;
  background: var(--amber);
  color: #241a04;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 22px;
  border: 0;
  border-radius: var(--r-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--amber-dark); color: #fff; }

/* Badges — tiny uppercase labels */
.badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--band);
  border-radius: var(--r-sm);
  padding: 3px 8px;
}

/* Age notice bar — fixed, slim, never blocking */
.age-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--ink);
  color: #e8edf2;
  font-size: 0.82rem;
}
.age-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-4);
  padding-top: 8px;
  padding-bottom: 8px;
}
.age-bar__badge {
  background: var(--amber);
  color: #241a04;
  font-weight: 700;
  border-radius: var(--r-sm);
  padding: 1px 8px;
  font-size: 0.8rem;
}
.age-bar a { color: #f3c878; }

/* Cookie banner (shown by JS only) */
.cookie {
  position: fixed;
  left: var(--s-4); right: var(--s-4); bottom: 64px;
  z-index: 70;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--slate-line);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  padding: var(--s-4) var(--s-5);
  font-size: 0.9rem;
}
.cookie__actions { display: flex; gap: var(--s-3); margin-top: var(--s-3); flex-wrap: wrap; }
.cookie__plain {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  color: var(--amber-deep); text-decoration: underline; padding: 10px 4px;
}

/* Header */
.site-head { background: var(--bg); padding: var(--s-5) 0; }
.site-head__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
}
.brand__name { font-size: 1.22rem; font-weight: 700; letter-spacing: 0.01em; }
.site-nav { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); font-size: 0.92rem; }
.site-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
}
.site-nav a::before { content: "["; color: var(--slate); font-weight: 400; margin-right: 2px; }
.site-nav a::after { content: "]"; color: var(--slate); font-weight: 400; margin-left: 2px; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--amber-deep); }
.site-nav a[aria-current="page"] { color: var(--amber-deep); }

/* Hero */
.hero {
  background-image: linear-gradient(rgba(245, 248, 250, 0.55), rgba(245, 248, 250, 0.2)), url("/images/hero-band.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  margin-top: var(--s-3);
  padding: var(--s-8) 0 var(--s-8);
}
.hero__inner { max-width: 720px; }
.hero__answer { font-size: 1.18rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--ink-2);
  align-items: center;
}

/* Subpage hero band */
.page-hero {
  background-image: url("/images/bg-subpage.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  margin-top: var(--s-3);
  padding: var(--s-7) 0;
}
.page-hero__inner { max-width: 720px; }
.page-hero p { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 0; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}
.tile {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-md);
  padding: var(--s-5);
  grid-column: span 2;
}
.tile--3 { grid-column: span 3; }
.tile--4 { grid-column: span 4; }
.tile--6 { grid-column: span 6; }
.tile--deep { background: var(--ink); color: #e8edf2; border-left-color: var(--amber); }
.tile--deep .tile__kicker { color: var(--slate-soft, #a9bccb); }
.tile--band { background: var(--band); border-left-color: var(--slate); }
.tile__num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--amber-deep);
}
.tile--deep .tile__num { color: var(--amber); }
.tile__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: var(--s-2);
}
.tile h3 { margin-bottom: var(--s-2); }
.tile p { font-size: 0.95rem; color: var(--ink-2); }
.tile--deep p { color: #c8d3dd; }

/* Sections */
.section { padding: var(--s-8) 0 0; }
.section--last { padding-bottom: var(--s-8); }
.section__head { max-width: 68ch; margin-bottom: var(--s-6); }
.section__head p { color: var(--ink-2); }

/* Showcase band — the one tinted band on the page */
.showcase {
  background: var(--band);
  margin-top: var(--s-8);
  padding: var(--s-8) 0;
}

.disclosure {
  font-size: 0.85rem;
  color: var(--ink-2);
  background: var(--surface);
  border-left: 4px solid var(--slate);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-6);
}

/* Featured card */
.feature-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--amber);
  overflow: hidden;
  margin-bottom: var(--s-5);
}
.feature-card__head {
  background: var(--amber);
  color: #241a04;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2) var(--s-4);
  padding: var(--s-3) var(--s-5);
  font-weight: 700;
}
.feature-card__head .badge { background: rgba(36, 26, 4, 0.14); color: #241a04; }
.feature-card__body {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5);
}
.feature-card__logo, .op-row__logo {
  background: var(--bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  min-height: 88px;
}
.feature-card__logo img, .op-row__logo img { max-height: 52px; width: auto; max-width: 140px; object-fit: contain; border-radius: var(--r-sm); }
.op-fallback {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate);
  text-align: center;
}
.feature-card__name { margin-bottom: var(--s-2); }
.feature-card__badges, .op-row__badges { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-3) 0; }
.feature-card__action, .op-row__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  min-width: 180px;
}
.offer-line { font-size: 0.88rem; color: var(--ink-2); margin: 0; }
.terms-note { font-size: 0.74rem; color: var(--slate); margin: 0; }

/* Operator rows */
.op-row {
  background: var(--surface);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--amber);
  overflow: hidden;
}
.op-row + .op-row { margin-top: var(--s-4); }
.op-row__head {
  background: var(--amber);
  color: #241a04;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2) var(--s-4);
  padding: var(--s-2) var(--s-5);
  font-weight: 700;
  font-size: 0.95rem;
}
.op-row__body {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-4) var(--s-5);
}
.op-row__logo { min-height: 72px; padding: var(--s-3); }
.op-row__logo img { max-height: 40px; max-width: 110px; }
.op-row__about { font-size: 0.95rem; color: var(--ink-2); margin: 0; }

/* Stars */
.stars { display: inline-flex; align-items: center; gap: 2px; }
.stars svg { width: 15px; height: 15px; }
.stars__val { font-size: 0.8rem; font-weight: 600; margin-left: 6px; }

/* Picks */
.pick-list { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.pick-list li { padding: var(--s-2) 0; }
.pick-list li + li { border-top: 1px dashed var(--slate-line); }
.pick-list strong { color: var(--ink); }

/* Figures */
.figure { margin: 0; }
.figure img { border-radius: var(--r-lg); width: 100%; }
.figure figcaption { font-size: 0.82rem; color: var(--slate); margin-top: var(--s-2); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

/* Honesty note */
.honesty {
  background: var(--surface);
  border-left: 4px solid var(--slate);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.honesty p { color: var(--ink-2); }

/* FAQ */
.faq-myth { margin-bottom: var(--s-5); }
.faq details {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
}
.faq details + details { margin-top: var(--s-3); }
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { margin-top: var(--s-3); color: var(--ink-2); }

/* Safety cards */
.safety { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.safety__card {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-md);
  padding: var(--s-5);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.safety__logo { height: 44px; display: flex; align-items: center; }
.safety__logo img { max-height: 40px; max-width: 130px; object-fit: contain; }
.safety__card p { font-size: 0.85rem; color: var(--ink-2); margin: 0; }
.safety__card .link { font-size: 0.85rem; }

/* Disclaimer strip */
.small-print {
  font-size: 0.8rem;
  color: var(--slate);
  max-width: 78ch;
}

/* Footer */
.site-foot {
  background: var(--ink);
  color: #c8d3dd;
  margin-top: var(--s-9);
  padding: var(--s-8) 0 var(--s-6);
  font-size: 0.9rem;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.site-foot h3 {
  color: #e8edf2;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: var(--s-2); }
.site-foot a { color: #c8d3dd; text-decoration: none; font-weight: 600; }
.site-foot a::before { content: "\00B7\00A0"; color: var(--amber); }
.site-foot a:hover, .site-foot a:focus-visible { color: #f3c878; }
.site-foot__brandline { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); color: #e8edf2; font-weight: 700; font-size: 1.05rem; }
.site-foot__logos { display: flex; flex-wrap: wrap; gap: var(--s-5); align-items: center; margin-bottom: var(--s-6); }
.site-foot__logos img { height: 30px; width: auto; background: #fff; border-radius: var(--r-sm); padding: 4px 8px; }
.site-foot__bottom {
  border-top: 1px solid rgba(200, 211, 221, 0.2);
  padding-top: var(--s-5);
  font-size: 0.8rem;
  color: #93a3b1;
}

/* Contact */
.contact-card {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}

/* Motion: gentle hover lift + shadow on cards */
.tile, .feature-card, .op-row, .safety__card, .honesty, .faq details {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover, .feature-card:hover, .op-row:hover, .safety__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tile, .feature-card, .op-row, .safety__card, .honesty, .faq details { transition: none; }
  .tile:hover, .feature-card:hover, .op-row:hover, .safety__card:hover { transform: none; box-shadow: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile--3, .tile--4 { grid-column: span 1; }
  .tile--6 { grid-column: span 2; }
  .safety { grid-template-columns: repeat(2, 1fr); }
  .site-foot__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
  .feature-card__body, .op-row__body { grid-template-columns: 1fr; }
  .feature-card__logo, .op-row__logo { max-width: 220px; }
  .feature-card__action, .op-row__action { align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .tile--6 { grid-column: span 1; }
  .safety { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; }
  .hero { padding: var(--s-7) 0; }
  body { padding-bottom: 88px; }
}
