/* palette: bg=#ECE6D6 fg=#16161A accent=#2D4A2F */
/* fonts: display="Shippori Mincho" body="Noto Sans" mono="IBM Plex Mono" */

:root {
  --bg: #ECE6D6;
  --bg-alt: #E1DAC8;
  --bg-paper: #F4EFE2;
  --fg: #16161A;
  --fg-soft: #2D2D33;
  --muted: #7A7468;
  --accent: #2D4A2F;
  --accent-deep: #1A2E1B;
  --ink: #0E0E11;
  --border: rgba(22, 22, 26, 0.14);
  --border-soft: rgba(22, 22, 26, 0.08);
  --serif: 'Shippori Mincho', ui-serif, Georgia, serif;
  --sans: 'Noto Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.78;
  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; }
ol, ul { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1.2em; }

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

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

/* ─── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.02em; }
em { font-style: italic; color: var(--accent); font-weight: 400; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
  display: block;
  font-weight: 500;
}
.eyebrow--inverse { color: rgba(244, 239, 226, 0.55); }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 96px); }
.section-title {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 28px;
}
.section-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 580px;
}

/* ─── Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Header ──────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(236, 230, 214, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(236, 230, 214, 0.94);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
}

.logo { display: inline-flex; align-items: baseline; gap: 14px; font-family: var(--serif); }
.logo__mark {
  font-size: 24px; line-height: 1;
  color: var(--accent);
  font-weight: 500;
  position: relative; top: 2px;
}
.logo__word {
  font-size: 18px; letter-spacing: 0.04em;
  color: var(--fg);
}

.nav { display: none; gap: 36px; font-family: var(--sans); font-size: 14px; }
.nav a {
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width 0.4s 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;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header__cta:hover { color: var(--accent); border-color: var(--accent); }

.menu-toggle {
  width: 32px; height: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
}
.menu-toggle span {
  display: block; height: 1px; width: 100%; background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 90;
  background: var(--bg);
  padding: 56px var(--pad-x) 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-110%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu[data-open="true"] { transform: none; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 18px;
}
.mobile-menu__foot { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.mobile-menu__foot p { margin: 4px 0; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: clamp(80px, 14vw, 160px) 0 clamp(56px, 8vw, 96px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(0.92);
  animation: heroZoom 14s var(--ease) both;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(236,230,214,0.7) 0%, rgba(236,230,214,0.55) 38%, rgba(236,230,214,0.95) 100%),
    radial-gradient(120% 80% at 80% 10%, rgba(244,239,226,0.3), transparent 60%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(40px, 5vw, 64px);
  max-width: 16ch;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  max-width: 720px;
}
.hero__meta p { font-size: 17px; line-height: 1.72; color: var(--fg-soft); margin: 0; max-width: 52ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__corner {
  display: none;
  position: absolute;
  right: 32px; top: 96px;
  z-index: 2;
}
.hero__vertical {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--fg-soft);
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg-paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg-paper); }

/* ─── Ledger row ──────────────────────────────────────── */
.ledger {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-paper);
}
.ledger__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 0 var(--pad-x);
}
.ledger__cell {
  padding: 32px 0;
  border-right: 1px solid var(--border-soft);
}
.ledger__cell:nth-child(2n) { border-right: 0; padding-left: 24px; }
.ledger__cell:first-child { padding-right: 24px; }
.ledger__num {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  display: block; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ledger__label {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}

/* ─── Services ────────────────────────────────────────── */
.services { padding: var(--section-y) 0; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service {
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr; gap: 16px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--bg-paper); }
.service__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.service__name {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service__body { color: var(--fg-soft); margin: 0 0 18px; max-width: 60ch; line-height: 1.72; }
.service__list { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }
.service__list li::before { content: "— "; color: var(--accent); }

/* ─── Manifesto ───────────────────────────────────────── */
.manifesto {
  background: var(--ink);
  color: #F4EFE2;
  padding: clamp(120px, 18vw, 220px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "間";
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(20rem, 50vw, 40rem);
  color: rgba(244, 239, 226, 0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  font-weight: 400;
}
.manifesto__inner { max-width: 980px; text-align: center; position: relative; }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 16px 0 48px;
}
.manifesto__quote em { color: #B8C9A9; }
.manifesto__sig {
  display: flex; justify-content: center; gap: 16px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(244, 239, 226, 0.7);
}
.manifesto__sig span:first-child { color: #F4EFE2; }
.manifesto__sig span:first-child::after { content: " ·"; margin: 0 4px; opacity: 0.5; }

/* ─── Work ────────────────────────────────────────────── */
.work { padding: var(--section-y) 0; background: var(--bg-paper); }
.work__list { display: flex; flex-direction: column; gap: clamp(48px, 8vw, 96px); }
.case { border-top: 1px solid var(--border); padding-top: clamp(32px, 5vw, 56px); }
.case__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  transition: opacity 0.3s var(--ease);
}
.case__link:hover { opacity: 0.92; }
.case__link:hover .case__media img { transform: scale(1.04); }
.case__link:hover .case__cta { color: var(--accent); }

.case__media { overflow: hidden; aspect-ratio: 4/3; background: var(--bg-alt); }
.case__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: transform 0.9s var(--ease);
}
.case__body { display: flex; flex-direction: column; justify-content: center; }
.case__meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-bottom: 24px;
}
.case__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.case__lede { color: var(--fg-soft); margin-bottom: 24px; max-width: 52ch; }
.case__cta {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg);
  transition: color 0.3s var(--ease);
}

/* ─── Process ─────────────────────────────────────────── */
.process { padding: var(--section-y) 0; }
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.process__step {
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.process__num {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}
.process__pt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.process__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
}
.process__step p { color: var(--fg-soft); max-width: 56ch; margin: 0 0 16px; }
.process__weeks {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}

/* ─── Team ────────────────────────────────────────────── */
.team { padding: var(--section-y) 0; background: var(--bg-paper); }
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 64px);
}
.member { display: grid; gap: 24px; }
.member__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-alt);
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(0.96);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.04); filter: saturate(0.9); }
.member__num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--accent);
}
.member__name {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400; letter-spacing: -0.015em;
  margin: 8px 0 4px;
}
.member__role {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin: 0 0 14px;
}
.member__note { font-size: 15px; color: var(--fg-soft); line-height: 1.7; margin: 0; }

