/* ============================================================
   RETROSPOTLIGHTS — styles.css
   Design DNA: Fey editorial (warm paper, two ink tones, system
   type, generous whitespace, zero radius) + one restrained warm
   "spotlight" amber accent. Broadsheet-quiet, never glitzy.
   Strict BEM. Single shared container.
   ============================================================ */

:root {
  /* Surfaces / ink (Fey editorial, gone dark) */
  --paper: #101013; /* deep base background */
  --paper-2: #1c1c23; /* tinted sections, panels, inputs, footer */
  --paper-3: #1e1e24; /* image frames / insets */
  --ink: #ececef; /* headings & strong text */
  --graphite: #c3c3cb; /* body text (AA on --paper) */
  --muted: #9a9aa2; /* muted secondary text (AA) */
  --line: #2a2a31; /* hairline border */
  --line-strong: #3b3b45; /* stronger hairline */

  /* Single accent — restrained warm spotlight amber */
  --accent: #e6a93c; /* large display / decoration / icons / stars */
  --accent-strong: #ecb758; /* links & small accent text (AA on dark) */
  --spot: #e9c268; /* warm glow / accept button */
  --star: #e6a93c;
  --on-media: #f4f4f6; /* text over image scrims */

  /* Type */
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, system-ui,
    sans-serif;
  --font-serif: Georgia, "New York", "Times New Roman", serif;

  /* Rhythm */
  --maxw: 1140px;
  --pad-inline: clamp(20px, 5vw, 56px);
  --section-y: clamp(56px, 9vw, 116px);
  --radius: 0px;

  --shadow-soft: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* ---------- reset-ish ---------- */
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  overflow-x: clip; /* guard: never clip content, never allow sideways scroll */
  background: var(--paper);
  background-image: radial-gradient(
    1100px 640px at 50% -8%,
    rgba(230, 169, 60, 0.13),
    rgba(230, 169, 60, 0) 60%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent-strong);
  text-decoration: none;
}
a:hover {
  color: var(--ink);
}
button {
  font-family: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

.u-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 200;
}
.u-skip:focus {
  left: 16px;
  top: 12px;
  color: var(--paper);
}

/* ---------- shared container ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

/* ---------- eyebrow / section head ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--line);
}
section[id],
main[id] {
  scroll-margin-top: 84px;
}
.section--tint {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.section__head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.section__title em {
  font-style: normal;
  color: var(--accent);
}
.section__lead {
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--graphite);
  max-width: 56ch;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 19, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(16, 16, 19, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
}
.brand {
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
}
.brand__accent {
  color: var(--accent);
}
.brand:hover {
  color: var(--ink);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__list {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: 9px 12px;
  transition: color 0.2s ease;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--ink);
}
.nav__cta {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 9px 16px;
}
.nav__cta:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger__box {
  position: relative;
  width: 20px;
  height: 14px;
}
.burger__line {
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.burger__line:nth-child(1) {
  top: 0;
}
.burger__line:nth-child(2) {
  top: 6px;
}
.burger__line:nth-child(3) {
  top: 12px;
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 960px) {
  .burger {
    display: inline-flex;
  }
  .header__nav {
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-inline) 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list {
    flex-direction: column;
    gap: 0;
  }
  .nav__link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav__cta {
    margin: 16px 0 0;
    text-align: center;
    padding: 14px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(52px, 8vw, 104px) clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(38px, 6.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__lead {
  margin-top: 24px;
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--graphite);
  max-width: 50ch;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  align-items: center;
}
.hero__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__note svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}

/* hero showcase — real screenshots, not lazy */
.showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.showcase__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-3);
  box-shadow: var(--shadow-soft);
}
.showcase__frame--tall {
  grid-row: span 2;
}
.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__frame--a {
  aspect-ratio: 9/16;
}
.showcase__frame--b {
  aspect-ratio: 16/10;
}
.showcase__frame--c {
  aspect-ratio: 16/10;
}
.showcase__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-media);
  background: rgba(8, 8, 10, 0.72);
  padding: 6px 10px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  text-transform: uppercase;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: var(--paper);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 820px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
}

