
/* ============================================================
   1. TOKENS — sourced from claude.design handoff (colors_and_type.css)
   ============================================================ */
:root {
  /* Surfaces */
  --paper:        #F5F1EA;
  --bone:         #EBE5D8;
  --bone-deep:    #DDD4C0;

  /* Ink (text) */
  --ink:          #1F2620;
  --ink-soft:     #3D4540;
  --ink-mute:     #6B7068;
  --ink-faint:    #9C9F98;

  /* Greens */
  --forest:       #2F3A2E;
  --forest-deep:  #1F2A1E;
  --sage:         #9CAA94;
  --sage-deep:    #6E7E66;
  --sage-soft:    #C9D2C3;

  /* Terracotta — single saturated accent */
  --terracotta:        #C07A5C;
  --terracotta-deep:   #9C5E44;
  --terracotta-soft:   #E8C9B8;

  /* Stone neutrals */
  --stone:        #C8C0B0;
  --stone-soft:   #D9D2C2;
  --stone-faint:  #E5DFD1;

  /* Semantic */
  --bg:        var(--paper);
  --fg:        var(--ink);
  --fg-soft:   var(--ink-soft);
  --fg-mute:   var(--ink-mute);
  --fg-faint:  var(--ink-faint);
  --accent:    var(--terracotta);
  --link:      var(--terracotta-deep);
  --border:    var(--stone-soft);

  /* Type families — single sans, JP fallthrough */
  --font-sans:    'Inter', 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', -apple-system, sans-serif;
  --font-display: 'Inter', 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-mono:    'Geist Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Scale */
  --t-display-xl: 5.5rem;
  --t-display-lg: 4rem;
  --t-display-md: 2.75rem;
  --t-h2:         1.75rem;
  --t-h3:         1.25rem;
  --t-h4:         1.0625rem;
  --t-body-lg:    1.25rem;
  --t-body:       1.0625rem;
  --t-small:      0.9375rem;
  --t-xs:         0.8125rem;
  --t-eyebrow:    0.75rem;

  /* Line heights */
  --lh-tight:   1.0;
  --lh-display: 1.08;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.6;
  --lh-loose:   1.75;

  /* Tracking */
  --tr-tightest: -0.025em;
  --tr-tighter:  -0.02em;
  --tr-tight:    -0.01em;
  --tr-wide:     0.04em;
  --tr-wider:    0.08em;
  --tr-widest:   0.14em;

  /* Weights */
  --w-light:    300;
  --w-regular:  400;
  --w-medium:   500;
  --w-semibold: 600;
  --w-bold:     700;

  /* Spacing (4px base) */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:24px; --s-6:32px;
  --s-7:48px; --s-8:64px; --s-9:96px; --s-10:128px; --s-11:160px; --s-12:192px;

  /* Radii */
  --r-xs:2px; --r-sm:4px; --r-md:8px; --r-lg:14px; --r-pill:999px;

  /* Borders */
  --bw-hairline: 1px;
  --bw-thick:    2px;

  /* Motion */
  --ease:        cubic-bezier(0.2, 0.65, 0.2, 1);
  --d-fast:      150ms;
  --d-base:      220ms;
  --d-slow:      400ms;
  --d-deliberate: 600ms;

  /* Layout */
  --measure:           64ch;
  --container:         1240px;
  --container-narrow:  880px;
}

/* ============================================================
   2. BASE
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg-soft);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--terracotta-soft); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--fg); font-weight: var(--w-medium); margin: 0; text-wrap: balance; }
p { margin: 0; color: var(--fg-soft); text-wrap: pretty; }

em, .em { font-style: normal; color: var(--terracotta-deep); font-weight: var(--w-medium); }

/* ============================================================
   3. TYPE PRIMITIVES
   ============================================================ */
/* Eyebrow — section labels (e.g. "— ABOUT").
   Inter sans, 14px, tracked uppercase. Warmer than mono.
   Small field labels (.footer-meta-row) keep mono — see overrides below. */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: var(--w-medium);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sage-soft); }
/* Small field labels keep mono treatment for hierarchy */
.footer-meta-row .eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: var(--w-medium);
}

