/* palette: bg=#E8E7E3 fg=#131311 accent=#EC5A13 */
/* fonts: display="Archivo" body="IBM Plex Sans" mono="Fira Code" */

:root {
  --bg: #E8E7E3;         /* dominant light warm-grey background */
  --bg-alt: #DEDCD6;     /* alternating section background */
  --bg-deep: #131311;    /* dark inverted band */
  --fg: #131311;         /* near-black primary text */
  --fg-soft: #2C2A26;    /* slightly lighter fg */
  --muted: #6E6A62;      /* secondary text grey */
  --muted-inv: #A6A29A;  /* secondary on dark */
  --accent: #EC5A13;     /* Braun industrial orange */
  --accent-deep: #C4410C;/* darker accent for hover */
  --line: rgba(19, 19, 17, 0.14);
  --line-strong: rgba(19, 19, 17, 0.30);
  --line-inv: rgba(232, 231, 227, 0.16);

  --serif: 'Archivo', 'Arial Narrow', ui-sans-serif, sans-serif;
  --sans: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Fira Code', ui-monospace, 'SFMono-Regular', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
  --pad: clamp(20px, 5vw, 40px);
}

*, *::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;
  text-rendering: optimizeLegibility;
  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; }
::selection { background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 168px) 0; }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }
.section--dark { background: var(--bg-deep); color: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* ---------- type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--inv { color: var(--muted-inv); }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0 0 22px;
}
.section-head p {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.72;
}
.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.6; color: var(--fg-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn--inv { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.btn--inv:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.arrow-link:hover { gap: 16px; border-color: var(--accent); color: var(--accent); }
.arrow-link .ar { transition: transform .3s var(--ease); }
.arrow-link:hover .ar { transform: translateX(4px); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot { width: 9px; height: 9px; background: var(--accent); display: inline-block; }
.nav { display: none; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.78;
  transition: opacity .25s, color .25s;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: var(--accent); }
.header__cta { display: none; }

/* header over hero (transparent, white text) */
.header--overlay { color: #fff; }
.header--overlay .brand__dot { background: var(--accent); }
/* header scrolled / solid */
.header[data-scrolled="true"] {
  background: rgba(232, 231, 227, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  color: var(--fg);
}
.header--solid {
  background: rgba(232, 231, 227, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  color: var(--fg);
}

/* hamburger */
.menu-toggle {
  width: 44px; height: 44px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; margin-right: -10px;
}
.menu-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.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 */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-deep); color: var(--bg);
  padding: 96px var(--pad) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu[data-open="true"] { transform: translateY(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 11vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-inv);
  display: flex; align-items: baseline; gap: 16px;
}
.mobile-menu a.m-link .num { font-family: var(--mono); font-size: 12px; color: var(--accent); font-weight: 400; }
.mobile-menu a.m-link:hover { color: var(--accent); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted-inv); letter-spacing: 0.06em; }
.mobile-menu__foot a { border-bottom: 1px solid var(--line-inv); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; margin-top: -68px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0) 26%),
    linear-gradient(to top, rgba(232,231,227,0.96) 2%, rgba(232,231,227,0.5) 20%, rgba(232,231,227,0) 46%);
}
.hero__top {
  position: absolute; top: 96px; left: 0; right: 0; z-index: 2;
  color: #fff;
}
.hero__top .eyebrow { color: rgba(255,255,255,0.85); }
.hero__top .eyebrow::before { background: var(--accent); }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vw, 72px); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.6rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0;
  color: var(--fg);
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: flex-end;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}
.hero__meta p { margin: 0; max-width: 42ch; color: var(--fg-soft); font-size: 1.02rem; }
.hero__scroll { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ---------- manifesto / statement ---------- */
.statement { text-align: left; }
.statement p {
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(1.7rem, 4.6vw, 3.3rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  max-width: 20ch;
  margin: 0;
}
.statement--center { text-align: center; margin: 0 auto; }
.statement--center p { max-width: 22ch; margin: 0 auto; }
.statement em { font-style: normal; color: var(--accent); }
.quote-mark { font-family: var(--serif); font-weight: 800; color: var(--accent); font-size: clamp(4rem, 12vw, 9rem); line-height: 0.6; display: block; margin-bottom: 8px; }

/* ---------- work / case cards (full-bleed) ---------- */
.work { display: grid; gap: clamp(14px, 2vw, 22px); }
.workcard {
  position: relative; overflow: hidden;
  min-height: clamp(360px, 56vw, 620px);
  display: flex; align-items: flex-end;
  color: #fff;
  border: 1px solid var(--line);
}
.workcard__media { position: absolute; inset: 0; z-index: 0; }
.workcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.workcard:hover .workcard__media img { transform: scale(1.05); }
.workcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,9,0.82) 0%, rgba(10,10,9,0.25) 42%, rgba(10,10,9,0.1) 100%);
}
.workcard__body { position: relative; z-index: 2; padding: clamp(24px, 4vw, 46px); width: 100%; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; background: rgba(255,255,255,0.92); color: #131311;
}
.tag--accent { background: var(--accent); color: #fff; }
.workcard h3 {
  font-family: var(--serif); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; line-height: 0.98; margin: 0 0 12px;
}
.workcard p { margin: 0; max-width: 46ch; color: rgba(255,255,255,0.82); font-size: 1rem; }
.workcard__index { position: absolute; top: clamp(20px,3vw,34px); right: clamp(20px,3vw,34px); z-index: 2; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }

/* ---------- big services list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 24px;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left .4s var(--ease);
}
.svc-row:hover { padding-left: 12px; }
.svc-row__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; padding-top: 10px; }
.svc-row__main { min-width: 0; }
.svc-row h3 {
  font-family: var(--serif); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 5.4vw, 4rem); letter-spacing: -0.02em; line-height: 0.98; margin: 0 0 14px;
  transition: color .3s var(--ease);
}
.svc-row:hover h3 { color: var(--accent); }
.svc-row p { margin: 0; color: var(--muted); max-width: 60ch; font-size: 1.02rem; }
.svc-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-row__tags span {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-soft); border: 1px solid var(--line); padding: 5px 11px;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-inv); border: 1px solid var(--line-inv); }
.stat { background: var(--bg-deep); padding: clamp(26px, 4vw, 44px) clamp(20px,3vw,32px); }
.stat__num { font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--bg); }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-inv); margin-top: 14px; }

/* ---------- feature grid (cards) ---------- */
.grid { display: grid; gap: clamp(14px, 2vw, 22px); }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.card {
  background: var(--bg); border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); border-color: var(--line-strong); }
