/* palette: bg=#0A0A0A fg=#F2EFE6 accent=#D7263D */
/* fonts: display="Archivo Black" body="Archivo" mono="IBM Plex Mono" */

:root {
  --bg: #0A0A0A;
  --bg-alt: #131313;
  --bg-soft: #161616;
  --fg: #F2EFE6;
  --fg-soft: #DAD5C7;
  --muted: #8A857A;
  --accent: #D7263D;
  --accent-deep: #A41B2D;
  --ink: #1B2A4E;
  --cream: #EFE7D6;
  --border: rgba(242, 239, 230, 0.14);
  --border-strong: rgba(242, 239, 230, 0.28);
  --serif: 'Archivo Black', 'Helvetica Neue', sans-serif;
  --sans: 'Archivo', 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  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; }
p { margin: 0 0 1.2em; }

/* Selection */
::selection { background: var(--accent); color: var(--fg); }

/* ───────────────── CONTAINER ───────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ───────────────── HEADER ───────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.96);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--bg);
  border-radius: 50%;
}
.brand__name {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.nav a.is-active { color: var(--fg); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  margin-right: -10px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ───────────────── HERO ───────────────── */
.hero {
  min-height: 100vh;
  padding: 110px 0 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__wordmark {
  font-family: var(--serif);
  font-size: clamp(4rem, 18vw, 17rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: var(--fg);
}
.hero__wordmark em {
  font-style: normal;
  color: var(--accent);
}
.hero__glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(215, 38, 61, 0.32) 0%, rgba(215, 38, 61, 0.08) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroGlow 9s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes heroGlow {
  0% { transform: translate(-52%, -48%) scale(0.92); opacity: 0.7; }
  100% { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: clamp(40px, 8vw, 100px);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__lede {
  max-width: 460px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.hero__lede strong { color: var(--fg); font-weight: 500; }

@media (max-width: 768px) {
  .hero__meta { flex-direction: column; align-items: flex-start; }
}

/* ───────────────── SECTION BASE ───────────────── */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--cream { background: var(--cream); color: #1A1A1A; }
.section--cream .eyebrow { color: rgba(26,26,26,0.55); }
.section--cream .section__divider { background: rgba(26,26,26,0.18); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(48px, 8vw, 96px);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  text-transform: uppercase;
}
.section__title em { font-style: normal; color: var(--accent); }
.section__body { font-size: 18px; line-height: 1.7; color: var(--fg-soft); max-width: 560px; }
.section__divider { height: 1px; background: var(--border); margin-bottom: 32px; }

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}

/* ───────────────── MANIFESTO ───────────────── */
.manifesto {
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  font-weight: 900;
}
.manifesto p:nth-child(2) { color: var(--muted); }
.manifesto p:nth-child(3) em { font-style: normal; color: var(--accent); }
.manifesto__number {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

/* ───────────────── WORK GRID ───────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px) clamp(24px, 4vw, 48px);
}
.work-card { display: block; }
.work-card__cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.work-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.work-card:hover .work-card__cover img { transform: scale(1.06); }
.work-card__cover--swatch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card__cover--ink { background: #1B2A4E; }
.work-card__cover--magenta { background: #C8154E; }
.work-card__cover--cream { background: #EFE7D6; }
.work-card__cover--olive { background: #232E1F; }
.work-card__symbol {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.work-card__cover--ink .work-card__symbol { color: #EFE7D6; }
.work-card__cover--magenta .work-card__symbol { color: #FFCBD9; }
.work-card__cover--cream .work-card__symbol { color: #C8154E; }
.work-card__cover--olive .work-card__symbol { color: #D7C8A1; }

.work-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-top: 18px;
}
.work-card__title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.work-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

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

/* ───────────────── PULL QUOTE ───────────────── */
.pull-quote {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
}
.pull-quote__mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.7;
  color: var(--accent);
  margin-bottom: -40px;
  display: block;
}
.pull-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.pull-quote__attr {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.pull-quote__attr::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted);
}

/* ───────────────── SERVICES (numbered list) ───────────────── */
.services-list { border-top: 1px solid var(--border-strong); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr 60px;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px) 0;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), padding .3s var(--ease);
  position: relative;
}
.service-row:hover { background: rgba(215, 38, 61, 0.04); padding-left: 12px; padding-right: 12px; }
.service-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.service-row__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}
.service-row__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
}
.service-row__arrow {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--muted);
  transition: color .3s var(--ease), transform .3s var(--ease);
  justify-self: end;
}
.service-row:hover .service-row__arrow { color: var(--accent); transform: translateX(6px); }

