/* palette: bg=#0C0F14 fg=#F2F0EC accent=#C8623C */
/* fonts: display="Space Grotesk" body="Hanken Grotesk" mono="Space Mono" */

:root {
  --bg: #0C0F14;        /* dominant dark background from reference */
  --bg-alt: #13171F;    /* alternating section background */
  --bg-raise: #191E27;  /* raised card surface */
  --fg: #F2F0EC;        /* primary warm off-white text */
  --fg-soft: #CBCDD2;   /* slightly softer fg */
  --muted: #838994;     /* secondary text */
  --accent: #C8623C;    /* terracotta accent (warm cave lights in reference) */
  --accent-deep: #A44B2A; /* darker accent for hover */
  --glaze: #6E8F76;     /* glazed-green secondary tint */
  --border: rgba(242, 240, 236, 0.14);
  --border-soft: rgba(242, 240, 236, 0.08);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Hanken Grotesk', 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);
  font-size: 18px;
  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: 400; margin: 0; }
p { margin: 0; }

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

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.7; color: var(--fg-soft); max-width: 64ch; }
.muted { color: var(--muted); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(12, 15, 20, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: -0.02em;
}
.brand__mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--bg); font-family: var(--serif); font-weight: 700; font-size: 0.95rem;
}
.nav { display: none; gap: 34px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px; color: var(--fg-soft);
  position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta {
  display: none; font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 11px 22px; border: 1px solid var(--border);
  border-radius: 999px; transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
@media (min-width: 900px) { .header__cta { display: inline-block; } }
.header__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--fg); transition: transform .35s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 96px 24px 40px;
  transform: translateY(-102%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
  color: var(--fg-soft); transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu a:hover { color: var(--accent); padding-left: 10px; }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: -76px; padding-top: 76px;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,15,20,0.55) 0%, rgba(12,15,20,0.15) 35%, rgba(12,15,20,0.85) 100%),
    linear-gradient(90deg, rgba(12,15,20,0.7) 0%, rgba(12,15,20,0.1) 60%);
}
.hero__inner { width: 100%; padding-bottom: clamp(56px, 9vw, 120px); padding-top: clamp(80px, 12vw, 140px); }
.hero h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.98; letter-spacing: -0.035em; font-weight: 300;
  max-width: 15ch; margin: 22px 0 0;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 30px; max-width: 46ch; font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--fg-soft); }
.hero__row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; align-items: center; }
.hero__cards {
  display: none; position: absolute; right: 32px; bottom: 40px; gap: 14px; z-index: 2;
}
@media (min-width: 1024px) { .hero__cards { display: flex; } }
.hero__card {
  width: 170px; border-radius: 10px; overflow: hidden; position: relative;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.5);
}
.hero__card img { height: 108px; object-fit: cover; }
.hero__card span {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg); background: rgba(12,15,20,0.6); padding: 3px 8px; border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--accent); color: #14100c;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 14px 34px -12px rgba(200,98,60,0.6); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn--ghost:hover { background: rgba(242,240,236,0.06); box-shadow: none; border-color: var(--fg-soft); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg); border-bottom: 1px solid var(--border);
  padding-bottom: 4px; transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Section heading ---------- */
.sec-head { max-width: 900px; margin-bottom: clamp(48px, 6vw, 88px); }
.sec-head h2 {
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.025em; font-weight: 300;
}
.sec-head p { margin-top: 26px; }
.sec-head--split { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: 1.2fr 1fr; align-items: end; } }

/* ---------- Intro / manifesto ---------- */
.manifesto { background: var(--bg-alt); text-align: center; }
.manifesto p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3.7rem); line-height: 1.18; letter-spacing: -0.02em;
  max-width: 18ch; margin: 0 auto; color: var(--fg);
}
.manifesto p em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif); font-size: clamp(5rem, 14vw, 11rem); line-height: 0.6;
  color: var(--accent); opacity: 0.35; display: block; margin-bottom: 10px;
}

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--border-soft); }
.svc-row {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  padding: clamp(30px, 4vw, 52px) 0; border-bottom: 1px solid var(--border-soft);
  transition: background .4s var(--ease);
  position: relative;
}
@media (min-width: 860px) {
  .svc-row { grid-template-columns: 88px 1fr 1.2fr auto; align-items: start; gap: 34px; }
}
.svc-row:hover { background: rgba(242,240,236,0.02); }
.svc-row__num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; padding-top: 6px; }
.svc-row__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; letter-spacing: -0.02em; }
.svc-row__desc { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.svc-row__link { align-self: center; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 680px) { .grid--3 { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--bg-raise); border: 1px solid var(--border-soft);
  border-radius: 14px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  box-shadow: 0 4px 24px -6px rgba(0,0,0,0.4);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6); border-color: var(--border); }
.card__media { aspect-ratio: 16/11; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 30px; }
.card__tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.card__body h3 { font-size: 1.35rem; font-weight: 400; letter-spacing: -0.01em; margin: 12px 0 12px; }
.card__body p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }

