/* Reel Outlook — editorial system */

:root {
  --paper: #f2f3f6;
  --paper-warm: #e8eaef;
  --card: #ffffff;
  --ink: #15171e;
  --ink-soft: #4a4f5d;
  --ink-faint: #7b8191;
  --rule: #d3d7e0;
  --rule-strong: #b6bcc9;
  --cobalt: #2242b8;
  --cobalt-deep: #17307f;
  --cobalt-tint: #e6eaf9;
  --coral: #e04328;
  --coral-tint: #fdeae6;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Hoefler Text", Georgia, serif;
  --serif-text: Georgia, "Times New Roman", "Liberation Serif", serif;
  --util: ui-sans-serif, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1140px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--cobalt-deep); text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.14;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.55rem, 3.1vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.25rem); }

.eyebrow {
  font-family: var(--util);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin: 0 0 0.9rem;
  display: block;
}

.eyebrow--coral { color: var(--coral); }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.24rem); color: var(--ink-soft); }

/* ---------- age chip ---------- */

.chip18 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--util);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem 0.3rem 0.3rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  white-space: nowrap;
}

.chip18 b {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0;
}

/* ---------- masthead ---------- */

.masthead { background: var(--card); border-bottom: 1px solid var(--rule); position: relative; z-index: 20; }

.masthead__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.brand__sub {
  display: block;
  font-family: var(--util);
  font-size: 0.6rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.28rem;
  font-weight: 600;
}

.masthead__right { margin-left: auto; display: flex; align-items: center; gap: 0.9rem; }

.nav { display: flex; gap: 1.35rem; }
.nav a {
  font-family: var(--util);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--cobalt); border-bottom-color: var(--coral); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--cobalt); }

.navtoggle {
  display: none;
  font-family: var(--util);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 2px;
  padding: 0.6rem 0.85rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .masthead__bar { min-height: 66px; }
  .navtoggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--card);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    gap: 0;
    padding: 0.4rem clamp(1.1rem, 4vw, 2.25rem) 1rem;
    box-shadow: 0 18px 30px -22px rgba(21, 23, 30, 0.4);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.72rem 0; border-bottom: 1px solid var(--rule); font-size: 0.95rem; }
  .nav a:last-child { border-bottom: 0; }
  .masthead .chip18 { display: none; }
}

/* ---------- duotone hero ---------- */

.hero { background: var(--card); border-bottom: 1px solid var(--rule); overflow: hidden; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero__left {
  background: var(--cobalt-deep);
  color: #fff;
  padding: clamp(2.4rem, 5vw, 4.3rem) clamp(1.3rem, 4vw, 3.2rem) clamp(2.4rem, 5vw, 4rem);
  position: relative;
}

.hero__left::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--coral);
}

