:root {
  --porcelain: #f3efe8;
  --porcelain-2: #e7e2d8;
  --paper: #faf7f2;
  --forest: #1b4a38;
  --forest-deep: #123328;
  --forest-mid: #2a5c47;
  --ink: #1c1915;
  --muted: #5e584f;
  --orange: #e25a1c;
  --orange-deep: #c44812;
  --line: rgba(28, 25, 21, 0.14);
  --line-strong: rgba(28, 25, 21, 0.28);
  --shadow: 0 12px 28px rgba(18, 51, 40, 0.1);
  --inner: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Libre Bodoni", "Palatino Linotype", Palatino, serif;
  --font-body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;
  --wrap: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f3ec 0%, var(--porcelain) 42%, #efe9df 100%);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100dvh;
}

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

a {
  color: var(--orange-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-link::before {
  content: "[ ";
  color: var(--forest);
  font-weight: 700;
}

.site-link::after {
  content: " ]";
  color: var(--forest);
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--forest);
  color: var(--porcelain);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip-link:focus {
  top: 0.75rem;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 var(--space-3);
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.age-strip {
  background: var(--forest-deep);
  color: var(--porcelain);
  font-size: 0.9rem;
  padding: 0.55rem 0;
  text-align: center;
}

.age-strip a {
  color: #ffd2b8;
}

.age-strip strong {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0.7rem;
  z-index: 8;
  pointer-events: none;
  margin-bottom: -3.4rem;
}

.nav-pill {
  pointer-events: auto;
  width: min(100% - 1.25rem, 70rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow), var(--inner);
  backdrop-filter: blur(10px);
}

.nav-pill__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-pill__brand:hover {
  text-decoration: none;
}

.nav-pill__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  flex: none;
}

.nav-pill__toggle {
  display: none;
  border: 0;
  background: var(--forest);
  color: var(--porcelain);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-pill__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.85rem;
  align-items: center;
}

.nav-pill__links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-pill__links a[aria-current="page"] {
  color: var(--orange-deep);
}

.hero {
  padding: 6.5rem 0 3.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: end;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-5);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}

.hero__lede {
  font-size: 1.2rem;
  max-width: 38rem;
  margin: 0 0 var(--space-5);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 var(--space-5);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--forest);
  color: var(--porcelain);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip--quiet {
  background: var(--porcelain-2);
  color: var(--forest-deep);
}

.hero__frame {
  margin: 0;
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.6rem;
  box-shadow: var(--shadow), var(--inner);
  border: 1px solid var(--line);
}

.hero__frame figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: var(--space-8) 0;
}

.section--flush {
  background: var(--forest);
  color: var(--porcelain);
}

.section--flush a {
  color: #ffd2b8;
}

.section--flush .kicker {
  color: #ffd2b8;
}

.section--tint {
  background: rgba(27, 74, 56, 0.06);
}

.section__head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: var(--space-6);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.prose {
  max-width: 66ch;
}

.prose h1,
.prose h2,
.prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.prose h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin: 0 0 var(--space-4);
}

.prose h2 {
  font-size: 1.7rem;
  margin: var(--space-7) 0 var(--space-3);
}

.prose h3 {
  font-size: 1.25rem;
  margin: var(--space-6) 0 var(--space-2);
}

.prose p,
.prose li {
  color: #2a261f;
}

.page-hero {
  padding: 6.2rem 0 2rem;
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--inner);
  padding: 1.25rem 1.3rem;
  height: max-content;
}

.aside h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.7rem;
}

.callout {
  border-left: 4px solid var(--orange);
  padding: 0.2rem 0 0.2rem 1rem;
  margin: var(--space-5) 0;
}

.callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}

.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--orange-deep);
  margin: 0;
}

.motif::before,
.motif::after {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: currentColor;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.scorecard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--inner);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.scorecard__top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.1rem 0.7rem;
}

.scorecard__logo {
  height: 2.1rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  object-position: left center;
}