/* ============================================================
   GAMES
   ============================================================ */
.games__feature {
  margin-bottom: 26px;
}
.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
.feature__media {
  position: relative;
  overflow: hidden;
  background: var(--paper-3);
  min-height: 100%;
}
.feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.feature__flag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #141418;
  background: var(--accent);
  padding: 7px 13px;
}
.feature__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.feature__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.feature__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  flex: none;
}
.feature__name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}
.feature__dev {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.feature__desc {
  color: var(--graphite);
  font-size: 17px;
  margin: 6px 0 22px;
}
.feature__foot {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature__img {
    aspect-ratio: 16/9;
  }
}

/* card grid — asymmetric auto-fill (not a plain 3x2) */
.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 22px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.card:hover {
  border-color: var(--line-strong);
}
@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-3px);
  }
}
.card__shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}
.card__shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__genre {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-media);
  background: rgba(8, 8, 10, 0.72);
  padding: 5px 9px;
}
.card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__head {
  display: flex;
  gap: 13px;
  align-items: center;
}
.card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  flex: none;
}
.card__name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.15;
}
.card__dev {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 12px;
}
.card__desc {
  color: var(--graphite);
  font-size: 15.5px;
  line-height: 1.5;
  flex: 1;
}
.card__foot {
  margin-top: 18px;
}

/* stars — fractional fill via clipped overlay */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.stars {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.stars__row {
  display: flex;
  gap: 2px;
}
.stars__row svg {
  width: 15px;
  height: 15px;
  display: block;
}
.stars__row--track svg {
  color: var(--line-strong);
}
.stars__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.stars__fill svg {
  color: var(--star);
}
.rating__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
}

/* google-play text link/button */
.gp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 11px 15px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.gp svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--accent-strong);
}
.gp:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.gp--wide {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   ABOUT / WHY-TRUST
   ============================================================ */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--paper);
  padding: clamp(24px, 3vw, 38px);
}
.pillar__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar__icon svg {
  width: 100%;
  height: 100%;
}
.pillar__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 10px;
}
.pillar__text {
  color: var(--graphite);
  font-size: 16px;
}

/* ============================================================
   MONEY / TRANSPARENCY
   ============================================================ */
