/* palette: bg=#C8C7C2 fg=#1A1916 accent=#2F4A57 */
/* fonts: display="Archivo" body="Archivo" mono="IBM Plex Mono" */

:root {
  --bg: #C8C7C2;        /* concrete grey — dominant background */
  --bg-alt: #BBB9B3;    /* deeper concrete — alternating section */
  --bg-dark: #16150F;   /* dark band */
  --fg: #1A1916;        /* near-black foreground */
  --fg-soft: #34322C;   /* softened foreground */
  --muted: #6A6860;     /* secondary text */
  --line: #908E86;      /* hairline on concrete */
  --accent: #2F4A57;    /* steel-blue accent (hero/CTA) */
  --accent-deep: #213640; /* darker accent for hover */
  --border: rgba(26, 25, 22, 0.16);
  --border-soft: rgba(26, 25, 22, 0.10);

  --serif: 'Instrument Serif', Georgia, serif;
  --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1280px;
  --pad: 20px;
}

*, *::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; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #EDECE7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--fg);
  display: inline-block;
}
.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(200, 199, 194, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  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: 1px solid var(--border-soft);
  box-shadow: 0 1px 24px -10px rgba(0,0,0,0.5);
}
.header__inner {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.header__index {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-indent: 0.30em;
  text-align: center;
  white-space: nowrap;
}
.nav { display: none; }
.nav ul { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 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(--accent); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--fg);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px var(--pad) 60px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 11vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: transparent; color: var(--fg); transform: translateY(-2px); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #EDECE7; }
.btn--accent:hover { background: transparent; color: var(--accent); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #CECDC8 0%, #C2C0BA 60%, #B6B4AD 100%);
}
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--border-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
  background-size: 25% 33.33%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(36px, 7vw, 80px);
}
.hero__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: clamp(40px, 9vw, 90px);
}
.hero__statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 4.4vw, 2.3rem);
  line-height: 1.25;
  max-width: 30ch;
  color: var(--fg);
}
.hero__lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 46ch;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.5rem, 15vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__meta {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(36px, 7vw, 80px);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  display: none;
}

