/* palette: bg=#FFFFFF fg=#242424 accent=#E8402E */
/* fonts: display="Jost" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;          /* dominant background from reference (white) */
  --bg-alt: #ECEBE8;      /* alternating concrete-grey section block */
  --bg-deep: #E2E1DD;     /* deeper concrete grey */
  --fg: #242424;          /* primary text */
  --fg-soft: #3C3C3C;     /* slightly lighter fg */
  --muted: #7E7E7A;       /* secondary text */
  --accent: #E8402E;      /* coral-red mark from reference */
  --accent-deep: #C1301F; /* darker red for hover */
  --accent-2: #3FA6B9;    /* teal secondary accent from reference headings */
  --accent-2-deep: #2E7E8D;
  --ink: #1B1B1B;         /* near-black inverted band */
  --border: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.9);
  --serif: 'Jost', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 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;
  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-family: var(--serif); font-weight: 400; }
p { margin: 0; }

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

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

.section { padding: clamp(72px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }

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

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 640px;
}

/* ─── HEADER ─────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  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);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 30px -12px rgba(0, 0, 0, 0.22);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50% 50% 50% 2px;
  transform: rotate(-2deg);
}
.nav { display: none; gap: 38px; align-items: center; }
.nav a {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: none; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.2s 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); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 24px; }

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(232, 64, 46, 0.5); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.3); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.25s var(--ease);
}
.arrow-link::after { content: "→"; transition: transform 0.3s var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-alt);
}
.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;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.55) 42%, rgba(255,255,255,0.92) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(52px, 9vw, 96px);
}
.hero h1 {
  font-size: clamp(3.1rem, 9.4vw, 8.4rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 15ch;
  margin: 20px 0 0;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  margin-top: 30px;
  max-width: 540px;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  line-height: 1.65;
  color: var(--fg-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__scroll {
  position: absolute;
  right: 20px; bottom: 30px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@media (min-width: 768px) { .hero__scroll { right: 32px; } }

/* ─── INTRO / OVERVIEW ───────────────────── */
.intro__grid { display: grid; gap: 40px; }
.intro__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.intro__body p { color: var(--fg-soft); font-size: 1.06rem; }
.intro__body p + p { margin-top: 20px; }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: start; }
}

/* ─── FEATURE SECTIONS (mirrors reference) ─ */
.feature { position: relative; }
.feature--grey {
  background: var(--bg-alt);
  background-image:
    radial-gradient(rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 4px 4px;
}
.feature__grid {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
}
.feature__title {
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
}
.feature__title--teal { color: var(--accent-2); }
.feature__title--coral { color: var(--accent); }
.feature__body { color: var(--fg-soft); font-size: 1.05rem; max-width: 520px; }
.feature__body p + p { margin-top: 18px; }
.feature__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.feature__list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
  color: var(--fg-soft);
}
.feature__list li:last-child { border-bottom: 1px solid var(--border); }
.feature__list li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--mono);
}
.feature__media {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.feature__media:hover img { transform: scale(1.04); }
.feature__tag {
  position: absolute;
  left: 0; bottom: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(27,27,27,0.86);
  padding: 8px 14px;
}
@media (min-width: 900px) {
  .feature__grid { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
  .feature--reverse .feature__text { order: 1; }
}

/* ─── STATS BAND ─────────────────────────── */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.stat:nth-child(2n) { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.stat__num span { color: var(--accent); }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: 0; }
}

/* ─── MANIFESTO (dark inverted band) ─────── */
.manifesto {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.manifesto__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.16;
}
.manifesto__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.manifesto__inner { position: relative; z-index: 1; text-align: center; }
.manifesto .eyebrow { color: rgba(255,255,255,0.6); }
.manifesto .eyebrow::before { background: var(--accent); }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 940px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.manifesto__by {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── SERVICES GRID ──────────────────────── */
.sec-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 16ch;
}
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 1.2fr 0.8fr; align-items: end; }
  .sec-head .lead { justify-self: end; }
}

.svc-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.svc-card {
  display: grid;
  gap: 14px;
  padding: 36px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}
.svc-card:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(232,64,46,0.04), transparent 60%); }
.svc-card__top { display: flex; align-items: baseline; gap: 20px; }
.svc-card__idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.svc-card__title {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.svc-card__desc { color: var(--muted); font-size: 1rem; max-width: 62ch; }
@media (min-width: 768px) {
  .svc-card { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 40px; }
}

/* Service detail cards (services page) */
.svc-detail {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
}
.svc-detail__item {
  padding: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}
.svc-detail__item:last-child { border-bottom: 0; }
.svc-detail__item h3 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.svc-detail__item h3 .idx { font-family: var(--mono); font-size: 0.9rem; color: var(--accent); margin-right: 16px; letter-spacing: 0.1em; }
.svc-detail__item p { color: var(--fg-soft); max-width: 68ch; }
.svc-detail__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.svc-detail__tags span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-soft);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 2px;
}

