:root {
  --paper: #fbe1d2;
  --paper-2: #f5d4c2;
  --paper-3: #f0c4ad;
  --ink: #6b1f1f;
  --ink-2: #8a3a3a;
  --ink-soft: rgba(107, 31, 31, 0.55);
  --rule: rgba(107, 31, 31, 0.18);
  --rule-strong: rgba(107, 31, 31, 0.45);
  --accent: #6b1f1f;
  --serif: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }
.section { scroll-margin-top: 80px; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.page { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--page-pad);
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--rule);
}
.page--darkhero .nav {
  background: color-mix(in oklch, #0e0e10 80%, transparent);
  color: oklch(0.9 0.005 85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav__brand { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.nav__links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.nav__links a { border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .2s; white-space: nowrap; }
.nav__links a:hover { border-bottom-color: currentColor; }
.nav__meta { justify-self: end; display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
.page--darkhero .nav__meta { color: rgba(255,255,255,0.6); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero strong { font-weight: 700; }
.hero__sub {
  margin: 12px auto 28px;
  max-width: 56ch;
  text-align: center;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.hero__footer { position: absolute; left: var(--page-pad); right: var(--page-pad); bottom: clamp(28px, 4vh, 56px); padding: 0; flex-direction: column; align-items: center; }
.hero__lede { position: absolute; left: 50%; bottom: clamp(22vh, 26vh, 28vh); transform: translateX(-50%); width: min(720px, 86vw); text-align: center; z-index: 3; pointer-events: none; }
.hero__ledeText { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.1vw, 28px); line-height: 1.35; margin: 0; color: var(--ink); }
.hero__ledeText strong { font-style: italic; font-weight: 700; }

/* Lead section — long tagline directly after hero */
.section--lead { background: var(--paper); padding: clamp(48px, 8vw, 96px) var(--page-pad); border-bottom: 1px solid var(--rule); }
.lead__text { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 38px); line-height: 1.35; letter-spacing: -0.015em; color: var(--ink); max-width: 24ch; margin: 0; }
.lead__text em { font-style: italic; font-weight: 600; }

/* Global flatten — pink everywhere with red ink, swap on hover */
.section--what { background: var(--paper); color: var(--ink); }
.section--what .section__idx { color: var(--ink); }
.section--what .what__grid { background: var(--ink); border: 1px solid var(--ink); gap: 1px; }
.section--what .what__cell { background: var(--paper) !important; color: var(--ink) !important; transition: background .35s ease, color .35s ease; position: relative; overflow: hidden; isolation: isolate; }
.section--what .what__cell > * { position: relative; z-index: 2; }
.section--what .what__cell .what__slot { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; z-index: 0; opacity: 0; transition: opacity .5s ease, transform .9s cubic-bezier(.2,.7,.2,1); transform: scale(1.04); pointer-events: none; }
.section--what .what__cell:hover .what__slot { opacity: 1; transform: scale(1); pointer-events: auto; }
.section--what .what__cell .what__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, color-mix(in oklch, var(--ink) 70%, transparent) 0%, color-mix(in oklch, var(--ink) 92%, transparent) 100%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.section--what .what__cell:hover .what__scrim { opacity: 1; }
.section--what .what__cell:hover { color: var(--paper) !important; }
.section--what .what__cell:hover .what__body { color: color-mix(in oklch, var(--paper) 92%, transparent) !important; }
.section--what .what__cell:hover .what__cellHead { color: color-mix(in oklch, var(--paper) 70%, transparent) !important; }
.section--what .what__cell:hover .what__rule { background: color-mix(in oklch, var(--paper) 40%, transparent) !important; }
/* image-slot internal — flatten its chrome to fit the cell */
.section--what .what__slot::part(empty) { display: none; }
.section--what .what__cell .what__body { color: color-mix(in oklch, var(--ink) 88%, transparent) !important; }
.section--what .what__cell .what__cellHead { color: color-mix(in oklch, var(--ink) 55%, transparent) !important; }
.section--what .what__cell .what__rule { background: color-mix(in oklch, var(--ink) 22%, transparent); }
.section--what .what__cell:hover { background: var(--paper) !important; }
.section--what .what__icon { color: currentColor; transition: color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1.2); }
.section--what .what__cell:hover .what__icon { color: var(--paper); transform: scale(1.12); }

.section--where { background: var(--paper); color: var(--ink); }
.section--where .where__row:nth-child(2n) { background: transparent; color: var(--ink); margin: 0; padding-left: 0; padding-right: 0; }
.section--where .where__row:nth-child(2n) .where__idx,
.section--where .where__row:nth-child(2n) .where__body { color: color-mix(in oklch, var(--ink) 80%, transparent); }
.section--where .where__row { transition: background .3s ease, color .3s ease, padding-left .3s ease; margin: 0 calc(-1 * var(--page-pad)); padding: 24px var(--page-pad); border-bottom: 1px solid color-mix(in oklch, var(--ink) 20%, transparent); }
.section--where .where__row:hover { background: var(--ink); color: var(--paper); padding-left: calc(var(--page-pad) + 8px); }
.section--where .where__row:hover .where__idx,
.section--where .where__row:hover .where__body,
.section--where .where__row:hover .where__title { color: var(--paper); }

/* Work cards — image with text overlay */
.section--work { background: var(--paper); color: var(--ink); }
.section--work .section__head, .section--work .work__caveat, .section--work .work__hint { color: var(--ink); }
.section--work .section__idx { color: var(--ink); }
.work__card { position: relative; flex: 0 0 clamp(280px, 28vw, 380px); scroll-snap-align: start; }
.work__image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink); border: 1px solid color-mix(in oklch, var(--ink) 30%, transparent); }
.work__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); transition: transform .6s ease, filter .4s ease; }
.work__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in oklch, var(--ink) 20%, transparent) 0%, color-mix(in oklch, var(--ink) 70%, transparent) 100%); pointer-events: none; transition: opacity .4s ease; }
.work__card:hover .work__image img { transform: scale(1.04); filter: saturate(1) contrast(1.08); }
.work__cardBody { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px 22px; color: var(--paper); z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.work__cardBody .work__tag { color: color-mix(in oklch, var(--paper) 80%, transparent); margin: 0; font-size: 11px; letter-spacing: 0.12em; }
.work__cardBody .work__client { color: var(--paper); font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; margin: 4px 0 6px; line-height: 1.15; letter-spacing: -0.01em; }
.work__cardBody .work__title { color: color-mix(in oklch, var(--paper) 90%, transparent); font-size: 14px; line-height: 1.45; font-weight: 400; margin: 0; }

/* Clients strip — sits on hero pink, no separate band */
.section--clients { background: var(--paper); color: var(--ink); border-top: 0; padding-top: clamp(8px, 1.5vw, 16px); padding-bottom: clamp(28px, 3.5vw, 48px); }

/* Alternating sections — overridden by global flatten above */
.section--where { background: var(--paper); color: var(--ink); }

.section--work { background: var(--paper); color: var(--ink); }
.section--work .section__head, .section--work .work__caveat, .section--work .work__tag, .section--work .work__title, .section--work .work__hint { color: color-mix(in oklch, var(--paper) 75%, transparent); }
.section--work .section__idx, .section--work .work__client { color: var(--paper); }
.section--work .work__image { background: linear-gradient(135deg, color-mix(in oklch, var(--paper) 12%, var(--ink)), color-mix(in oklch, var(--paper) 6%, var(--ink))); border-color: color-mix(in oklch, var(--paper) 25%, transparent); }
.section--work .work__imageMark { background: var(--ink); color: var(--paper); border-color: color-mix(in oklch, var(--paper) 25%, transparent); }

.section--about { background: var(--paper); color: var(--ink); }
.section--team { background: var(--paper); color: var(--ink); }
.section--team .section__head, .section--team .team__role, .section--team .team__meta li { color: color-mix(in oklch, var(--ink) 65%, transparent); }
.section--team .section__idx, .section--team .team__name, .section--team .team__bio { color: var(--ink); }
.section--team .team__portrait { background: color-mix(in oklch, var(--ink) 8%, var(--paper)); border-color: color-mix(in oklch, var(--ink) 18%, transparent); }
.section--team .team__meta { border-top-color: color-mix(in oklch, var(--ink) 18%, transparent); }
/* Unified tiles — alternating ink / paper for visual rhythm */
.section--what .what__grid { background: color-mix(in oklch, var(--paper) 22%, transparent); border: 1px solid color-mix(in oklch, var(--paper) 22%, transparent); gap: 1px; }
.section--what .what__cell { background: var(--ink); color: var(--paper); transition: transform .25s, background .25s; position: relative; overflow: hidden; }
.section--what .what__cell:nth-child(even) { background: var(--paper); color: var(--ink); }
.section--what .what__cell .what__body { color: color-mix(in oklch, currentColor 88%, transparent); }
.section--what .what__cell .what__cellHead { color: color-mix(in oklch, currentColor 60%, transparent); }
.section--what .what__cell .what__rule { background: color-mix(in oklch, currentColor 25%, transparent); }
.section--what .what__cell:hover { background: color-mix(in oklch, var(--paper) 8%, var(--ink)); }
.section--what .what__cell:nth-child(even):hover { background: color-mix(in oklch, var(--ink) 6%, var(--paper)); }
.section--what .what__icon { display: flex; margin: 8px 0 18px; color: currentColor; opacity: 0.9; transition: transform .5s cubic-bezier(.2,.7,.2,1.2), opacity .3s; }
.section--what .what__cell:hover .what__icon { transform: scale(1.18) rotate(-4deg); opacity: 1; }
.section--what .what__cell::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: currentColor; opacity: 0.5; transition: width .45s ease; }
.section--what .what__cell:hover::after { width: 100%; }

