

:root {
  --cream: #f2eddf;
  --ink: #171713;
  --orange: #ff5a1f;
  --yellow: #ffd71c;
  --blue: #6d9cff;
  --acid: #c8ef3f;
  --line: rgba(23, 23, 19, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--orange); color: var(--cream); }
.pad { padding-left: clamp(22px, 4vw, 64px); padding-right: clamp(22px, 4vw, 64px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: absolute; z-index: 30; inset: 0 0 auto; height: 112px; padding: 24px clamp(22px,4vw,64px); display: flex; justify-content: space-between; align-items: flex-start; }
.brand { font-size: 19px; line-height: .76; font-weight: 900; letter-spacing: -.08em; }
.brand span { font: 8px "Courier New", monospace; vertical-align: top; margin-left: 3px; letter-spacing: 0; }
.site-header nav { display: flex; gap: 42px; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.site-header nav a { position: relative; padding-bottom: 5px; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; border-bottom: 1px solid; transition: right .3s; }
.site-header nav a:hover::after, .site-header nav a.active::after { right: 0; }
.site-header.header-light { color: var(--cream); }
.menu-button { display: none; position: relative; width: 30px; height: 24px; border: 0; background: none; padding: 0; cursor: pointer; }
.menu-button span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.menu-button span:nth-child(1) { top: 2px; }
.menu-button span:nth-child(2) { top: 11px; }
.menu-button span:nth-child(3) { top: 20px; }
.menu-button.is-open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 100svh; padding-top: 150px; padding-bottom: 40px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: var(--ink); color: var(--cream); }
.hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(12,12,10,.72) 0%, rgba(12,12,10,.34) 58%, rgba(12,12,10,.14) 100%); pointer-events: none; }
.eyebrow, .section-index { font-family: "Courier New", monospace; font-size: 11px; line-height: 1.3; text-transform: uppercase; letter-spacing: .11em; }
.hero .eyebrow { position: relative; z-index: 2; }
.hero-title { position: relative; z-index: 2; margin: auto 0; max-width: 1200px; font-size: clamp(54px, 9.2vw, 148px); font-weight: 750; line-height: .84; letter-spacing: -.075em; }
.scribble { display: inline-block; font-family: Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.08em; position: relative; }
.scribble::after { content: ""; position: absolute; left: -2%; right: -5%; bottom: -.05em; height: .08em; background: var(--orange); transform: rotate(-2deg); border-radius: 50%; }
.hero-bottom { z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; }
.hero-bottom p { max-width: 420px; margin: 0; font-size: clamp(17px, 1.5vw, 23px); line-height: 1.35; letter-spacing: -.025em; }
.circle-link { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 22px; transition: .25s; }
.circle-link:hover { background: var(--cream); color: var(--ink); transform: translateY(4px); }
.hero-video { position: absolute; z-index: 0; inset: 0; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 74% 38%, rgba(255,90,31,.8), transparent 26%), linear-gradient(135deg, #252522, #4b4339 60%, #171713); }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-video > span { position: absolute; right: clamp(22px,4vw,64px); bottom: 115px; padding: 9px 12px; border: 1px solid rgba(242,237,223,.55); color: var(--cream); background: rgba(23,23,19,.3); backdrop-filter: blur(5px); font: 9px "Courier New", monospace; letter-spacing: .1em; }

.section-dark { background: var(--ink); color: var(--cream); }
.intro { min-height: 80vh; padding-top: 70px; padding-bottom: 80px; display: grid; grid-template-columns: 1fr 2fr; }
.intro-copy { align-self: center; max-width: 900px; }
.intro h2 { font-size: clamp(42px, 6.1vw, 92px); line-height: .95; letter-spacing: -.065em; margin: 0 0 48px; }
.intro-copy > p { max-width: 710px; font-size: clamp(19px,2vw,29px); line-height: 1.35; letter-spacing: -.035em; }
.text-link { display: inline-flex; gap: 24px; border-bottom: 1px solid; padding: 8px 0; margin-top: 28px; text-transform: uppercase; font: 12px "Courier New", monospace; letter-spacing: .06em; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(4px,-4px); }

.client-banner { height: 112px; display: flex; align-items: center; overflow: hidden; background: var(--yellow); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.logo-ticker { display: flex; width: max-content; will-change: transform; animation: logos-right 32s linear infinite; }
.logo-track { display: flex; flex: none; align-items: center; gap: clamp(58px,7vw,120px); padding-right: clamp(58px,7vw,120px); }
.client-logo { min-width: max-content; display: flex; align-items: baseline; gap: 7px; color: var(--ink); line-height: .8; }
.client-logo strong { font-size: clamp(18px,2vw,29px); font-weight: 850; letter-spacing: -.075em; }
.client-logo small { font: 8px "Courier New", monospace; letter-spacing: .08em; }
@keyframes logos-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.client-banner:hover .logo-ticker { animation-play-state: paused; }

.work-section { padding-top: 90px; padding-bottom: 110px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: 70px; }
.section-heading h2 { font-size: clamp(52px,8vw,120px); line-height: .85; letter-spacing: -.075em; margin: 0; }
.project-list { border-top: 1px solid var(--line); }
.project-row { display: grid; grid-template-columns: 60px minmax(230px, .9fr) 1fr 40px; align-items: center; gap: clamp(20px,4vw,70px); padding: 22px 0; border-bottom: 1px solid var(--line); }
.project-number { align-self: start; font: 11px "Courier New", monospace; }
.project-image { aspect-ratio: 16/9; overflow: hidden; position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.placeholder { display: grid; place-items: center; font: 10px "Courier New", monospace; letter-spacing: .1em; }
.placeholder.coral { background: #fa7b60; }
.placeholder.blue { background: var(--blue); }
.placeholder.acid { background: var(--acid); }
.placeholder i { position: absolute; width: 32%; aspect-ratio: 1; border-radius: 50%; border: 2px solid currentColor; opacity: .45; }
.project-row:hover .project-image { transform: scale(.975) rotate(-1deg); }
.project-copy p, .project-copy span { font: 11px "Courier New", monospace; text-transform: uppercase; letter-spacing: .07em; }
.project-copy h3 { margin: 8px 0 28px; font-size: clamp(30px,4vw,62px); line-height: .95; letter-spacing: -.055em; }
.project-arrow { font-size: 26px; transition: transform .2s; }
.project-row:hover .project-arrow { transform: translate(5px,-5px); }
.button { display: inline-flex; justify-content: space-between; min-width: 215px; gap: 35px; margin-top: 48px; padding: 14px 18px; border: 1px solid var(--ink); border-radius: 100px; text-transform: uppercase; font: 11px "Courier New", monospace; letter-spacing: .07em; transition: .25s; }
.button:hover { background: var(--orange); border-color: var(--orange); }

.services { background: var(--yellow); padding-top: 70px; padding-bottom: 100px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 90px; }
.service-grid h2 { font-size: clamp(48px,7vw,104px); line-height: .88; letter-spacing: -.07em; margin: 0; }
.service-grid ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid; }
.service-grid li { display: flex; align-items: center; gap: 25px; padding: 19px 0; border-bottom: 1px solid; font-size: clamp(19px,2.3vw,32px); letter-spacing: -.035em; }
.service-grid li span { font: 10px "Courier New", monospace; }

.cta { text-align: center; padding-top: 100px; padding-bottom: 110px; overflow: hidden; }
.mini-sun { width: 82px; aspect-ratio: 1; border-radius: 50%; background: var(--orange); margin: 0 auto 28px; }
.cta p { font: 11px "Courier New", monospace; letter-spacing: .08em; text-transform: uppercase; }
.cta h2 { margin: 30px 0 0; font-size: clamp(62px,10.8vw,170px); line-height: .77; letter-spacing: -.085em; }
.cta h2 em { font-family: Georgia, serif; font-weight: 400; }
.button-dark { background: var(--ink); color: var(--cream); margin-top: 60px; }
.footer { display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: end; gap: 30px; background: var(--ink); color: var(--cream); padding-top: 45px; padding-bottom: 35px; font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .06em; }
.footer-logo { font: 800 24px Arial, Helvetica, sans-serif; letter-spacing: -.06em; }
.footer p { margin: 0; }
.footer div { display: flex; gap: 20px; }
.footer div a:hover { color: var(--yellow); }

/* Interior pages */
.page-hero { min-height: 84svh; padding-top: 165px; padding-bottom: 70px; display: flex; flex-direction: column; justify-content: space-between; }
.page-hero h1, .contact-hero h1 { margin: 70px 0 35px; font-size: clamp(62px,10vw,155px); line-height: .81; letter-spacing: -.085em; }
.page-hero h1 em, .contact-hero h1 em { font-family: Georgia, serif; font-weight: 400; }
.page-lede { max-width: 570px; margin: 0 0 0 auto; font-size: clamp(19px,2vw,28px); line-height: 1.35; letter-spacing: -.035em; }
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 90px 28px; padding-bottom: 120px; }
.work-card.wide { grid-column: 1 / -1; }
.work-visual { aspect-ratio: 4/3; overflow: hidden; transition: transform .35s; }
.work-card.wide .work-visual { aspect-ratio: 2/1; }
.work-card:hover .work-visual { transform: scale(.99); }
.pink { background: #eea4d4; }
.sand { background: #d8b276; }
.lavender { background: #a998dc; }
.shape { width: 22%; aspect-ratio: 1; opacity: .52; border: 3px solid; position: absolute; }
.shape.arch { border-radius: 50% 50% 0 0; height: 40%; }
.shape.star { border: 0; background: var(--ink); clip-path: polygon(50% 0,61% 34%,98% 35%,68% 56%,79% 93%,50% 71%,21% 93%,32% 56%,2% 35%,39% 34%); }
.shape.wave { border: 0; width: 40%; height: 20%; border-top: 8px solid; border-bottom: 8px solid; border-radius: 50%; transform: rotate(-12deg); }
.shape.sunset { border-radius: 50% 50% 0 0; border-bottom: 0; transform: translateY(25%); }
.shape.heart { border: 0; background: var(--ink); transform: rotate(45deg); border-radius: 0 0 22% 0; }
.work-meta { display: grid; grid-template-columns: 35px 1fr auto; gap: 12px; padding-top: 15px; }
.work-meta > span, .work-meta p { font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .06em; }
.work-meta h2 { margin: 0 0 8px; font-size: clamp(25px,3vw,44px); line-height: 1; letter-spacing: -.05em; }
.work-meta p { margin: 0; }
.work-meta b { font-weight: 400; font-size: 22px; transition: transform .2s; }
.work-card:hover .work-meta b { transform: translate(4px,-4px); }
.work-note { padding-top: 100px; padding-bottom: 110px; background: var(--blue); }
.work-note > p { text-transform: uppercase; font: 10px "Courier New", monospace; letter-spacing: .08em; }
.work-note h2 { margin: 35px 0 0; font-size: clamp(50px,8vw,118px); line-height: .9; letter-spacing: -.075em; }

.about-hero { position: relative; overflow: hidden; }
.about-hero h1 { position: relative; z-index: 2; }
.manifesto { min-height: 76vh; display: grid; grid-template-columns: 1fr 3fr; padding-top: 70px; padding-bottom: 90px; }
.manifesto > div { align-self: center; }
.manifesto h2 { max-width: 1050px; margin: 0 0 45px; font-size: clamp(44px,6.3vw,94px); line-height: .94; letter-spacing: -.067em; }
.manifesto div p { max-width: 720px; font-size: clamp(18px,1.7vw,25px); line-height: 1.4; }
.principles { padding-top: 80px; padding-bottom: 110px; }
.principle-list { margin-top: 75px; border-top: 1px solid; }
.principle-list article { display: grid; grid-template-columns: 70px 1fr 1fr; gap: 30px; align-items: baseline; border-bottom: 1px solid; padding: 28px 0; }
.principle-list article > span { font: 10px "Courier New", monospace; }
.principle-list h2 { margin: 0; font-size: clamp(34px,4vw,58px); letter-spacing: -.055em; }
.principle-list p { margin: 0; max-width: 500px; font-size: 17px; line-height: 1.5; }
.process { padding-top: 85px; padding-bottom: 110px; }
.process-track { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 75px; border-top: 1px solid; }
.process-track > div { min-height: 270px; padding: 18px 25px 20px 0; border-right: 1px solid; }
.process-track > div + div { padding-left: 25px; }
.process-track span { font: 10px "Courier New", monospace; }
.process-track h3 { font-size: clamp(28px,3vw,45px); letter-spacing: -.05em; margin: 70px 0 15px; }
.process-track p { max-width: 220px; line-height: 1.45; }

.contact-page { background: var(--yellow); }
.contact-hero { min-height: 78svh; padding-top: 165px; padding-bottom: 50px; position: relative; overflow: hidden; }
.contact-hero h1 { position: relative; z-index: 2; }
.contact-mark-placeholder { position: absolute; right: clamp(22px,6vw,100px); top: 35%; width: clamp(180px,27vw,420px); aspect-ratio: 4/3; display: grid; place-items: center; border: 1px dashed rgba(23,23,19,.5); }
.contact-mark-placeholder span { font: 9px "Courier New", monospace; text-transform: uppercase; letter-spacing: .1em; }
.contact-content { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10vw; padding-top: 85px; padding-bottom: 110px; background: var(--cream); }
.contact-intro > p { max-width: 470px; font-size: clamp(22px,2.5vw,35px); line-height: 1.25; letter-spacing: -.04em; }
.contact-intro > a { display: inline-block; margin-top: 30px; border-bottom: 1px solid; padding-bottom: 3px; }
.contact-intro > div { margin-top: 90px; display: flex; flex-direction: column; gap: 8px; font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 35px 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 12px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label > span { font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink); font: 18px Arial, Helvetica, sans-serif; padding: 10px 0 13px; outline: none; }
.contact-form textarea { resize: vertical; line-height: 1.4; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-bottom-width: 3px; }
.contact-form ::placeholder { color: #777469; opacity: 1; }
.form-button { cursor: pointer; background: var(--ink); color: var(--cream); margin-top: 5px; }
.form-note { align-self: end; margin: 0; font-size: 11px; line-height: 1.4; color: #605e56; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.confirm-dialog { position: fixed; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: min(720px, calc(100vw - 32px)); max-height: calc(100svh - 32px); margin: 0; padding: clamp(25px,4vw,48px); border: 0; background: var(--cream); color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.3); overflow-y: auto; }
.confirm-dialog::backdrop { background: rgba(23,23,19,.7); backdrop-filter: blur(4px); }
.confirm-head { display: flex; justify-content: space-between; align-items: start; }
.confirm-head button { border: 0; background: none; padding: 0; font-size: 34px; line-height: .7; cursor: pointer; }
.confirm-details { margin: 45px 0 0; border-top: 1px solid var(--line); }
.confirm-details div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.confirm-details dt { font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.confirm-details dd { margin: 0; font-size: 17px; line-height: 1.45; white-space: pre-line; overflow-wrap: anywhere; }
.confirm-actions { display: flex; justify-content: flex-end; gap: 12px; }
.confirm-actions .button { min-width: 0; margin-top: 35px; cursor: pointer; }
.confirm-actions .button:disabled { opacity: .55; cursor: wait; }
.form-error { margin: 24px 0 0; padding: 14px; background: #f3b4a4; font-size: 14px; line-height: 1.4; }
.confirm-result h2 { margin: 55px 0 20px; font-size: clamp(42px,7vw,72px); line-height: .95; letter-spacing: -.06em; }

/* Project detail */
.project-hero { min-height: 82svh; padding-top: 165px; padding-bottom: 65px; display: flex; flex-direction: column; justify-content: flex-end; }
.project-kicker { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 12px; font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.project-hero h1 { margin: auto 0 30px; font-size: clamp(70px,13vw,200px); line-height: .77; letter-spacing: -.09em; }
.project-lede { width: min(620px, 100%); margin: 0 0 0 auto; font-size: clamp(21px,2.4vw,34px); line-height: 1.28; letter-spacing: -.04em; }
.project-cover { position: relative; min-height: 78svh; }
.project-cover > span { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.project-cover .shape { left: 50%; top: 50%; transform: translate(-50%,-50%); }
.project-cover .shape.wave { transform: translate(-50%,-50%) rotate(-12deg); }
.project-cover .shape.heart { transform: translate(-50%,-50%) rotate(45deg); }
.case-study { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding-top: 100px; padding-bottom: 110px; }
.case-study-copy { border-top: 1px solid var(--line); }
.case-study article { display: grid; grid-template-columns: 45px 1fr 1.3fr; gap: 25px; padding: 25px 0 40px; border-bottom: 1px solid var(--line); }
.case-study article > span { font: 10px "Courier New", monospace; }
.case-study h2 { margin: 0; font-size: clamp(27px,3vw,44px); letter-spacing: -.05em; }
.case-study article p { margin: 0; max-width: 520px; font-size: 17px; line-height: 1.5; }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 110px; }
.project-gallery > div { min-height: 42vw; }
.project-gallery > div:first-child { grid-column: 1 / -1; min-height: 60vw; }
.cream-frame { background: #ded6c5; }
.dark-frame { background: var(--ink); color: var(--cream); }
.next-project { min-height: 55vh; display: grid; grid-template-columns: 1fr auto; align-content: center; background: var(--orange); }
.next-project span { grid-column: 1 / -1; margin-bottom: 30px; font: 10px "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.next-project strong { font-size: clamp(55px,9vw,138px); line-height: .82; letter-spacing: -.08em; }
.next-project b { align-self: center; font-size: clamp(44px,7vw,90px); font-weight: 400; transition: transform .25s; }
.next-project:hover b { transform: translateX(12px); }

.reveal { animation: rise .8s both cubic-bezier(.2,.75,.25,1); }
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } }

@media (max-width: 760px) {
  .site-header { height: 86px; padding-top: 22px; }
  .site-header nav { display: none; }
  .menu-button { display: block; z-index: 35; }
  .mobile-menu { display: flex; position: fixed; z-index: 25; inset: 0; padding: 125px 22px 35px; flex-direction: column; background: var(--orange); transform: translateY(-100%); visibility: hidden; pointer-events: none; transition: transform .5s cubic-bezier(.75,0,.15,1), visibility 0s linear .5s; }
  .mobile-menu.is-open { transform: none; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-menu a { position: relative; z-index: 2; display: flex; align-items: start; gap: 14px; font-size: clamp(52px,17vw,80px); line-height: .92; font-weight: 700; letter-spacing: -.07em; }
  .mobile-menu a span { margin-top: 9px; font: 9px "Courier New", monospace; letter-spacing: 0; }
  .mobile-menu p { position: relative; z-index: 2; margin: auto 0 0; max-width: 220px; }
  .hero { padding-top: 112px; min-height: 790px; }
  .hero-title { margin: 80px 0 0; font-size: clamp(54px,17vw,82px); line-height: .87; }
  .hero::after { background: rgba(12,12,10,.48); }
  .hero-video > span { bottom: 90px; }
  .hero-bottom { margin-top: auto; }
  .hero-bottom p { max-width: 270px; font-size: 16px; }
  .circle-link { width: 45px; height: 45px; }
  .intro, .section-heading, .service-grid { grid-template-columns: 1fr; }
  .intro { min-height: auto; padding-top: 45px; padding-bottom: 70px; }
  .intro-copy { margin-top: 110px; }
  .intro h2 { margin-bottom: 34px; }
  .client-banner { height: 82px; }
  .logo-track { gap: 48px; padding-right: 48px; }
  .client-logo strong { font-size: 19px; }
  .section-heading { gap: 35px; margin-bottom: 45px; }
  .project-row { grid-template-columns: 30px 1fr 25px; gap: 12px; }
  .project-image { grid-column: 2 / 4; grid-row: 1; margin-bottom: 12px; }
  .project-number { grid-column: 1; grid-row: 1; }
  .project-copy { grid-column: 2; }
  .project-arrow { grid-column: 3; }
  .project-copy h3 { margin-bottom: 18px; }
  .service-grid { margin-top: 60px; gap: 65px; }
  .footer { grid-template-columns: 1fr auto; }
  .footer p, .footer div { grid-column: 1; }
  .footer > span { grid-column: 2; grid-row: 1; }
  .page-hero { min-height: 720px; padding-top: 125px; }
  .page-hero h1, .contact-hero h1 { margin-top: 85px; font-size: clamp(59px,17vw,82px); }
  .page-lede { max-width: 310px; margin-left: 0; }
  .work-grid { grid-template-columns: 1fr; gap: 65px; padding-bottom: 80px; }
  .work-card.wide { grid-column: auto; }
  .work-card.wide .work-visual { aspect-ratio: 4/3; }
  .work-note { padding-top: 70px; padding-bottom: 75px; }
  .manifesto { grid-template-columns: 1fr; min-height: auto; gap: 110px; }
  .principle-list article { grid-template-columns: 35px 1fr; }
  .principle-list article p { grid-column: 2; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track > div { min-height: 235px; border-bottom: 1px solid; }
  .process-track > div:nth-child(2n) { border-right: 0; }
  .process-track h3 { margin-top: 55px; }
  .contact-hero { min-height: 690px; padding-top: 125px; }
  .contact-mark-placeholder { width: 44vw; right: 22px; top: 58%; }
  .contact-content { grid-template-columns: 1fr; gap: 90px; padding-top: 65px; padding-bottom: 80px; }
  .contact-intro > div { margin-top: 55px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label.full { grid-column: auto; }
  .form-button { width: 100%; }
  .confirm-actions { flex-direction: column-reverse; gap: 0; }
  .confirm-actions .button { width: 100%; margin-top: 12px; }
  .confirm-details div { grid-template-columns: 80px 1fr; }
  .confirm-dialog { inset: 0; transform: none; width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: 28px 22px max(28px, env(safe-area-inset-bottom)); box-shadow: none; }
  .project-hero { min-height: 700px; padding-top: 125px; }
  .project-cover { min-height: 68svh; }
  .case-study { grid-template-columns: 1fr; gap: 60px; padding-top: 70px; padding-bottom: 75px; }
  .case-study article { grid-template-columns: 34px 1fr; }
  .case-study article p { grid-column: 2; }
  .project-gallery { grid-template-columns: 1fr; gap: 14px; padding-bottom: 75px; }
  .project-gallery > div, .project-gallery > div:first-child { grid-column: auto; min-height: 95vw; }
  .next-project { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ticker { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
