@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/noto-sans-jp/NotoSansJP-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f4f1e8;
  --paper-strong: #e9e6dc;
  --ink: #090a0a;
  --muted: #5f605a;
  --line: rgba(20, 71, 255, .32);
  --signal: #1447ff;
  --electric: #c8ff24;
  --cyan: #00d8ff;
  --magenta: #ff2f92;
  --yellow: #ffd51f;
  --olive: #7a861a;
  --font-sans: "Syne Display", Arial, sans-serif;
  --font-mono: "Syne Display", Arial, sans-serif;
  --display: var(--font-sans);
  --technical: var(--font-mono);
  --display-weight: 520;
  --tracking-hero: -.07em;
  --tracking-section: -.055em;
  --tracking-card: -.045em;
  --tracking-label: .1em;
  --section-space: clamp(96px, 12vw, 180px);
  --section-heading-space: clamp(48px, 7vw, 92px);
  --shell: min(92vw, 1680px);
  --pad: clamp(18px, 3vw, 54px);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

html[data-language="ja"] {
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-mono: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --display: var(--font-sans);
  --technical: var(--font-mono);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--display); font-size: 16px; line-height: 1.45; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: white; background: var(--signal); }

.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 12px 16px; color: white; background: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin-inline: auto; }

.pob-header { position: sticky; z-index: 30; top: 0; min-height: 72px; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; border-bottom: 1px solid var(--signal); background: rgba(244, 241, 232, .92); backdrop-filter: blur(14px); }
.pob-mark { width: max-content; display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .05em; }
.pob-mark-sign { display: grid; color: var(--signal); line-height: .82; letter-spacing: -.1em; }
.pob-mark-sign small { margin-top: 3px; color: var(--ink); font-size: .48rem; font-weight: 500; letter-spacing: .08em; }
.pob-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 44px); }
.pob-nav a { position: relative; padding: 24px 0; color: #323330; font-size: .75rem; font-weight: 600; letter-spacing: .035em; text-transform: uppercase; }
.pob-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--signal); transition: right .35s var(--ease); }
.pob-nav a:hover::after, .pob-nav a:focus-visible::after { right: 0; }
.language-switcher { justify-self: end; display: flex; align-items: center; gap: 2px; }
.language-switcher button { min-width: 38px; min-height: 38px; padding: 0 9px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; font-size: .7rem; }
.language-switcher button[aria-pressed="true"] { color: white; background: var(--ink); }
.menu-toggle { display: none; }

