﻿:root {
  --ink: #151d17;
  --muted: #526159;
  --paper: #f4f1e7;
  --surface: #fff;
  --line: #d8ded4;
  --green: #0e5131;
  --green-2: #147846;
  --gold: #e6b23c;
  --lime: #63b85c;
  --blue: #2363a6;
  --shadow: 0 20px 50px rgba(16, 28, 22, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  padding-bottom: 76px;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: .75rem;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: .6rem .85rem;
}
.skip:focus { left: .75rem; }
.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 231, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 250px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(14,81,49,.2);
}
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 1.2rem; }
.brand small { color: var(--muted); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: .75rem .9rem;
  font-weight: 900;
  cursor: pointer;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}
.site-nav a {
  padding: .62rem .82rem;
  border-radius: 8px;
  color: #3a473f;
  text-decoration: none;
  font-weight: 800;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
  background: rgba(230,178,60,.22);
}
.hero {
  padding: 44px 0 34px;
  background: linear-gradient(180deg, rgba(14,81,49,.1), transparent 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1.2rem;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.link-card,
.source-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(1.4rem, 3.2vw, 2.7rem);
  display: grid;
  align-content: center;
}
.crumbs {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .94rem;
}
.crumbs a { color: var(--green); font-weight: 900; }
.crumbs span::before { content: "/ "; color: #8d969d; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 1rem 0 .25rem;
  color: var(--green-2);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .78rem;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: .92;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}
.hero-actions,
.age-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .78rem 1.05rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: var(--gold);
  color: #172115;
}
.button.secondary {
  background: #fff;
  color: var(--green);
  border-color: var(--line);
}
.hero-panel {
  padding: .9rem;
  display: grid;
  gap: .75rem;
}
.hero-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.panel-kicker {
  color: var(--green-2);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
}
.hero-panel strong { font-size: 1.45rem; line-height: 1.15; }
.hero-panel p { margin: 0; color: var(--muted); }
.mini-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}
.mini-list span {
  display: grid;
  place-items: center;
  min-height: 38px;
  background: #f8edd0;
  border-radius: 8px;
  color: var(--green);
  font-weight: 950;
}
.section { padding: 42px 0; }
.section-heading {
  max-width: 860px;
  margin-bottom: 1.2rem;
}
.section-heading h2,
.sources-heading h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
}
.section-heading p,
.sources-heading p {
  margin: 0;
  color: var(--muted);
}
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--green);
  background: #f8edd0;
}
td { color: var(--muted); }
td a,
.article-body a {
  color: var(--blue);
  font-weight: 850;
  text-underline-offset: 3px;
}
.article-body { max-width: 940px; }
.article-body p,
.article-body td { color: var(--muted); }
.article-body h2 {
  margin: 2rem 0 .7rem;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.18;
}
.content-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin: 1.25rem 0 1.45rem;
}
.content-photo {
  display: grid;
  gap: .55rem;
  padding: .72rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.content-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 7px;
}
.content-photo strong { color: var(--ink); line-height: 1.2; }
.content-photo span { color: var(--muted); font-size: .9rem; }
.muted,
.sources-section { background: #eee9dc; }
.link-grid,
.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.link-card {
  display: grid;
  gap: .4rem;
  min-height: 188px;
  padding: 1rem;
  text-decoration: none;
}
.link-card span,
.source-badge {
  color: var(--green-2);
  font-weight: 950;
  text-transform: uppercase;
  font-size: .75rem;
}
.link-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
}
.link-card p,
.source-card p {
  margin: 0;
  color: var(--muted);
}
.sources-heading {
  max-width: 880px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.source-card {
  display: grid;
  align-content: space-between;
  min-height: 245px;
  gap: 1rem;
  padding: 1.25rem;
}
.source-badge {
  justify-self: start;
  display: inline-flex;
  width: fit-content;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  text-decoration: none;
}
.source-card strong { font-size: 1.22rem; }
.source-card footer {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
}
.source-card footer a { color: var(--blue); font-weight: 850; }
.faq-list {
  display: grid;
  gap: .72rem;
}
.faq-item {
  padding: 1rem;
  box-shadow: none;
}
.faq-item h2 {
  margin: 0 0 .35rem;
  font-size: 1.08rem;
  line-height: 1.25;
}
.faq-answer h3 {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}
.offer-strip {
  width: min(1160px, calc(100% - 32px));
  margin: 28px auto 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 1.25rem;
}
.offer-strip .eyebrow { margin-top: 0; color: var(--gold); }
.offer-strip h2 { margin: 0 0 .35rem; }
.offer-strip p { margin: 0; color: rgba(255,255,255,.78); }
.site-footer {
  padding: 36px 0;
  background: #151a1e;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}
.site-footer p { color: rgba(255,255,255,.66); }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.site-footer a { color: #fff; }
.sticky-play {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 50;
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: min(280px, calc(100vw - 28px));
  min-height: 54px;
  padding: .8rem 1.3rem;
  border-radius: 8px;
  background: var(--gold);
  color: #172115;
  text-decoration: none;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}
.age-gate,
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(16, 20, 24, .62);
}
.age-gate[hidden],
.offer-modal[hidden],
.cookie-banner[hidden],
.cookie-settings[hidden] { display: none; }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.modal-card h2 { margin: 0 0 .45rem; }
.modal-card p { color: var(--muted); }
.modal-close {
  position: absolute;
  right: .75rem;
  top: .75rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 78px;
  z-index: 60;
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cookie-banner p { margin: .2rem 0 .5rem; color: var(--muted); }
.cookie-settings label { color: var(--muted); }
@media (max-width: 900px) {
  .header-row { min-height: 68px; align-items: flex-start; padding: .75rem 0; }
  .menu-btn { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    padding: .7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    justify-content: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .hero-grid,
  .footer-grid,
  .offer-strip {
    grid-template-columns: 1fr;
  }
  .link-grid,
  .sources-grid,
  .content-photos {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 78px;
  }
  .cookie-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 1160px); }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand strong { font-size: .96rem; }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .hero { padding-top: 34px; }
  .hero-copy,
  .hero-panel,
  .source-card,
  .link-card { box-shadow: none; }
  .mini-list { grid-template-columns: repeat(2, 1fr); }
  .age-actions,
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner {
    left: 11px;
    right: 11px;
    bottom: 74px;
    width: auto;
  }
}
