/* Reel Watch House — editorial magazine system */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,800&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --lavender: #ebe7f0;
  --lavender-deep: #ddd6e6;
  --plum: #6b3a5c;
  --plum-deep: #4a2740;
  --plum-soft: #8a5a78;
  --brass: #c4a35a;
  --brass-bright: #d4b56a;
  --brass-deep: #9a7a3a;
  --ink: #2a1f28;
  --muted: #5c4f58;
  --paper: #f6f3f8;
  --tint: #f0ebf4;
  --white: #fffcfe;
  --accent: var(--brass);
  --accent-text: var(--plum-deep);
  --rail-w: 13.5rem;
  --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;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --max: 72rem;
  --read: 68ch;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow-card: 0 10px 28px rgba(74, 39, 64, 0.1);
  --age-h: 2.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, var(--lavender) 0%, var(--paper) 42%, var(--lavender-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: var(--age-h);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--plum);
  font-weight: 700;
  text-decoration: none;
}

a:hover { color: var(--brass-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-deep);
  margin: 0 0 var(--space-4);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 var(--space-4); max-width: var(--read); }
p:last-child { margin-bottom: 0; }

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: var(--space-3);
}

.rule {
  width: 3.5rem;
  height: 3px;
  background: var(--brass);
  margin: var(--space-7) auto;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Age notice — top persistent bar */
.age-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--age-h);
  background: var(--plum-deep);
  color: var(--lavender);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.4rem 1rem;
  text-align: center;
}

.age-notice a {
  color: var(--brass-bright);
  font-weight: 700;
}

.age-notice strong { color: var(--white); }

/* Layout: left rail desktop */
.shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--age-h));
}

.rail {
  display: none;
}

.mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  position: sticky;
  top: var(--age-h);
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--plum-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}

.nav-toggle {
  appearance: none;
  border: 0;
  background: var(--plum);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 0 var(--space-5);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a,
.rail__nav a {
  color: var(--plum-deep);
  font-weight: 600;
  padding: 0.35rem 0;
}

.mobile-nav a[aria-current="page"],
.rail__nav a[aria-current="page"] {
  color: var(--brass-deep);
}

.main-wrap { min-width: 0; }

@media (min-width: 980px) {
  .shell {
    grid-template-columns: var(--rail-w) 1fr;
  }

  .rail {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: sticky;
    top: var(--age-h);
    height: calc(100vh - var(--age-h));
    padding: var(--space-6) var(--space-5);
    background: color-mix(in srgb, var(--plum-deep) 94%, var(--brass));
    color: var(--lavender);
  }

  .rail .brand { color: var(--white); }
  .rail .brand__name { color: var(--white); }

  .rail__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .rail__nav a {
    color: color-mix(in srgb, var(--lavender) 88%, white);
    font-size: 0.95rem;
  }

  .rail__nav a:hover,
  .rail__nav a[aria-current="page"] {
    color: var(--brass-bright);
  }

  .rail__meta {
    margin-top: auto;
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--lavender) 70%, transparent);
    line-height: 1.45;
  }

  .mobile-bar,
  .mobile-nav { display: none !important; }

  .main-wrap {
    padding-inline: var(--space-5);
  }
}

/* Independence / disclosure strips */
.strip {
  background: var(--tint);
  padding: var(--space-4) 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.strip--warn {
  background: color-mix(in srgb, var(--brass) 18%, var(--paper));
  border-block: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.65rem;
  border: 1.5px solid var(--plum);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: transparent;
  white-space: nowrap;
}

.badge--brass {
  border-color: var(--brass-deep);
  color: var(--brass-deep);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--brass);
  color: var(--plum-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--brass-bright);
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--plum);
  box-shadow: inset 0 0 0 2px var(--plum);
}

.btn--ghost:hover {
  background: var(--plum);
  color: var(--white);
}

.btn--block { width: 100%; }

/* Hero — split screen + oversized statement */
.hero {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6) 0 var(--space-7);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lavender) 72%, transparent), var(--paper) 70%),
    url("/assets/hero-atmosphere.png") center / cover no-repeat;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: var(--space-2);
}

.hero__grid {
  display: grid;
  gap: var(--space-6);
}

.hero__statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--plum-deep);
  max-width: 14ch;
  margin: 0 0 var(--space-5);
}

.hero__statement em {
  font-style: normal;
  color: var(--brass-deep);
  background: linear-gradient(transparent 62%, color-mix(in srgb, var(--brass) 45%, transparent) 62%);
}

.hero__answer {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero__rail {
  background: var(--plum);
  color: var(--lavender);
  padding: var(--space-5);
  border-radius: var(--radius);
  align-self: start;
}

.hero__rail h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
}

.hero__rail p { color: color-mix(in srgb, var(--lavender) 90%, white); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.stat {
  text-align: center;
  padding: var(--space-3);
  background: color-mix(in srgb, var(--plum-deep) 55%, transparent);
  border-radius: var(--radius-sm);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brass-bright);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lavender);
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.4fr 0.85fr;
    align-items: start;
  }

  .hero__rail {
    position: sticky;
    top: calc(var(--age-h) + 1rem);
  }
}

/* Showcase ranked list — large rounded cards */
.showcase { padding: var(--space-7) 0; }

