/* palette: bg=#ECEAE4 fg=#121212 accent=#FE5716 */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #ECEAE4;
  --bg-alt: #E3DFD5;
  --fg: #121212;
  --fg-soft: #2B2A27;
  --muted: #6E6B63;
  --accent: #FE5716;
  --accent-deep: #D8410A;
  --accent-2: #1E7A69;
  --dark: #121212;
  --dark-soft: #1C1B19;
  --border: rgba(18, 18, 18, 0.14);
  --border-strong: rgba(18, 18, 18, 0.34);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; margin: 0; letter-spacing: -0.02em; line-height: 1.02; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: inline-block;
}
.accent-txt { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 234, 228, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(18,18,18,0.06), 0 8px 30px -18px rgba(18,18,18,0.4);
  border-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  border-radius: 7px;
}
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 30px; }
  .nav a {
    font-family: var(--mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--fg-soft);
    transition: color .2s var(--ease);
  }
  .nav a:hover { color: var(--accent); }
}
.header__cta { display: none; }
@media (min-width: 900px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--fg);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .header__cta:hover { background: var(--accent); transform: translateY(-1px); }
}
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px; height: 2px; background: var(--fg); display: block;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 99;
  background: var(--bg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  padding: 32px 24px 48px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .header__cta {
  display: inline-flex; margin-top: 24px;
  padding: 14px 26px; background: var(--accent); color: #fff;
  border-radius: 999px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero__top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__wordmark {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.86;
  font-size: clamp(3.4rem, 15vw, 12rem);
  color: var(--fg);
  margin: 0;
}
.hero__wordmark .dot { color: var(--accent); }
.hero__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 44px;
}
.hero__tagline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 620px;
}
.hero__meta {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
}
.hero__meta a { color: var(--accent); }

/* Rotating circular badge */
.spin-badge {
  position: relative;
  width: 128px; height: 128px;
  flex: none;
}
.spin-badge svg { width: 100%; height: 100%; animation: spin 20s linear infinite; }
.spin-badge text { font-family: var(--mono); font-size: 8.2px; letter-spacing: 0.14em; fill: var(--fg); text-transform: uppercase; }
.spin-badge__core {
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-weight: 900; font-size: 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin-badge svg { animation: none; } }

.hero__stickers {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 46px; align-items: center;
}
.sticker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--fg-soft);
}
.sticker--fill { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.sticker--teal { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }

/* ---------- Sections ---------- */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark .eyebrow { color: rgba(236,234,228,0.6); }
.section--dark .muted { color: rgba(236,234,228,0.65); }

.sec-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
}
.sec-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  letter-spacing: -0.03em;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.0;
}
.sec-head p { max-width: 380px; color: var(--muted); font-size: 16px; }

/* Manifesto statement */
.manifesto__text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 1080px;
}
.manifesto__text em { font-style: normal; color: var(--accent); }
.manifesto__foot {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 20px 60px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.manifesto__foot p { max-width: 460px; color: var(--fg-soft); font-size: 17px; line-height: 1.72; }

/* Services numbered list */
.svc-list { border-top: 1px solid var(--border-strong); }
.svc-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
@media (min-width: 860px) {
  .svc-item { grid-template-columns: 72px 1fr 1.15fr; gap: 40px; align-items: start; }
}
.svc-item:hover { background: rgba(254,87,22,0.04); }
.svc-num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; padding-top: 8px; }
.svc-title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.02em; line-height: 1.05; }
.svc-body { color: var(--fg-soft); font-size: 16.5px; line-height: 1.7; }
.svc-body .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-body .tags span {
  font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted);
}

/* Stats band */
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 26px; }
.section--dark .stat { background: var(--dark); }
.section--alt .stat { background: var(--bg-alt); }
.stat__num { font-family: var(--serif); font-weight: 900; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num .accent-txt { color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* Cards grid (work / spotlights / events) */
.grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -14px rgba(0,0,0,0.22); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 24px 28px; }
.card__kicker { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.card__title { font-family: var(--serif); font-weight: 700; font-size: 1.42rem; letter-spacing: -0.02em; margin-top: 10px; line-height: 1.1; }
.card__text { margin-top: 12px; color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; }
.card__link { margin-top: 18px; display: inline-flex; gap: 8px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); }
.card__link .arw { transition: transform .25s var(--ease); }
.card:hover .card__link .arw { transform: translateX(4px); }

/* Event / community list */
.event {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  padding: 30px 0; border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) { .event { grid-template-columns: 130px 1fr auto; gap: 34px; align-items: center; } }
.event__date { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.06em; }
.event__title { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.event__meta { font-size: 14px; color: var(--muted); }
.event__link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); display: inline-flex; gap: 6px; }

