@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Unbounded:wght@500;600&display=swap');

:root {
  --ink: #2c3248;
  --paper: #e8e9eb;
  --muted: #707583;
  --line: rgba(44, 50, 72, .17);
  --acid: #9bbb34;
  --white: #f7f7f6;
  --shell: min(1280px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 10px 16px; background: var(--acid); transition: top .2s; }
.skip-link:focus { top: 16px; }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 82px; padding: 0 max(36px, calc((100vw - 1280px) / 2)); display: flex; align-items: center; gap: 48px; color: var(--white); transition: background .3s, color .3s, height .3s, border .3s; }
.site-header.scrolled { height: 68px; color: var(--ink); background: rgba(232, 233, 235, .92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; line-height: 1; letter-spacing: -.05em; }
.brand-mark { width: 6px; height: 25px; background: var(--acid); }
.brand-name { font-family: "Unbounded", sans-serif; font-size: 25px; }
.brand-suffix { margin-left: 4px; font-size: 9px; font-weight: 700; letter-spacing: .16em; writing-mode: vertical-rl; transform: rotate(180deg); opacity: .6; }
.desktop-nav { display: flex; gap: 32px; margin-left: auto; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 9px; padding: 10px 17px; border: 1px solid currentColor; border-radius: 999px; font-size: 12px; font-weight: 700; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(155,187,52,.18); }
.scrolled .status-dot { background: #819f2f; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; margin: 7px auto; background: currentColor; transition: transform .25s; }
.menu-open .menu-toggle span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 820px; padding: 150px max(36px, calc((100vw - 1280px) / 2)) 88px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 50vw; height: 50vw; left: -22vw; top: -22vw; background: radial-gradient(circle, rgba(155,187,52,.12), transparent 67%); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; width: 70%; will-change: transform; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: #8b8d84; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.58); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); }
.hero h1, .section-heading h2, .works h2, .process h2, .contact h2 { margin: 0; font-family: "Unbounded", sans-serif; font-weight: 500; line-height: .96; letter-spacing: -.06em; }
.hero h1 { font-size: clamp(58px, 7.3vw, 112px); }
.hero h1 em, .section-heading h2 em, .contact h2 em { color: var(--acid); font-style: normal; }
.hero-bottom { width: 68%; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: 50px; }
.hero-bottom > p { max-width: 455px; margin: 0; color: rgba(255,255,255,.66); font-size: 17px; }
.circle-link { flex: 0 0 136px; height: 136px; display: grid; place-items: center; position: relative; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 12px; font-weight: 700; line-height: 1.2; transition: transform .3s; }
.circle-link:hover { transform: rotate(-7deg) scale(1.04); }
.circle-link svg { position: absolute; width: 24px; top: 22px; right: 24px; }
.hero-visual { position: absolute; z-index: 1; width: 29vw; max-width: 450px; min-width: 360px; height: 600px; right: max(36px, calc((100vw - 1280px) / 2)); top: 136px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7)); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.09); transition: transform .8s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.hero-visual:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.13); }
.hero-label { position: absolute; z-index: 2; left: 20px; bottom: 20px; padding: 8px 12px; color: var(--ink); background: var(--acid); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.hero-counter { position: absolute; z-index: 2; right: 20px; bottom: 18px; display: flex; align-items: baseline; gap: 4px; }
.hero-counter strong { font-family: "Unbounded", sans-serif; font-size: 24px; }
.hero-counter span { color: rgba(255,255,255,.5); font-size: 11px; }
.marquee { position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 16px 0; animation: marquee 26s linear infinite; }
.marquee span { font-family: "Unbounded", sans-serif; font-size: 11px; letter-spacing: .14em; }
.marquee i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
@keyframes marquee { to { transform: translateX(-50%); } }

.parallax-scene { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.scene-layer { position: absolute; transform: translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0) rotate(var(--scene-rotate, 0deg)); will-change: transform; }
.scene-grid { inset: -16%; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(circle at 42% 48%, #000 5%, transparent 64%); mask-image: radial-gradient(circle at 42% 48%, #000 5%, transparent 64%); }
.scene-word { left: -5vw; bottom: -14vw; color: transparent; font-family: "Unbounded", sans-serif; font-size: clamp(280px, 35vw, 540px); font-weight: 600; line-height: .75; letter-spacing: -.12em; -webkit-text-stroke: 1px rgba(255,255,255,.075); opacity: .85; }
.scene-orbit { border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.scene-orbit::before, .scene-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.scene-orbit::before { inset: 9%; border: 1px dashed rgba(255,255,255,.08); }
.scene-orbit::after { width: 9px; height: 9px; left: 17%; top: 4%; background: var(--acid); box-shadow: 0 0 24px rgba(155,187,52,.7); }

.scene-orbit-large { width: min(680px, 48vw); aspect-ratio: 1; right: 18vw; top: -28%; }
.scene-orbit-small { width: min(390px, 30vw); aspect-ratio: 1; right: -8vw; bottom: -12%; border-color: rgba(155,187,52,.2); }
.scene-glow { border-radius: 50%; filter: blur(52px); mix-blend-mode: screen; }
.scene-glow-one { width: 180px; height: 180px; left: 44%; top: 28%; background: rgba(155,187,52,.17); }
.scene-glow-two { width: 260px; height: 260px; right: 4%; bottom: 5%; background: rgba(89,105,151,.22); }
.scene-cross { color: rgba(255,255,255,.38); font-family: "Unbounded", sans-serif; font-size: 25px; font-weight: 400; }
.scene-cross-one { left: 4.5%; bottom: 18%; }
.scene-cross-two { right: 37%; top: 18%; color: var(--acid); }
.scene-coordinates { left: 53%; bottom: 11%; color: rgba(255,255,255,.3); font-family: monospace; font-size: 9px; letter-spacing: .14em; writing-mode: vertical-rl; }
.scene-index { right: 36%; bottom: 9%; color: rgba(255,255,255,.04); font-family: "Unbounded", sans-serif; font-size: 132px; font-weight: 600; line-height: 1; }
.scene-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); transform-origin: center; }
.scene-line-one { width: 42vw; left: -8vw; top: 61%; }
.scene-line-two { width: 33vw; right: 12vw; top: 30%; background: linear-gradient(90deg, transparent, rgba(155,187,52,.42), transparent); }
.scene-frame { border: 1px solid rgba(255,255,255,.14); }
.scene-frame::before, .scene-frame::after { content: ""; position: absolute; width: 7px; height: 7px; border-color: var(--acid); }
.scene-frame::before { left: -1px; top: -1px; border-left: 1px solid; border-top: 1px solid; }
.scene-frame::after { right: -1px; bottom: -1px; border-right: 1px solid; border-bottom: 1px solid; }
.scene-frame span { position: absolute; left: 12px; top: 10px; color: rgba(255,255,255,.33); font-family: monospace; font-size: 8px; letter-spacing: .12em; }
.scene-frame-one { width: 190px; height: 112px; left: 3%; bottom: 5%; }
.scene-frame-two { width: 104px; height: 104px; right: 30%; top: 9%; border-color: rgba(155,187,52,.18); }
.scene-dots { width: 88px; height: 56px; right: 5%; top: 12%; opacity: .46; background-image: radial-gradient(circle, var(--acid) 1.4px, transparent 1.6px); background-size: 13px 13px; }
.scene-arrow { left: 40%; top: 15%; color: rgba(255,255,255,.18); font-family: "Unbounded", sans-serif; font-size: 52px; line-height: 1; }
.scene-tag { padding: 7px 10px; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.16); font-family: monospace; font-size: 8px; letter-spacing: .18em; }
.scene-tag-one { left: 36%; bottom: 13%; }
.scene-tag-two { right: 5%; bottom: 7%; color: rgba(155,187,52,.7); border-color: rgba(155,187,52,.22); }
.scene-ruler { width: 1px; height: 150px; left: 57%; top: 3%; opacity: .35; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.5) 0 1px, transparent 1px 9px); }
.scene-ruler::after { content: "08—24"; position: absolute; left: 8px; top: 0; color: rgba(255,255,255,.38); font-family: monospace; font-size: 7px; letter-spacing: .12em; writing-mode: vertical-rl; }
.intro { padding: 150px 0 130px; }
.intro-statement { max-width: 1150px; margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(38px, 5.1vw, 72px); font-weight: 500; line-height: 1.1; letter-spacing: -.055em; }
.intro-statement span { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.intro-note { width: 44%; margin: 60px 0 0 auto; display: flex; gap: 24px; color: var(--muted); }
.intro-note .line { flex: 0 0 70px; height: 1px; margin-top: 12px; background: var(--ink); }
.intro-note p { margin: 0; }

.services { padding: 120px 0; color: var(--white); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.6fr .55fr; gap: 80px; align-items: end; margin-bottom: 84px; }
.section-kicker.light { color: rgba(255,255,255,.45); }
.section-heading h2 { font-size: clamp(42px, 5vw, 72px); }
.section-heading > p { margin: 0; color: rgba(255,255,255,.56); }
.service-row { min-height: 132px; display: grid; grid-template-columns: 80px 1fr 160px 54px; align-items: center; gap: 28px; position: relative; border-top: 1px solid rgba(255,255,255,.18); transition: padding .25s, background .25s; }
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.service-row:hover { padding-inline: 14px; background: rgba(255,255,255,.03); }
.service-number { align-self: start; margin-top: 34px; color: var(--acid); font-family: "Unbounded", sans-serif; font-size: 11px; }
.service-name h3 { margin: 0 0 5px; font-family: "Unbounded", sans-serif; font-size: clamp(24px, 2.6vw, 38px); font-weight: 500; letter-spacing: -.04em; }
.service-name p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; }
.service-thumb { width: 140px; height: 92px; overflow: hidden; opacity: .65; transition: opacity .25s, transform .25s; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-row:hover .service-thumb { opacity: 1; transform: rotate(-2deg) scale(1.08); }
.service-row > a { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transition: color .25s, background .25s, transform .25s; }
.service-row > a:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: rotate(45deg); }
.service-row svg { width: 20px; }