.card__k { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 20px; }
.card h3 { font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.01em; line-height: 1.02; margin: 0 0 12px; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; }
.card--alt { background: var(--bg-alt); }
.card ul { list-style: none; margin: 16px 0 0; padding: 0; }
.card ul li { position: relative; padding-left: 20px; font-size: 0.98rem; color: var(--fg-soft); margin-bottom: 8px; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 1px; background: var(--accent); }

/* ---------- principles / editorial ---------- */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
.prose p { color: var(--fg-soft); margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- team (monogram, no faces) ---------- */
.team { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.member { background: var(--bg); padding: clamp(24px,3vw,34px); display: flex; gap: 20px; align-items: flex-start; }
.avatar {
  width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: 0.02em;
}
.member__meta h3 { font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; margin: 2px 0 2px; letter-spacing: -0.01em; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.member__meta p { margin: 12px 0 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); padding: 8px 0; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  padding: 20px 0;
  font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: -0.01em; line-height: 1.15;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { font-family: var(--mono); font-weight: 400; color: var(--accent); font-size: 1.4rem; transition: transform .3s var(--ease); flex: 0 0 auto; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--muted); max-width: 68ch; font-size: 1.02rem; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; }
.cta h2 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 8vw, 6rem); letter-spacing: -0.03em; line-height: 0.94; margin: 0 0 26px; }
.cta p { color: var(--muted-inv); max-width: 52ch; margin: 0 0 34px; font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: clamp(36px, 5vw, 64px); }
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; 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 {
  font-family: var(--sans); font-size: 1rem; color: var(--fg);
  background: var(--bg); border: 1px solid var(--line-strong); padding: 14px 16px;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.contact-info dl { margin: 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.05rem; color: var(--fg-soft); }
.contact-info dd a:hover { color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); color: var(--bg); padding: clamp(56px, 8vw, 96px) 0 40px; }
.footer__top { display: grid; gap: clamp(36px, 5vw, 56px); grid-template-columns: 1fr; }
.footer__brand .brand { font-size: 28px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted-inv); max-width: 40ch; margin: 0 0 24px; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-inv); margin: 0 0 18px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; color: var(--bg); opacity: 0.82; margin-bottom: 10px; font-size: 0.98rem; transition: color .25s, opacity .25s; }
.footer__col a:hover { color: var(--accent); opacity: 1; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px); padding-top: 26px; border-top: 1px solid var(--line-inv);
  display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted-inv);
}
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* ---------- 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; }
  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.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; border: 1px solid var(--line-strong); box-shadow: 0 24px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; letter-spacing: -0.01em; margin: 0 0 12px; }
.cookie-popup__card p { margin: 0; font-size: 0.92rem; color: var(--muted); 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(--line-strong); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s; }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: calc(68px + clamp(56px, 9vw, 120px)) 0 clamp(48px, 7vw, 88px); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.page-hero h1 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(2.8rem, 9vw, 7rem); letter-spacing: -0.03em; line-height: 0.92; margin: 0; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin: 24px 0 0; max-width: 60ch; color: var(--muted); font-size: 1.1rem; }
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--accent); }

/* legal prose */
.legal { max-width: 820px; }
.legal h2 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.legal h3 { font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 1.02rem; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal p a, .legal li a { color: var(--accent); border-bottom: 1px solid var(--line); }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

/* thanks page */
.thanks { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: 120px var(--pad) 80px; }
.thanks__inner { max-width: 640px; }
.thanks h1 { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 8vw, 5.4rem); letter-spacing: -0.03em; line-height: 0.94; margin: 0 0 22px; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--muted); font-size: 1.1rem; margin: 0 auto 32px; max-width: 46ch; }

/* misc utilities */
.mt-cta { margin-top: clamp(40px, 6vw, 64px); }
.center { text-align: center; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.marquee__track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(1.2rem, 2.4vw, 1.8rem); letter-spacing: -0.01em; }
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; color: var(--muted); }
.marquee__track span::after { content: "—"; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- responsive ---------- */
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .nav { display: flex; gap: 34px; }
  .menu-toggle { display: none; }
  .header__cta { display: inline-flex; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .work--split { grid-template-columns: repeat(2, 1fr); }
  .split--2 { grid-template-columns: 0.9fr 1.1fr; }
  .split--sidebar { grid-template-columns: 1fr 2fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer__top { grid-template-columns: 1.4fr 2fr; }
  .hero__meta { flex-wrap: nowrap; }
}
@media (min-width: 1200px) {
  body { font-size: 18px; }
}