/* ─── PROCESS ────────────────────────────── */
.process { display: grid; gap: 0; }
.process__row {
  display: grid;
  gap: 12px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
.process__row:last-child { border-bottom: 1px solid var(--border); }
.process__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.process__title { font-size: 1.5rem; font-weight: 400; letter-spacing: -0.02em; }
.process__desc { color: var(--muted); max-width: 64ch; }
@media (min-width: 768px) {
  .process__row { grid-template-columns: 120px 260px 1fr; align-items: baseline; gap: 40px; }
}

/* ─── TESTIMONIALS ───────────────────────── */
.quotes { display: grid; gap: 24px; }
.quote-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.quote-card:hover { box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); transform: translateY(-3px); }
.quote-card__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.32rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.quote-card__foot { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatar {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  flex-shrink: 0;
}
.quote-card__who { line-height: 1.35; }
.quote-card__name { font-weight: 600; font-size: 0.95rem; }
.quote-card__role { font-size: 0.82rem; color: var(--muted); }
.placeholder-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ─── FAQ ────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  letter-spacing: -0.015em;
  color: var(--fg);
}
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[data-open="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner { padding: 0 0 30px; color: var(--fg-soft); max-width: 74ch; }
.faq__item[data-open="true"] .faq__a { max-height: 400px; }

/* ─── CTA BAND ───────────────────────────── */
.cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(2.3rem, 6.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0 auto 26px;
}
.cta p { max-width: 540px; margin: 0 auto 40px; color: rgba(255,255,255,0.9); }
.cta .btn--light { color: var(--accent); }

/* ─── FORM ───────────────────────────────── */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  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(--border);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,64,46,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.82rem; color: var(--muted); }

.info-block { display: grid; gap: 4px; margin-bottom: 30px; }
.info-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.info-block__value { font-size: 1.08rem; color: var(--fg-soft); }
.info-block__value a:hover { color: var(--accent); }

/* ─── PAGE HERO (inner pages) ────────────── */
.page-hero {
  padding: clamp(120px, 18vw, 200px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-top: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero__sub { margin-top: 28px; max-width: 560px; }

/* ─── VALUES / PRINCIPLES ────────────────── */
.values-grid { display: grid; gap: 0; border-top: 1px solid var(--border); }
.value {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 14px;
}
.value__k { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.value h3 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 300; letter-spacing: -0.02em; }
.value p { color: var(--fg-soft); max-width: 66ch; }
@media (min-width: 768px) {
  .value { grid-template-columns: 80px 1fr; gap: 40px; align-items: baseline; }
}

/* Team-as-text (no faces) */
.team-grid { display: grid; gap: 22px; }
.team-card {
  border: 1px solid var(--border);
  padding: 30px 28px;
  border-radius: 3px;
  display: grid;
  gap: 16px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.team-card:hover { box-shadow: 0 12px 40px -8px rgba(0,0,0,0.12); transform: translateY(-3px); }
.team-card__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; letter-spacing: -0.01em; }
.team-card__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.team-card__bio { font-size: 0.96rem; color: var(--muted); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(64px, 9vw, 104px) 0 40px;
}
.footer__top { display: grid; gap: 48px; }
.footer__brand { max-width: 340px; }
.footer__brand .brand { color: #fff; }
.footer__tag { margin-top: 22px; color: rgba(255,255,255,0.6); font-size: 0.98rem; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a, .footer__col li { font-size: 0.94rem; color: rgba(255,255,255,0.72); transition: color 0.25s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 1.4fr 2fr; gap: 80px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ─── 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 0.3s var(--ease);
}
.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;
  box-shadow: 0 24px 70px -20px rgba(0,0,0,0.5);
  border-top: 3px solid var(--accent);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.92rem; color: var(--fg-soft); 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(--border);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.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) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── UTILITIES ──────────────────────────── */
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 300; letter-spacing: -0.02em; margin: 48px 0 16px; }
.legal h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin: 28px 0 10px; }
.legal p { color: var(--fg-soft); margin-bottom: 16px; }
.legal ul { color: var(--fg-soft); padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted); }
