/* palette: bg=#0A0C0A fg=#F4F5F2 accent=#8EC11E */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #0A0C0A;        /* dominant near-black background (from reference) */
  --bg-alt: #12160F;    /* alternating dark-green panel */
  --bg-soft: #171B12;   /* slightly raised surface */
  --fg: #F4F5F2;        /* primary text, near-white */
  --fg-soft: #CBD0C2;   /* softer foreground */
  --muted: #868C7C;     /* secondary muted body text */
  --accent: #8EC11E;    /* leaf green highlight (reference) */
  --accent-deep: #6B9915;  /* darker green for hover */
  --clay: #D9702E;      /* warm clay/amber secondary accent */
  --clay-deep: #B85A22;
  --border: rgba(244, 245, 242, 0.12);
  --border-soft: rgba(244, 245, 242, 0.07);
  --serif: 'Archivo', 'Arial Narrow', 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: 1240px;
}

*, *::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.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: 800; }
p { margin: 0 0 1.1em; }
::selection { background: var(--accent); color: #0A0C0A; }

/* ---------- 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(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(56px, 8vw, 110px) 0; }

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

.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--fg-soft); line-height: 1.7; max-width: 60ch; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 12, 10, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,0.9);
  background: rgba(10, 12, 10, 0.9);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--serif); font-weight: 800; font-size: 1.24rem; letter-spacing: -0.02em; }
.brand__dot { width: 9px; height: 9px; background: var(--accent); display: inline-block; transform: translateY(-1px); }
.brand small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 400; }

.nav { display: none; gap: 34px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 13.5px; color: var(--fg-soft); letter-spacing: 0.01em;
  position: relative; padding: 6px 0; transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .3s 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); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #0A0C0A; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(142,193,30,0.5); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 15px; }
.header .btn { display: none; }
@media (min-width: 900px) { .header .btn { display: inline-flex; } }

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

/* ---------- mobile menu ---------- */
.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { height: 2px; width: 100%; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 100px 28px 40px; display: flex; flex-direction: column;
  transform: translateY(-102%); transition: transform .5s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 9vw, 3rem); padding: 14px 0; border-bottom: 1px solid var(--border-soft); letter-spacing: -0.02em; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }
.mobile-menu__meta { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; opacity: 0.5; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 20%, rgba(10,12,10,0.35), rgba(10,12,10,0.95) 70%),
    linear-gradient(90deg, rgba(10,12,10,0.55) 0%, rgba(10,12,10,0.86) 55%, rgba(10,12,10,0.96) 100%);
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__grid { display: grid; gap: 40px; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.hero__text { max-width: 640px; }
@media (min-width: 980px) { .hero__text { grid-column: 2; text-align: left; } }

.hero h1 {
  font-size: clamp(3.1rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.hero h1 .mark {
  display: inline-block; background: var(--accent); color: #0A0C0A;
  padding: 0 .18em; margin-top: .08em; transform: skewX(-4deg);
}
.hero h1 .mark span { display: inline-block; transform: skewX(4deg); }
.hero__sub { font-family: var(--serif); font-weight: 600; font-size: clamp(1.2rem, 3.4vw, 1.9rem); color: var(--accent); letter-spacing: -0.01em; margin: 0 0 22px; }
.hero__body { color: var(--fg-soft); font-size: 16px; line-height: 1.75; max-width: 46ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: 20px; bottom: 30px; z-index: 1;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  display: none;
}
@media (min-width: 980px) { .hero__scroll { display: block; } .hero__scroll::before { content:""; display:block; width:1px; height:44px; background: var(--border); margin: 0 auto 12px; } }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.6rem); line-height: 1.16; letter-spacing: -0.02em;
  max-width: 960px; margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(4rem, 12vw, 8rem); line-height: 0.4; color: var(--accent); display: block; height: .5em; }
.manifesto__by { margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- section head ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 22px; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }
.sec-head--split { display: grid; gap: 24px; max-width: none; align-items: end; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: 1.4fr 1fr; } .sec-head--split p { margin-bottom: 8px; } }