.scorecard__logo--nyspins {
  background: #120f1a;
  padding: 0.35rem 0.6rem;
  border-radius: 0.35rem;
  box-sizing: content-box;
}

.verdict {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scorecard__body {
  padding: 0 1.15rem 1rem;
}

.scorecard__body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.4rem;
}

.facts {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.facts li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.tick::before,
.cross::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.28rem;
  background: var(--forest);
  clip-path: polygon(14% 54%, 0 68%, 38% 100%, 100% 18%, 84% 4%, 38% 72%);
}

.cross::before {
  background: var(--muted);
  clip-path: polygon(12% 0, 0 12%, 38% 50%, 0 88%, 12% 100%, 50% 62%, 88% 100%, 100% 88%, 62% 50%, 100% 12%, 88% 0, 50% 38%);
}

.scorecard__action {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1.1rem 1.05rem;
  border-top: 1px dashed var(--line-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
  box-shadow: var(--inner);
}

.btn:hover {
  background: var(--orange-deep);
  text-decoration: none;
  color: #fff;
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--porcelain);
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--inner);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 46rem;
}

.data th,
.data td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data th {
  background: var(--forest);
  color: var(--porcelain);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data td:nth-child(2),
.data th:nth-child(2) {
  background: rgba(226, 90, 28, 0.08);
}

.data tbody tr:hover td {
  background: rgba(27, 74, 56, 0.04);
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.checks li {
  padding-left: 1.3rem;
  position: relative;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--forest);
  clip-path: polygon(14% 54%, 0 68%, 38% 100%, 100% 18%, 84% 4%, 38% 72%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.4rem 0 0.35rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.safety-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  min-height: 7.5rem;
  box-shadow: var(--inner);
}

.safety-card:hover {
  text-decoration: none;
  border-color: var(--orange);
}

.safety-card img {
  height: 2.2rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.safety-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer {
  background: var(--forest-deep);
  color: #d9e6de;
  padding: 0;
}

.footer-deck {
  padding: 2.4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-decoration: none;
  margin-bottom: 0.7rem;
}

.footer-brand:hover {
  text-decoration: none;
  color: #fff;
}

.footer-brand img {
  width: 2.4rem;
}

.site-footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin: 0 0 0.7rem;
  color: #ffd2b8;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: #eef6f1;
}

.licence-board {
  background: #174233;
  padding: 2rem 0 2.3rem;
}

.licence-board h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.03em;
  text-transform: none;
  font-variant: normal;
}

.licence-copy {
  max-width: 70ch;
  margin: 0.4rem 0 1.1rem;
}

.licence-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.licence-table th,
.licence-table td {
  text-align: left;
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid rgba(243, 239, 232, 0.16);
  vertical-align: top;
}

.licence-table a {
  color: #ffd2b8;
}

.safety-deck {
  background: #0f2a20;
  padding: 1.4rem 0 1.7rem;
}

.safety-deck .safety-card {
  background: #16382c;
  color: #d7e4dc;
}

.safety-deck .safety-card span {
  color: #c5d5cc;
}

.safety-deck .safety-grid {
  margin-top: 0.9rem;
}

.legal-end {
  font-size: 0.85rem;
  padding: 1rem 0 1.4rem;
  color: #b7c9bf;
}

.cookie-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 12;
  max-width: 32rem;
  margin-left: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.copy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.page-tools {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1rem;
}

.js-rise {
  opacity: 0;
  transform: translateY(18px);
}

.js-rise.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (max-width: 900px) {
  .hero__grid,
  .split,
  .grid-2,
  .faq-grid,
  .footer-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .nav-pill__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-pill {
    border-radius: 1.4rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-pill__links {
    display: none;
    width: 100%;
    padding: 0.4rem 0.5rem 0.7rem;
  }

  .nav-pill.is-open .nav-pill__links {
    display: grid;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .section__head {
    flex-direction: column;
    align-items: start;
  }

  .btn {
    width: 100%;
  }

  .scorecard__action {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-rise,
  .js-rise.is-in,
  .btn {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