/* ─── CTA / Form ──────────────────────────────────────── */
.cta { padding: var(--section-y) 0; background: var(--ink); color: #F4EFE2; }
.cta .eyebrow { color: rgba(244, 239, 226, 0.55); }
.cta .section-title { color: #F4EFE2; }
.cta .section-title em { color: #B8C9A9; }
.cta .section-lede { color: rgba(244, 239, 226, 0.78); }
.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
}
.cta__meta {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  border-top: 1px solid rgba(244, 239, 226, 0.12);
  padding-top: 32px;
}
.cta__meta dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244, 239, 226, 0.55);
  margin-bottom: 8px;
}
.cta__meta dd { margin: 0; font-size: 15px; line-height: 1.55; color: #F4EFE2; }

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: rgba(244, 239, 226, 0.04);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(244, 239, 226, 0.12);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244, 239, 226, 0.6);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 226, 0.2);
  color: #F4EFE2;
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: #B8C9A9; }
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; padding-top: 12px; }
.field--check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: #B8C9A9; }
.field--check label { font-size: 13px; line-height: 1.6; color: rgba(244, 239, 226, 0.78); text-transform: none; letter-spacing: 0; font-family: var(--sans); }
.field--check label a { color: #B8C9A9; border-bottom: 1px solid rgba(184,201,169,0.4); }
.cta__form .btn { grid-column: 1 / -1; justify-self: flex-start; background: #F4EFE2; color: var(--ink); border-color: #F4EFE2; }
.cta__form .btn:hover { background: #B8C9A9; border-color: #B8C9A9; }

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: clamp(64px, 8vw, 96px) 0 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__tag { color: var(--muted); font-size: 14px; max-width: 36ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.footer__cols .eyebrow { margin-bottom: 16px; }
.footer__cols a { display: block; color: var(--fg-soft); padding: 4px 0; font-size: 14px; transition: color 0.3s var(--ease); }
.footer__cols a:hover { color: var(--accent); }
.footer__cols p { color: var(--fg-soft); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.footer__rule {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── Cookie Popup ────────────────────────────────────── */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  background: rgba(14, 14, 17, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-paper);
  padding: 32px 36px;
  max-width: 520px;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 80px -24px rgba(14,14,17,0.4);
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.cookie-popup__card h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.cookie-popup__card p { font-size: 14px; line-height: 1.6; color: var(--fg-soft); margin: 0 0 20px; }
.cookie-popup__actions { display: flex; gap: 12px; }
.cookie-popup__actions button {
  flex: 1;
  padding: 12px 24px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cookie-popup__actions button:last-child {
  background: var(--ink); color: var(--bg-paper); border-color: var(--ink);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }

/* ─── Inner-page Hero (about/services/contact) ────────── */
.page-hero {
  padding: clamp(120px, 14vw, 200px) 0 clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--border);
  background: var(--bg-paper);
  position: relative;
}
.page-hero__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
.page-hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 400;
  margin: 16px 0 0;
  max-width: 16ch;
}
.page-hero__lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 50ch;
  margin: 0;
}

/* ─── About-specific ──────────────────────────────────── */
.about-essay { padding: var(--section-y) 0; }
.about-essay__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about-essay__chapter { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.about-essay__body { font-size: 17px; line-height: 1.78; color: var(--fg-soft); max-width: 64ch; }
.about-essay__body p { margin-bottom: 1.4em; }
.about-essay__body p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 5.6em;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--accent);
  font-weight: 400;
}

.principles { padding: var(--section-y) 0; background: var(--bg-paper); }
.principles__list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border); }
.principles__item { padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr; gap: 12px; }
.principles__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); }
.principles__title { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 8px; }
.principles__body { color: var(--fg-soft); margin: 0; max-width: 60ch; line-height: 1.72; }