/* ---------- timeline (skeleton D) ---------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline__item {
  position: relative; display: grid; gap: 18px;
  padding: 40px 0; border-top: 1px solid var(--border-soft);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .timeline__item { grid-template-columns: 180px 1fr auto; gap: 48px; align-items: start; }
}
.timeline__item:last-child { border-bottom: 1px solid var(--border-soft); }
.timeline__phase { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.timeline__phase b { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--fg); letter-spacing: -0.02em; margin-top: 6px; opacity: .35; }
.timeline__body h3 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.timeline__body p { color: var(--muted); max-width: 56ch; margin-bottom: 0; font-size: 16px; }
.timeline__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.timeline__item:hover .timeline__phase b { opacity: .7; color: var(--accent); transition: all .4s var(--ease); }

/* ---------- services / cards grid ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-soft); border: 1px solid var(--border-soft);
  padding: 34px 30px; border-radius: 6px;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column; min-height: 260px;
}
.card:hover { transform: translateY(-6px); border-color: rgba(142,193,30,0.4); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8); }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 26px; }
.card h3 { font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }
.card ul { list-style: none; padding: 0; margin: auto 0 0; }
.card li { font-size: 13.5px; color: var(--fg-soft); padding: 7px 0; border-top: 1px solid var(--border-soft); display: flex; align-items: center; gap: 10px; }
.card li::before { content: ""; width: 5px; height: 5px; background: var(--accent); flex: 0 0 auto; }

/* image card (case-study style) */
.work { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .work { grid-template-columns: repeat(2, 1fr); } }
.work__item { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--border-soft); }
.work__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .8s var(--ease); filter: saturate(.9) brightness(.85); }
.work__item:hover img { transform: scale(1.05); }
.work__cap { position: absolute; inset: auto 0 0 0; padding: 26px; background: linear-gradient(transparent, rgba(10,12,10,0.92)); }
.work__cap span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.work__cap h3 { font-size: 1.3rem; letter-spacing: -0.01em; margin-top: 8px; }

/* ---------- stats ---------- */
.stats { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 1px solid var(--border); padding-top: 22px; }
.stat b { font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; display: block; line-height: 1; }
.stat b i { font-style: normal; color: var(--accent); }
.stat span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); display: block; margin-top: 14px; text-transform: uppercase; }

/* ---------- principles / split feature ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--rev .split__media { order: -1; }
.split__media { overflow: hidden; border-radius: 6px; border: 1px solid var(--border-soft); }
.split__media img { aspect-ratio: 5/4; object-fit: cover; width: 100%; filter: saturate(.9) brightness(.9); }
.split__list { list-style: none; padding: 0; margin: 26px 0 0; }
.split__list li { padding: 20px 0; border-top: 1px solid var(--border-soft); display: grid; grid-template-columns: auto 1fr; gap: 18px; }
.split__list b { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.08em; }
.split__list p { margin: 0; color: var(--muted); font-size: 15.5px; }
.split__list strong { display: block; color: var(--fg); font-family: var(--serif); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border-soft); }
.faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; background: var(--accent); transition: transform .35s var(--ease); }
.faq__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__icon::after { top: 0; left: 10px; width: 2px; height: 22px; }
.faq__item[data-open="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a p { color: var(--muted); font-size: 16px; padding: 0 0 28px; max-width: 68ch; margin: 0; }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 26px; text-transform: uppercase; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 38px; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.info-block { padding: 24px 0; border-top: 1px solid var(--border-soft); }
.info-block span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.info-block a, .info-block p { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; margin: 0; }
.info-block a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--fg);
  padding: 14px 16px; border-radius: 5px; font: inherit; font-size: 15px;
  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: #10130D; }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form__consent input { margin-top: 3px; accent-color: var(--accent); }
.form__consent a { color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__grid { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand .brand { font-size: 1.5rem; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer__col a { display: block; color: var(--fg-soft); font-size: 15px; padding: 7px 0; transition: color .25s var(--ease), padding .25s var(--ease); }
.footer__col a:hover { color: var(--accent); padding-left: 6px; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.03em;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom a:hover { color: var(--accent); }

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

/* ---------- 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-soft); border:1px solid var(--border); padding:32px 36px; max-width:480px; border-radius:8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }
.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:14px; font-weight: 600; transition: all .3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--accent); }
.cookie-popup__actions button:last-child { background:var(--accent); color:#0A0C0A; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- misc article/legal ---------- */
.page-head { padding: 150px 0 clamp(40px, 6vw, 70px); border-bottom: 1px solid var(--border-soft); }
.page-head h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; }
.page-head p { color: var(--muted); margin-top: 22px; max-width: 60ch; }
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); letter-spacing: -0.02em; margin: 54px 0 18px; }
.prose h3 { font-size: 1.2rem; margin: 34px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); }

.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 22px; }
.thanks p { color: var(--muted); margin-bottom: 34px; }