/* Where We Work — bolder editorial treatment */
.section--where .section__lede { font-weight: 700; text-transform: none; letter-spacing: -0.025em; font-size: clamp(36px, 4.8vw, 70px); line-height: 1.0; max-width: 18ch; }
.section--where .where__title { font-style: normal; font-weight: 600; text-transform: none; font-size: clamp(24px, 2.4vw, 36px); letter-spacing: -0.005em; }
.section--where .where__row { grid-template-columns: 1fr 60px; }
.section--where .where__row .where__idx { grid-column: 2; justify-self: end; font-size: 14px; }
.section--where .where__row .where__title { grid-column: 1; grid-row: 1; }
.section--where .where__row .where__body { grid-column: 1 / -1; grid-row: 2; padding-top: 12px; }
/* Alternating Where rows — neutralized; pink throughout, ink only on hover */
.section--where .where__row:nth-child(2n) { background: transparent; color: var(--ink); margin: 0; padding-left: 0; padding-right: 0; border-color: color-mix(in oklch, var(--ink) 18%, transparent); }
.section--where .where__row:nth-child(2n) .where__idx,
.section--where .where__row:nth-child(2n) .where__body { color: color-mix(in oklch, var(--ink) 80%, transparent); }
.section--where .where__row:nth-child(2n):hover { padding-left: calc(var(--page-pad) + 8px); background: var(--ink); color: var(--paper); }
.section--where .where__row:nth-child(2n):hover .where__idx,
.section--where .where__row:nth-child(2n):hover .where__body { color: var(--paper); }
.hero--dark { background: #0e0e10; color: oklch(0.94 0.005 85); }

.hero__canvas { position: absolute; inset: 0; }

.hero__kicker {
  position: absolute;
  left: 50%;
  top: 26%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--ink);
}
.hero__kickerLine { width: 56px; height: 1px; background: currentColor; opacity: 0.6; }
.hero__kickerText { font-weight: 500; }
.hero--dark .hero__kicker { color: oklch(0.94 0.005 85); }

