:root {
  --ink: #172018;
  --ink-2: #202920;
  --bone: #f2f0e6;
  --paper: #e8e6da;
  --acid: #d5e75f;
  --clay: #d56742;
  --line: rgba(23, 32, 24, 0.2);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bone); font-family: var(--sans); overflow-x: hidden; cursor: default; }
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }

.page-progress { position: fixed; z-index: 1000; inset: 0 0 auto; height: 3px; pointer-events: none; }
.page-progress span { display: block; width: 100%; height: 100%; background: var(--acid); transform: scaleX(0); transform-origin: left; }
.cursor { position: fixed; z-index: 1200; left: 0; top: 0; width: 18px; height: 18px; border: 1px solid var(--acid); border-radius: 50%; pointer-events: none; opacity: 0; transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s, opacity .25s; mix-blend-mode: difference; }
.cursor span { opacity: 0; color: var(--ink); font-size: 10px; font-weight: 600; }
.cursor.is-view { width: 76px; height: 76px; background: var(--acid); border-color: var(--acid); display: grid; place-items: center; mix-blend-mode: normal; }
.cursor.is-view span { opacity: 1; }

.site-header { position: fixed; z-index: 900; top: 0; left: 0; right: 0; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; color: #fff; transition: padding .35s, color .35s, background .35s; }
.site-header.is-scrolled { padding-block: 13px; color: var(--ink); background: rgba(242, 240, 230, .88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; letter-spacing: .16em; }
.brand-mark { width: 28px; height: 28px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.menu-toggle { border: 0; background: transparent; display: flex; align-items: center; gap: 12px; padding: 7px 0 7px 12px; color: inherit; cursor: pointer; }
.menu-label { font-size: 11px; font-weight: 600; letter-spacing: .13em; }
.menu-icon { position: relative; display: block; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; }
.menu-icon i { position: absolute; left: 50%; top: 50%; display: block; width: 13px; height: 1px; background: currentColor; transform: translate(-50%, -3px); transition: transform .35s; }
.menu-icon i + i { transform: translate(-50%, 3px); }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translate(-50%, 0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translate(-50%, 0) rotate(-45deg); }

.menu-overlay { position: fixed; z-index: 800; inset: 0; display: flex; flex-direction: column; justify-content: center; color: var(--bone); background: var(--ink); padding: 100px 7vw 45px; clip-path: circle(0 at calc(100% - 50px) 45px); pointer-events: none; visibility: hidden; transition: clip-path .75s cubic-bezier(.76,0,.24,1), visibility .75s; }
.menu-overlay.is-open { clip-path: circle(150% at calc(100% - 50px) 45px); pointer-events: auto; visibility: visible; }
.menu-noise, .hero::after, .work::after { content: ""; position: absolute; inset: 0; opacity: .055; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.menu-overlay nav { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(820px, 100%); }
.menu-overlay nav a, .menu-overlay nav button { position: relative; display: flex; align-items: baseline; gap: 30px; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); background: none; padding: 9px 0; color: var(--bone); font-family: var(--serif); font-size: clamp(50px, 7.5vw, 110px); line-height: .95; text-align: left; cursor: pointer; transition: color .25s, padding-left .25s; }
.menu-overlay nav a:hover, .menu-overlay nav button:hover { color: var(--acid); padding-left: 20px; }
.menu-overlay nav span { font: 500 10px var(--sans); letter-spacing: .1em; }
.menu-foot { position: relative; z-index: 1; margin-top: auto; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .11em; }
.menu-contact { display: flex; gap: 24px; }

.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; color: #fff; background: #2d352d; }
.hero-media { position: absolute; inset: -3%; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,10,.67) 0%, rgba(10,15,10,.23) 50%, rgba(10,15,10,.08) 75%), linear-gradient(0deg, rgba(8,12,8,.52), transparent 42%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 110px 6vw 72px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 30px; font-size: 10px; font-weight: 600; letter-spacing: .17em; }
.eyebrow span { width: 35px; height: 1px; background: currentColor; opacity: .6; }
.hero-title { margin: 0; width: min(1040px, 92vw); font-size: clamp(78px, 12vw, 180px); line-height: .72; letter-spacing: -.065em; font-weight: 500; }
.title-line { display: block; overflow: hidden; padding-bottom: .1em; }
.title-line > span { display: block; transform: translateY(110%); animation: title-in 1s cubic-bezier(.16,1,.3,1) forwards; }
.title-line:nth-child(2) > span { animation-delay: .12s; }
.title-line:nth-child(3) > span { animation-delay: .24s; }
.hero-title .serif { padding-left: .42em; font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.045em; }
@keyframes title-in { to { transform: translateY(0); } }
.hero-bottom { display: flex; align-items: center; gap: 25px; margin: 35px 0 0 auto; max-width: 440px; }
.hero-bottom p { margin: 0; max-width: 330px; font-size: 15px; line-height: 1.55; }
.circle-link { flex: 0 0 64px; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: color .3s, background .3s, border .3s; }
.circle-link:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.circle-link svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.scroll-hint { position: absolute; z-index: 2; left: 32px; bottom: 34px; display: flex; gap: 12px; align-items: center; font-size: 9px; letter-spacing: .15em; writing-mode: vertical-rl; }
.scroll-hint i { width: 1px; height: 46px; background: rgba(255,255,255,.5); overflow: hidden; }
.scroll-hint i::after { content: ""; display: block; width: 100%; height: 50%; background: #fff; animation: scroll-line 2s infinite; }
@keyframes scroll-line { from { transform: translateY(-100%); } to { transform: translateY(210%); } }
.hero-index { position: absolute; z-index: 2; right: 32px; bottom: 34px; font-size: 9px; line-height: 1.6; letter-spacing: .11em; text-align: right; }

.statement { padding: 150px 6vw 180px; background: var(--bone); }
.statement-grid { position: relative; display: grid; grid-template-columns: 1fr 4fr; gap: 4vw; max-width: 1500px; margin: auto; }
.section-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; white-space: nowrap; }
.section-label span { display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 11px; border: 1px solid currentColor; border-radius: 50%; }
.section-label.light { color: var(--paper); }
.statement-copy { padding-top: 30px; }
.big-copy { margin: 0; font-size: clamp(50px, 7.3vw, 116px); line-height: .93; letter-spacing: -.055em; }
.big-copy.serif { margin-left: 6vw; font-family: var(--serif); font-weight: 400; }
.big-copy em { color: var(--clay); font-weight: 400; }
.statement-detail { display: grid; grid-template-columns: minmax(250px, 440px) auto; gap: 60px; align-items: end; margin: 80px 8vw 0 auto; max-width: 740px; }
.statement-detail p { margin: 0; font-size: 16px; line-height: 1.7; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 600; letter-spacing: .12em; white-space: nowrap; }
.text-link span { margin-left: 18px; }
.orbit-seal { position: absolute; left: 3vw; bottom: -85px; width: 122px; height: 122px; }
.orbit-seal svg { overflow: visible; width: 100%; animation: orbit 18s linear infinite; }
.orbit-seal text { font: 600 9px var(--sans); letter-spacing: 1.6px; fill: var(--ink); }
.seal-leaf { fill: var(--clay); transform-origin: 60px 60px; animation: orbit 18s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

.work { position: relative; padding: 140px 0 160px; color: var(--bone); background: var(--ink); overflow: hidden; }
.work-head { position: relative; z-index: 1; padding: 0 6vw 80px; }
.work-heading { display: flex; justify-content: space-between; align-items: flex-end; margin: 55px 0 0 17vw; }
.work h2, .services h2, .lab h2 { margin: 0; font-size: clamp(58px, 7.2vw, 112px); line-height: .86; letter-spacing: -.055em; font-weight: 400; }
.work h2 em, .services h2 em, .lab h2 em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.gallery-controls { display: flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .1em; }
.gallery-controls button { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--bone); background: transparent; cursor: pointer; transition: .25s; }
.gallery-controls button:hover { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.gallery-controls b { color: var(--acid); font-weight: 500; }
.project-track { position: relative; z-index: 1; display: flex; gap: 24px; overflow-x: auto; padding: 0 6vw 20px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.project-track::-webkit-scrollbar { display: none; }
.project-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.project-card { flex: 0 0 min(78vw, 1160px); scroll-snap-align: center; }
.project-image { height: min(66vh, 720px); overflow: hidden; background: #333; }
.project-image img { width: 100%; height: 110%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1), filter .4s; transform: scale(1.025); }
.project-card:hover .project-image img { transform: scale(1.065); }
.project-meta { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 20px; }
.project-meta > div { display: flex; flex-direction: column; gap: 6px; }
.project-meta span { font: 400 clamp(22px, 2.4vw, 38px) var(--serif); }
.project-meta small { font-size: 9px; letter-spacing: .15em; opacity: .6; }
.project-meta button { border: 0; border-bottom: 1px solid rgba(255,255,255,.45); padding: 7px 0; color: var(--bone); background: none; font-size: 10px; font-weight: 600; letter-spacing: .12em; cursor: pointer; }
.project-meta button span { margin-left: 20px; font: inherit; }

.lab { padding: 150px 6vw; background: var(--acid); }
.lab-intro { display: grid; grid-template-columns: 1fr 4fr; gap: 4vw; }
.lab-intro h2 { color: var(--ink); }
.lab-intro h2 em { color: var(--clay); }
.lab-intro > p { align-self: end; max-width: 210px; margin: 0 0 8px auto; font-size: 14px; line-height: 1.55; }
.lab-builder { display: grid; grid-template-columns: 1.05fr .95fr; gap: 6vw; align-items: stretch; margin-top: 100px; }
.lab-options { display: flex; flex-direction: column; justify-content: center; }
.lab-options fieldset { border: 0; border-top: 1px solid rgba(23,32,24,.4); margin: 0; padding: 28px 0 34px; }
.lab-options legend { padding: 0 0 24px; font-size: 9px; font-weight: 600; letter-spacing: .15em; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-row button { border: 1px solid rgba(23,32,24,.45); border-radius: 100px; background: transparent; padding: 12px 18px; font-size: 10px; font-weight: 600; letter-spacing: .1em; cursor: pointer; transition: .25s; }
.choice-row button:hover, .choice-row button.is-active { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.concept-card { position: relative; min-height: 620px; overflow: hidden; color: #fff; background: var(--ink); }
.concept-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 40%, rgba(0,0,0,.7)); }
.concept-image, .concept-image img { position: absolute; inset: 0; width: 100%; height: 100%; }
.concept-image img { object-fit: cover; transition: opacity .25s, transform 1s; }
.concept-card.is-changing img { opacity: .15; transform: scale(1.08); }
.concept-top, .concept-bottom { position: absolute; z-index: 1; left: 24px; right: 24px; display: flex; justify-content: space-between; }
.concept-top { top: 22px; font-size: 9px; letter-spacing: .14em; }
.concept-bottom { bottom: 25px; align-items: flex-end; gap: 30px; }
.concept-bottom > div { display: flex; flex-direction: column; gap: 7px; }
.concept-bottom small { font-size: 8px; letter-spacing: .12em; opacity: .7; }
.concept-bottom strong { font: 400 clamp(30px, 3vw, 50px) var(--serif); line-height: .9; }
.concept-bottom p { max-width: 220px; margin: 0; font-size: 12px; line-height: 1.45; }

.services { padding: 160px 6vw; background: var(--bone); }
.services-head { display: grid; grid-template-columns: 1fr 4fr; gap: 4vw; }
.services h2 em { color: var(--clay); }
.services-list { margin: 110px 0 0 17vw; border-top: 1px solid var(--line); }
.service-item { border-bottom: 1px solid var(--line); }
.service-item > button { width: 100%; display: grid; grid-template-columns: 70px 1fr 50px; align-items: center; border: 0; background: none; padding: 27px 0; text-align: left; cursor: pointer; }
.service-num { font-size: 10px; letter-spacing: .1em; opacity: .55; }
.service-name { font: 400 clamp(32px, 4.2vw, 68px) var(--serif); line-height: 1; transition: padding-left .3s, color .3s; }
.service-item > button:hover .service-name { padding-left: 15px; color: var(--clay); }
.service-icon { justify-self: end; font-size: 26px; font-weight: 300; }
.service-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s cubic-bezier(.16,1,.3,1); }
.service-body > div { overflow: hidden; display: grid; grid-template-columns: minmax(250px, 480px) auto; gap: 30px; align-items: end; margin-left: 70px; }
.service-body p { margin: 0; padding: 0 0 35px; font-size: 15px; line-height: 1.65; }
.service-body span { padding-bottom: 38px; font-size: 9px; letter-spacing: .14em; opacity: .6; text-align: right; }
.service-item.is-open .service-body { grid-template-rows: 1fr; }

.big-cta { position: relative; min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: var(--bone); background: var(--clay); text-align: center; }
.big-cta::before, .big-cta::after { content: ""; position: absolute; width: 50vw; height: 50vw; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.big-cta::before { left: -28vw; top: -18vw; }
.big-cta::after { right: -26vw; bottom: -25vw; }
.cta-leaf { margin-bottom: 35px; color: var(--acid); font-size: 55px; animation: orbit 9s linear infinite; }
.big-cta > p { font-size: 10px; font-weight: 600; letter-spacing: .2em; }
.big-cta > button { position: relative; z-index: 1; border: 0; background: none; color: var(--bone); cursor: pointer; }
.big-cta button span, .big-cta button em { display: block; font-size: clamp(58px, 9.8vw, 150px); line-height: .77; letter-spacing: -.06em; }
.big-cta button span { font-weight: 500; }
.big-cta button em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.big-cta button::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: -20px; height: 2px; background: var(--acid); transform: scaleX(0); transition: transform .5s; }
.big-cta button:hover::after { transform: scaleX(1); }
.cta-foot { position: absolute; bottom: 32px; left: 6vw; right: 6vw; display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .15em; }

footer { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; align-items: end; padding: 70px 6vw 40px; color: var(--bone); background: var(--ink); }
.footer-brand { font-size: 18px; }
footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: 8px; letter-spacing: .12em; opacity: .65; }
footer a { color: inherit; }

dialog { max-width: none; max-height: none; border: 0; margin: 0; padding: 0; color: var(--bone); background: var(--ink); }
dialog::backdrop { background: rgba(12,17,12,.85); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; z-index: 5; top: 22px; right: 25px; width: 48px; height: 48px; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; font-size: 25px; cursor: pointer; }
.project-dialog[open] { width: 100%; height: 100%; display: grid; grid-template-columns: 1.25fr .75fr; animation: dialog-in .5s cubic-bezier(.16,1,.3,1); }
@keyframes dialog-in { from { opacity: 0; transform: translateY(30px); } }
.dialog-media { min-height: 100%; overflow: hidden; }
.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: 8vw 5vw; }
.dialog-kicker { margin-bottom: 35px; font-size: 9px; letter-spacing: .16em; color: var(--acid); }
.dialog-copy h2 { margin: 0; font: 400 clamp(60px, 7vw, 110px)/.85 var(--serif); }
.dialog-copy p { margin: 40px 0; max-width: 430px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.7); }
.dialog-facts { display: flex; flex-wrap: wrap; gap: 8px; }
.dialog-facts span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-size: 8px; letter-spacing: .13em; }
.inquiry-dialog[open] { width: 100%; min-height: 100%; display: grid; place-items: center; padding: 80px 7vw; animation: dialog-in .5s cubic-bezier(.16,1,.3,1); }
.inquiry-dialog form { width: min(1050px, 100%); }
.form-head { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; margin-bottom: 65px; }
.form-head > span { font-size: 9px; letter-spacing: .15em; color: var(--acid); }
.form-head h2, .form-success h2 { margin: 0; font: 400 clamp(55px, 7vw, 100px)/.84 var(--sans); letter-spacing: -.055em; }
.form-head em, .form-success em { color: var(--acid); font-family: var(--serif); font-weight: 400; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label.wide { grid-column: 1 / -1; }
.form-grid label > span { font-size: 8px; letter-spacing: .15em; color: rgba(255,255,255,.55); }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0; outline: 0; padding: 10px 0 13px; color: var(--bone); background: transparent; font: 400 20px var(--serif); resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--acid); }
.form-grid select option { color: var(--ink); }
.form-submit { width: 100%; display: flex; align-items: center; justify-content: space-between; border: 0; margin-top: 45px; padding: 23px 25px; color: var(--ink); background: var(--acid); font-size: 11px; font-weight: 600; letter-spacing: .13em; cursor: pointer; }
.form-submit b { font-size: 21px; }
.form-success { text-align: center; }
.form-success > span { color: var(--acid); font-size: 50px; }
.form-success p { margin: 30px auto; color: rgba(255,255,255,.65); }
.form-success p a { color: var(--acid); text-decoration: underline; text-underline-offset: 4px; }
.form-success button { border: 0; border-bottom: 1px solid; padding: 8px 0; color: var(--bone); background: none; font-size: 10px; letter-spacing: .14em; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s, transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (pointer: fine) { body, a, button { cursor: none; } .cursor { opacity: 1; } }
@media (max-width: 900px) {
  .site-header { padding: 18px 20px; }
  .hero-content { padding-inline: 28px; }
  .hero-title { font-size: clamp(66px, 16vw, 130px); line-height: .76; }
  .hero-title .serif { padding-left: .15em; }
  .hero-bottom { margin-left: 20vw; }
  .hero-index { display: none; }
  .statement, .lab, .services { padding: 110px 28px; }
  .statement-grid, .lab-intro, .services-head { grid-template-columns: 1fr; }
  .statement-copy { padding-top: 55px; }
  .big-copy.serif { margin-left: 0; }
  .orbit-seal { display: none; }
  .work { padding-block: 110px; }
  .work-head { padding-inline: 28px; }
  .work-heading { margin-left: 0; }
  .project-track { padding-inline: 28px; }
  .project-card { flex-basis: 86vw; }
  .project-image { height: 56vh; }
  .lab-intro > p { margin: 25px 0 0; }
  .lab-builder { grid-template-columns: 1fr; margin-top: 65px; }
  .concept-card { min-height: 580px; }
  .services-list { margin: 70px 0 0; }
  footer { grid-template-columns: 1fr; }
  footer > div { justify-content: flex-start; }
  .project-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .dialog-media { min-height: 55vh; }
  .dialog-copy { padding: 70px 30px; }
}

@media (max-width: 600px) {
  .brand { font-size: 11px; }
  .menu-label { display: none; }
  .menu-overlay { padding-inline: 25px; }
  .menu-overlay nav a, .menu-overlay nav button { font-size: 56px; }
  .menu-foot, .menu-contact { flex-direction: column; gap: 12px; }
  .hero { min-height: 640px; }
  .hero-content { justify-content: flex-end; padding: 120px 20px 120px; }
  .eyebrow { margin-bottom: 24px; }
  .hero-title { font-size: 19vw; }
  .hero-bottom { margin: 28px 0 0; max-width: 350px; }
  .hero-bottom p { font-size: 13px; }
  .circle-link { flex-basis: 54px; width: 54px; height: 54px; }
  .scroll-hint { left: 20px; bottom: 20px; }
  .scroll-hint { display: none; }
  .statement, .lab, .services { padding: 90px 20px; }
  .big-copy { font-size: 14vw; }
  .statement-detail { grid-template-columns: 1fr; gap: 30px; margin: 55px 0 0; }
  .statement-detail .text-link { width: max-content; }
  .work { padding-block: 90px; }
  .work-head { padding: 0 20px 55px; }
  .work-heading { display: block; }
  .gallery-controls { margin-top: 35px; }
  .project-track { gap: 13px; padding-inline: 20px; }
  .project-card { flex-basis: 88vw; }
  .project-image { height: 49vh; }
  .project-meta > div span { font-size: 24px; }
  .project-meta button { font-size: 8px; }
  .lab h2, .services h2 { font-size: 15vw; }
  .choice-row button { padding: 10px 13px; font-size: 8px; }
  .concept-card { min-height: 500px; }
  .concept-bottom { display: block; }
  .concept-bottom p { margin-top: 15px; }
  .service-item > button { grid-template-columns: 35px 1fr 30px; }
  .service-name { font-size: 31px; }
  .service-body > div { grid-template-columns: 1fr; margin-left: 35px; }
  .service-body span { text-align: left; padding-bottom: 28px; }
  .big-cta { min-height: 75vh; padding-inline: 15px; }
  .big-cta button span, .big-cta button em { font-size: 16vw; }
  .cta-foot { font-size: 7px; }
  .form-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 45px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .inquiry-dialog[open] { display: block; overflow-y: auto; padding: 90px 20px 50px; }
}

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