@media (max-width: 880px) {
  .service-row { grid-template-columns: 50px 1fr; gap: 16px 20px; }
  .service-row__body { grid-column: 2; }
  .service-row__arrow { display: none; }
}

/* ───────────────── ESSAY (long-form) ───────────────── */
.essay {
  max-width: 740px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.78;
}
.essay p { margin-bottom: 1.4em; color: var(--fg-soft); }
.essay p:first-of-type::first-line { color: var(--fg); font-weight: 500; letter-spacing: 0.02em; }
.essay p strong { color: var(--fg); font-weight: 600; }
.essay h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 2.2em 0 0.8em;
  color: var(--fg);
}
.essay__dropcap::first-letter {
  font-family: var(--serif);
  font-size: 5.2em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

/* ───────────────── METRICS BAND ───────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.metric {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
}
.metric:last-child { border-right: 0; }
.metric__value {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  display: block;
  color: var(--fg);
}
.metric__value em { font-style: normal; color: var(--accent); }
.metric__label {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* ───────────────── TEAM (monogram) ───────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { padding: 0; }
.avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  background: var(--bg-soft);
  color: var(--fg);
  border: 1px solid var(--border);
}
.team-card:nth-child(1) .avatar { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.team-card:nth-child(2) .avatar { background: #1B2A4E; color: var(--cream); border-color: #1B2A4E; }
.team-card:nth-child(3) .avatar { background: var(--cream); color: var(--accent); border-color: var(--cream); }
.team-card:nth-child(4) .avatar { background: #232E1F; color: var(--cream); border-color: #232E1F; }
.team-card__name {
  font-family: var(--serif);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.team-card__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 0;
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───────────────── CTA SECTION ───────────────── */
.cta {
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: left;
  background: var(--bg);
  border-top: 1px solid var(--border-strong);
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  text-transform: uppercase;
}
.cta__title em { font-style: normal; color: var(--accent); }
.cta__row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--fg);
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn__arrow { font-size: 16px; }

/* ───────────────── CONTACT GRID ───────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
.contact-block { margin-bottom: 40px; }
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-block__value {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1.15;
}
.contact-block__value a { display: inline-block; transition: color .25s var(--ease); }
.contact-block__value a:hover { color: var(--accent); }

.form {
  background: var(--bg-soft);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
}
.form__field { margin-bottom: 22px; }
.form__field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color .25s var(--ease);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus { outline: 0; border-bottom-color: var(--accent); }
.form__field textarea { resize: vertical; min-height: 120px; }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin: 24px 0;
  line-height: 1.5;
}
.form__consent input { margin-top: 4px; }
.form__consent a { color: var(--fg-soft); text-decoration: underline; }
.form button[type="submit"] {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .25s var(--ease);
}
.form button[type="submit"]:hover { background: var(--accent-deep); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────────────── FAQ ───────────────── */
.faq { border-top: 1px solid var(--border-strong); }
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
}
.faq__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 6px;
}
.faq__q {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.faq__a { font-size: 17px; color: var(--fg-soft); line-height: 1.7; margin: 0; max-width: 720px; }

/* ───────────────── FOOTER ───────────────── */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-strong);
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 12px; font-size: 14px; color: var(--fg-soft); }
.footer__col a:hover { color: var(--accent); }
.footer__brand .brand__name { font-size: 18px; }
.footer__tag { margin-top: 20px; max-width: 320px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.footer__bigmark {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 17rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 60px 0 40px;
  color: var(--fg);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer__bigmark em { font-style: normal; color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer__bottom a:hover { color: var(--fg); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ───────────────── 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.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  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: 32px 36px;
  max-width: 480px;
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.cookie-popup__card p { font-size: 14px; line-height: 1.6; color: var(--fg-soft); margin-bottom: 8px; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--border-strong);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background .25s var(--ease);
}
.cookie-popup__actions button:hover { background: var(--bg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ───────────────── REVEAL ANIMATION ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ───────────────── LEGAL PAGES ───────────────── */
.legal { max-width: 780px; margin: 0 auto; padding: 60px 0; }
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 16px;
}
.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  text-transform: uppercase;
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}
.legal p, .legal li { font-size: 16px; line-height: 1.78; color: var(--fg-soft); }
.legal ul { padding-left: 20px; margin-bottom: 1.4em; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

/* Thanks page */
.thanks { min-height: 76vh; display: flex; align-items: center; }
.thanks__inner { text-align: left; max-width: 720px; }
.thanks__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.94;
  margin: 0 0 32px;
}
.thanks__title em { font-style: normal; color: var(--accent); }
.thanks p { font-size: 19px; line-height: 1.7; color: var(--fg-soft); margin-bottom: 32px; }