.rank-list {
  display: grid;
  gap: var(--space-5);
  counter-reset: rank;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rank-card {
  display: grid;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 39, 64, 0.14);
}

.rank-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: var(--plum);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
}

.rank-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--brass-bright);
  line-height: 1;
}

.rank-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0;
  color: var(--white);
}

.rank-card__score {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brass-bright);
  white-space: nowrap;
}

.rank-card__score span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
}

.rank-card__body {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5);
}

@media (min-width: 760px) {
  .rank-card__body {
    grid-template-columns: 1.5fr 0.85fr;
    align-items: stretch;
  }
}

.rank-card__facts {
  display: grid;
  gap: var(--space-4);
}

.rank-card__logo {
  width: 8.5rem;
  height: 3.5rem;
  object-fit: contain;
  object-position: left center;
  background: var(--tint);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.rank-card__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  background: var(--tint);
  padding: var(--space-5);
  border-radius: var(--radius-sm);
}

.rank-card__note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.rank-card__offer {
  font-size: 0.9rem;
  color: var(--plum-deep);
  font-weight: 600;
}

.link-info {
  font-weight: 700;
  color: var(--plum);
  font-size: 0.9rem;
}

/* Comparison / duels */
.section { padding: var(--space-7) 0; }

.section--tint {
  background: color-mix(in srgb, var(--lavender-deep) 55%, var(--paper));
  background-image: url("/assets/section-band.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  border-radius: var(--radius);
  padding: var(--space-7) var(--space-5);
  margin-block: var(--space-5);
}

.duel-grid {
  display: grid;
  gap: var(--space-5);
}

.duel {
  display: grid;
  gap: var(--space-4);
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.duel__vs {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brass-deep);
  letter-spacing: 0.08em;
}

.duel__pair {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 720px) {
  .duel__pair { grid-template-columns: 1fr auto 1fr; align-items: start; }
}

.duel__side h3 { margin-bottom: var(--space-2); }

.duel__point {
  font-size: 0.95rem;
  color: var(--muted);
}

.split-with-aside {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .split-with-aside {
    grid-template-columns: 1.5fr 0.85fr;
    align-items: start;
  }
}

.aside-card {
  background: var(--plum);
  color: var(--lavender);
  padding: var(--space-5);
  border-radius: var(--radius);
}

.aside-card h3 { color: var(--white); }
.aside-card p,
.aside-card li { color: color-mix(in srgb, var(--lavender) 92%, white); }
.aside-card a { color: var(--brass-bright); }

.figure {
  margin: var(--space-5) 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.figure img {
  width: 100%;
  height: auto;
}

.figure figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: var(--space-3) 0 0;
}

/* Methodology / FAQ */
.method-list,
.faq-list {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-group { margin-bottom: var(--space-6); }

.faq-item {
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-sm);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
}

/* Safety band */
.safety-band {
  background: var(--plum-deep);
  color: var(--lavender);
  padding: var(--space-6) 0;
  margin-top: var(--space-7);
}

.safety-band h2 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.safety-band p { color: color-mix(in srgb, var(--lavender) 85%, white); }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.safety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  background: color-mix(in srgb, var(--plum) 70%, black);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--white);
  transition: transform 0.2s ease;
}

.safety-card:hover {
  transform: translateY(-3px);
  color: var(--brass-bright);
}

.safety-card img {
  height: 2.4rem;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--lavender) 75%, white);
  padding: var(--space-7) 0 var(--space-6);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.site-footer a {
  color: var(--brass-bright);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.disclaimer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid color-mix(in srgb, var(--lavender) 20%, transparent);
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--lavender) 65%, transparent);
  max-width: none;
}

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 900;
  max-width: 28rem;
  margin-inline: auto;
  background: var(--white);
  color: var(--ink);
  padding: var(--space-5);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(42, 31, 40, 0.22);
  display: none;
}

.cookie.is-visible { display: block; }

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* Page interiors */
.page-hero {
  padding: var(--space-6) 0 var(--space-5);
}

.page-hero h1 { max-width: 16ch; }

.prose {
  max-width: var(--read);
}

.prose h2 { margin-top: var(--space-6); }

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin: 0 0 var(--space-4);
}

.prose li { margin-bottom: 0.4rem; }

.contact-form {
  display: grid;
  gap: var(--space-4);
  max-width: 32rem;
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 0;
  background: var(--tint);
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.contact-form textarea { min-height: 8rem; resize: vertical; }

/* Comparator */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: end;
}

.filters label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.filters select,
.filters input {
  font: inherit;
  padding: 0.55rem 0.75rem;
  border: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  min-width: 10rem;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 0.95rem;
}

.comp-table th,
.comp-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  background: transparent;
}

.comp-table thead th {
  background: var(--plum);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.comp-table tbody tr:nth-child(even) td {
  background: var(--tint);
}

.comp-table .num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--plum-deep);
  text-align: right;
}

.updated {
  font-size: 0.85rem;
  color: var(--muted);
}

.aff-note {
  font-size: 0.88rem;
  background: color-mix(in srgb, var(--brass) 16%, var(--paper));
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin: var(--space-5) 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rank-card,
  .safety-card,
  .btn {
    transition: none;
  }
  .rank-card:hover,
  .safety-card:hover {
    transform: none;
  }
}