.mono-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.mono-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: var(--tr-tighter);
  color: var(--ink);
  font-weight: var(--w-medium);
  text-wrap: balance;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: var(--w-medium);
  text-wrap: balance;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: var(--tr-tight);
  color: var(--ink);
  font-weight: var(--w-medium);
}

.jp-display { font-family: var(--font-display); letter-spacing: 0.005em; line-height: 1.5; }

.text-link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--terracotta-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: color var(--d-base) var(--ease);
}
.text-link:hover { color: var(--ink); }
.text-link svg { transition: transform var(--d-base) var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

.text-link.on-dark { color: var(--terracotta-soft); }
.text-link.on-dark:hover { color: var(--paper); }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--w-medium);
  padding: 13px 24px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--d-base) var(--ease), color var(--d-base) var(--ease), border-color var(--d-base) var(--ease), transform var(--d-base) var(--ease);
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-primary:active { transform: translateY(0.5px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--stone); }
.btn-secondary:hover { border-color: var(--ink); background: var(--bone); }
.btn-accent {
  background: var(--terracotta);
  color: var(--ink);
  font-size: 15px;
  padding: 16px 28px;
}
.btn-accent:hover { background: var(--terracotta-soft); }
.btn svg { width: 14px; height: 14px; transition: transform var(--d-base) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
}
/* Wordmark — typeset in Inter with a small terracotta dot accent (C1 logo system, 2026-07-12)
   currentColor so header (ink) and footer (paper) inherit appropriately. */
.brand {
  display: inline-flex; align-items: center;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  gap: 8px;
}
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--w-medium);
  letter-spacing: -0.008em;
  color: currentColor;
  white-space: nowrap;
  line-height: 1;
}
.wordmark-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  align-self: center;
  margin-left: 4px;
}

.site-nav { display: flex; gap: 32px; justify-content: center; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); border-bottom-color: var(--terracotta); }
.nav-external { color: var(--ink-mute); display: inline-flex; align-items: center; gap: 4px; }

.header-meta { justify-self: end; font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; }

/* Nav toggle (hamburger) — mobile only */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  color: var(--ink);
  justify-self: end;
  align-self: center;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--d-base) var(--ease), opacity var(--d-base) var(--ease);
}
.nav-toggle-line + .nav-toggle-line { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   6. HERO
   ============================================================ */
.hero { padding: 140px 48px 120px; max-width: var(--container); margin: 0 auto; }
.hero-grid { display: block; }
.hero-main { max-width: var(--container); }

.hero-headline { max-width: 14ch; }
.hero-headline .em { font-weight: var(--w-medium); }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.6;
  color: var(--ink);
  margin: 32px 0 24px;
  max-width: 32ch;
  font-weight: var(--w-regular);
  letter-spacing: 0.005em;
}
.hero-lead {
  font-family: var(--font-sans);
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   7. (Marquee removed)
   ============================================================ */

/* ============================================================
   8. SECTION HEADER
   ============================================================ */
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 56px; }
.section-head .eyebrow::before { content: "— "; }
.section-sub {
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); max-width: 50ch; margin: 0;
}

/* ============================================================
   9. ABOUT
   ============================================================ */
.about {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 48px;
}
/* About body — single editorial column. Portrait now lives outside this
   section as a full-bleed image band (mirrors the hero band rhythm). */
.about-body {
  display: block;
  max-width: 720px;
}
.about-prose .lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.55; letter-spacing: 0.005em;
  color: var(--ink); margin: 0 0 32px;
  max-width: 32ch; font-weight: var(--w-regular);
}
.about-prose .lead .em { font-weight: var(--w-medium); }
.about-prose p {
  font-size: 16px; line-height: 1.8;
  color: var(--ink-soft); max-width: 56ch;
  margin: 0 0 18px;
}

/* ============================================================
   10. PHILOSOPHY (forest dark)
   ============================================================ */
.philosophy {
  background: var(--forest);
  color: var(--paper);
  padding: 120px 0;
}
.philosophy-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.philosophy-head { position: sticky; top: 96px; }
.philosophy-head .display-lg { color: var(--paper); }
.philosophy-head .display-lg .em { color: var(--terracotta-soft); }
.philosophy-aside {
  font-family: var(--font-display);
  font-size: 16px; line-height: 1.8;
  color: var(--sage-soft);
  margin: 32px 0 0;
  max-width: 22ch;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.14);
}

