/* Base layout and component styling. Visual colour direction lives in reference-direction.css. */
:root {
  --ink: #1b1b19;
  --paper: #f5f2eb;
  --muted: #73716b;
  --line: #d9d5cd;
  --serif: 'Inter', Arial, sans-serif;
  --sans: 'Inter', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.5 var(--sans); }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }

.skip-link { position: fixed; z-index: 10; top: 8px; left: 8px; padding: 10px 14px; transform: translateY(-150%); background: var(--ink); color: #fff; }
.skip-link:focus { transform: none; }
.site-header { height: 98px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.wordmark { font: 500 24px var(--serif); letter-spacing: -.08em; }
.wordmark span { color: #df4f37; }
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
nav a, .site-footer a { position: relative; }
nav a::after, .site-footer a::after { position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; content: ''; background: currentColor; transition: width .25s; }
nav a:hover::after, .site-footer a:hover::after { width: 100%; }
.cv-link { display: inline-flex; align-items: center; margin-left: 4px; padding: 8px 12px; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: 12px; font-weight: 600; line-height: 1; }
.cv-link::after { display: none; }
.cv-link:hover { background: #df4f37; }
.menu-toggle { display: none; }

.eyebrow, .project-type { margin: 0; font: 500 11px var(--mono); letter-spacing: .03em; text-transform: uppercase; }
.hero { min-height: min(780px, calc(100svh - 98px)); padding-block: clamp(70px, 10vw, 140px) 64px; display: flex; flex-direction: column; justify-content: space-between; }
.hero h1 { margin: 34px 0; font: 500 clamp(51px, 8.2vw, 126px)/.94 var(--serif); letter-spacing: -.065em; }
.hero h1 em, .statement h2 em { font-weight: 500; }
.hero-footer { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 32px; }
.hero-footer p { max-width: 410px; margin: 0; font-size: 18px; line-height: 1.45; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.text-link span { font-size: 18px; transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -3px); }

.work-section { padding: 130px 0 150px; background: #1d211e; color: #f5f2eb; }
.section-heading { margin-bottom: 84px; }
.section-heading h2, .statement h2, .experience h2, .contact h2 { margin: 25px 0 0; font: 500 clamp(42px, 5vw, 76px)/.99 var(--serif); letter-spacing: -.055em; }
.projects { display: grid; gap: 140px; }
.project { display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: clamp(32px, 8vw, 130px); }
.project--reverse { grid-template-columns: .72fr 1.28fr; }
.project--reverse .project-visual { order: 2; }
.project--reverse .project-content { order: 1; }
.project-visual { position: relative; display: block; aspect-ratio: 1.33; overflow: hidden; }
.project-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.project-visual--image { display: flex; align-items: center; justify-content: center; background: #f0eee8; }
.project-visual--image img { object-fit: contain; object-position: center; }
.project-visual--scroll { isolation: isolate; padding: clamp(18px, 3vw, 46px); background: #ece8e0; }
.project-visual--scroll::before, .project-visual--scroll::after { content: ''; position: absolute; z-index: -1; border-radius: 999px; background: linear-gradient(135deg, #d55870, #74207e); }
.project-visual--scroll::before { width: 42%; aspect-ratio: 1; top: -19%; right: -13%; }
.project-visual--scroll::after { width: 26%; aspect-ratio: 1; left: -10%; bottom: -10%; }
.scroll-stage { width: 100%; height: 100%; display: grid; place-items: center; }
.scroll-frame { position: relative; z-index: 1; width: min(85%, 520px); height: 100%; min-height: 300px; overflow: hidden; border: 1px solid rgba(28, 24, 21, .18); border-radius: 14px; background: #fff; box-shadow: 0 22px 40px rgba(42, 31, 24, .24); }
.scroll-frame__bar { height: 25px; display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid #e5e1d9; background: #faf9f6; }
.scroll-frame__bar i { width: 6px; height: 6px; display: block; border-radius: 50%; background: #c8c2ba; }
.scroll-frame__viewport { height: calc(100% - 25px); overflow: hidden; }
.scroll-frame__viewport img { width: 100%; height: auto; display: block; object-fit: initial; object-position: initial; animation: portfolio-page-scroll 16s cubic-bezier(.55, 0, .25, 1) infinite alternate; }
@keyframes portfolio-page-scroll { 0%, 10% { transform: translateY(0); } 90%, 100% { transform: translateY(var(--scroll-end, -78%)); } }
.work-section .project-visual--scroll { padding: 0; isolation: auto; overflow: hidden; border-radius: 16px; background: transparent; box-shadow: 0 14px 30px rgba(0, 0, 0, .22); }
.work-section .project-visual--scroll::before, .work-section .project-visual--scroll::after { display: none; }
.work-section .project-visual--scroll .scroll-frame { width: 100%; height: 100%; min-height: 0; border: 0; border-radius: 16px; background: transparent; box-shadow: none; }
.work-section .project-visual--scroll .scroll-frame__bar { display: none; }
.work-section .project-visual--scroll .scroll-frame__viewport { height: 100%; }
.work-section .project-visual--scroll .scroll-frame__viewport img { animation: homepage-template-scroll 30s cubic-bezier(.55, 0, .25, 1) 1 forwards; animation-play-state: paused; }
.work-section .project-visual--scroll.is-scroll-active .scroll-frame__viewport img { animation-play-state: running; }
.work-section .project-visual--scroll.preview--white { background: #fff; }
.work-section .project-visual--scroll.preview--white .scroll-frame { background: #fff; }
.work-section .project-visual--scroll.preview--white .scroll-frame__viewport img { width: 100%; height: 100%; object-fit: contain; animation: none; transform: none; }
@keyframes homepage-template-scroll { 0%, 9% { transform: translateY(0); opacity: 1; } 76% { transform: translateY(var(--scroll-end, -78%)); opacity: 1; } 88% { transform: translateY(var(--scroll-end, -78%)); opacity: 0; } 89% { transform: translateY(0); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.visual--coral { background: #e86d55; }
.visual--blue { background: #6c8f9c; }
.visual--yellow { background: #d5a528; }
.visual-label { position: absolute; z-index: 2; top: 24px; left: 24px; font: 11px var(--mono); }
.abstract-art { position: absolute; inset: 0; }
.abstract-art > * { position: absolute; display: block; }
.art--service i { top: 20%; left: 18%; width: 64%; height: 61%; border-radius: 45% 45% 8% 8%; transform: rotate(-11deg); background: #f7e8d2; }
.art--service b { top: 35%; left: 28%; width: 45%; height: 32%; border-radius: 50%; background: #342e2a; }
.art--service em { top: 42%; left: 39%; width: 24%; height: 18%; border: 18px solid #e86d55; border-radius: 50%; }
.art--data i { top: 23%; left: 18%; width: 65%; height: 55%; border: 2px solid #e8eee8; transform: rotate(-8deg); }
.art--data b { top: -9%; left: 49%; width: 2px; height: 120%; transform: rotate(47deg); background: #e8eee8; }
.art--data em { top: 34%; left: 35%; width: 34%; height: 34%; border-radius: 50%; background: #e8eee8; }
.art--journey i { top: -15%; left: 20%; width: 55%; height: 120%; border-radius: 50%; transform: rotate(28deg); background: #1d211e; }
.art--journey b { top: 31%; left: 43%; width: 34%; height: 34%; border-radius: 50%; background: #f6e4ad; }
.art--journey em { top: 39%; left: 50%; width: 18%; height: 18%; border-radius: 50%; background: #d85b3e; }
.project-content h3 { margin: 18px 0 24px; font: 500 clamp(32px, 3.4vw, 52px)/1 var(--serif); letter-spacing: -.045em; }
.project-content > p:not(.project-type) { max-width: 390px; margin-bottom: 28px; color: #c9c9c2; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 30px; list-style: none; }
.tags li { padding: 5px 9px; border: 1px solid #626661; font-size: 11px; }

.statement { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 170px 0; }
.statement > div { max-width: 550px; }
.statement h2 { margin: 0 0 36px; }
.statement p { margin: 0 0 30px; font-size: 19px; line-height: 1.55; }
.experience { padding: 130px 0; background: #e4e1da; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.experience h2 { max-width: 560px; }
.experience-copy { max-width: 440px; padding-top: 50px; font-size: 18px; }
.experience-copy ul { padding: 0; margin: 45px 0 0; border-top: 1px solid #bbb8b0; list-style: none; }
.experience-copy li { display: grid; gap: 4px; padding: 17px 0; border-bottom: 1px solid #bbb8b0; }
.experience-copy span { font: 11px var(--mono); text-transform: uppercase; }
.contact { padding: 165px 0; }
.contact h2 { margin-top: 30px; }
.contact h2 a { color: #df4f37; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 7px; }
.contact-details { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 38px 0 0; font-size: 14px; }
.contact-details a { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; }
.site-footer { display: flex; flex-wrap: wrap; gap: 28px; padding: 22px 0 34px; border-top: 1px solid var(--line); font: 11px var(--mono); text-transform: uppercase; }
.site-footer span:first-child { margin-right: auto; }

.case-hero { padding: 110px 0 90px; }
.case-hero h1 { max-width: 950px; margin: 33px 0; font: 500 clamp(48px, 7vw, 105px)/.97 var(--serif); letter-spacing: -.065em; }
.case-intro { max-width: 630px; font-size: 22px; line-height: 1.45; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1040px; margin-top: 54px; }
.impact-stats > div { min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); }
.impact-stats strong { max-width: 230px; font: 500 clamp(24px, 2.7vw, 36px)/.98 var(--serif); letter-spacing: -.05em; }
.impact-stats span { max-width: 210px; font-size: 13px; line-height: 1.35; color: #d7d3ca; }
.case-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 20px; margin-top: 65px; border-top: 1px solid var(--line); font-size: 14px; }
.case-meta span, .outcome-card span { display: block; margin-bottom: 5px; font: 11px var(--mono); text-transform: uppercase; }
.case-visual .project-visual { aspect-ratio: 1.8; }
.case-visual .project-visual--image { display: block; aspect-ratio: auto; }
.case-visual .project-visual--image img { width: 100%; height: auto; object-fit: initial; }
.case-visual .project-visual--scroll { display: flex; aspect-ratio: 1.55; background: #232624; }
.case-visual .project-visual--scroll::before, .case-visual .project-visual--scroll::after { border-radius: 56% 44% 63% 37% / 41% 58% 42% 59%; background: linear-gradient(135deg, #b98056, #6c4a36); opacity: .95; }
.case-visual .project-visual--scroll::before { width: 34%; top: -15%; right: -8%; transform: rotate(28deg); }
.case-visual .project-visual--scroll::after { width: 19%; left: -8%; bottom: -9%; transform: rotate(-24deg); }
.case-visual .project-visual--scroll .scroll-frame { border-color: rgba(255, 255, 255, .18); box-shadow: 0 30px 65px rgba(0, 0, 0, .48); }
.case-visual .scroll-frame { width: min(76%, 760px); }
.case-visual .project-visual--scroll .scroll-frame__viewport img { animation: none; }
.case-visual .project-visual--scroll.preview--white .scroll-frame { background: #fff; }
.case-visual .project-visual--scroll.preview--white .scroll-frame__viewport img { width: 100%; height: 100%; object-fit: contain; }
.case-body { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(48px, 8vw, 120px); padding: 130px 0; }
.case-body aside { position: sticky; top: 32px; align-self: start; font: 11px var(--mono); text-transform: uppercase; }
.case-body aside p { margin-top: 0; }
.case-body aside a { display: block; margin-top: 10px; color: var(--muted); font: 14px var(--sans); text-transform: none; }
.case-content { min-width: 0; max-width: 920px; }
.case-content section { margin-bottom: 105px; scroll-margin-top: 30px; }
.case-content h2 { margin: 20px 0 25px; font: 500 clamp(34px, 4vw, 54px)/1.05 var(--serif); letter-spacing: -.05em; }
.case-content > section > p:not(.eyebrow) { font-size: 18px; line-height: 1.6; }
.case-content blockquote { padding: 5px 0 5px 26px; margin: 42px 0; border-left: 2px solid #df4f37; font: 500 26px/1.3 var(--serif); }
.section-intro { max-width: 680px; margin: -6px 0 0; font-size: 17px; line-height: 1.55; }
.decision-list { border-top: 1px solid var(--line); margin-top: 36px; }
.decision-list article { display: grid; grid-template-columns: 85px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.decision-list span { font: 11px var(--mono); color: var(--muted); }
.decision-list h3 { margin: 0 0 10px; font: 500 25px/1.1 var(--serif); letter-spacing: -.035em; }
.decision-list p { max-width: 720px; margin: 0; line-height: 1.55; }
.finding-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 36px; background: var(--line); border: 1px solid var(--line); }
.finding-grid article { min-height: 180px; padding: 26px; background: var(--paper); }
.finding-grid h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.08; }
.finding-grid p { margin: 0; font-size: 15px; line-height: 1.55; }
.evidence-grid { display: grid; gap: 22px; margin-top: 38px; }
.case-evidence { margin: 0; border: 1px solid var(--line); background: #eeebe5; }
.case-evidence > a { display: block; padding: 18px; background: #fff; }
.case-evidence img { display: block; width: 100%; height: auto; }
.case-evidence figcaption { padding: 22px 24px 25px; }
.case-evidence strong { display: block; font: 500 24px/1.12 var(--serif); letter-spacing: -.035em; }
.case-evidence p { max-width: 660px; margin: 10px 0 16px; font-size: 15px; line-height: 1.5; }
.case-evidence figcaption a { font: 600 13px var(--sans); text-decoration: underline; text-underline-offset: 4px; }
.future-section { padding: 40px; background: var(--ink); color: var(--paper); }
.future-section .eyebrow { color: #d7d3ca; }
.future-section h2 { max-width: 600px; }
.future-section > p:not(.eyebrow) { max-width: 700px; color: #e1ded7; }
.workflow-steps, .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.workflow-steps > div, .benefit-grid > div { padding: 26px; border: 1px solid var(--line); background: #f5f2eb; }
.workflow-steps span { display: block; margin-bottom: 28px; font: 11px var(--mono); color: var(--accent); }
.workflow-steps h3, .benefit-grid h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.08; }
.workflow-steps p, .benefit-grid p { margin: 0; font-size: 15px; line-height: 1.55; }
.case-carousel { margin-top: 38px; }
.case-carousel__viewport { overflow: hidden; transition: height .42s cubic-bezier(.22, .61, .36, 1); }
.case-carousel__track { display: flex; align-items: flex-start; transition: transform .55s cubic-bezier(.22, .61, .36, 1); }
.case-gallery-card { position: relative; flex: 0 0 100%; min-height: 430px; margin: 0; padding: 30px; overflow: hidden; background: #232624; color: var(--paper); }
.case-gallery-card::before, .case-gallery-card::after { content: ''; position: absolute; border-radius: 56% 44% 63% 37% / 41% 58% 42% 59%; opacity: .92; }
.case-gallery-card::before { width: 190px; height: 165px; right: -52px; top: -54px; transform: rotate(28deg); background: linear-gradient(135deg, #b98056, #6c4a36); }
.case-gallery-card::after { width: 125px; height: 115px; left: -42px; bottom: 62px; transform: rotate(-24deg); background: linear-gradient(135deg, #63737a, #36454b); }
.case-gallery-card .scroll-stage { position: relative; z-index: 1; height: 370px; }
.case-gallery-card .scroll-frame { width: min(78%, 540px); height: 100%; }
.case-carousel .scroll-frame__viewport img { animation: portfolio-page-scroll 32s cubic-bezier(.55, 0, .25, 1) infinite alternate; animation-play-state: paused; }
.case-carousel .case-gallery-card.is-active .scroll-frame__viewport img { animation-play-state: running; }
.case-gallery-card--static { min-height: 0; padding: 30px; }
.case-gallery-card--static .scroll-stage { display: block; height: auto; }
.case-gallery-card--static .scroll-frame { width: 100%; height: auto; min-height: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px; background: #fff; box-shadow: 0 22px 40px rgba(0, 0, 0, .3); }
.case-gallery-card--static .scroll-frame__bar { display: none; }
.case-gallery-card--static .scroll-frame__viewport { height: auto; overflow: hidden; }
.case-gallery-card--static .scroll-frame__viewport img { width: 100%; height: auto; object-fit: initial; animation: none !important; transform: none !important; }
.case-gallery-card--static figcaption { padding: 22px 0 0; }
.case-gallery-card--interactive .scroll-stage { height: 420px; }
.case-gallery-card--interactive .scroll-frame { width: min(86%, 720px); }
.case-gallery-card--interactive .scroll-frame__viewport { overflow-y: auto; scrollbar-color: #aeada4 #f1eee8; scrollbar-width: thin; }
.case-gallery-card--interactive .scroll-frame__viewport img { animation: none !important; transform: none !important; }
.case-gallery-card--interactive .scroll-frame__viewport::-webkit-scrollbar { width: 10px; }
.case-gallery-card--interactive .scroll-frame__viewport::-webkit-scrollbar-track { background: #f1eee8; }
.case-gallery-card--interactive .scroll-frame__viewport::-webkit-scrollbar-thumb { border: 2px solid #f1eee8; border-radius: 10px; background: #aeada4; }
.case-gallery-card--interactive .scroll-frame__viewport:focus-visible { outline: 3px solid #b98056; outline-offset: -3px; }
.case-gallery-card figcaption { position: relative; z-index: 1; display: grid; gap: 5px; padding: 22px 0 0; }
.case-gallery-card figcaption span { font: 11px var(--mono); text-transform: uppercase; color: #c9c6bd; }
.case-gallery-card figcaption strong { font: 500 28px/1 var(--serif); }
.image-modal-link { width: fit-content; margin-top: 8px; padding: 0; border: 0; background: transparent; color: inherit; font: 12px var(--mono); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.image-modal-link:hover, .image-modal-link:focus-visible { color: #d8b08a; }
.image-modal { width: min(94vw, 1440px); max-width: none; max-height: 92vh; padding: 18px; border: 0; background: #1d211e; box-shadow: 0 24px 90px rgba(0, 0, 0, .55); }
.image-modal::backdrop { background: rgba(10, 12, 11, .78); backdrop-filter: blur(4px); }
.image-modal img { display: block; max-width: 100%; max-height: calc(92vh - 36px); margin: 0 auto; object-fit: contain; }
.image-modal__close { position: fixed; z-index: 1; top: 20px; right: 24px; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; background: #1d211e; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
.case-carousel__controls { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.case-carousel__button, .case-carousel__dots button { appearance: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.case-carousel__button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; font-size: 20px; }
.case-carousel__dots { display: flex; gap: 8px; }
.case-carousel__dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: #b7b2aa; }
.case-carousel__dots button[aria-current="true"] { background: var(--ink); }
.case-carousel__button:hover, .case-carousel__button:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.outcome-card { padding: 30px; margin-top: 35px; background: #e4e1da; }
.outcome-card strong { font: 500 32px/1.1 var(--serif); }
.outcome-card p { margin: 12px 0 0; }
.next-project { padding: 90px 0 125px; border-top: 1px solid var(--line); }
.next-project > a { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-top: 23px; font: 500 clamp(35px, 5vw, 70px)/1 var(--serif); letter-spacing: -.06em; }
.next-project > a span { font: 32px var(--sans); }
.return-link { margin-left: auto; }

.reveal, .project, .statement, .experience, .contact { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .case-body { grid-template-columns: 1fr; gap: 42px; padding-block: 95px; }
  .case-body aside { position: static; min-width: 0; display: flex; flex-wrap: wrap; gap: 12px 18px; padding-bottom: 4px; border-bottom: 1px solid var(--line); }
  .case-body aside p { width: 100%; margin: 0 0 4px; }
  .case-body aside a { margin: 0; }
  .case-content { max-width: none; }
  .impact-stats strong { font-size: clamp(23px, 3.2vw, 32px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal, .project, .statement, .experience, .contact { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .site-header { height: 75px; }
  .menu-toggle { position: relative; display: flex; align-items: center; gap: 10px; padding: 9px 0; border: 0; background: none; font: 14px var(--sans); }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 18px; height: 1px; content: ''; background: var(--ink); transition: transform .2s; }
  .menu-toggle i::after { transform: translateY(5px); }
  .menu-toggle[aria-expanded=true] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded=true] i::after { transform: rotate(-90deg); }
  nav { position: absolute; z-index: 3; top: 75px; right: 0; left: 0; display: none; flex-direction: column; gap: 19px; padding: 26px 20px 35px; border-bottom: 1px solid var(--line); background: var(--paper); font: 500 28px var(--serif); }
  nav.is-open { display: flex; }
  .cv-link { align-self: flex-start; margin: 8px 0 0; font: 500 20px var(--serif); }
  .hero { min-height: calc(100svh - 75px); padding-block: 75px 40px; }
  .hero h1 { margin: 28px 0; font-size: clamp(48px, 14vw, 74px); }
  .hero-footer { grid-template-columns: 1fr; gap: 32px; }
  .hero-footer p { font-size: 17px; }
  .work-section { padding: 85px 0; }
  .section-heading { margin-bottom: 52px; }
  .projects { gap: 80px; }
  .project, .project--reverse { grid-template-columns: 1fr; gap: 26px; }
  .project--reverse .project-visual, .project--reverse .project-content { order: initial; }
  .project-content h3 { font-size: 39px; }
  .statement, .experience-grid { grid-template-columns: 1fr; }
  .statement { gap: 48px; padding: 100px 0; }
  .statement h2, .experience h2, .contact h2 { font-size: 45px; }
  .statement p, .experience-copy { font-size: 17px; }
  .experience { padding: 85px 0; }
  .experience-copy { padding-top: 8px; }
  .contact { padding: 100px 0; }
  .contact-details { gap: 10px 18px; }
  .site-footer { gap: 16px; }
  .site-footer span:first-child { width: 100%; }
  .case-hero { padding: 70px 0; }
  .case-hero h1 { font-size: 53px; }
  .case-intro { font-size: 19px; }
  .impact-stats { grid-template-columns: 1fr; margin-top: 40px; }
  .impact-stats > div { min-height: 118px; }
  .case-meta { grid-template-columns: 1fr; gap: 18px; margin-top: 45px; }
  .case-visual .project-visual { aspect-ratio: 1.25; }
  .case-visual .project-visual--image { aspect-ratio: auto; }
  .case-visual .project-visual--scroll { aspect-ratio: 1.1; }
  .case-body { grid-template-columns: 1fr; gap: 35px; padding: 80px 0; }
  .workflow-steps, .benefit-grid, .finding-grid { grid-template-columns: 1fr; }
  .case-gallery-card { min-height: 380px; padding: 20px; }
  .case-gallery-card .scroll-stage { height: 310px; }
  .case-gallery-card--interactive .scroll-stage { height: 310px; }
  .case-gallery-card--interactive .scroll-frame { width: 100%; }
  .case-gallery-card--static { min-height: 0; }
  .case-gallery-card figcaption strong { font-size: 25px; }
  .case-body aside { position: static; display: flex; flex-wrap: wrap; gap: 16px; }
  .case-body aside p { width: 100%; margin-bottom: 0; }
  .case-body aside a { margin: 0; }
  .case-content section { margin-bottom: 70px; }
  .case-content h2 { font-size: 40px; }
  .case-content > section > p:not(.eyebrow) { font-size: 17px; }
  .decision-list article { grid-template-columns: 42px 1fr; gap: 12px; }
  .decision-list h3 { font-size: 23px; }
  .future-section { padding: 28px 24px; }
  .next-project { padding: 70px 0 90px; }
  .next-project > a { font-size: 43px; }
  .return-link { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-frame__viewport img, .case-carousel__track { animation: none; transition: none; }
}