.hero { min-height: calc(100svh - 72px); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: clamp(42px, 7vw, 120px); align-items: center; padding-block: clamp(48px, 5vw, 90px); }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--muted); font-family: var(--technical); font-size: .625rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.kicker > span:first-child { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--electric); box-shadow: 0 0 0 1px var(--ink); }
.hero-kicker > span:first-child { width: auto; height: auto; border-radius: 0; background: none; box-shadow: none; }
.hero h1 { max-width: 11.8ch; margin: clamp(20px, 2.2vw, 34px) 0 0; font-family: var(--display); font-size: clamp(3.35rem, 5.2vw, 6.2rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-hero); line-height: .88; }
.hero-intro { max-width: 610px; margin: clamp(24px, 2.4vw, 36px) 0 0; color: #333431; font-size: clamp(1.08rem, 1.25vw, 1.3rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { min-height: 52px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: space-between; gap: 44px; border: 1px solid var(--ink); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .25s, background .25s, transform .25s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: var(--signal); border-color: var(--signal); }
.button-light:hover, .button-light:focus-visible { color: white; background: var(--ink); }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: clamp(34px, 4vw, 58px) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hero-meta li { min-width: 0; padding: 14px 12px 0 0; display: grid; gap: 8px; border-right: 1px solid var(--line); font-size: .85rem; }
.hero-meta li + li { padding-left: 12px; }
.hero-meta li:last-child { border-right: 0; }
.hero-meta li span:first-child { color: var(--signal); font-size: .68rem; font-weight: 700; }

.hero-board { min-width: 0; display: grid; border: 1px solid var(--ink); background: var(--ink); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.hero-board:hover, .hero-board:focus-visible { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(13, 14, 14, .14); }
.hero-board-image { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #080861; }
.hero-board-image::after { content: "LIVE / MOTION"; position: absolute; right: 14px; top: 14px; z-index: 2; padding: 7px 9px; color: white; background: var(--signal); font-family: var(--technical); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.hero-board-image img, .hero-board-image video { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s var(--ease); }
.hero-board:hover img, .hero-board:hover video { transform: scale(1.025); }
.hero-board-caption { position: relative; padding: 18px; display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; color: white; }
.hero-board-caption p { margin: 0; color: rgba(255,255,255,.62); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.hero-board-caption p:nth-child(2) { text-align: right; }
.hero-board-caption strong { max-width: 23ch; font-size: clamp(1.35rem, 2vw, 2.25rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
.hero-board-caption > span { align-self: end; color: var(--signal); font-size: 1.3rem; }
.live-dot { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 1px rgba(255,255,255,.55); }

/* Motion selection: still images remain the fallback; video is progressive enhancement. */
.motion-stage { overflow: hidden; color: var(--paper); background: var(--ink); border-top: 1px solid var(--signal); border-bottom: 1px solid var(--signal); }
.motion-marquee { overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); color: var(--ink); background: var(--electric); }
.motion-marquee > div { width: max-content; min-width: 200%; padding: 12px 0 11px; display: flex; align-items: center; gap: 28px; animation: motionMarquee 24s linear infinite; font-family: var(--technical); font-size: .625rem; font-weight: 650; letter-spacing: var(--tracking-label); }
.motion-marquee i { color: var(--ink); font-size: .54rem; font-style: normal; }
@keyframes motionMarquee { to { transform: translateX(-50%); } }
.motion-stage-inner { padding-block: var(--section-space); }
.motion-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px clamp(40px, 8vw, 140px); align-items: end; margin-bottom: var(--section-heading-space); }
.motion-heading .kicker { grid-column: 1 / -1; color: rgba(244,241,232,.65); }
.motion-heading h2 { max-width: 10ch; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 7rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-section); line-height: .92; }
.motion-heading > p { max-width: 44ch; margin: 0; color: rgba(244,241,232,.64); font-size: 1.05rem; line-height: 1.55; }
.motion-toggle { grid-column: 2; justify-self: start; min-height: 40px; margin-top: 4px; padding: 0 12px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(244,241,232,.42); color: var(--paper); background: transparent; cursor: pointer; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s, background .2s, border-color .2s; }
.motion-toggle:hover, .motion-toggle:focus-visible { color: var(--ink); border-color: var(--electric); background: var(--electric); }
.motion-toggle-icon { width: 15px; color: var(--electric); font-weight: 900; }
.motion-toggle:hover .motion-toggle-icon, .motion-toggle:focus-visible .motion-toggle-icon { color: var(--signal); }
.redesign-home .motion-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(46px, 6vw, 86px) clamp(12px, 1.6vw, 26px); }
.redesign-home .motion-card { min-width: 0; color: var(--paper); }
.redesign-home .motion-card-primary { grid-column: span 7; }
.redesign-home .motion-card-secondary { grid-column: span 5; align-self: end; }
.redesign-home .motion-card-small { grid-column: span 4; }
.redesign-home .motion-card-portrait { grid-column: span 4; }
.redesign-home .motion-card-landscape { grid-column: span 8; align-self: center; }
.redesign-home .motion-card-wide { grid-column: 1 / -1; }
.redesign-home .motion-card figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 16 / 10; background: #111; border: 1px solid rgba(244,241,232,.34); }
.redesign-home .motion-card-primary figure { aspect-ratio: 16 / 9; }
.redesign-home .motion-card-secondary figure { aspect-ratio: 4 / 3; }
.redesign-home .motion-card-small figure { aspect-ratio: 1 / 1; }
.redesign-home .motion-card-portrait figure { aspect-ratio: 4 / 5; }
.redesign-home .motion-card-landscape figure { aspect-ratio: 16 / 10; }
.redesign-home .motion-card-wide figure { aspect-ratio: 2.35 / 1; }
.redesign-home .motion-card figure::after { content: "PLAY"; position: absolute; left: 12px; top: 12px; padding: 6px 8px; color: var(--ink); background: var(--electric); font-size: .56rem; font-weight: 900; letter-spacing: .12em; transition: opacity .2s, transform .2s; }
.redesign-home .motion-card:nth-child(3n + 2) figure::after { background: var(--cyan); }
.redesign-home .motion-card:nth-child(3n) figure::after { background: var(--magenta); }
.redesign-home .motion-card.is-playing figure::after { opacity: 0; transform: translateY(-4px); }
.redesign-home .motion-card video { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s var(--ease), filter .35s; }
.redesign-home .motion-card:hover video, .redesign-home .motion-card:focus-visible video { transform: scale(1.018); }
.redesign-home .motion-card:focus-visible { outline: 3px solid var(--electric); outline-offset: 7px; }
.redesign-home .motion-card > div { position: relative; padding: 12px 30px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 7px 13px; border-top: 1px solid rgba(244,241,232,.5); }
.redesign-home .motion-card > div > span { grid-row: 1 / 3; color: var(--electric); font-size: .63rem; font-weight: 800; }
.redesign-home .motion-card strong { font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.8rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-card); line-height: 1; }
.redesign-home .motion-card small { color: rgba(244,241,232,.56); font-family: var(--technical); font-size: .63rem; letter-spacing: .06em; text-transform: uppercase; }
.redesign-home .motion-card b { position: absolute; right: 2px; top: 10px; color: var(--electric); font-size: 1rem; transition: transform .2s; }
.redesign-home .motion-card:hover b { transform: translate(3px, -3px); }
.motion-random-link { margin-top: clamp(64px, 9vw, 126px); padding: 20px 0; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(244,241,232,.5); border-bottom: 1px solid rgba(244,241,232,.5); font-size: clamp(1.15rem, 1.8vw, 1.7rem); }
.motion-random-link span:last-child { color: var(--electric); transition: transform .25s; }
.motion-random-link:hover span:last-child { transform: translate(4px, -4px); }
.motion-stage[data-motion-paused="true"] .motion-marquee > div { animation-play-state: paused; }

.work-section, .practice-section { padding-block: var(--section-space); border-top: 1px solid var(--line); }
.section-heading { margin-bottom: var(--section-heading-space); display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr); gap: clamp(40px, 8vw, 140px); align-items: end; }
.section-heading h2 { max-width: 12ch; margin: 24px 0 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 7rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-section); line-height: .92; }
.section-heading > p { max-width: 42ch; margin: 0 0 .35rem; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--section-heading-space) clamp(18px, 2vw, 34px); }
.project-card { min-width: 0; }
.project-card a { display: block; }
.project-wide { grid-column: 1 / -1; }
.project-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-strong); }
.project-wide .project-image { aspect-ratio: 2 / 1; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s var(--ease); }
.project-card a:hover img, .project-card a:focus-visible img { transform: scale(1.02); }
.project-card a:focus-visible { outline: 3px solid var(--signal); outline-offset: 6px; }
.project-caption { position: relative; padding: 16px 34px 0 0; border-top: 1px solid var(--ink); }
.project-caption > p:first-child { margin: 0 0 20px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-caption h3 { max-width: 27ch; margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 3.25rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-card); line-height: .98; }
.project-caption > p:nth-of-type(2) { margin: 16px 0 0; color: var(--muted); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.project-caption > span { position: absolute; top: 14px; right: 2px; font-size: 1.1rem; transition: transform .25s; }
.project-card a:hover .project-caption > span { transform: translate(3px, -3px); }
.section-link { margin-top: clamp(58px, 8vw, 110px); padding: 20px 0; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: clamp(1.15rem, 1.8vw, 1.7rem); }
.section-link span:last-child { color: var(--signal); transition: transform .25s; }
.section-link:hover span:last-child { transform: translate(4px, -4px); }

.method-section { padding-block: var(--section-space); color: var(--ink); background: var(--electric); }
.section-heading-light .kicker, .section-heading-light > p { color: rgba(9,10,10,.66); }
.section-heading-light .kicker > span:first-child { background: var(--signal); box-shadow: none; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(9,10,10,.42); list-style: none; }
.method-grid li { min-height: 340px; padding: 22px clamp(18px, 2vw, 34px) 28px; display: flex; flex-direction: column; border-right: 1px solid rgba(9,10,10,.42); }
.method-grid li:last-child { border-right: 0; }
.method-grid li > span { color: var(--signal); font-size: .72rem; font-weight: 800; }
.method-grid h3 { margin: auto 0 18px; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 4rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-section); line-height: .98; }
.method-grid p { max-width: 34ch; margin: 0; color: rgba(9,10,10,.66); font-size: 1rem; }
.section-link-light { border-color: rgba(9,10,10,.55); }