.principles { list-style: none; padding: 0; margin: 0; }
.principle {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(245,241,234,0.12);
  align-items: baseline;
}
.principle:last-child { border-bottom: 1px solid rgba(245,241,234,0.12); }
.principle .p-n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--terracotta-soft);
  text-transform: uppercase;
}
.principle h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-weight: var(--w-medium);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.principle-en { font-size: 24px; color: var(--paper); letter-spacing: -0.005em; }
.principle-sep { color: var(--sage); font-weight: var(--w-light); }
.principle-jp { font-size: 18px; color: var(--sage-soft); letter-spacing: 0.005em; font-weight: var(--w-regular); }
.principle p {
  font-size: 15px; line-height: 1.8;
  color: var(--sage-soft); margin: 0; max-width: 58ch;
}

/* ============================================================
   11. SERVICES
   ============================================================ */
.services {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bone);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  min-height: 340px;
  transition: background var(--d-base) var(--ease), transform var(--d-slow) var(--ease);
}
.service-card:hover { background: var(--bone-deep); }
.service-n {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--terracotta-deep); font-weight: var(--w-medium);
  margin-bottom: 56px;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.service-en {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink); font-weight: var(--w-medium);
}
.service-jp {
  font-family: var(--font-display);
  font-size: 14px; line-height: 1.5;
  color: var(--ink-mute); font-weight: var(--w-regular);
}
.service-card p {
  font-size: 14.5px; line-height: 1.75;
  color: var(--ink-soft); margin: 0;
}
.service-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid var(--stone);
}

/* ============================================================
   11b. PROCESS — illustrated composite (image-led)
   Typographic stages CSS retained below in case we revert.
   ============================================================ */
.process {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 48px;
}
.process-figure {
  margin: 0 auto 96px;
  max-width: 1240px;
}
.process-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

/* Visually hidden — accessible only to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  margin-bottom: 96px;
  align-items: start;
}
.process-head-left { padding-top: 4px; }
.process-head-left .display-lg {
  margin-top: 22px;
  max-width: 12ch;
}
.process-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 32px;
  font-weight: var(--w-regular);
  max-width: 24ch;
}
.process-intro {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

.stages {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--stone);
}
.stage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 56px 0;
  border-bottom: 1px solid var(--stone-soft);
  align-items: baseline;
}
.stage-marker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 12px;
}
.stage-when {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--w-medium);
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
  display: block;
}
.stage-body p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0;
}

.process-close {
  margin: 112px auto 0;
  max-width: 60ch;
  text-align: center;
}
.process-close p {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  font-weight: var(--w-regular);
  text-wrap: balance;
}
.process-close p::before { content: "“"; color: var(--ink-faint); margin-right: 2px; }
.process-close p::after  { content: "”"; color: var(--ink-faint); margin-left: 2px; }

@media (max-width: 900px) {
  .process { padding: 72px 24px; }
  .process-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .process-head-left .display-lg { max-width: none; }
  .process-figure { margin-bottom: 56px; }
  .stage { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .process-close { margin-top: 72px; }
}

/* ============================================================
   12. PULL QUOTE
   ============================================================ */
.pull-quote {
  background: var(--paper);
  padding: 96px 48px;
}
.pull-quote-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--w-regular);
}
.pull-quote blockquote p {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink); margin: 0 0 24px;
  text-wrap: balance;
}
.pull-quote-attr { display: block; }

/* ============================================================
   12b. VOICES — Testimonials from collaborators
   (Added 2026-07-22: Laura A. LinkedIn recommendation)
   Updated 2026-07-22 v2: prominent heading + Nordic serif italic quote
   ============================================================ */