.money__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: l;
}
.ledger__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.ledger__item:last-child {
  border-bottom: 1px solid var(--line);
}
.ledger__num {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  counter-increment: l;
}
.ledger__num::before {
  content: counter(l, decimal-leading-zero);
}
.ledger__title {
  font-weight: 600;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 5px;
}
.ledger__text {
  color: var(--graphite);
  font-size: 15.5px;
}
.pledge {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
}
.pledge__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 21px;
  margin-bottom: 14px;
}
.pledge__text {
  color: var(--graphite);
  font-size: 16px;
  margin-bottom: 14px;
}
.pledge__link {
  font-weight: 600;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.pledge__link svg {
  width: 15px;
  height: 15px;
}

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

/* ============================================================
   NUMBERS / STATISTICS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper-2);
  padding: clamp(26px, 3.4vw, 40px) clamp(20px, 2.5vw, 30px);
}
.stat__value {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__value em {
  font-style: normal;
  color: var(--accent);
}
.stat__label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--graphite);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
}
.review__stars {
  margin-bottom: 18px;
}
.review__quote {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}
.avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-strong);
  background: var(--paper-2);
  letter-spacing: 0.02em;
}
.review__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.review__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   GET STARTED / GUIDE
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: s;
}
.step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.step__num {
  counter-increment: s;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.step__num::before {
  content: "Step " counter(s, decimal-leading-zero);
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 9px;
}
.step__text {
  color: var(--graphite);
  font-size: 15.5px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  font-size: clamp(17px, 2.1vw, 20px);
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}
.faq__icon {
  width: 20px;
  height: 20px;
  flex: none;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  left: 50%;
  top: 50%;
  transition: transform 0.25s ease;
}
.faq__icon::before {
  width: 16px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.6px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq__a-inner {
  padding: 0 2px 26px;
  color: var(--graphite);
  font-size: 16.5px;
  max-width: 66ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq__a {
    transition: none;
  }
}

/* ============================================================
   SUBSCRIBE FORM
   ============================================================ */
.subscribe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 3.4vw, 40px);
}
.field {
  margin-bottom: 16px;
}
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.field__req {
  color: var(--accent-strong);
}
.field__input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  padding: 13px 15px;
  letter-spacing: -0.01em;
}
.field__input::placeholder {
  color: var(--muted);
}
.field__input:focus {
  outline: none;
  border-color: var(--accent-strong);
  background: var(--paper);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 22px;
}
.consent__box {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--accent-strong);
}
.consent__text {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.5;
}
.consent__text a {
  font-weight: 600;
}
.form__msg {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--paper-2);
  border: 1px solid var(--accent);
  color: var(--ink);
  font-size: 15.5px;
}
.form__msg.is-visible {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.form__msg svg {
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
  flex: none;
  margin-top: 1px;
}
.subscribe__aside .eyebrow {
  margin-bottom: 16px;
}
.subscribe__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.subscribe__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--graphite);
  font-size: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.subscribe__list li svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex: none;
  margin-top: 4px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 34px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 22px;
  color: var(--ink);
}
.footer__brand .brand__accent {
  color: var(--accent);
}
.footer__tag {
  margin-top: 14px;
  color: var(--graphite);
  font-size: 15.5px;
  max-width: 34ch;
}
.footer__mail {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 15px;
}
.footer__mail svg {
  width: 16px;
  height: 16px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li {
  margin-bottom: 11px;
}
.footer__list a {
  color: var(--graphite);
  font-size: 15px;
}
.footer__list a:hover {
  color: var(--ink);
}
.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.footer__disclaimer {
  max-width: 62ch;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand-col {
    grid-column: 1/-1;
  }
}

/* ============================================================
   COOKIE BANNER + BACK TO TOP
   ============================================================ */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: #16161a;
  color: #d7d7dd;
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  padding: 16px var(--pad-inline);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cookie.is-visible {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .cookie {
    transition: none;
  }
}
.cookie__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
}
.cookie__text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 64ch;
}
.cookie__text a {
  color: #f0d79a;
  font-weight: 600;
}
.cookie__text a:hover {
  color: #fff;
}
.cookie__actions {
  display: flex;
  gap: 12px;
  flex: none;
}
.cookie__btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
}
.cookie__btn--accept {
  background: var(--spot);
  color: #141418;
  border-color: var(--spot);
}
.cookie__btn--accept:hover {
  background: #f2d488;
}
.cookie__btn--decline {
  background: transparent;
  color: #d7d7dd;
  border-color: #44444e;
}
.cookie__btn--decline:hover {
  border-color: #d7d7dd;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.2s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  border-color: var(--ink);
}
.to-top svg {
  width: 19px;
  height: 19px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  padding-block: clamp(44px, 6vw, 80px);
}
.legal__head {
  max-width: 760px;
  margin-bottom: 36px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--graphite);
  margin-bottom: 26px;
}
.legal__back:hover {
  color: var(--ink);
}
.legal__back svg {
  width: 15px;
  height: 15px;
}
.legal__title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.legal__updated {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.legal__body {
  max-width: 760px;
}
.legal__body h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(21px, 3vw, 27px);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.legal__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 26px 0 10px;
}
.legal__body p {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 16.5px;
}
.legal__body ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--graphite);
  font-size: 16.5px;
}
.legal__body li {
  margin-bottom: 9px;
}
.legal__body a {
  font-weight: 600;
}
.legal__body strong {
  color: var(--ink);
  font-weight: 600;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 22px;
  font-size: 15px;
}
.legal__table th,
.legal__table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.legal__table th {
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 600;
}
.legal__table td {
  color: var(--graphite);
}
.legal__table-wrap {
  overflow-x: auto;
}

/* ---------- helpers ---------- */
.is-hidden {
  display: none !important;
}
@media (max-width: 520px) {
  body {
    font-size: 17px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