.practice-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr); gap: clamp(18px, 3vw, 48px); align-items: end; }
.practice-grid a { display: grid; }
.practice-main img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.practice-secondary img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.practice-grid a > div { position: relative; padding: 14px 32px 0 0; border-top: 1px solid var(--ink); }
.practice-grid p { margin: 0 0 12px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.practice-grid h3 { margin: 0; font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 3rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-card); line-height: .98; }
.practice-grid div > span { position: absolute; top: 12px; right: 2px; color: var(--signal); }

.about-strip { padding-block: var(--section-space); display: grid; grid-template-columns: minmax(170px, .4fr) minmax(0, 1.6fr); gap: 40px; border-top: 1px solid var(--line); }
.about-strip > div { max-width: 1050px; }
.about-strip h2 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 6.2rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-section); line-height: .92; }
.about-strip > div > p { max-width: 62ch; margin: 36px 0 28px; color: var(--muted); font-size: 1.05rem; }
.text-link { width: max-content; padding: 10px 0; display: inline-flex; gap: 20px; border-bottom: 1px solid currentColor; font-weight: 700; }
.text-link span:last-child { color: var(--signal); }

.contact-band { padding-block: clamp(76px, 10vw, 150px); color: white; background: var(--signal); }
.contact-band .shell > p { max-width: 45ch; margin: 0 0 clamp(56px, 8vw, 120px); font-size: 1rem; }
.contact-band a { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.65); }
.contact-band h2 { max-width: 17ch; margin: 0; font-family: var(--display); font-size: clamp(3rem, 7vw, 8rem); font-weight: var(--display-weight); letter-spacing: var(--tracking-section); line-height: .92; }
.contact-band a > span { font-size: clamp(2rem, 5vw, 5rem); transition: transform .3s var(--ease); }
.contact-band a:hover > span { transform: translate(8px, -8px); }