.voices {
  background: var(--paper);
  padding: 120px 48px;
}
.voices-inner {
  max-width: 880px;
  margin: 0 auto;
}
.voices-head {
  margin-bottom: 80px;
}
.voices-head .eyebrow::before { content: "— "; }
.voices-head .display-lg {
  margin: 18px 0 24px;
}
.voices-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.voice-card {
  border-top: 1px solid var(--stone);
  padding: 64px 0 0;
}
.voice-quote {
  margin: 0 0 48px;
  /* Nordic editorial: serif italic for warmth + elegance */
  font-family: Georgia, 'Yu Mincho', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', serif;
  font-weight: var(--w-regular);
  font-style: italic;
}
.voice-quote p {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.85;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.voice-attr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--stone-soft);
}
.voice-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--w-medium);
  color: var(--ink);
  letter-spacing: 0.005em;
}
.voice-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .voices { padding: 72px 24px; }
  .voices-head { margin-bottom: 56px; }
  .voice-card { padding: 40px 0 0; }
  .voice-quote { margin-bottom: 36px; }
  .voice-quote p { font-size: 20px; line-height: 1.75; }
}

/* ============================================================
   13. SELECTED WORK
   ============================================================ */
.selected-work {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 48px 120px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  /* All three cards now carry images — let them stretch to match heights;
     work-meta uses margin-top:auto so meta tags share a clean baseline. */
}
.work-card {
  padding: 32px 0;
  border-top: 1px solid var(--stone);
  display: flex; flex-direction: column;
}
.work-card-head {
  display: flex; justify-content: space-between;
  margin-bottom: 56px;
}
.work-n { color: var(--terracotta-deep); }
.work-tag { color: var(--ink-mute); }
.work-card h3 {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.4;
  letter-spacing: 0.005em; color: var(--ink);
  margin: 0 0 18px; font-weight: var(--w-medium);
}
.work-card h3 .em { font-weight: var(--w-medium); }
.work-card p {
  font-size: 14.5px; line-height: 1.75;
  color: var(--ink-soft); margin: 0 0 24px;
}
.work-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--stone-soft);
}

/* ============================================================
   13b. PARTNERS — In Partnership With (collaboration feature)
   ============================================================ */
.partners {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 48px 120px;
}
.partners-head {
  margin-bottom: 56px;
  display: flex; flex-direction: column; gap: 18px;
}
.partners-head .eyebrow::before { content: "— "; }
.partners-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.partners-media { margin: 0; }
.partners-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  filter: saturate(0.92) contrast(0.96);
}
.partners-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--terracotta-deep);
  font-weight: var(--w-medium);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.partners-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: var(--w-medium);
  margin: 0 0 16px;
  text-wrap: balance;
  max-width: 22ch;
}
.partners-sub {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: var(--w-regular);
  max-width: 28ch;
}
.partners-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 48ch;
}
@media (max-width: 900px) {
  .partners { padding: 0 24px 64px; }
  .partners-feature { grid-template-columns: 1fr; gap: 32px; }
  .partners-head { margin-bottom: 32px; }
}

/* ============================================================
   14. CONTACT (ink dark)
   ============================================================ */