.hero__overlay {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  left: var(--page-pad);
  right: var(--page-pad);
  pointer-events: none;
}

.hero__footer {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: clamp(28px, 4vw, 56px);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  margin: 0;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  line-height: 1.3;
  max-width: 38ch;
}

.hero__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink-soft);
  opacity: 0.7;
  pointer-events: none;
}
.hero--dark .hero__corner { border-color: rgba(255,255,255,0.4); }
.hero__corner--tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.hero__corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(60px, 8vw, 120px) var(--page-pad);
  border-top: 1px solid var(--rule);
}
.section__head {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin-bottom: clamp(32px, 4vw, 56px);
  color: var(--ink-soft);
}
.section__idx { color: var(--ink); font-weight: 600; }
.section__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(40px, 5vw, 72px);
  font-weight: 400;
  max-width: 22ch;
  text-wrap: balance;
}

/* ---------- Client strip ---------- */
.section--clients {
  padding: clamp(36px, 4.5vw, 56px) var(--page-pad);
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.clients__label {
  margin: 0 0 24px;
  color: var(--ink-soft);
  text-align: center;
}
.clients__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px 36px;
  align-items: center;
  justify-items: center;
}
.clients__item {
  display: grid;
  place-items: center;
  height: 60px;
  width: 100%;
}
.clients__item img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ---------- What we do ---------- */
.what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
}
.what__cell {
  background: var(--paper);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.what__cell:hover { background: var(--paper-2); }
.what__cellHead { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
.what__rule { flex: 1; height: 1px; background: var(--rule); }
.what__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.18;
}
.what__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
  flex: 1;
}

