/* palette: bg=#F4F3F0 fg=#0C0C0C accent=#EA3A24 */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #F4F3F0;        /* warm off-white — dominant background */
  --bg-alt: #FFFFFF;    /* alternating clean white sections */
  --bg-tint: #ECEAE4;   /* subtle grey tint blocks */
  --fg: #0C0C0C;        /* near-black primary text */
  --fg-soft: #262523;   /* slightly softer foreground */
  --muted: #6E6C66;     /* secondary text */
  --accent: #EA3A24;    /* warm red accent from reference CTA */
  --accent-deep: #C22C16; /* darker red for hover */
  --ink: #000000;       /* pure black ticker bar */
  --border: rgba(12, 12, 12, 0.14);
  --border-soft: rgba(12, 12, 12, 0.08);

  --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 26px;

  --container: 1280px;
  --pad: clamp(20px, 5vw, 32px);
}

*, *::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; }
::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, 160px) 0;
}
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

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

/* ─────────────────────────  TYPOGRAPHY  ───────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--fg);
}
.display {
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
}
.h2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.025em; line-height: 1.0; }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.62; color: var(--fg-soft); }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head p { color: var(--muted); margin-top: 20px; }

/* ─────────────────────────  BUTTONS / LINKS  ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { background: #000; }
.btn--ghost { border: 1.5px solid var(--fg); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn--light { background: var(--bg); color: var(--fg); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.arrow-link span { transition: transform 0.3s var(--ease); }
.arrow-link:hover { color: var(--accent); gap: 12px; }
.arrow-link:hover span { transform: translateX(3px); }

/* ─────────────────────────  TICKER BAR  ───────────────────────── */
.ticker {
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px var(--pad);
  position: relative;
  z-index: 120;
}
.ticker__left {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}
.ticker__badge {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  flex: none;
}
.ticker__msg {
  color: rgba(255,255,255,0.78);
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker__cta {
  flex: none;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}
.ticker__cta:hover { background: #fff; color: var(--ink); }

/* ─────────────────────────  HEADER  ───────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 240, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 10px 30px -18px rgba(0,0,0,0.4);
  border-color: var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.03em;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__mark rect, .brand__mark path { fill: var(--fg); }
.brand__mark .accent { fill: var(--accent); }

.nav { display: none; }
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--fg); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s 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 */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg);
  padding: 110px var(--pad) 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a.mobile-menu__link {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a.mobile-menu__link span { color: var(--accent); font-family: var(--mono); font-size: 14px; font-weight: 400; }
.mobile-menu__foot { margin-top: auto; padding-top: 30px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.mobile-menu__foot a { color: var(--accent); }

/* ─────────────────────────  HERO  ───────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 74px - 36px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 90px) 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
  width: 100%;
}
.hero__copy { max-width: 760px; }
.hero__pre {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--fg-soft);
  margin: 0 0 6px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--muted);
  margin: 28px 0 0;
  max-width: 500px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__wordmark {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 46px;
  color: var(--fg);
  opacity: 0.9;
}
.hero__wordmark::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--accent);
  margin-top: 10px;
}

/* Hero image cluster */
.hero__cluster {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-inline: auto;
}
.hero__cluster figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--bg-tint); }
.hero__cluster img { width: 100%; height: 100%; object-fit: cover; }
.hero__cluster .zoom { animation: heroZoom 9s var(--ease) forwards; }
.hero__cluster .c1 { grid-row: span 2; border-radius: var(--radius-lg); }
.hero__cluster .c2 { border-top-right-radius: 60px; }
.hero__cluster .c3 { border-bottom-right-radius: 60px; }
.hero__stat {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  max-width: 160px;
  line-height: 1.35;
  z-index: 2;
}
.hero__stat strong { display: block; font-family: var(--display); font-size: 22px; letter-spacing: -0.02em; }

@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

/* ─────────────────────────  MARQUEE / CLIENTS  ───────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollX 32s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 0.6em; opacity: 1; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────  WORK / CASE GRID  ───────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.case {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
}
.case:hover { transform: translateY(-6px); box-shadow: 0 18px 46px -12px rgba(0,0,0,0.20); }
.case__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-tint); }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.case:hover .case__media img { transform: scale(1.05); }
.case__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12,12,12,0.82);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.case__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.case__title { font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 700; letter-spacing: -0.02em; }
.case__desc { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0; }
.case__foot { margin-top: auto; padding-top: 6px; display: flex; justify-content: space-between; align-items: center; }
.case__metric { font-family: var(--display); font-weight: 800; color: var(--accent); font-size: 1.05rem; }

.work-grid--feature .case--big { grid-column: 1 / -1; }
.case--big .case__media { aspect-ratio: 21 / 9; }

/* ─────────────────────────  FEATURED CASE (deep dive)  ───────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.feature__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-tint);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.feature__body h2 { margin-bottom: 18px; }
.feature__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 0; }
.feature__list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 15px;
}
.feature__list li:last-child { border-bottom: 1px solid var(--border-soft); }
.feature__list dt { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.feature__list b { font-family: var(--display); font-weight: 700; }

/* ─────────────────────────  SERVICES LIST  ───────────────────────── */
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding 0.4s var(--ease);
  position: relative;
}
.svc-row__num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.svc-row__title { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.svc-row__desc { color: var(--muted); font-size: 16px; max-width: 560px; }
.svc-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.svc-row__tags span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--fg-soft); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px;
}
.svc-row:hover .svc-row__title { color: var(--accent); }
.svc-row__title { transition: color 0.3s var(--ease); }