/* ─── Services-specific ───────────────────────────────── */
.discipline { padding: var(--section-y) 0; border-bottom: 1px solid var(--border); }
.discipline + .discipline { padding-top: 0; }
.discipline__row {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.discipline__num {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.85;
  color: var(--accent);
  font-weight: 400;
}
.discipline__name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 8px 0 24px;
}
.discipline__lede { color: var(--fg-soft); font-size: 17px; line-height: 1.72; max-width: 56ch; margin: 0 0 28px; }
.discipline__details {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.discipline__detail dt {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 6px;
}
.discipline__detail dd { margin: 0; font-size: 15px; color: var(--fg-soft); line-height: 1.6; }

.engagement { padding: var(--section-y) 0; }
.engagement__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  border-top: 1px solid var(--border);
}
.engagement__card {
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
}
.engagement__card h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 12px; }
.engagement__card p { color: var(--fg-soft); max-width: 56ch; margin: 0 0 16px; }
.engagement__card .price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

/* ─── Contact-specific ────────────────────────────────── */
.contact-section { padding: var(--section-y) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-info dl { display: grid; gap: 28px; }
.contact-info dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.contact-info dd { margin: 6px 0 0; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.3; letter-spacing: -0.01em; }
.contact-info dd a { border-bottom: 1px solid var(--border); transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.contact-info dd a:hover { color: var(--accent); border-color: var(--accent); }

/* Inverted form on contact page (light style) */
.form-card {
  background: var(--bg-paper);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--border-soft);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.form-card .field--full { grid-column: 1 / -1; }
.form-card label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.form-card input,
.form-card select,
.form-card textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--sans); font-size: 16px;
  padding: 10px 0;
  transition: border-color 0.3s var(--ease);
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { outline: none; border-color: var(--accent); }
.form-card .field--check label { font-family: var(--sans); font-size: 13px; line-height: 1.6; text-transform: none; letter-spacing: 0; color: var(--fg-soft); }
.form-card .field--check label a { color: var(--accent); border-bottom: 1px solid rgba(45,74,47,0.4); }
.form-card .btn { grid-column: 1 / -1; justify-self: flex-start; }

/* ─── Legal Pages ─────────────────────────────────────── */
.legal { padding: clamp(80px, 10vw, 140px) 0 var(--section-y); }
.legal__head { max-width: 720px; margin-bottom: 64px; }
.legal__head .eyebrow { color: var(--accent); }
.legal__head h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; margin: 16px 0 24px; }
.legal__body { max-width: 720px; font-size: 16px; line-height: 1.78; color: var(--fg-soft); }
.legal__body h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 48px 0 16px; font-weight: 400; letter-spacing: -0.015em; color: var(--fg); }
.legal__body p { margin-bottom: 1.2em; }
.legal__body ul { margin: 0 0 1.4em 1.4em; padding: 0; list-style: disc; }
.legal__body li { margin-bottom: 0.5em; }
.legal__body strong { font-weight: 500; color: var(--fg); }

/* ─── Thank you page ──────────────────────────────────── */
.thanks { min-height: 70vh; display: flex; align-items: center; padding: var(--section-y) 0; }
.thanks__inner { max-width: 680px; text-align: center; margin: 0 auto; }
.thanks h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 400; margin: 24px 0 24px; }
.thanks p { color: var(--fg-soft); font-size: 17px; margin-bottom: 32px; }

/* ─── Responsive: ≥768px ──────────────────────────────── */
@media (min-width: 768px) {
  body { font-size: 18px; }

  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }

  .hero__corner { display: block; }
  .hero__meta { grid-template-columns: 2fr 1fr; align-items: center; gap: 48px; padding-top: 36px; }

  .ledger__row { grid-template-columns: repeat(4, 1fr); }
  .ledger__cell { padding: 36px 24px; border-right: 1px solid var(--border-soft); }
  .ledger__cell:nth-child(2n) { border-right: 1px solid var(--border-soft); padding-left: 24px; }
  .ledger__cell:first-child { padding-left: 0; }
  .ledger__cell:last-child { border-right: 0; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service { padding: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 40px); }
  .service:nth-child(odd) { border-right: 1px solid var(--border); }

  .case__link { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .case--mirror .case__link > .case__media { order: 2; }

  .process__step { grid-template-columns: 120px 1fr; gap: 48px; align-items: baseline; }

  .team__grid { grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }

  .cta__inner { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }

  .footer__inner { grid-template-columns: 1.2fr 2fr; gap: 64px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__rule { flex-direction: row; justify-content: space-between; }

  .page-hero__row { grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }

  .about-essay__grid { grid-template-columns: 240px 1fr; gap: 80px; }

  .discipline__row { grid-template-columns: 200px 1fr; gap: 64px; }
  .discipline__details { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .engagement__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .engagement__card { padding: clamp(32px, 4vw, 48px); border-right: 1px solid var(--border); border-bottom: 0; }
  .engagement__card:last-child { border-right: 0; }

  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .service { border-right: 1px solid var(--border); }
  .service:last-child { border-right: 0; }
  .service:nth-child(odd) { border-right: 1px solid var(--border); }

  .principles__list { grid-template-columns: 1fr 1fr; }
  .principles__item { padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--border); }
  .principles__item:nth-child(2n) { border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