.pob-footer { min-height: 140px; display: grid; grid-template-columns: 1fr auto auto auto; gap: clamp(20px, 5vw, 80px); align-items: center; color: var(--muted); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.pob-footer nav { display: flex; gap: 24px; }
.pob-footer a:hover { color: var(--signal); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Completion layer for the retained case-study pages. */
body:not(.redesign-home) { overflow-x: hidden; }
body:not(.redesign-home) .site-header { backdrop-filter: blur(12px); background: rgba(242,240,233,.93); }
body:not(.redesign-home) .project-card-copy > p,
body:not(.redesign-home) .case-copy p,
body:not(.redesign-home) .section-header > p { font-size: max(1rem, 16px); line-height: 1.55; }
body:not(.redesign-home) .project-like { border-color: var(--signal) !important; color: var(--signal) !important; }
body:not(.redesign-home) .project-like-heart,
body:not(.redesign-home) .project-like-action { color: var(--signal) !important; }
body:not(.redesign-home) .project-like[aria-pressed="true"] { color: white !important; background: var(--signal) !important; }
body:not(.redesign-home) .project-like[aria-pressed="true"] .project-like-heart,
body:not(.redesign-home) .project-like[aria-pressed="true"] .project-like-action { color: white !important; }
.case-tech-and-co .case-hero h1::after,
.project-tech-and-co .project-card-copy h3::after { content: "(nouvellement BFM Tech)"; display: block; margin-top: 12px; font-family: var(--font-mono, var(--technical)); font-size: 10px; font-weight: 500; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.case-tech-and-co .case-hero h1::after { margin-top: clamp(12px, 1.5vw, 20px); }
body:not(.redesign-home) a:focus-visible,
body:not(.redesign-home) button:focus-visible { outline: 3px solid var(--signal, #ff4f32); outline-offset: 4px; }

@media (max-width: 980px) {
  .pob-header { grid-template-columns: 1fr auto; }
  .pob-nav { position: absolute; left: 0; right: 0; top: 71px; padding: 8px var(--pad) 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: var(--paper); }
  .pob-header[data-open="true"] .pob-nav { display: flex; }
  .pob-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .pob-nav a::after { display: none; }
  .menu-toggle { justify-self: end; display: inline-flex; align-items: center; gap: 12px; padding: 10px 0; border: 0; background: none; cursor: pointer; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before { width: 20px; height: 1px; display: block; background: currentColor; transition: transform .25s; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before { content: ""; position: absolute; transform: translateY(6px); }
  .pob-header[data-open="true"] .menu-toggle i { transform: rotate(45deg); }
  .pob-header[data-open="true"] .menu-toggle i::before { transform: rotate(-90deg); }
  .language-switcher { display: none; }
  .pob-header[data-open="true"] .language-switcher { position: absolute; z-index: 2; right: var(--pad); top: 330px; display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-board { width: min(100%, 720px); }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .motion-heading { grid-template-columns: 1fr; }
  .motion-heading .kicker, .motion-toggle { grid-column: auto; }
  .redesign-home .motion-card-primary, .redesign-home .motion-card-landscape { grid-column: span 7; }
  .redesign-home .motion-card-secondary, .redesign-home .motion-card-portrait { grid-column: span 5; }
  .redesign-home .motion-card-small { grid-column: span 6; }
  .practice-grid { grid-template-columns: 1.35fr .65fr; }
  .pob-footer { grid-template-columns: 1fr 1fr; padding-block: 34px; }
  .pob-footer > *:nth-child(even) { justify-self: end; text-align: right; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 36px); --pad: 18px; }
  .pob-header { min-height: 64px; }
  .pob-nav { top: 63px; }
  .hero { min-height: auto; padding-block: 54px 82px; gap: 56px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .hero-intro { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta li, .hero-meta li + li { padding: 12px 0; grid-template-columns: 38px 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta li:last-child { border-bottom: 0; }
  .hero-board-caption { padding: 14px; }
  .hero-board-caption strong { font-size: 1.35rem; }
  .project-grid { grid-template-columns: 1fr; gap: 64px; }
  .motion-stage-inner { padding-block: 76px 96px; }
  .motion-heading { margin-bottom: 52px; }
  .motion-heading h2 { font-size: clamp(3rem, 14vw, 5.4rem); }
  .redesign-home .motion-grid { grid-template-columns: 1fr; gap: 58px; }
  .redesign-home .motion-card-primary, .redesign-home .motion-card-secondary, .redesign-home .motion-card-small, .redesign-home .motion-card-portrait, .redesign-home .motion-card-landscape, .redesign-home .motion-card-wide { grid-column: auto; }
  .redesign-home .motion-card figure, .redesign-home .motion-card-primary figure, .redesign-home .motion-card-secondary figure, .redesign-home .motion-card-small figure, .redesign-home .motion-card-landscape figure, .redesign-home .motion-card-wide figure { aspect-ratio: 4 / 3; }
  .redesign-home .motion-card-portrait { width: 78%; justify-self: end; }
  .redesign-home .motion-card-portrait figure { aspect-ratio: 4 / 5; }
  .project-wide { grid-column: auto; }
  .project-wide .project-image, .project-image { aspect-ratio: 4 / 3; }
  .project-caption h3 { font-size: 1.65rem; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid li { min-height: 240px; border-right: 0; border-bottom: 1px solid rgba(9,10,10,.42); }
  .method-grid li:last-child { border-bottom: 0; }
  .practice-grid { grid-template-columns: 1fr; gap: 62px; }
  .practice-secondary { width: 78%; justify-self: end; }
  .about-strip { grid-template-columns: 1fr; }
  .contact-band a { align-items: start; }
  .contact-band h2 { font-size: clamp(3rem, 14vw, 5.5rem); }
  .pob-footer { min-height: 0; grid-template-columns: 1fr; gap: 20px; padding-block: 36px; }
  .pob-footer > *:nth-child(even) { justify-self: start; text-align: left; }
  .pob-footer nav { flex-wrap: wrap; }

  body:not(.redesign-home) .site-header { min-height: auto; padding: 10px 14px; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
  body:not(.redesign-home) .site-header nav { grid-column: 1 / -1; width: 100%; display: flex; gap: 0; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; }
  body:not(.redesign-home) .site-header nav::-webkit-scrollbar { display: none; }
  body:not(.redesign-home) .site-header nav a { min-width: max-content; padding: 10px 14px 10px 0; margin-right: 14px; font-size: .76rem; }
  body:not(.redesign-home) .header-actions { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .motion-marquee > div { animation: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(13,14,14,.55); --muted: #3f403d; }
}

body:not(.redesign-home) .project-like:disabled {
  opacity: 1 !important;
}


/* Compact editorial rhythm — 2026-09-23 */
/* Work: every project cover keeps the approved 16:9 format. */
.index-page .project-visual {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
}

.index-page .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.index-page .project-visual.editorial-cover.lcp-cover,
.index-page .project-visual.editorial-cover.courrier-cover {
  aspect-ratio: 16 / 9 !important;
}

.index-page .secondary-grid .project-card > a > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.index-page :is(.index-section, .archive-section) {
  padding-block: clamp(62px, 7vw, 104px);
}

.index-page .index-section-title {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.index-page .work-flagships {
  gap: clamp(48px, 5.5vw, 82px) 24px;
}

.index-page .secondary-grid {
  row-gap: clamp(48px, 5.5vw, 72px);
}

/* Systems: preserve large headings while tightening supporting material. */
.systems-page :is(.pipeline-section, .demo-section, .evidence-section, .system-project-links) {
  padding-block: clamp(62px, 7vw, 104px);
}

.systems-page .pipeline-section .index-section-title {
  grid-template-columns: 1fr;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.systems-page .pipeline-section .index-section-title h2 {
  width: min(100%, 14ch);
  font-size: clamp(34px, 4.5vw, 68px);
}

.systems-page .pipeline-list li {
  min-height: 76px;
}

.systems-page .demo-intro {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.systems-page .evidence-grid article {
  min-height: clamp(360px, 34vw, 450px);
}

.systems-page .system-project-links > p {
  margin-bottom: 32px;
}

.systems-page .system-project-links a {
  min-height: 60px;
}

/* About and case studies: reduce repeated secondary-section padding only. */
.about-page :is(.chronology-section, .capabilities-section) {
  padding-block: clamp(64px, 7vw, 108px);
}

.about-page .about-lead {
  margin-bottom: clamp(56px, 6vw, 84px);
}

.case-page .case-prelude {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.case-page .case-prelude > header {
  padding-bottom: clamp(36px, 4vw, 60px);
}

.case-page .case-section {
  padding-block: clamp(64px, 7vw, 108px);
}

.case-page :is(.case-gallery, .case-motion) {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.case-page .case-motion-intro {
  padding-bottom: clamp(38px, 4vw, 60px);
}

.case-page .case-gallery > div {
  row-gap: clamp(32px, 4vw, 60px);
}

.case-page .case-section-body ul {
  margin-top: 32px;
}

@media (max-width: 760px) {
  .index-page :is(.index-section, .archive-section),
  .systems-page :is(.pipeline-section, .demo-section, .evidence-section, .system-project-links),
  .about-page :is(.chronology-section, .capabilities-section) {
    padding-block: 56px;
  }

  .index-page .work-flagships,
  .index-page .secondary-grid {
    gap: 56px;
  }

  .systems-page .pipeline-section .index-section-title h2 {
    width: min(100%, 14ch);
    font-size: 34px;
    line-height: .96;
  }

  .systems-page .pipeline-list li {
    min-height: 0;
    padding-block: 13px;
  }

  .systems-page .evidence-grid article {
    min-height: 340px;
  }

  .case-page .case-prelude,
  .case-page :is(.case-gallery, .case-motion) {
    padding-bottom: 72px;
  }

  .case-page .case-section {
    padding-block: 56px;
  }
}