/* Cards variant for services grid */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.scard {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 30px 34px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.06);
}
.scard:hover { transform: translateY(-5px); box-shadow: 0 14px 40px -8px rgba(0,0,0,0.14); }
.scard__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 900; font-size: 20px;
  margin-bottom: 22px;
}
.scard h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.scard p { color: var(--muted); font-size: 15.5px; line-height: 1.62; margin: 0; }

/* ─────────────────────────  STATS DARK BAND  ───────────────────────── */
.band-dark { background: var(--fg); color: var(--bg); }
.band-dark .eyebrow { color: rgba(255,255,255,0.55); }
.band-dark .eyebrow::before { background: var(--accent); }
.band-dark h2 { color: #fff; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  margin-top: clamp(40px, 6vw, 64px);
}
.stat__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 12px; line-height: 1.5; }

/* ─────────────────────────  MANIFESTO  ───────────────────────── */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
}
.manifesto__by { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 40px; }

/* ─────────────────────────  TESTIMONIALS  ───────────────────────── */
.quotes { display: grid; grid-template-columns: 1fr; gap: 22px; }
.quote {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote p { font-size: 1.08rem; line-height: 1.6; color: var(--fg-soft); margin: 0; }
.quote__foot { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar--mono {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 16px; color: #fff;
  letter-spacing: -0.02em;
}
.quote__who b { display: block; font-weight: 700; font-size: 15px; }
.quote__who span { font-size: 13px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.03em; }
.quote__ph { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* ─────────────────────────  FAQ  ───────────────────────── */
.faq { border-top: 1px solid var(--border); max-width: 900px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: -0.02em;
  position: relative;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display); font-weight: 500;
  font-size: 28px; color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq__answer { padding: 0 44px 26px 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq__answer p { margin: 0 0 0.8em; }
.faq__answer p:last-child { margin: 0; }

/* ─────────────────────────  CONTACT / FORM  ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}
.contact-info dl { margin: 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.05rem; font-weight: 500; color: var(--fg); }
.contact-info dd a:hover { color: var(--accent); }

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--fg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(234, 58, 36, 0.12);
}
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.55; }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--accent); }
.form__consent a { color: var(--accent); text-decoration: underline; }
.form button[type="submit"] { justify-self: start; margin-top: 6px; }

/* ─────────────────────────  CTA BLOCK  ───────────────────────── */
.cta-block {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta-block h2 { color: #fff; font-size: clamp(2.2rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
.cta-block p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 22px auto 0; font-size: 1.1rem; }
.cta-block .btn { margin-top: 38px; }
.cta-block .btn--light:hover { background: #fff; transform: translateY(-2px); }

/* ─────────────────────────  PAGE HERO (inner pages)  ───────────────────────── */
.page-hero { padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 70px); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 14px 0 0;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { max-width: 640px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* Split content block */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-tint); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.rich p { color: var(--fg-soft); }
.rich p + p { margin-top: 1.2em; }

/* value list */
.values { display: grid; grid-template-columns: 1fr; gap: 2px; border-top: 1px solid var(--border); }
.value { padding: 30px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr; gap: 8px; }
.value__k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.value h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.value p { color: var(--muted); font-size: 15.5px; margin: 0; max-width: 560px; }

/* team text cards (monograms, no faces) */
.team { display: grid; grid-template-columns: 1fr; gap: 18px; }
.tcard {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--bg-alt);
  display: flex; flex-direction: column; gap: 16px;
}
.tcard__top { display: flex; align-items: center; gap: 14px; }
.tcard h3 { font-size: 1.15rem; font-weight: 700; }
.tcard__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.tcard p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ─────────────────────────  LEGAL / PROSE  ───────────────────────── */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin: 48px 0 14px; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 30px 0 10px; }
.prose p { color: var(--fg-soft); margin: 0 0 1.1em; font-size: 16.5px; line-height: 1.75; }
.prose ul { margin: 0 0 1.4em; padding-left: 20px; color: var(--fg-soft); }
.prose li { margin-bottom: 0.5em; line-height: 1.7; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.prose strong { color: var(--fg); }

/* Thank-you page */
.thanks { min-height: 66vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks__mark {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 30px;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 900; font-size: 34px;
}
.thanks h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: -0.04em; line-height: 0.94; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--muted); font-size: 1.1rem; margin: 24px auto 0; max-width: 480px; }
.thanks__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ─────────────────────────  FOOTER  ───────────────────────── */
.footer { background: var(--fg); color: var(--bg); padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; }
.footer__brand { max-width: 340px; }
.footer__mark {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 4rem); letter-spacing: -0.04em;
  line-height: 0.9;
}
.footer__mark::after { content: ""; display: block; width: 60px; height: 4px; background: var(--accent); margin-top: 14px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 22px; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col address {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.6;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: var(--accent); }

/* ─────────────────────────  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); 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: 8px; border: 1px solid var(--border); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.cookie-popup__card h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 10px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.62; color: var(--muted); margin: 0; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; font-weight: 600; border-radius: 999px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-tint); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ─────────────────────────  REVEAL  ───────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.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__cluster .zoom, .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────  RESPONSIVE  ───────────────────────── */
@media (min-width: 640px) {
  .work-grid, .card-grid, .quotes, .team { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .svc-row { grid-template-columns: 0.5fr 2fr 2.5fr; gap: 30px; align-items: baseline; }
  .value { grid-template-columns: 1fr 2fr; gap: 30px; }
  .split { grid-template-columns: 1.1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .feature { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer__top { grid-template-columns: 1.3fr 2fr; }
}
@media (min-width: 1024px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero__grid { grid-template-columns: 0.9fr 1.1fr; }
  .hero__copy { order: 2; }
  .hero__cluster { order: 1; margin-inline: 0; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid--feature { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
}