/* work cards (editorial, image-forward) */
.work { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .work { grid-template-columns: 1fr 1fr; gap: 48px 40px; } }
.work__item { }
.work__item:nth-child(odd) { }
@media (min-width: 800px) { .work__item:nth-child(even) { margin-top: 64px; } }
.work__media { aspect-ratio: 4/3; overflow: hidden; border-radius: 14px; border: 1px solid var(--border-soft); }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work__item:hover .work__media img { transform: scale(1.05); }
.work__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 22px; gap: 20px; }
.work__meta h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 400; letter-spacing: -0.02em; }
.work__meta span { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.work__item p { margin-top: 12px; color: var(--muted); font-size: 1rem; max-width: 48ch; }

/* ---------- Cinematic band ---------- */
.band { position: relative; overflow: hidden; padding: clamp(120px, 20vw, 240px) 0; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,15,20,0.9) 0%, rgba(12,15,20,0.55) 55%, rgba(12,15,20,0.3) 100%); }
.band__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 20ch; }
.band__cite { margin-top: 30px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-soft); }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 1px solid var(--border); padding-top: 24px; }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num span { color: var(--accent); }
.stat__label { margin-top: 12px; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* ---------- Approach / principles ---------- */
.pillars { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: 32px; border: 1px solid var(--border-soft); border-radius: 14px; background: var(--bg-alt); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.pillar:hover { border-color: var(--border); transform: translateY(-4px); }
.pillar__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,98,60,0.14); display: grid; place-items: center; color: var(--accent); margin-bottom: 22px; }
.pillar h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.01em; }
.pillar p { color: var(--muted); font-size: 0.98rem; line-height: 1.68; }

/* ---------- Team / principles (text avatars) ---------- */
.team { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .team { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .team { grid-template-columns: repeat(3, 1fr); } }
.person { border: 1px solid var(--border-soft); border-radius: 14px; padding: 28px; background: var(--bg-alt); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.person:hover { border-color: var(--border); transform: translateY(-4px); }
.avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: #14100c; margin-bottom: 22px; }
.person h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 4px; }
.person__role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.person p { color: var(--muted); font-size: 0.95rem; line-height: 1.62; margin-top: 16px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote { border: 1px solid var(--border-soft); border-radius: 16px; padding: 38px; background: var(--bg-alt); }
.quote p { font-family: var(--serif); font-weight: 300; font-size: 1.35rem; line-height: 1.45; letter-spacing: -0.01em; }
.quote footer { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 44px; height: 44px; font-size: 0.95rem; margin: 0; }
.quote cite { font-style: normal; }
.quote cite b { display: block; font-weight: 500; font-family: var(--sans); }
.quote cite span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--border-soft); }
.faq details { border-bottom: 1px solid var(--border-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 400; letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 1.4rem; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details p { padding: 0 40px 30px 0; color: var(--muted); font-size: 1.02rem; line-height: 1.72; }

/* ---------- CTA ---------- */
.cta { background: var(--bg-alt); text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 300; max-width: 16ch; margin: 0 auto; }
.cta p { margin: 26px auto 0; max-width: 52ch; color: var(--fg-soft); }
.cta__row { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info dl { margin: 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.08rem; color: var(--fg-soft); }
.contact-info a:hover { color: var(--accent); }

form.lead-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.12em; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: 10px;
  padding: 14px 16px; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--bg-raise); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; gap: 20px; }
@media (min-width: 620px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-note a { color: var(--fg-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { background: #090B0F; border-top: 1px solid var(--border-soft); padding: clamp(64px, 8vw, 108px) 0 40px; }
.footer__top { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { font-size: 1.4rem; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.footer__col a { display: block; padding: 7px 0; color: var(--fg-soft); font-size: 0.98rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__col a:hover { color: var(--accent); padding-left: 5px; }
.footer__bottom { margin-top: clamp(48px, 7vw, 88px); padding-top: 30px; border-top: 1px solid var(--border-soft); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer__bottom p, .footer__bottom a { font-size: 0.85rem; color: var(--muted); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--fg); }

/* ---------- 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; }
  .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; padding: 24px; background: rgba(0,0,0,0.5); 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-raise); padding: 32px 36px; max-width: 480px; border-radius: 14px; border: 1px solid var(--border-soft); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 0.92rem; line-height: 1.62; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); border-radius: 999px; cursor: pointer; font-size: 13px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; transition: background .3s var(--ease), color .3s var(--ease); }
.cookie-popup__actions button:hover { background: rgba(242,240,236,0.06); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #14100c; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- Legal / article pages ---------- */
.page-hero { padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; max-width: 18ch; }
.page-hero p { margin-top: 24px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 400; letter-spacing: -0.02em; margin: 52px 0 18px; }
.prose h3 { font-size: 1.25rem; font-weight: 400; margin: 32px 0 12px; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; line-height: 1.78; }
.prose ul { color: var(--fg-soft); line-height: 1.78; padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); font-weight: 600; }

/* thanks */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.thanks p { margin: 26px auto 40px; max-width: 46ch; color: var(--fg-soft); }