/* ---------- Where we work ---------- */
.where__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
}
.where__row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .2s;
}
.where__row:hover { padding-left: 8px; background: linear-gradient(to right, var(--paper-2), transparent 70%); }
.where__idx { color: var(--ink-soft); }
.where__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 0;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.where__body {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 50ch;
}

/* ---------- Selected work (horizontal scroller) ---------- */
.work__scroller {
  margin: 0 calc(-1 * var(--page-pad));
  padding: 0 var(--page-pad) 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-soft) transparent;
}
.work__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.work__card {
  flex: 0 0 clamp(280px, 28vw, 380px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work__image {
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.work__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.work__cardBody { display: flex; flex-direction: column; gap: 8px; }
.work__tag { color: var(--ink-soft); margin: 0; }
.work__client {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.work__title {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
  color: var(--paper);
}
.work__caveat {
  margin: -8px 0 28px;
  color: var(--ink-soft);
  font-size: 11px;
  max-width: 56ch;
}
.work__hint {
  margin: 16px 0 0;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------- About ---------- */
.section--about { background: var(--paper-2); }
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.about__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
  max-width: 22ch;
  text-wrap: balance;
}
.about__body p { margin: 0 0 18px; max-width: 44ch; font-weight: 300; }
.about__signoff { margin-top: 24px; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  border-top: 1px solid var(--rule-strong);
  padding-top: 56px;
}
.team__card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}
.team__portrait {
  width: 120px;
  height: 150px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.team__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.02);
}
.team__body { min-width: 0; }
.team__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
}
.team__role { color: var(--ink-soft); margin: 0 0 18px; }
.team__bio {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
  text-wrap: pretty;
  max-width: 50ch;
}
.team__meta {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team__meta li { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-bottom: 80px;
}
.contact__lede {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.contact__body { margin: 0; max-width: 44ch; color: var(--ink-2); font-weight: 300; }
.contact__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule-strong); }
.contact__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.contact__list li > span:first-child, .contact__list li > a + span:first-child { color: var(--ink-soft); }
.contact__list a { border-bottom: 1px solid var(--rule); padding-bottom: 2px; transition: border-color .2s; }
.contact__list a:hover { border-bottom-color: var(--ink); }

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .what__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__list { grid-template-columns: repeat(4, 1fr); }
  .clients__item { height: 52px; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__meta { display: none; }
  .about__grid, .contact__grid, .team__grid { grid-template-columns: 1fr; gap: 40px; }
  .what__grid { grid-template-columns: 1fr; }
  .where__row { grid-template-columns: 60px 1fr; gap: 14px; }
  .where__body { grid-column: 2; }
  .team__card { grid-template-columns: 96px 1fr; gap: 20px; }
  .team__portrait { width: 96px; height: 120px; }
  .clients__list { grid-template-columns: repeat(3, 1fr); gap: 20px 24px; }
  /* Hero — mobile: center kicker tightly, drop sub copy into a second screen */
  .hero__kicker { gap: 10px; letter-spacing: 0.32em; font-size: 11px; top: 18%; white-space: nowrap; }
  .hero__kickerLine { width: 28px; }
  .hero__sub { display: none; }
  .hero__footer { padding-bottom: 24px; }
  /* What We Do — distinct mobile treatment vs Where: two-up tiles w/ accent */
  .section--what .what__grid { grid-template-columns: 1fr 1fr; gap: 1px; background: color-mix(in oklch, var(--paper) 22%, transparent); }
  .section--what .what__cell { padding: 18px 14px; min-height: 180px; }
  .section--what .what__cell .what__title { font-size: 16px; }
  .section--what .what__cell .what__body { font-size: 13px; line-height: 1.45; }
}
@media (max-width: 900px) {
  /* hero stays clean on mobile — sub copy now lives in About */
}
