/* palette: bg=#E7E9F0 fg=#0A0B0D accent=#E0392B */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #E7E9F0;
  --bg-alt: #DCDFE9;
  --fg: #0A0B0D;
  --fg-soft: #26282E;
  --muted: #6A6D78;
  --accent: #E0392B;
  --accent-deep: #B92A1F;
  --border: rgba(10, 11, 13, 0.14);
  --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);
  --maxw: 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;
  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; }

::selection { background: var(--accent); color: #fff; }

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
}

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(231, 233, 240, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  color: var(--fg);
}
.brand__mark svg { width: 26px; height: 26px; display: block; }
.brand__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav { display: none; align-items: center; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-soft);
  transition: color 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }

.header__meta {
  display: none;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
  max-width: 200px;
}
@media (min-width: 1100px) { .header__meta { display: block; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0 8px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.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 {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.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:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__topline .eyebrow { max-width: 60%; }
.hero__note {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}
.hero__title {
  margin: clamp(24px, 5vw, 48px) 0 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.5rem, 16vw, 15rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 0.9fr 1.3fr; }
}
.hero__intro h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__intro h2::before {
  content: "◆";
  color: var(--accent);
  font-size: 13px;
}
.hero__intro p { margin: 0 0 24px; color: var(--fg-soft); font-size: 16px; max-width: 40ch; }
.hero__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ---------- Numbered editorial columns ---------- */
.editorial { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .editorial { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.edit-col { display: flex; flex-direction: column; }
.edit-col__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 22px;
}
.edit-col__media img { width: 100%; height: 100%; object-fit: cover; }
.edit-col h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.edit-col p { margin: 0; color: var(--muted); font-size: 15.5px; }
.edit-col__num {
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  opacity: 0.9;
}
.edit-col__num span { color: var(--accent); }

/* ---------- Big word band ---------- */
.bigword {
  padding: clamp(40px, 8vw, 90px) 0;
  overflow: hidden;
}
.bigword__text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.5rem, 20vw, 20rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--fg);
  white-space: nowrap;
}
.bigword__sub {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.bigword__sub p { margin: 0; max-width: 46ch; color: var(--fg-soft); }
.bigword__sub .eyebrow { align-self: flex-start; }

/* ---------- Section head ---------- */
.section-head { max-width: 820px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 20px 0 0;
}
.section-head p { margin: 20px 0 0; color: var(--muted); font-size: 17px; max-width: 56ch; }

/* ---------- Services grid ---------- */
.services { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .services { grid-template-columns: repeat(2, 1fr); } }
.service {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  transition: background 0.4s var(--ease);
}
@media (min-width: 768px) {
  .service { padding: 44px 36px; }
  .service:nth-child(odd) { border-right: 1px solid var(--border); padding-left: 0; }
  .service:nth-child(even) { padding-right: 0; }
}
.service:hover { background: rgba(10, 11, 13, 0.03); }
.service__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 6px;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.service p { margin: 0 0 16px; color: var(--muted); font-size: 15.5px; }
.service ul { margin: 0; padding: 0; list-style: none; }
.service li {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

/* ---------- Work cards ---------- */
.work-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card {
  display: block;
  transition: transform 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); }
.work-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s var(--ease);
}
.work-card:hover .work-card__media { box-shadow: 0 12px 40px -8px rgba(0,0,0,0.16); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.work-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
}
.work-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Dark manifesto band ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(90px, 14vw, 180px) 0;
  text-align: center;
}
.manifesto .eyebrow { color: rgba(231, 233, 240, 0.6); }
.manifesto .eyebrow::before { background: var(--accent); }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.14;
  max-width: 960px;
  margin: 32px auto 0;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 60px;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr auto; gap: 40px; align-items: center; } }
.step:last-child { border-bottom: 1px solid var(--border); }
.step__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.step__num span { color: var(--accent); }
.step__body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.step__body p { margin: 0; color: var(--muted); font-size: 15.5px; max-width: 60ch; }
.step__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.stat__num span { color: var(--accent); }
.stat__label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Team / principles text cards ---------- */
.principles { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principle {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.principle:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.12); }
.avatar {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  border-radius: 4px;
}
.principle h3 { font-family: var(--serif); font-weight: 700; font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.principle__role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-top: -8px; }
.principle p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 32px;
  background: var(--bg);
}
.quote-card blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.quote-card__meta { display: flex; align-items: center; gap: 14px; }
.quote-card__meta strong { font-weight: 600; font-size: 14px; }
.quote-card__meta span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; }
.faq__item { border-top: 1px solid var(--border); padding: 8px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 24px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq__q .plus { color: var(--accent); font-size: 26px; line-height: 1; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq__item[data-open="true"] .plus { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a p { margin: 0 0 24px; color: var(--muted); font-size: 16px; max-width: 68ch; }

/* ---------- CTA / Form ---------- */
.cta { background: var(--bg-alt); }
.cta__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .cta__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.cta__grid h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 20px 0 0;
}
.cta__grid h2 em { font-style: normal; color: var(--accent); }
.cta__grid > div > p { color: var(--muted); font-size: 16.5px; margin: 22px 0 0; max-width: 46ch; }
.cta__contact { margin-top: 32px; display: grid; gap: 14px; }
.cta__contact a, .cta__contact span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-soft);
  display: block;
}
.cta__contact a:hover { color: var(--accent); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-soft);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; align-items: flex-start; gap: 10px; }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.form__consent label { font-family: var(--sans); font-size: 13px; text-transform: none; letter-spacing: 0; color: var(--muted); line-height: 1.5; }
.form__consent a { color: var(--accent); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: clamp(64px, 9vw, 110px) 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand__name { color: var(--bg); }
.footer__brand p { color: rgba(231,233,240,0.6); font-size: 15px; margin: 20px 0 0; max-width: 40ch; }
.footer__wordmark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  margin: clamp(48px, 8vw, 90px) 0 0;
  color: var(--bg);
}
.footer__wordmark span { color: var(--accent); }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(231,233,240,0.5);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer__col a, .footer__col p { display: block; color: rgba(231,233,240,0.85); font-size: 14.5px; margin: 0 0 12px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(231,233,240,0.18);
}
.footer__bottom p, .footer__bottom a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(231,233,240,0.55);
  margin: 0;
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: clamp(90px, 13vw, 170px) 0 clamp(40px, 6vw, 80px); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 24px 0 0;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--muted); font-size: 18px; margin: 24px 0 0; max-width: 56ch; }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--serif); font-weight: 600; font-size: 19px; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.75; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { font-weight: 600; }

/* ---------- Thanks ---------- */
.thanks { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.thanks h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -0.03em; line-height: 0.95; margin: 20px 0; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--muted); font-size: 18px; max-width: 46ch; margin: 0 auto 32px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- 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); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border-radius: 4px; box-shadow: 0 20px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; margin: 0 0 12px; }
.cookie-popup__card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 13px; font-weight: 500; border-radius: 9999px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:first-child { color: var(--fg-soft); }
.cookie-popup__actions button:first-child: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); color: #fff; }