.hero__left .eyebrow { color: #9fb4ff; }
.hero__left h1 { color: #fff; }
.hero__left h1 em { font-style: normal; color: #ffb3a3; }
.hero__left p { color: rgba(255, 255, 255, 0.84); }

.hero__meta {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-family: var(--util);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__meta strong { color: #fff; font-weight: 600; }

.hero__right {
  background: var(--paper-warm);
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.3rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero__answers { list-style: none; margin: 0; padding: 0; }
.hero__answers li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.4rem;
  font-size: 0.99rem;
}
.hero__answers li:last-child { border-bottom: 1px solid var(--rule-strong); }
.hero__answers span {
  font-family: var(--util);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  padding-top: 0.28rem;
}
.hero__answers b { font-family: var(--serif); font-weight: 600; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__left::after { left: 0; right: 0; top: auto; bottom: 0; width: auto; height: 5px; }
}

/* ---------- generic section ---------- */

.section { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--card { background: var(--card); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section--ink { background: var(--ink); color: rgba(255, 255, 255, 0.86); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: #ffb3a3; }
.section--ink a { color: #b7c6ff; }
.section--ink a:hover { color: #ffb3a3; }

.section__head { max-width: 62ch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }

.rulehead {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 0.6rem;
  margin-bottom: 1.7rem;
}
.rulehead h2 { margin: 0; }
.rulehead span {
  margin-left: auto;
  font-family: var(--util);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .rulehead { flex-wrap: wrap; gap: 0.35rem; }
  .rulehead span { margin-left: 0; white-space: normal; flex-basis: 100%; }
}

.cols2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--gap); }
.cols3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: var(--gap); }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.1rem; }
.prose h3 { margin-top: 1.7rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.45em; }
.prose > :first-child { margin-top: 0; }

/* ---------- method cards ---------- */

.methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap); }

@media (min-width: 1000px) {
  .methods { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.prose .methods { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 560px) {
  .methods, .prose .methods { grid-template-columns: 1fr; }
}

.method { border-top: 3px solid var(--cobalt); padding-top: 1rem; }
.method:nth-child(2) { border-top-color: var(--coral); }
.method:nth-child(3) { border-top-color: var(--ink); }
.method:nth-child(4) { border-top-color: var(--rule-strong); }
.method h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.method p { font-size: 0.97rem; color: var(--ink-soft); }
.method__w {
  font-family: var(--util);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.35rem;
}

/* ---------- operator rows ---------- */

.oplist { border-top: 2px solid var(--ink); }

.oprow {
  display: grid;
  grid-template-columns: 3.4rem 12rem 1fr 8.5rem;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
  padding: clamp(1.4rem, 2.6vw, 2rem) 0;
  border-bottom: 1px solid var(--rule-strong);
  background: var(--card);
  padding-left: clamp(0.9rem, 2vw, 1.5rem);
  padding-right: clamp(0.9rem, 2vw, 1.5rem);
}

.oprow__rank {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--rule-strong);
  font-weight: 600;
}

.oprow__id { }

.oplogo {
  height: 62px;
  border: 1px solid var(--rule);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.7rem;
}
.oplogo img { max-height: 100%; width: auto; object-fit: contain; }
.oplogo--type {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
}

.oprow__id h3 { font-size: 1.22rem; margin-bottom: 0.25rem; }
.oprow__lic {
  font-family: var(--util);
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
.oprow__lic b { color: var(--ink-soft); font-weight: 600; }

.oprow__body p { font-size: 1rem; }
.oprow__body p:first-child { margin-top: 0; }

.facts { list-style: none; margin: 0.85rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.facts li {
  font-family: var(--util);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem;
  background: var(--cobalt-tint);
  color: var(--cobalt-deep);
  border-radius: 2px;
}
.facts li.is-alt { background: var(--coral-tint); color: #a02d16; }

.oprow__action { text-align: right; }

.score {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--cobalt-deep);
  display: block;
}
.score sub { font-size: 0.85rem; color: var(--ink-faint); vertical-align: baseline; }
.score__label {
  font-family: var(--util);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin: 0.35rem 0 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--util);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.72rem 1.05rem;
  background: var(--coral);
  color: #fff;
  border: 0;
  border-radius: 2px;
  text-align: center;
  width: 100%;
}
.btn:hover { background: #b8351d; color: #fff; }
.btn--ghost { background: transparent; color: var(--cobalt-deep); border: 1.5px solid var(--cobalt-deep); }
.btn--ghost:hover { background: var(--cobalt-deep); color: #fff; }
.btn--inline { width: auto; }

.oprow__note {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--util);
  font-size: 0.68rem;
  color: var(--ink-faint);
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .oprow { grid-template-columns: 2.6rem 10rem 1fr; }
  .oprow__action { grid-column: 2 / -1; text-align: left; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
  .score { font-size: 2rem; }
  .score__label { margin-bottom: 0; }
  .btn { width: auto; }
  .oprow__note { flex-basis: 100%; margin-top: 0; }
}

@media (max-width: 680px) {
  .oprow { grid-template-columns: 1fr; }
  .oprow__rank { font-size: 1.5rem; }
  .oprow__action { grid-column: 1 / -1; }
  .oplogo { height: 54px; max-width: 190px; }
}

/* ---------- disclosure strip ---------- */

.disclosure {
  border-left: 5px solid var(--coral);
  background: var(--coral-tint);
  padding: 1.05rem 1.25rem;
  font-size: 0.97rem;
  color: #6d2312;
}
.disclosure a { color: #8f2a14; }
.disclosure strong { font-family: var(--serif); }

.notice {
  border-left: 5px solid var(--cobalt);
  background: var(--cobalt-tint);
  padding: 1.05rem 1.25rem;
  font-size: 0.97rem;
  color: var(--cobalt-deep);
}
.notice a { color: var(--cobalt-deep); }

/* ---------- table ---------- */

.tablewrap { overflow-x: auto; border: 1px solid var(--rule-strong); background: var(--card); }

table.cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 0.92rem; }
table.cmp caption {
  caption-side: bottom;
  text-align: left;
  font-family: var(--util);
  font-size: 0.74rem;
  color: var(--ink-faint);
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--rule);
}
table.cmp th, table.cmp td { padding: 0.78rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
table.cmp thead th {
  font-family: var(--util);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
}
table.cmp tbody th { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; white-space: nowrap; }
table.cmp tbody tr:nth-child(even) { background: #fafbfd; }
table.cmp td.num { font-family: var(--util); font-variant-numeric: tabular-nums; }
table.cmp .mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: 0.83rem; }

/* ---------- resources ---------- */

.resgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1.1rem; }

.rescard {
  background: var(--card);
  border: 1px solid var(--rule-strong);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rescard__logo { height: 44px; display: flex; align-items: center; }
.rescard__logo img { max-height: 100%; width: auto; }
.rescard h3 { font-size: 1.05rem; margin: 0; }
.rescard p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.rescard a.reslink {
  margin-top: auto;
  font-family: var(--util);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- faq ---------- */

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--rule-strong); background: var(--card); }
.faq summary {
  cursor: pointer;
  padding: 1.05rem clamp(0.9rem, 2vw, 1.4rem);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--coral);
  font-family: var(--util);
  font-weight: 700;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--cobalt-deep); }
.faq .faq__a { padding: 0 clamp(0.9rem, 2vw, 1.4rem) 1.3rem; max-width: 74ch; font-size: 0.99rem; color: var(--ink-soft); }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: clamp(2.4rem, 5vw, 3.6rem) 0 2rem; font-size: 0.94rem; }
.footer a { color: rgba(255, 255, 255, 0.86); text-decoration: none; }
.footer a:hover { color: #ffb3a3; text-decoration: underline; }

.footer__top { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr); gap: var(--gap); }
.footer .brand { color: #fff; }
.footer .brand__sub { color: rgba(255, 255, 255, 0.55); }
.footer h4 {
  font-family: var(--util);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb3a3;
  margin-bottom: 0.9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer__blurb { margin-top: 1.1rem; max-width: 42ch; color: rgba(255, 255, 255, 0.66); font-size: 0.92rem; }

.footer__licensing {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer__licensing h4 { color: #b7c6ff; }
.footer__licensing p { max-width: 92ch; font-size: 0.9rem; }
.footer__lic-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 0.55rem 1.6rem; }
.footer__lic-list li { font-size: 0.84rem; color: rgba(255, 255, 255, 0.66); margin: 0; }
.footer__lic-list b { color: #fff; font-weight: 600; }

.footer__legal {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__legal .chip18 { background: transparent; border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.footer__safety { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; align-items: center; margin-top: 1.2rem; }
.footer__safety img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.82; }
.footer__safety a:hover img { opacity: 1; }
.footer__safety .gs { height: 34px; filter: none; opacity: 0.95; background: #fff; padding: 2px; border-radius: 2px; }

@media (max-width: 780px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- page header for inner pages ---------- */

.pagehead {
  background: var(--card);
  border-bottom: 1px solid var(--rule);
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
}
.pagehead::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: clamp(0.4rem, 1.6vw, 0.9rem);
  background: linear-gradient(var(--cobalt-deep) 0 62%, var(--coral) 62% 100%);
}
.pagehead h1 { max-width: 30ch; }
.pagehead .lede { max-width: 62ch; }
.pagehead__meta {
  margin-top: 1.3rem;
  font-family: var(--util);
  font-size: 0.76rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.crumbs { font-family: var(--util); font-size: 0.76rem; color: var(--ink-faint); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--coral); }

/* ---------- review blocks ---------- */

.review { background: var(--card); border: 1px solid var(--rule-strong); border-top: 4px solid var(--cobalt-deep); padding: clamp(1.3rem, 3vw, 2rem); margin-bottom: var(--gap); }
.review:nth-of-type(even) { border-top-color: var(--coral); }
.review__top { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.review__top .oplogo { margin-bottom: 0; width: 170px; }
.review__hdr h2 { margin-bottom: 0.3rem; }
.review__score { margin-left: auto; text-align: right; }
.review dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.45rem 1.2rem; margin: 1.3rem 0 0; font-size: 0.93rem; }
.review dt { font-family: var(--util); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding-top: 0.18rem; }
.review dd { margin: 0; }
.review dd.mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: 0.86rem; }
.review__cta { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.review__cta small { font-family: var(--util); font-size: 0.72rem; color: var(--ink-faint); max-width: 46ch; }

@media (max-width: 620px) {
  .review dl { grid-template-columns: 1fr; gap: 0.15rem; }
  .review dt { padding-top: 0.6rem; }
  .review__score { margin-left: 0; text-align: left; }
}

/* ---------- cookie banner ---------- */

.cookiebar {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border-top: 4px solid var(--coral);
  padding: 1.1rem clamp(1.1rem, 4vw, 2.25rem);
  z-index: 60;
  display: none;
}
.cookiebar.is-visible { display: block; }
.cookiebar__inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }
.cookiebar p { margin: 0; font-size: 0.9rem; max-width: 70ch; }
.cookiebar a { color: #b7c6ff; }
.cookiebar__actions { margin-left: auto; display: flex; gap: 0.6rem; }
.cookiebar button {
  font-family: var(--util);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
}
.cookiebar button.is-primary { background: var(--coral); border-color: var(--coral); }
.cookiebar button.is-primary:hover { background: #b8351d; border-color: #b8351d; }

/* ---------- misc ---------- */

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
  font-family: var(--util);
  font-size: 0.85rem;
}
.skip:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.updated { font-family: var(--util); font-size: 0.76rem; color: var(--ink-faint); }

.mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: 0.9em; }

.linklist { list-style: none; margin: 0; padding: 0; }
.linklist li { border-bottom: 1px solid var(--rule); }
.linklist a { display: flex; gap: 1rem; padding: 0.85rem 0; text-decoration: none; font-family: var(--serif); font-size: 1.05rem; }
.linklist a:hover { color: var(--coral); }
.linklist span { margin-left: auto; font-family: var(--util); font-size: 0.74rem; color: var(--ink-faint); }

@media print { .masthead, .cookiebar, .footer__safety { display: none; } }
