/* VERBA — edit these tokens to change the site-wide palette and spacing. */
:root {
  color-scheme: dark;
  --background: #080808;
  --surface: #101010;
  --ink: #f1f0ec;
  --muted: #a5a5a1;
  --line: #2b2b29;
  --paper: #e8e7e1;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --gutter: clamp(24px, 5.3vw, 88px);
  --section-space: clamp(88px, 10vw, 152px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Base and accessibility */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; background: var(--background); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body, h1, h2, h3, p, figure, dl, dd { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button[hidden] { display: none !important; }
::selection { color: var(--background); background: var(--paper); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 7px; }
[tabindex="-1"]:focus:not(:focus-visible) { outline: none; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 16px; padding: 12px 20px; color: var(--background); background: var(--paper); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - var(--gutter) * 2, 1440px); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .15em; line-height: 1.5; text-transform: uppercase; }
.small-diamond { display: inline-block; width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); flex-shrink: 0; }
h1, h2, h3 { font-weight: 400; }
h1, h2 { letter-spacing: -.065em; line-height: 1.04; }
h2 { font-size: clamp(42px, 4.5vw, 68px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.065em; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 48px; font-size: 13px; border-bottom: 1px solid #777773; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; min-height: 58px; padding: 16px 22px; border: 1px solid transparent; font-size: 13px; font-weight: 500; line-height: 1.4; transition: background .25s, color .25s, border-color .25s; }
.button-light { color: var(--background); background: var(--ink); }
.button-light:hover { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-dark { color: var(--paper); background: var(--background); }
.button-dark:hover { background: #30302e; }
.button-arrow { font-size: 22px; line-height: 1; transition: transform .3s var(--ease); }
.button:hover .button-arrow { transform: translate(3px, -3px); }

/* Navigation */
.site-header { position: sticky; z-index: 30; top: 0; background: var(--background); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px #00000026; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 30px; border-bottom: 1px solid var(--line); }
.is-scrolled .header-inner { border-color: transparent; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; flex-shrink: 0; }
.brand-symbol { width: 48px; height: 48px; padding: 5px; mix-blend-mode: screen; }
.wordmark { font-family: var(--serif); font-size: 26px; line-height: 1.1; letter-spacing: .19em; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.7vw, 44px); font-size: 12px; }
.main-nav > a:not(.nav-cta) { position: relative; display: inline-flex; align-items: center; min-height: 44px; color: #c6c6c1; transition: color .25s; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.main-nav > a:hover { color: #fff; }
.main-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 30px; padding: 12px 18px; border: 1px solid #666662; transition: color .25s, background .25s, border-color .25s; }
.nav-cta span { font-size: 20px; line-height: 1; }
.main-nav .nav-cta:hover { color: #080808; background: var(--ink); border-color: var(--ink); }
.menu-toggle { display: none; }

/* Hero — the original supplied logo, unaltered */
.hero { padding-top: 42px; }
.hero-topline { display: flex; align-items: center; justify-content: space-between; color: var(--muted); }
.hero-topline > :first-child { display: inline-flex; align-items: center; gap: 12px; }
.hero-topline > :first-child::before { content: ""; width: 6px; height: 6px; border: 1px solid var(--muted); transform: rotate(45deg); }
.hero-layout { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; gap: 35px; padding: 86px 0 82px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(64px, 7.8vw, 116px); }
.hero h1 em { white-space: nowrap; }
.hero-description { max-width: 460px; margin-top: 34px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.hero-identity { align-self: center; justify-self: end; width: 100%; max-width: 410px; margin-top: 5px; }
.identity-frame { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.hero-logo { position: relative; z-index: 1; width: 94%; mix-blend-mode: screen; }
.identity-geometry { position: absolute; inset: 9%; border: 1px solid #262625; transform: rotate(45deg); }
.frame-corner { position: absolute; width: 12px; height: 12px; color: #696965; }
.corner-tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.identity-coordinate { position: absolute; top: -22px; left: 0; color: var(--muted); font-size: 8px; }
.hero-identity figcaption { margin-top: 28px; text-align: center; color: var(--muted); font-size: 9px; }
.hero-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 23px; border-block: 1px solid var(--line); color: var(--muted); }
.hero-tags { display: flex; align-items: center; gap: 22px; }
.hero-tags .small-diamond { width: 3px; height: 3px; color: #777773; }
.scroll-link { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; gap: 35px; }
.scroll-link span { font-size: 18px; line-height: 1; }

/* Editorial section headings and services */
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 35px; margin-bottom: 62px; }
.section-index { display: flex; align-items: baseline; gap: 20px; padding-top: 9px; }
.section-index > span { color: var(--muted); }
.section-intro { max-width: 480px; color: var(--muted); font-size: 14px; line-height: 1.85; margin-top: 24px; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: .32fr 2fr 1.6fr 45px; gap: 24px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); transition: background .3s, padding .3s; }
.service-number { color: var(--muted); }
.service-row h3 { font-size: clamp(27px, 2.6vw, 40px); letter-spacing: -.045em; line-height: 1.12; }
.service-row p { max-width: 340px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.service-arrow { justify-self: end; align-self: center; font-size: 32px; font-weight: 300; color: #cccac3; transition: transform .3s var(--ease); }
.service-row:hover { padding-inline: 16px; background: #121211; }
.service-row:hover .service-arrow { transform: translate(3px, -3px); }
.small-label { display: inline-block; margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

/* Principles */
.principles { background: var(--surface); border-block: 1px solid var(--line); }
.principles-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; }
.principles-heading h2 { margin-top: 36px; font-size: clamp(40px, 4vw, 61px); }
.principles-heading > p:not(.section-index) { max-width: 340px; margin-top: 28px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.principles-mark { position: relative; width: 88px; height: 58px; margin-top: 55px; }
.principles-mark span { position: absolute; top: 8px; width: 40px; height: 40px; border: 1px solid #74746e; transform: rotate(45deg); }
.principles-mark span + span { left: 36px; border-color: #363632; }
.principle { padding-block: 24px; border-bottom: 1px solid #30302d; }
.principle:first-child { padding-top: 0; }
.principle:last-child { border-bottom: 0; padding-bottom: 0; }
.principle dt { display: flex; align-items: center; gap: 18px; font-size: 21px; letter-spacing: -.035em; }
.principle-dot { width: 6px; height: 6px; border: 1px solid #b5b5af; transform: rotate(45deg); flex-shrink: 0; }
.principle dd { margin: 10px 0 0 24px; max-width: 370px; color: var(--muted); font-size: 13px; line-height: 1.8; }

/* Founder — a quiet studio signature beneath the collaboration principles. */
.founder { display: grid; grid-template-columns: minmax(180px, 280px) minmax(0, 1fr); align-items: center; gap: clamp(32px, 6vw, 88px); margin-top: 64px; padding-top: 40px; border-top: 1px solid #30302d; }
.founder-portrait { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.founder-details { max-width: 650px; min-width: 0; }
.founder-identity > .eyebrow { color: var(--muted); }
.founder-identity h3 { margin-top: 20px; font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -.04em; line-height: 1.2; }
.founder-degree { font-size: .8em; }
.founder-role { margin-top: 10px; color: #c4c4be; font-size: 12px; }
.founder-copy { max-width: 560px; margin-top: 26px; font-size: 14px; line-height: 1.85; color: #c4c4be; }
.founder-copy > p + p { margin-top: 12px; }
.founder-copy .founder-background { margin-top: 22px; color: var(--muted); font-size: 12px; }

/* Portfolio — intentionally CSS-only visual studies, no stock assets. */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px 30px; }
.project-featured { grid-column: 1 / -1; }
.project-art { display: grid; place-items: center; position: relative; min-width: 0; aspect-ratio: 1.35; overflow: hidden; padding: 8%; border: 1px solid var(--line); }
.project-featured .project-art { aspect-ratio: 2.32; padding: 4.6% 10%; }
.art-auto { background: #171716; }
.art-beauty { background: #292824; }
.art-local { background: #181918; }
.browser-window { position: relative; width: 100%; overflow: hidden; border: 1px solid #4a4a46; border-radius: 5px 5px 0 0; box-shadow: 0 18px 35px #00000033; transition: transform .7s var(--ease), box-shadow .7s var(--ease); }
.project:hover .browser-window { transform: translateY(-5px); box-shadow: 0 25px 45px #0000004d; }
.browser-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; height: 27px; padding: 0 12px; background: #202020; color: #afafaa; font-size: 7px; letter-spacing: .08em; border-bottom: 1px solid #393936; }
.window-dots { display: flex; gap: 4px; }
.window-dots i { width: 4px; height: 4px; border-radius: 50%; background: #676762; }
.mock-nav, .mock-bottom { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 6px; letter-spacing: .06em; }
.mock-nav > span:first-child { font-weight: 600; }
.mock-nav b { margin-left: 25px; font-size: 12px; }
.mock-bottom { position: absolute; right: 6%; bottom: 7%; left: 6%; font-size: 5px; }
.auto-page { position: relative; aspect-ratio: 2.55; padding: 4% 5%; background: #0b0b0b; overflow: hidden; }
.auto-page .mock-nav { font-size: clamp(5px, .65vw, 9px); }
.auto-page .mock-bottom { right: 5%; bottom: 7%; left: 5%; font-size: clamp(4px, .5vw, 7px); color: #b5b5af; padding-top: 9px; border-top: 1px solid #45453f; }
.auto-headline { position: relative; z-index: 2; width: 65%; padding-top: 7%; font-size: clamp(27px, 5.9vw, 88px); font-weight: 700; line-height: .94; letter-spacing: -.065em; }
.auto-headline > span { color: #8d8e88; }
.auto-gridlines { position: absolute; inset: 0; opacity: .2; background: repeating-linear-gradient(125deg, transparent 0, transparent 120px, #92928a 121px, transparent 122px); }
.wheel-art { position: absolute; z-index: 1; right: 8%; top: 18%; width: 29%; aspect-ratio: 1; border: 9px solid #171717; border-radius: 50%; background: repeating-conic-gradient(from 7deg, #9c9d96 0deg 3deg, #343630 6deg 13deg, #101110 15deg 35deg, #82857a 36deg 39deg, #343630 40deg 42deg, #101110 43deg 60deg); box-shadow: 0 0 0 1px #55584f, inset 0 0 0 7px #63665d, inset 0 0 0 9px #191b18, 16px 19px 25px #00000099; transform: rotate(-15deg); }
.wheel-center { position: absolute; top: 50%; left: 50%; width: 19%; aspect-ratio: 1; border: 5px solid #7b7e73; border-radius: 50%; background: #121412; box-shadow: 0 0 0 5px #2d302b; transform: translate(-50%, -50%); }
.auto-caption { display: flex; align-items: center; gap: 35px; position: absolute; left: 5%; bottom: 17%; z-index: 3; font-size: clamp(5px, .6vw, 8px); line-height: 1.4; }
.mock-button { padding: 8px 13px; background: #dfdfd7; color: #080808; font-size: clamp(4px, .5vw, 7px); }
.beauty-window { border-color: #aba79b; }
.beauty-window .browser-bar { background: #dedbd2; color: #655f54; border-color: #c5c1b6; }
.beauty-window .window-dots i { background: #969184; }
.beauty-page { position: relative; aspect-ratio: 1.35; overflow: hidden; padding: 6%; background: #e4e1d8; color: #2b2b27; }
.beauty-headline { position: relative; z-index: 2; padding-top: 12%; font-family: var(--serif); font-size: clamp(25px, 3.3vw, 51px); line-height: 1.05; letter-spacing: -.055em; }
.beauty-headline em { font-weight: 400; }
.beauty-arch { position: absolute; right: 8%; top: 27%; width: 33%; height: 55%; border-radius: 48% 48% 0 0; background: #ccc9bd; box-shadow: inset -15px -10px 25px #b0ad9f77; }
.bottle { position: absolute; left: 26%; bottom: 9%; width: 49%; height: 67%; border: 1px solid #b6b1a1; border-radius: 13% 13% 7% 7%; background: linear-gradient(90deg, #b5b1a0, #f0ede1 33%, #e2dece 68%, #b2ae9e); box-shadow: 12px 9px 13px #827b6744; }
.bottle-cap { position: absolute; left: 14%; right: 14%; top: -19%; height: 22%; border-radius: 2px 2px 0 0; background: linear-gradient(90deg, #242723, #494b43, #262823); }
.bottle > span { position: absolute; top: 25%; left: 7%; right: 7%; text-align: center; font-size: clamp(5px, .65vw, 10px); letter-spacing: .08em; line-height: 1.5; }
.bottle i { font-family: var(--serif); font-size: clamp(9px, 1.4vw, 21px); letter-spacing: -.04em; }
.bottle small { display: block; margin-top: 13%; font-size: 3px; letter-spacing: .02em; }
.beauty-caption { position: absolute; top: 68%; left: 6%; width: 37%; font-size: clamp(5px, .65vw, 9px); line-height: 1.7; }
.beauty-line { display: block; width: 30px; margin-top: 14px; border-bottom: 1px solid #807d73; }
.beauty-page .mock-bottom { border-top: 1px solid #bdb9ae; padding-top: 7px; }
.local-page { position: relative; aspect-ratio: 1.35; overflow: hidden; padding: 6%; background: #252820; color: #eeede2; }
.local-page .mock-nav { padding-bottom: 10px; border-bottom: 1px solid #666858; }
.local-headline { position: relative; z-index: 2; padding-top: 8%; font-size: clamp(22px, 3.2vw, 49px); font-weight: 700; letter-spacing: -.065em; line-height: .98; }
.local-headline > span { color: #b4b6a8; }
.coffee-art { position: absolute; right: 10%; bottom: 19%; width: 30%; aspect-ratio: 1; border-radius: 50%; background: #d3d2bf; box-shadow: 5px 9px 0 #14161077, inset 0 0 0 6px #b6b9a5, inset 0 0 0 7px #969d8655; transform: rotate(-24deg); }
.coffee-cup { position: absolute; inset: 19%; border: 5px solid #e8e5cf; border-radius: 50%; background: radial-gradient(ellipse at 58% 40%, #cec4a0 0 12%, #7e7350 13% 15%, #b3a985 16% 21%, #7e7350 22% 24%, #b8ad86 25% 30%, #62583b 31% 35%, #564b31 36% 64%, #9d9270 66% 70%, #393321 72%); box-shadow: 3px 5px 5px #12151066; }
.coffee-cup::after { content: ""; position: absolute; right: -32%; top: 33%; width: 34%; height: 28%; border: 4px solid #e8e5cf; border-left: 0; border-radius: 0 50% 50% 0; }
.local-note { position: absolute; left: 6%; bottom: 21%; font-family: var(--serif); font-size: clamp(8px, 1vw, 15px); font-style: italic; line-height: 1.4; }
.local-page .mock-bottom { border-top: 1px solid #666858; padding-top: 8px; font-size: 4px; }
.project-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-top: 20px; }
.project-category { font-size: 10px; color: var(--muted); letter-spacing: .1em; }
.project-meta h3 { margin-top: 7px; font-size: 22px; letter-spacing: -.035em; line-height: 1.3; }
.concept-label { flex-shrink: 0; display: inline-block; margin-top: 2px; padding: 5px 9px; border: 1px solid #454541; color: #c4c4bd; font-size: 11px; line-height: 1.3; }
.portfolio-note { display: flex; align-items: baseline; justify-content: flex-end; gap: 10px; margin-top: 38px; color: var(--muted); font-size: 11px; }
.portfolio-note .small-diamond { width: 4px; height: 4px; }

/* Process */
.process { padding-top: 0; }
.process .section-heading { padding-top: var(--section-space); border-top: 1px solid var(--line); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 0; margin: 0; list-style: none; }
.process-step { min-width: 0; }
.step-number { display: flex; align-items: center; justify-content: space-between; padding-bottom: 27px; border-bottom: 1px solid #4a4a44; color: #abab9f; font-size: 42px; font-family: var(--serif); font-style: italic; letter-spacing: -.08em; line-height: 1; }
.step-number > span { font-family: var(--sans); font-size: 19px; font-style: normal; }
.process-step h3 { margin-top: 27px; font-size: 24px; letter-spacing: -.04em; }
.process-step p { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.85; max-width: 240px; }

/* Contact and footer */
.contact { padding-block: 90px; background: var(--paper); color: #151513; }
.contact-inner > .eyebrow { display: flex; align-items: center; gap: 12px; }
.contact h2 { margin-block: 47px 45px; font-size: clamp(62px, 8.3vw, 124px); line-height: 1.02; }
.contact-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.contact-bottom p { font-size: 14px; line-height: 1.85; color: #54544e; }
.contact-bottom .contact-signature { margin-top: 16px; font-size: 11px; letter-spacing: .04em; }
.contact-bottom .button { min-width: 220px; }
.footer { padding-top: 58px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 6px; }
.footer-brand-text .wordmark { font-size: 19px; }
.footer-brand-text > span:last-child { font-size: 10px; color: var(--muted); }
.footer-contacts { max-width: 100%; }
.footer-contact-list { display: grid; grid-template-columns: auto auto; gap: 36px; }
.footer-contact-list > div { min-width: 0; }
.footer-contact-list dt { color: var(--muted); font-size: 9px; }
.footer-contact-list dd { margin-top: 10px; }
.contact-address { font-size: clamp(17px, 1.6vw, 23px); letter-spacing: -.035em; overflow-wrap: anywhere; }
.footer-wordmark { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-block: 55px 40px; font-family: var(--serif); font-size: clamp(90px, 19.8vw, 298px); line-height: .75; letter-spacing: .045em; color: #bcbcb3; }
.footer-wordmark > span { padding-top: 5px; font-family: var(--sans); font-size: clamp(20px, 3vw, 45px); line-height: 1; font-weight: 200; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; gap: 20px; }
.footer-bottom a span { font-size: 17px; line-height: 1; }

/* Motion never hides content until JavaScript has a working observer. */
.reveal { transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-pending { opacity: 0; transform: translateY(20px); }
.reveal:focus-within { opacity: 1; transform: none; }

/* Tablet */
@media (min-width: 1600px) {
  .auto-headline { font-size: 88px; }
}
@media (max-width: 1050px) {
  .header-inner { gap: 20px; }
  .main-nav { gap: 20px; }
  .nav-cta { padding: 10px 13px; gap: 16px; }
  .brand { gap: 8px; }
  .wordmark { font-size: 23px; }
  .hero-layout { gap: 28px; padding-block: 74px; }
  .hero h1 { font-size: clamp(58px, 7.7vw, 82px); }
  .hero-description { font-size: 14px; }
  .hero-actions { gap: 22px; }
  .hero-actions .button { gap: 24px; padding-inline: 17px; }
  .hero-actions .text-link { gap: 18px; }
  .section-heading { grid-template-columns: 1fr 2.2fr; }
  .service-row { grid-template-columns: .2fr 1.6fr 1.4fr 30px; gap: 20px; }
  .principles-layout { gap: 8%; }
  .founder { grid-template-columns: minmax(170px, 240px) minmax(0, 1fr); gap: 36px; }
  .principle dt { font-size: 19px; }
  .project-meta { flex-wrap: wrap; gap: 10px; }
  .project-meta h3 { font-size: 20px; }
  .project-featured .project-meta { flex-wrap: nowrap; }
  .process-list { gap: 24px; }
}

/* Mobile — usable navigation also when JavaScript is unavailable. */
@media (max-width: 760px) {
  html { scroll-padding-top: 92px; }
  .header-inner { min-height: 78px; flex-wrap: wrap; gap: 0; }
  .brand-symbol { width: 42px; height: 42px; padding: 4px; }
  .wordmark { font-size: 23px; }
  .main-nav { width: 100%; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 14px 20px; }
  .main-nav .nav-cta { min-height: 44px; }
  .has-menu .main-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 15px; min-width: 80px; min-height: 48px; padding: 0; margin-left: auto; border: 0; background: transparent; font-size: 11px; cursor: pointer; }
  .menu-lines { position: relative; width: 22px; height: 10px; }
  .menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: var(--ink); transition: transform .25s var(--ease); }
  .menu-lines::before { top: 1px; }
  .menu-lines::after { bottom: 1px; }
  .menu-open .menu-lines::before { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-lines::after { transform: translateY(-3.5px) rotate(-45deg); }
  .has-menu.menu-open .main-nav { display: flex; position: absolute; top: 100%; left: 0; padding: 16px var(--gutter) 28px; background: var(--background); border-bottom: 1px solid #4a4a44; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100svh - 78px); overflow-y: auto; box-shadow: 0 18px 28px #00000055; }
  .main-nav > a:not(.nav-cta) { min-height: 54px; font-size: 19px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { justify-content: space-between; margin-top: 20px; padding: 13px 16px; }
  .hero { padding-top: 28px; }
  .hero-topline { font-size: 8px; letter-spacing: .12em; }
  .hero-location { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; padding: 52px 0 39px; }
  .hero h1 { font-size: clamp(49px, 10vw, 76px); }
  .hero-description { margin-top: 25px; max-width: 480px; font-size: 14px; line-height: 1.8; }
  .hero-actions { gap: 25px; margin-top: 27px; }
  .hero-identity { justify-self: center; max-width: 260px; width: 65%; }
  .hero-identity figcaption { font-size: 8px; margin-top: 20px; }
  .identity-coordinate { font-size: 7px; }
  .hero-bottom { gap: 10px; padding-block: 18px; }
  .hero-tags { gap: 13px; font-size: 8px; letter-spacing: .08em; }
  .scroll-link { font-size: 0; gap: 0; }
  .scroll-link span { font-size: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
  .section-index { padding-top: 0; font-size: 9px; }
  h2 { font-size: clamp(40px, 7.3vw, 56px); }
  .section-intro { margin-top: 20px; font-size: 13px; }
  .desktop-break { display: none; }
  .service-row { grid-template-columns: 24px 1fr 25px; gap: 13px; padding-block: 27px; }
  .service-number { align-self: start; padding-top: 6px; font-size: 9px; }
  .service-row h3 { font-size: 27px; }
  .service-row p { grid-column: 2; grid-row: 2; max-width: 410px; font-size: 13px; }
  .service-arrow { grid-column: 3; grid-row: 1; align-self: start; font-size: 26px; line-height: 1; }
  .service-row:hover { padding-inline: 0; }
  .service-title h3 br { display: none; }
  .small-label { margin-top: 9px; font-size: 8px; }
  .principles-layout { grid-template-columns: 1fr; gap: 40px; }
  .principles-heading h2 { margin-top: 30px; font-size: clamp(40px, 7.3vw, 56px); }
  .principles-heading > p:not(.section-index) { max-width: 450px; margin-top: 22px; font-size: 13px; }
  .principles-mark { display: none; }
  .principle { padding-block: 23px; }
  .principle:first-child { padding-top: 23px; border-top: 1px solid #30302d; }
  .principle dt { font-size: 20px; }
  .principle dd { max-width: 450px; font-size: 13px; }
  .founder { grid-template-columns: 1fr; gap: 24px; margin-top: 44px; padding-top: 32px; }
  .founder-portrait { width: min(100%, 232px); }
  .founder-identity h3 { margin-top: 16px; font-size: 28px; }
  .founder-copy { font-size: 13px; }
  .project-grid { grid-template-columns: 1fr; gap: 38px; }
  .project-featured { grid-column: auto; }
  .project-art, .project-featured .project-art { aspect-ratio: 1.35; padding: 8%; }
  .project-featured .project-art { aspect-ratio: 1.6; padding-inline: 5%; }
  .auto-page { aspect-ratio: 1.65; padding: 6%; }
  .auto-headline { padding-top: 10%; font-size: clamp(26px, 8vw, 60px); width: 85%; }
  .auto-page .mock-nav { font-size: 5px; }
  .auto-page .mock-nav b { margin-left: 9px; }
  .auto-caption { left: 6%; bottom: 19%; font-size: 6px; gap: 22px; }
  .auto-page .mock-bottom { left: 6%; right: 6%; font-size: 5px; }
  .mock-button { font-size: 5px; padding: 7px 10px; }
  .wheel-art { top: 24%; right: 7%; width: 37%; border-width: 6px; }
  .wheel-center { border-width: 3px; }
  .beauty-headline { font-size: clamp(30px, 7.2vw, 55px); }
  .bottle > span { font-size: clamp(6px, 1.5vw, 11px); }
  .bottle i { font-size: clamp(12px, 2.8vw, 21px); }
  .beauty-caption { font-size: clamp(6px, 1.5vw, 10px); }
  .local-headline { padding-top: 6%; font-size: clamp(27px, 6.7vw, 51px); }
  .local-note { font-size: clamp(10px, 2.4vw, 17px); }
  .project-meta, .project-featured .project-meta { flex-wrap: nowrap; gap: 12px; padding-top: 17px; }
  .project-meta h3 { font-size: 21px; }
  .project-category { font-size: 9px; line-height: 1.7; }
  .concept-label { font-size: 10px; padding: 5px 7px; }
  .portfolio-note { justify-content: flex-start; font-size: 10px; line-height: 1.8; margin-top: 29px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .step-number { font-size: 37px; padding-bottom: 20px; }
  .process-step h3 { margin-top: 20px; font-size: 23px; }
  .process-step p { font-size: 12px; margin-top: 9px; }
  .contact { padding-block: 65px; }
  .contact-inner > .eyebrow { font-size: 8px; }
  .contact h2 { font-size: clamp(48px, 9.3vw, 75px); margin-block: 36px 30px; }
  .contact-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .contact-bottom p { font-size: 13px; }
  .contact-bottom .button { min-width: 210px; }
  .footer { padding-top: 38px; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 32px; }
  .footer-contact-list { grid-template-columns: 1fr; gap: 22px; }
  .contact-address { font-size: 21px; }
  .footer-wordmark { margin-block: 43px 27px; font-size: 18vw; letter-spacing: .025em; }
  .footer-wordmark > span { font-size: 24px; }
  .footer-bottom { display: grid; grid-template-columns: 1fr auto; font-size: 9px; letter-spacing: .07em; padding-block: 19px; gap: 8px 15px; }
  .footer-location { grid-column: 1 / -1; grid-row: 2; font-size: 9px; }
}

@media (max-width: 380px) {
  :root { --gutter: 20px; }
  .hero h1 { font-size: 12.6vw; }
  .hero-actions { flex-wrap: wrap; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { min-height: 42px; }
  .hero-tags { gap: 10px; font-size: 7px; }
  h2, .principles-heading h2 { font-size: 37px; }
  .service-row h3 { font-size: 24px; }
  .project-art { aspect-ratio: auto; padding: 24px 8%; }
  .project-featured .project-art { aspect-ratio: auto; padding: 24px 5%; }
  .auto-page { aspect-ratio: 1.4; }
  .auto-page .mock-bottom { bottom: 5%; }
  .local-page { aspect-ratio: 1.15; }
  .project-meta, .project-featured .project-meta { flex-wrap: wrap; }
  .mock-nav { font-size: 5px; }
  .process-list { gap: 30px 20px; }
  .contact h2 { font-size: 12.7vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-pending { opacity: 1; transform: none; }
  .project:hover .browser-window { transform: none; }
}

@media print {
  html { scroll-behavior: auto; }
  .site-header { position: static; }
  .menu-toggle, .scroll-link, .skip-link { display: none !important; }
  .reveal-pending { opacity: 1; transform: none; }
  .section { padding-block: 40px; }
  .service-row, .project, .process-step { break-inside: avoid; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