.works { padding: 140px 0; }
.works-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 54px; }
.works h2 { font-size: clamp(44px, 5vw, 72px); }
.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filters button { padding: 10px 17px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 12px; transition: .2s; }
.filters button:hover, .filters button.active { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 290px; gap: 16px; }
.project { min-width: 0; min-height: 0; padding: 0; position: relative; text-align: left; background: #cfd1d6; border: 0; overflow: hidden; cursor: zoom-in; }
.project[hidden] { display: none !important; }
.project-wide { grid-column: span 2; }
.project-tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.09); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s; will-change: transform; }
.project::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.project:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.14); filter: saturate(1.08); }
.project-meta { position: absolute; z-index: 2; left: 20px; bottom: 18px; color: #fff; }
.project-meta b, .project-meta small { display: block; }
.project-meta b { margin-bottom: 3px; font-family: "Unbounded", sans-serif; font-size: 15px; font-weight: 500; }
.project-meta small { color: rgba(255,255,255,.65); font-size: 11px; }
.project-open { position: absolute; z-index: 2; right: 18px; top: 18px; width: 39px; height: 39px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; transform: translateY(-60px); transition: transform .25s; }
.project:hover .project-open { transform: translateY(0); }
.project.is-extra { display: none; }
.portfolio-grid.show-all .project.is-extra { display: block; }
.load-more { width: 100%; margin-top: 32px; padding: 18px 0; display: flex; align-items: center; justify-content: center; gap: 14px; background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 13px; font-weight: 700; transition: background .2s; }
.load-more:hover { background: var(--acid); }
.load-more b { font-size: 20px; font-weight: 400; }

.process { padding: 130px 0; color: #fff; background: #3a4055; }
.process .section-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.process h2 { font-size: clamp(44px, 5vw, 72px); }
.process-lead > p:last-child { max-width: 310px; margin-top: 36px; color: rgba(255,255,255,.5); }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-steps li { min-height: 136px; display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: start; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.18); }
.process-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.process-steps span { color: var(--acid); font-family: "Unbounded", sans-serif; font-size: 11px; }
.process-steps h3 { margin: -4px 0 10px; font-family: "Unbounded", sans-serif; font-size: 26px; font-weight: 500; letter-spacing: -.04em; }
.process-steps p { margin: 0; color: rgba(255,255,255,.5); font-size: 14px; }

.contact { padding: 140px 0 120px; }
.contact-top h2 { font-size: clamp(56px, 8vw, 108px); }
.contact-top h2 em { color: var(--ink); -webkit-text-stroke: 1px var(--ink); -webkit-text-fill-color: transparent; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; margin-top: 90px; }
.contact-info { display: flex; flex-direction: column; align-items: flex-start; }
.contact-info > p { max-width: 420px; margin: 0 0 36px; color: var(--muted); }
.contact-info > a { padding: 8px 0; font-size: 15px; border-bottom: 1px solid transparent; }
.contact-info > a:hover { border-color: var(--ink); }
.contact-info .contact-phone { margin-bottom: 16px; padding: 0; font-family: "Unbounded", sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 500; letter-spacing: -.055em; border: 0; }
.contact-phone span { color: #718d29; font-family: "Manrope", sans-serif; font-size: 22px; }
.contact-form label { display: block; padding: 0 0 16px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-form label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 7px 0; color: var(--ink); background: transparent; border: 0; outline: 0; resize: vertical; font-family: "Unbounded", sans-serif; font-size: 20px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b6b7b0; }
.contact-form label:focus-within { border-color: var(--ink); }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.submit-button { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding: 20px 24px; color: var(--ink); background: var(--acid); border: 0; cursor: pointer; font-weight: 700; transition: color .25s, background .25s; }
.submit-button:hover { color: #fff; background: var(--ink); }
.submit-button:disabled { cursor: wait; opacity: .68; }
.submit-button svg { width: 25px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; }

footer { min-height: 190px; padding: 48px max(36px, calc((100vw - 1280px) / 2)); display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 40px; align-items: start; position: relative; color: #fff; background: var(--ink); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: "Unbounded", sans-serif; font-size: 36px; font-weight: 600; letter-spacing: -.06em; }
.footer-brand span { width: 8px; height: 34px; background: var(--acid); }
footer p, footer > a, footer > button { margin: 0; color: rgba(255,255,255,.56); background: transparent; border: 0; text-align: left; font-size: 12px; }
footer > a, footer > button { padding: 0; cursor: pointer; }
footer > a:hover, footer > button:hover { color: var(--acid); }
footer small { position: absolute; left: max(36px, calc((100vw - 1280px) / 2)); bottom: 28px; color: rgba(255,255,255,.28); font-size: 9px; }

.mobile-actions { display: none; }
.lightbox { width: min(920px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; color: #fff; background: #2c3248; border: 0; overflow: hidden; }
.lightbox::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: calc(100vh - 110px); object-fit: contain; background: #202536; }
.lightbox figcaption { padding: 15px 18px; font-size: 13px; }
.lightbox > button { position: absolute; z-index: 2; right: 12px; top: 12px; width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.58); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; cursor: pointer; font-size: 28px; line-height: 1; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: -80px; padding: 12px 18px; color: var(--ink); background: var(--acid); font-size: 12px; font-weight: 700; transform: translateX(-50%); transition: bottom .3s; }
.toast.error { color: #fff; background: #a63f4c; }
.toast.show { bottom: 30px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.hero-copy.reveal { transform: translate3d(0, calc(25px + var(--hero-parallax-y, 0px)), 0); }
.hero-copy.reveal.visible { transform: translate3d(0, var(--hero-parallax-y, 0px), 0); }

@media (max-width: 1000px) {
  :root { --shell: calc(100vw - 40px); }
  .site-header { padding-inline: 20px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu { display: flex; position: fixed; z-index: 90; inset: 0; padding: 110px 22px 38px; flex-direction: column; color: #fff; background: var(--ink); transform: translateY(-110%); visibility: hidden; transition: transform .45s cubic-bezier(.76,0,.24,1), visibility .45s; }
  .mobile-menu.open { transform: none; visibility: visible; }
  .mobile-menu > a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: "Unbounded", sans-serif; font-size: clamp(28px, 8vw, 48px); font-weight: 500; letter-spacing: -.05em; }
  .mobile-menu > a span { color: var(--acid); font-family: "Manrope", sans-serif; font-size: 10px; }
  .mobile-menu-contact { margin-top: auto; display: flex; flex-direction: column; gap: 4px; color: rgba(255,255,255,.55); font-size: 13px; }
  .site-header.menu-active { color: #fff; background: transparent; border: 0; }
  .hero { min-height: auto; padding: 132px 20px 96px; }
  .hero-copy { width: 100%; }
  .hero-bottom { width: 100%; }
  .hero-visual { position: relative; width: 100%; max-width: none; min-width: 0; height: 520px; right: auto; top: auto; margin-top: 56px; }
  .scene-orbit-large { width: 72vw; right: -18vw; top: 5%; }
  .scene-orbit-small { width: 46vw; right: 54vw; bottom: 18%; }
  .scene-word { left: -9vw; bottom: 22%; font-size: 54vw; }
  .scene-index { right: 3%; bottom: 37%; }
  .scene-frame-one { bottom: 25%; }
  .scene-frame-two { right: 5%; top: 17%; }
  .scene-line-two { right: -8vw; top: 38%; }
  .scene-tag-one { left: 5%; bottom: 43%; }
  .scene-tag-two { bottom: 20%; }
  .intro-note { width: 60%; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 450px; }
  .contact-grid { gap: 60px; }
  footer { padding-inline: 20px; grid-template-columns: 1.2fr 1fr 1fr; }
  footer > a { display: none; }
  footer small { left: 20px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 32px); }
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 64px; }
  .site-header { height: 68px; padding-inline: 16px; }
  .brand-name { font-size: 22px; }
  .brand-mark { height: 22px; }
  .hero { padding: 112px 16px 91px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 66px); line-height: 1; }
  .eyebrow { margin-bottom: 22px; font-size: 9px; }
  .hero-bottom { align-items: flex-start; margin-top: 30px; }
  .hero-bottom > p { max-width: 70%; font-size: 13px; }
  .circle-link { flex-basis: 92px; height: 92px; font-size: 9px; }
  .circle-link svg { width: 17px; top: 15px; right: 16px; }
  .hero-visual { height: 410px; margin-top: 40px; }
  .scene-grid { background-size: 42px 42px; opacity: .2; }
  .scene-glow-one { left: 66%; top: 17%; }
  .scene-glow-two { right: -30%; bottom: 18%; }
  .scene-coordinates { display: none; }
  .scene-index { bottom: 34%; font-size: 80px; }
  .scene-frame-one { width: 120px; height: 76px; left: -8%; bottom: 24%; }
  .scene-frame-two { width: 72px; height: 72px; right: -3%; top: 23%; }
  .scene-dots { right: -7%; top: 8%; }
  .scene-arrow { left: 72%; top: 15%; font-size: 34px; }
  .scene-tag-one { bottom: 45%; }
  .scene-tag-two, .scene-ruler { display: none; }
  .hero-counter strong { font-size: 20px; }
  .marquee-track { padding: 13px 0; }
  .intro { padding: 94px 0 80px; }
  .section-kicker { margin-bottom: 18px; font-size: 9px; }
  .intro-statement { font-size: 34px; }
  .intro-note { width: 100%; margin-top: 38px; gap: 16px; font-size: 13px; }
  .intro-note .line { flex-basis: 38px; }
  .services { padding: 84px 0; }
  .section-heading { margin-bottom: 50px; }
  .section-heading h2, .works h2, .process h2 { font-size: 38px; }
  .section-heading > p { font-size: 13px; }
  .service-row { min-height: 112px; grid-template-columns: 34px 1fr 40px; gap: 8px; }
  .service-number { margin-top: 29px; font-size: 9px; }
  .service-name h3 { font-size: 21px; }
  .service-name p { max-width: 230px; font-size: 10px; }
  .service-thumb { display: none; }
  .service-row > a { width: 37px; height: 37px; }
  .service-row svg { width: 16px; }
  .works { padding: 88px 0; }
  .works-head { display: block; margin-bottom: 30px; }
  .filters { justify-content: flex-start; margin-top: 24px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .filters button { flex: 0 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; gap: 8px; }
  .project-wide { grid-column: span 2; }
  .project-tall { grid-row: span 2; }
  .project-meta { left: 12px; bottom: 12px; }
  .project-meta b { font-size: 11px; }
  .project-meta small { font-size: 9px; }
  .project-open { display: none; }
  .load-more { margin-top: 18px; }
  .process { padding: 86px 0; }
  .process .section-shell { grid-template-columns: 1fr; gap: 56px; }
  .process-lead > p:last-child { margin-top: 24px; font-size: 13px; }
  .process-steps li { min-height: 112px; grid-template-columns: 42px 1fr; padding: 24px 0; }
  .process-steps h3 { font-size: 22px; }
  .process-steps p { font-size: 12px; }
  .contact { padding: 90px 0 80px; }
  .contact-top h2 { font-size: 52px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; margin-top: 56px; }
  .contact-info > p { font-size: 13px; }
  .contact-info .contact-phone { font-size: 24px; }
  .contact-form input, .contact-form textarea { font-size: 17px; }
  footer { min-height: 240px; grid-template-columns: 1fr 1fr; gap: 32px; padding: 42px 16px; }
  .footer-brand { font-size: 30px; }
  .footer-brand span { height: 29px; }
  footer p { text-align: right; }
  footer > button { grid-column: 1 / -1; }
  footer small { left: 16px; bottom: 28px; }
  .mobile-actions { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-top: 1px solid var(--line); }
  .mobile-actions a { display: grid; place-items: center; font-size: 16px; font-weight: 700; line-height: 1; }
  .mobile-actions a:last-child { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--acid); }
  .toast.show { bottom: 82px; }
}

@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; }
}