/* ---------- sections ---------- */
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #D6D4CD; }
.section--dark .eyebrow { color: #8E8C84; }
.section--dark .eyebrow::before { background: #D6D4CD; }

.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.sec-head h2 em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.sec-head p { margin-top: 24px; color: var(--fg-soft); max-width: 56ch; }
.section--dark .sec-head p { color: #ABA9A1; }

/* ---------- full-bleed band ---------- */
.band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0E0E0C;
}
.band img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,12,0.2) 0%, rgba(14,14,12,0.78) 100%);
}
.band__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad);
  color: #E7E5DE;
}
.band__inner h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.band__inner h2 em { font-family: var(--serif); font-style: italic; color: #BFD0D8; }
.band__ticker {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(231,229,222,0.18);
  background: rgba(14,14,12,0.4);
  overflow: hidden;
  white-space: nowrap;
}
.band__ticker span {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231,229,222,0.62);
  padding: 12px 0;
  animation: tick 38s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
.svc {
  display: grid;
  gap: 18px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.svc__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.svc h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 3.5vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.05; }
.svc p { color: var(--fg-soft); font-size: 16px; max-width: 60ch; }
.svc:hover { padding-left: 14px; background: rgba(47,74,87,0.05); }

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto blockquote {
  margin: 0 auto;
  max-width: 16ch;
  position: relative;
}
.manifesto .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  height: 0.4em;
  opacity: 0.55;
}
.manifesto p.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
}
.manifesto p.lead em { font-family: var(--serif); font-style: italic; color: #BFD0D8; }
.manifesto cite { display: block; margin-top: 40px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #8E8C84; font-style: normal; }

/* ---------- article cards (library) ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px -12px rgba(0,0,0,0.22); border-color: var(--accent); }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0E0E0C; }
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); transition: transform .7s var(--ease), filter .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); filter: grayscale(0); }
.card__cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(14,14,12,0.78); color: #E7E5DE; padding: 6px 11px;
}
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.card h3 { font-family: var(--display); font-weight: 500; font-size: 1.35rem; line-height: 1.15; letter-spacing: -0.015em; }
.card p { color: var(--fg-soft); font-size: 15.5px; }
.card .link-arrow { margin-top: auto; padding-top: 6px; }

/* ---------- categories / topics ---------- */
.topics { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border); }
.topic {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding .3s var(--ease), background .3s var(--ease);
}
.topic:hover { padding-left: 16px; background: rgba(47,74,87,0.05); }
.topic__no { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.topic__name { font-family: var(--display); font-weight: 400; font-size: clamp(1.4rem, 4vw, 2rem); letter-spacing: -0.02em; }
.topic__count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat { background: var(--bg-dark); color: #D6D4CD; padding: 40px 28px; }
.section--alt .stat { background: var(--bg-dark); }
.stat__num { font-family: var(--display); font-weight: 300; font-size: clamp(2.6rem, 8vw, 4.6rem); letter-spacing: -0.03em; line-height: 1; color: #EDECE7; }
.stat__num em { font-family: var(--serif); font-style: italic; color: #BFD0D8; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #9C9A92; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); max-width: 920px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  text-align: left;
  padding: 28px 4px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 1.7rem); letter-spacing: -0.015em; line-height: 1.2;
}
.faq__q .sign { font-family: var(--mono); font-size: 1.4rem; color: var(--accent); transition: transform .35s var(--ease); flex: none; line-height: 1; }
.faq__item[data-open="true"] .faq__q .sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a > div { padding: 0 4px 30px; color: var(--fg-soft); font-size: 16.5px; max-width: 64ch; }

/* ---------- split / feature row ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split__media { aspect-ratio: 4/5; overflow: hidden; background: #0E0E0C; border: 1px solid var(--border); }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.05); }
.split__body h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.025em; line-height: 1.04; }
.split__body h2 em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.split__body p { margin-top: 22px; color: var(--fg-soft); }
.split__list { margin-top: 30px; display: grid; gap: 0; border-top: 1px solid var(--border); }
.split__list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
.split__list li b { font-family: var(--mono); font-size: 12px; color: var(--accent); flex: none; padding-top: 3px; }

/* ---------- principles (team alt) ---------- */
.principles { display: grid; grid-template-columns: 1fr; gap: 22px; }
.principle {
  border: 1px solid var(--border);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.principle:hover { transform: translateY(-5px); border-color: var(--accent); }
.principle .mono-no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.principle h3 { font-family: var(--display); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.015em; }
.principle p { color: var(--fg-soft); font-size: 15.5px; }

/* ---------- people / authors (monogram, no faces) ---------- */
.people { display: grid; grid-template-columns: 1fr; gap: 22px; }
.person { border: 1px solid var(--border); padding: 28px; display: flex; gap: 20px; align-items: flex-start; background: var(--bg); }
.avatar {
  width: 64px; height: 64px; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 1.2rem; letter-spacing: 0.02em;
  color: #EDECE7;
}
.person h3 { font-family: var(--display); font-weight: 500; font-size: 1.2rem; }
.person .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 4px 0 12px; }
.person p { color: var(--fg-soft); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--accent);
  color: #E9ECEE;
  text-align: center;
}
.cta h2 { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 7vw, 5rem); letter-spacing: -0.03em; line-height: 0.98; }
.cta h2 em { font-family: var(--serif); font-style: italic; color: #C9D6DC; }
.cta p { margin: 26px auto 0; max-width: 52ch; color: #C2CCD0; }
.cta .hero__actions { justify-content: center; }
.cta .btn { border-color: #E9ECEE; background: #E9ECEE; color: var(--accent); }
.cta .btn:hover { background: transparent; color: #E9ECEE; }

/* ---------- contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--border);
  padding: 12px 2px;
  transition: border-color .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
form .btn { margin-top: 8px; }

.info-block { border-top: 1px solid var(--border); }
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-row .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.info-row .v { font-size: 16.5px; color: var(--fg-soft); }
.info-row .v a:hover { color: var(--accent); }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.02em; margin: 48px 0 18px; }
.prose h3 { font-family: var(--display); font-weight: 500; font-size: 1.25rem; margin: 32px 0 12px; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; font-size: 16.5px; }
.prose ul { list-style: none; margin: 0 0 18px; padding: 0; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--fg-soft); font-size: 16.5px; }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.page-hero { padding: clamp(120px, 18vw, 200px) 0 clamp(50px, 8vw, 90px); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--display); font-weight: 300; font-size: clamp(3rem, 11vw, 7.5rem); letter-spacing: -0.035em; line-height: 0.9; }
.page-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.page-hero p { margin-top: 26px; max-width: 56ch; color: var(--fg-soft); }
.page-hero .eyebrow { margin-bottom: 26px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-dark); color: #B7B5AD; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__mark {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(3.4rem, 16vw, 12rem); letter-spacing: -0.04em; line-height: 0.82;
  color: #E7E5DE; margin-bottom: clamp(48px, 7vw, 80px);
}
.footer__mark em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(231,229,222,0.14); }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #807E76; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col p { color: #B7B5AD; font-size: 15px; transition: color .25s var(--ease); }
.footer__col a:hover { color: #E7E5DE; }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 32px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: #807E76; text-transform: uppercase; }
.footer__bottom a:hover { color: #E7E5DE; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 22px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s 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; }
  .hero__texture { animation: none; }
  .band__ticker span { animation: none; }
}

/* ---------- 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(14,14,12,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 34px; max-width: 460px; border: 1px solid var(--fg); box-shadow: 12px 12px 0 var(--accent); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-family: var(--display); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.6; color: var(--fg-soft); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--fg); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; transition: background .25s var(--ease), color .25s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); color: #EDECE7; }

/* ---------- responsive ---------- */
@media (min-width: 768px) {
  body { font-size: 18px; }
  .hero__meta { display: block; }
  .hero__top { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
  .topic { grid-template-columns: auto 1fr auto; }
  .footer__cols { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  :root { --pad: 32px; }
  .nav { display: block; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 120px 1fr 1.2fr; align-items: start; gap: 40px; }
  .principles { grid-template-columns: repeat(3, 1fr); }
}