.contact-section {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 48px;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.contact-headline { color: var(--paper); max-width: 14ch; }
.contact-headline .em { color: var(--terracotta-soft); }
.contact-lead {
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.7;
  color: var(--sage-soft);
  margin: 28px 0 0;
  max-width: 30ch;
}
.contact-actions { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.contact-mail {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  color: var(--paper);
  border-bottom: 1px solid rgba(245,241,234,0.3);
  padding-bottom: 6px;
  transition: border-color var(--d-base) var(--ease);
}
.contact-mail:hover { border-bottom-color: var(--terracotta-soft); }
.contact-channel {
  display: flex; flex-direction: column; gap: 4px;
}
.contact-channel .eyebrow { color: var(--sage-soft); }
.contact-channel a {
  color: var(--paper);
  font-size: 16px;
  border-bottom: 1px solid rgba(245,241,234,0.2);
  padding-bottom: 2px;
  transition: border-color var(--d-base) var(--ease);
}
.contact-channel a:hover { border-bottom-color: var(--terracotta-soft); }

/* ============================================================
   14b. IMAGE BANDS — full-bleed cinematic moment
   Restrained, editorial. Used once, after the hero.
   (Closing band removed 2026-05-10 — typography carries the pre-Contact
   pause now, so Work flows straight into Contact.)
   ============================================================ */
.image-band {
  margin: 0;
  padding: 0;
  width: 100%;
}
.image-band .plate,
.image-band img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}
.image-band--hero .plate,
.image-band--hero img,
.image-band--studio .plate,
.image-band--studio img  { aspect-ratio: 21 / 8; }

/* Selected Work card thumbs — subtle documentary */
.work-card-thumb {
  margin: 0 0 32px;
}
.work-card-thumb .plate,
.work-card-thumb img {
  aspect-ratio: 3 / 2;
  border-radius: var(--r-sm);
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* Editorial photo treatment — subtle desaturation + softened contrast.
   Keeps photos calm and atmospheric, never punchy/commercial. */
.image-band img,
.work-card-thumb img {
  filter: saturate(0.92) contrast(0.96);
}

@media (max-width: 900px) {
  .image-band--hero .plate,
  .image-band--hero img,
  .image-band--studio .plate,
  .image-band--studio img  { aspect-ratio: 16 / 10; }
}

/* ============================================================
   15. PLATE (image placeholders — replace with <img> later)
   ============================================================ */
.plate {
  width: 100%;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 15%, #EFE7D6 0%, transparent 60%),
    radial-gradient(100% 70% at 85% 90%, #DFD6C2 0%, transparent 55%),
    linear-gradient(160deg, var(--bone) 0%, var(--bone-deep) 100%);
}
.plate::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(31,38,32,.025) 14px 15px);
  pointer-events: none;
}
/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-deep);
  color: var(--paper);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 48px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 64px;
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .wordmark { font-size: 26px; }
.footer-tag {
  margin: 24px 0 0; font-size: 15px;
  color: var(--sage-soft); line-height: 1.7; max-width: 28ch;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .eyebrow { color: var(--sage); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--paper); font-size: 15px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color var(--d-base) var(--ease), color var(--d-base) var(--ease);
}
.footer-col a:hover { border-bottom-color: var(--terracotta-soft); color: var(--terracotta-soft); }
.footer-muted { color: var(--sage-soft); font-size: 14px; line-height: 1.7; margin: 0; max-width: 36ch; }
.footer-meta {
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-meta-row { display: flex; flex-direction: column; gap: 8px; }
.footer-meta-row .eyebrow { color: var(--sage); }
.footer-meta-val {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--paper);
  letter-spacing: 0.005em;
  line-height: 1.5;
}

.footer-baseline {
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 48px 32px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.footer-baseline .mono-meta { color: var(--sage-soft); font-size: 11px; letter-spacing: 0.1em; }
.footer-baseline-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-baseline-brand {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--paper);
  letter-spacing: 0.01em;
  font-weight: var(--w-medium);
  line-height: 1.4;
}
.footer-baseline-legal {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--sage-soft);
  letter-spacing: 0.06em;
  line-height: 1.4;
  opacity: 0.85;
}

/* ============================================================
   17. MOTION — reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--d-deliberate) var(--ease), transform var(--d-deliberate) var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-header { position: sticky; }
  .site-header-inner {
    padding: 18px 24px;
    gap: 20px;
    grid-template-columns: auto 1fr;
    position: relative;
  }
  .header-meta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(245, 241, 234, 0.98);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--d-base) var(--ease), padding var(--d-base) var(--ease);
    border-bottom: 1px solid var(--stone);
    border-bottom-color: transparent;
  }
  .site-nav[data-open="true"] {
    max-height: 70vh;
    padding: 12px 24px 20px;
    border-bottom-color: var(--stone);
  }
  .site-nav .nav-link {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid transparent;
  }
  .hero { padding: 64px 24px 56px; }
  .philosophy-grid, .contact-inner, .footer-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .footer-meta { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
  .services-grid, .work-grid { grid-template-columns: 1fr; }
  .about, .services, .pull-quote, .selected-work, .contact-section { padding: 64px 24px; }
  .philosophy { padding: 72px 0; }
  .philosophy-grid { padding: 0 24px; }
  .philosophy-head { position: static; }
  .footer-inner { padding: 64px 24px 48px; }
  .footer-baseline { padding: 24px; }
  .principle { grid-template-columns: 40px 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .hero-headline { max-width: none; }
}