/* Quote / spotlight text card */
.quote-card {
  padding: 40px 30px 34px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}
.section--alt .quote-card { background: var(--bg); }
.quote-card__mark { font-family: var(--serif); font-weight: 900; font-size: 3rem; line-height: 0.6; color: var(--accent); }
.quote-card__text { margin-top: 14px; font-family: var(--serif); font-weight: 500; font-size: 1.28rem; letter-spacing: -0.01em; line-height: 1.35; }
.quote-card__who { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  font-family: var(--serif); font-weight: 800; font-size: 15px; letter-spacing: 0;
}
.quote-card__name { font-weight: 600; font-size: 15px; }
.quote-card__role { font-size: 13px; color: var(--muted); }
.placeholder-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; display: block; margin-top: 8px; }

/* Big dark manifesto */
.big-statement {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.big-statement em { font-style: normal; color: var(--accent); }

/* Rotated side label */
.side-label {
  display: none;
}
@media (min-width: 1100px) {
  .side-label {
    display: block;
    position: absolute; left: 0; top: 50%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: left center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  }
}

/* CTA */
.cta-block {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  display: grid; gap: 30px;
}
@media (min-width: 900px) { .cta-block { grid-template-columns: 1.4fr 1fr; align-items: end; } }
.cta-block h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.03em; line-height: 1.0; }
.cta-block p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 420px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { transform: translateY(-2px); background: #000; }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--ghost-light { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--accent); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--border-strong); padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-info .row { padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-info .row:first-of-type { border-top: 1px solid var(--border); }
.contact-info .k { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.contact-info .v { margin-top: 6px; font-size: 17px; color: var(--fg); }
.contact-info .v a { color: var(--accent); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border-strong);
  padding: 14px 16px; border-radius: 10px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(254,87,22,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.form__consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.form__consent a { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border-strong); }
.faq details { border-bottom: 1px solid var(--border); padding: 8px 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.01em; line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 20px;
  font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 40px 24px 0; color: var(--fg-soft); font-size: 16.5px; line-height: 1.72; max-width: 780px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: 130px 0 60px; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.92;
}
.page-hero .lead { margin-top: 30px; max-width: 640px; font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--fg-soft); line-height: 1.5; font-family: var(--serif); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--bg); padding: clamp(64px, 10vw, 120px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand-mark {
  font-family: var(--serif); font-weight: 900; letter-spacing: -0.05em;
  font-size: clamp(2.6rem, 8vw, 5rem); line-height: 0.9;
}
.footer__brand-mark .dot { color: var(--accent); }
.footer__tag { margin-top: 20px; max-width: 320px; color: rgba(236,234,228,0.66); font-size: 15.5px; line-height: 1.6; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(236,234,228,0.5); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(236,234,228,0.86); font-size: 15px; padding: 6px 0; }
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 8vw, 90px); padding-top: 28px;
  border-top: 1px solid rgba(236,234,228,0.16);
  display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(236,234,228,0.55);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Cookie popup ---------- */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px; background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 30px 34px; max-width: 460px; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); }
.cookie-popup__card h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 22px; border: 1px solid var(--border-strong); cursor: pointer; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; flex: 1; transition: background .2s var(--ease), color .2s var(--ease); }
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Misc ---------- */
.lede { font-size: clamp(1.3rem, 3vw, 2rem); font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.28; max-width: 900px; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 34px 0 10px; }
.prose p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.78; margin-bottom: 16px; }
.prose ul { color: var(--fg-soft); font-size: 16.5px; line-height: 1.75; padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.thanks-wrap { min-height: 74vh; display: flex; align-items: center; }
.thanks-wrap .container { text-align: center; }
.thanks-wrap h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 900; letter-spacing: -0.04em; }
.thanks-wrap p { margin: 26px auto 34px; max-width: 520px; color: var(--fg-soft); font-size: 18px; }
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; background: var(--bg-alt); }
.marquee__track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 30s linear infinite; font-family: var(--serif); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -0.02em; }
.marquee__track span { color: var(--fg); }
.marquee__track span.o { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
