/* palette: bg=#FBFAF5 fg=#141210 accent=#E4291F */
/* fonts: display="Archivo Black" body="Archivo" mono="Space Mono" */

:root {
  --bg: #FBFAF5;         /* gallery white */
  --bg-alt: #141210;     /* De Stijl black band */
  --fg: #141210;         /* ink black */
  --fg-soft: #2C2A27;
  --muted: #6A665E;      /* secondary text */
  --accent: #E4291F;     /* Mondrian red */
  --accent-deep: #B71C13;
  --blue: #1D3FCC;       /* Mondrian blue */
  --blue-deep: #142C94;
  --yellow: #F4C21B;     /* Mondrian yellow */
  --line: #141210;       /* thick black grid line */
  --border: rgba(20, 18, 16, 0.14);
  --serif: 'Archivo Black', 'Arial Black', sans-serif;
  --sans: 'Archivo', 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);
  font-size: 18px;
  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; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; }
p { margin: 0; }

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

.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 12px;
  background: var(--accent);
  display: inline-block;
  border: 2px solid var(--line);
}
.eyebrow--blue::before { background: var(--blue); }
.eyebrow--yellow::before { background: var(--yellow); }

.h2 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 60ch;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 3px solid var(--line);
  background: var(--fg);
  color: var(--bg);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 5px 5px 0 0 var(--accent);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 0 var(--accent); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 5px 5px 0 0 var(--line); }
.btn--accent:hover { box-shadow: 7px 7px 0 0 var(--line); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 5px 5px 0 0 var(--line); }
.btn--ghost { background: transparent; color: var(--fg); box-shadow: 5px 5px 0 0 var(--blue); }
.btn--ghost:hover { box-shadow: 7px 7px 0 0 var(--blue); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 3px;
  transition: gap .25s var(--ease);
}
.arrow-link:hover { gap: 16px; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 245, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 3px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header[data-scrolled="true"] { box-shadow: 0 6px 0 -3px var(--accent); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.15rem; letter-spacing: -0.02em; text-transform: uppercase; }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  border: 3px solid var(--line);
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 100% 50% no-repeat,
    linear-gradient(var(--blue) 0 0) 0 100% / 50% 50% no-repeat,
    var(--yellow);
}
.nav { display: none; gap: 30px; align-items: center; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 3px; border-bottom: 3px solid transparent; transition: border-color .2s; }
.nav a:hover, .nav a[aria-current="page"] { border-color: var(--accent); }
.header__cta { display: none; }
@media (min-width: 940px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 3px solid var(--line); }
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 20px; height: 3px; background: var(--fg); transition: transform .3s, opacity .3s; }
.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: 72px 0 0 0; z-index: 99;
  background: var(--bg);
  border-top: 3px solid var(--line);
  transform: translateY(-120%);
  transition: transform .4s var(--ease);
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: none; }
.mobile-menu a { display: block; font-family: var(--serif); font-size: 2rem; text-transform: uppercase; padding: 14px 0; border-bottom: 3px solid var(--line); }
.mobile-menu .btn { margin-top: 26px; width: 100%; justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; border-bottom: 3px solid var(--line); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 0; width: 100%; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero__text { padding: clamp(48px, 9vw, 110px) 20px; }
@media (min-width: 768px) { .hero__text { padding: clamp(48px, 9vw, 120px) 40px; } }
.hero h1 {
  font-size: clamp(3rem, 9.5vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); max-width: 46ch; color: var(--fg-soft); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__meta { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 26px 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.hero__meta b { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--fg); letter-spacing: -0.02em; }

/* De Stijl composition panel on hero right */
.hero__art { position: relative; border-left: 3px solid var(--line); min-height: 340px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
@media (max-width: 899px) { .hero__art { border-left: 0; border-top: 3px solid var(--line); min-height: 60vh; } }
.hero__art > div { border: 1.5px solid var(--line); position: relative; overflow: hidden; }
.blk-red { background: var(--accent); }
.blk-blue { background: var(--blue); }
.blk-yellow { background: var(--yellow); }
.blk-black { background: var(--fg); }
.blk-span2c { grid-column: span 2; }
.blk-span2r { grid-row: span 2; }
.blk-span3r { grid-row: span 3; }
.blk-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

/* ---------- feature trio (mirrors reference cards) ---------- */
.trio { display: grid; grid-template-columns: 1fr; border-top: 3px solid var(--line); }
@media (min-width: 860px) { .trio { grid-template-columns: repeat(3, 1fr); } }
.trio__card { padding: clamp(34px, 4vw, 54px) 28px; border-bottom: 3px solid var(--line); position: relative; }
@media (min-width: 860px) { .trio__card { border-right: 3px solid var(--line); border-bottom: 0; } .trio__card:last-child { border-right: 0; } }
.trio__tag { width: 46px; height: 46px; border: 3px solid var(--line); margin-bottom: 26px; display: grid; place-items: center; font-family: var(--serif); }
.trio__card:nth-child(1) .trio__tag { background: var(--accent); color: #fff; }
.trio__card:nth-child(2) .trio__tag { background: var(--blue); color: #fff; }
.trio__card:nth-child(3) .trio__tag { background: var(--yellow); }
.trio__card h3 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 14px; line-height: 1.05; }
.trio__card p { color: var(--fg-soft); font-size: 1.02rem; }

/* ---------- section header block ---------- */
.sec-head { display: grid; gap: 22px; grid-template-columns: 1fr; margin-bottom: 56px; }
@media (min-width: 900px) { .sec-head { grid-template-columns: 1.1fr 0.9fr; align-items: end; } }

/* ---------- process / how it works ---------- */
.band { background: var(--bg-alt); color: var(--bg); border-top: 3px solid var(--line); border-bottom: 3px solid var(--line); }
.band .eyebrow, .band .h2, .band h3 { color: var(--bg); }
.band .lead, .band p { color: rgba(251, 250, 245, 0.74); }
.steps { display: grid; grid-template-columns: 1fr; gap: 0; border: 3px solid var(--bg); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { padding: 34px 30px; border-bottom: 3px solid var(--bg); position: relative; }
@media (min-width: 800px) { .step:nth-child(odd) { border-right: 3px solid var(--bg); } .step:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 799px) { .step:last-child { border-bottom: 0; } }
.step__n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 16px; }
.step h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.step p { font-size: 1rem; }

/* ---------- manifesto ---------- */
.manifesto { text-align: left; border-bottom: 3px solid var(--line); }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 20ch;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: 7rem; line-height: 0.6; color: var(--blue); display: block; margin-bottom: 8px; }
.manifesto__who { margin-top: 32px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- services list ---------- */
.svc-list { border-top: 3px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  padding: 32px 4px;
  border-bottom: 3px solid var(--line);
  align-items: start;
  transition: background .25s var(--ease), padding .25s var(--ease);
}
@media (min-width: 820px) { .svc-row { grid-template-columns: 88px 1fr 1.1fr auto; gap: 34px; align-items: center; padding: 34px 20px; } }
.svc-row:hover { background: var(--fg); color: var(--bg); padding-left: 26px; }
.svc-row:hover .svc-row__idx, .svc-row:hover p { color: rgba(251,250,245,0.72); }
.svc-row:hover .svc-row__go { background: var(--accent); border-color: var(--bg); color:#fff; }
.svc-row__idx { font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.svc-row h3 { font-size: 1.55rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.02; }
.svc-row p { color: var(--fg-soft); font-size: 1rem; }
.svc-row__go { width: 44px; height: 44px; border: 3px solid var(--line); display: grid; place-items: center; font-size: 18px; transition: all .25s var(--ease); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 3px solid var(--line); border-left: 3px solid var(--line); }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 40px 24px; border-right: 3px solid var(--line); border-bottom: 3px solid var(--line); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.stat:nth-child(1) b { color: var(--accent); }
.stat:nth-child(2) b { color: var(--blue); }
.stat:nth-child(4) b { color: var(--accent); }
.stat span { display: block; margin-top: 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 0; border: 3px solid var(--line); }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { padding: 34px 28px; border-bottom: 3px solid var(--line); }
@media (min-width: 860px) { .quote { border-right: 3px solid var(--line); border-bottom: 0; } .quote:last-child { border-right: 0; } }
.quote p { font-size: 1.08rem; line-height: 1.55; margin-bottom: 26px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border: 3px solid var(--line); display: grid; place-items: center; font-family: var(--serif); font-size: 0.95rem; color: #fff; flex: none; }
.quote:nth-child(1) .avatar { background: var(--accent); }
.quote:nth-child(2) .avatar { background: var(--blue); }
.quote:nth-child(3) .avatar { background: var(--fg); }
.quote__who b { font-family: var(--sans); font-weight: 700; font-size: 0.95rem; display: block; }
.quote__who span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 3px solid var(--line); }
.faq__item { border-bottom: 3px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 28px 4px; font-family: var(--serif); font-size: clamp(1.1rem, 2.2vw, 1.5rem); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
.faq__q .ic { flex: none; width: 34px; height: 34px; border: 3px solid var(--line); display: grid; place-items: center; font-family: var(--mono); font-size: 20px; transition: background .2s, color .2s, transform .3s; }
.faq__item[data-open="true"] .ic { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 4px 30px; max-width: 74ch; color: var(--fg-soft); }
.faq__item[data-open="true"] .faq__a { max-height: 460px; }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: #fff; border-top: 3px solid var(--line); border-bottom: 3px solid var(--line); }
.cta .eyebrow { color: #fff; }
.cta .eyebrow::before { background: #fff; border-color: #fff; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.4rem); line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; max-width: 16ch; margin-bottom: 30px; }
.cta p { color: rgba(255,255,255,0.9); max-width: 52ch; margin-bottom: 34px; font-size: 1.1rem; }
.cta .btn { background: var(--fg); color: #fff; box-shadow: 5px 5px 0 0 #fff; border-color: var(--fg); }
.cta .btn:hover { box-shadow: 7px 7px 0 0 #fff; }

/* ---------- contact form ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1fr; gap: 70px; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 16px;
  border: 3px solid var(--line);
  background: var(--bg);
  font: inherit; font-size: 1rem; color: var(--fg);
  transition: box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; box-shadow: 4px 4px 0 0 var(--blue); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-info { display: grid; gap: 4px; }
.contact-info .info-block { padding: 24px 0; border-bottom: 3px solid var(--line); }
.contact-info .info-block:first-child { border-top: 3px solid var(--line); }
.info-block .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.info-block .v { font-size: 1.12rem; }

/* ---------- footer ---------- */
.footer { background: var(--bg-alt); color: var(--bg); border-top: 3px solid var(--line); }
.footer a { color: rgba(251,250,245,0.78); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; padding: clamp(56px, 8vw, 96px) 0 60px; }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 2.2rem; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.footer__brand .brand__mark { display: inline-block; vertical-align: middle; margin-right: 12px; border-color: var(--bg); }
.footer p { color: rgba(251,250,245,0.66); max-width: 40ch; }
.footer h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 22px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; font-size: 0.98rem; }
.footer__bottom { border-top: 3px solid rgba(251,250,245,0.2); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 16px 30px; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(251,250,245,0.6); }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { border-bottom: 3px solid var(--line); padding: clamp(60px, 10vw, 130px) 0 clamp(48px, 7vw, 80px); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.2rem); line-height: 0.94; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 26px; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero__deco { position: absolute; top: 0; right: 0; height: 100%; width: 120px; display: none; grid-template-rows: repeat(3,1fr); border-left: 3px solid var(--line); }
@media (min-width: 900px) { .page-hero__deco { display: grid; } }
.page-hero__deco > div { border-bottom: 3px solid var(--line); }
.page-hero__deco > div:nth-child(1) { background: var(--yellow); }
.page-hero__deco > div:nth-child(2) { background: var(--blue); }
.page-hero__deco > div:nth-child(3) { background: var(--accent); border-bottom: 0; }

/* ---------- prose (legal) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: -0.01em; margin: 48px 0 16px; line-height: 1.1; }
.prose h3 { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 18px; color: var(--fg-soft); }
.prose ul { margin: 0 0 20px; padding-left: 22px; color: var(--fg-soft); }
.prose li { margin-bottom: 10px; }
.prose a { border-bottom: 2px solid var(--accent); }

/* ---------- 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(20,18,16,0.45); -webkit-backdrop-filter: blur(4px); 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: 30px 32px; max-width: 460px; border: 3px solid var(--line); box-shadow: 9px 9px 0 0 var(--accent); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.cookie-popup__card p { font-size: 0.95rem; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 22px; border: 3px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: transform .2s; }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }

/* ---------- misc ---------- */
.thanks-wrap { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.thanks-wrap h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.98; margin-bottom: 22px; }
.thanks-wrap h1 em { font-style: normal; color: var(--accent); }
.split-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
