:root {
    --pine: #071e1a;
    --forest: #164c3f;
    --mint: #63e6b5;
    --mint-strong: #43dca5;
    --coral: #ff8066;
    --cream: #f5f1e8;
    --white: #fcfdfb;
    --page: #f5f1e8;
    --surface: #fcfdfb;
    --surface-alt: #e9eee8;
    --text: #071e1a;
    --muted: #536c65;
    --line: rgba(7, 30, 26, 0.16);
    --soft-line: rgba(7, 30, 26, 0.09);
    --shadow: 0 24px 70px rgba(7, 30, 26, 0.13);
    --font-display: "Trebuchet MS", "Aptos Display", "Segoe UI", sans-serif;
    --font-body: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
    --container: 1240px;
    --radius-sm: 12px;
    --radius: 24px;
    --radius-lg: 36px;
    --header-height: 84px;
    color-scheme: light;
}

:root[data-theme="dark"] {
    --page: #071e1a;
    --surface: #0d2b24;
    --surface-alt: #12372f;
    --text: #f5f1e8;
    --muted: #a7bbb4;
    --line: rgba(245, 241, 232, 0.18);
    --soft-line: rgba(245, 241, 232, 0.1);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--coral); color: var(--pine); }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

p { text-wrap: pretty; }

em { color: var(--forest); font-style: normal; }

:root[data-theme="dark"] em { color: var(--mint); }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.sr-only {
    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;
}

.section { padding: clamp(96px, 11vw, 160px) 0; position: relative; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--pine);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
    position: fixed;
    z-index: 999;
    inset: 0 0 auto;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--mint), var(--coral));
    transform-origin: left;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: var(--soft-line);
    background: color-mix(in srgb, var(--page) 88%, transparent);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.legal-page .site-header {
    border-color: var(--soft-line);
    background: color-mix(in srgb, var(--page) 94%, transparent);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.brand-mark { display: block; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 8px 22px rgba(7, 30, 26, 0.16); }
.brand-mark img { width: 100%; height: 100%; border-radius: inherit; }

.brand-copy { display: flex; align-items: baseline; gap: 7px; line-height: 1; }

.brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 900; letter-spacing: -0.045em; }

.brand-tagline { font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.nav-menu { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }

.nav-menu > li > a:not(.btn) {
    position: relative;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -0.01em;
}

.nav-menu > li > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--coral);
    transition: right 0.25s ease;
}

.nav-menu > li > a:is(:hover, .is-active)::after { right: 0; }
.nav-menu .btn-dark { background: var(--mint); color: var(--pine); }
.nav-link { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 850; }
.nav-link:hover { border-color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; order: 2; }

.theme-toggle, .nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: color-mix(in srgb, var(--surface) 70%, transparent);
    cursor: pointer;
    place-items: center;
}

.theme-toggle { display: grid; }

.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.theme-moon { display: none; }

:root[data-theme="dark"] .theme-sun { display: none; }
:root[data-theme="dark"] .theme-moon { display: block; }

.nav-toggle { display: none; padding: 0 11px; align-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px 0; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mint); color: var(--pine); box-shadow: 0 12px 30px rgba(99, 230, 181, 0.2); }
.btn-primary:hover { background: var(--mint-strong); box-shadow: 0 15px 35px rgba(99, 230, 181, 0.3); }
.btn-dark { background: var(--pine); color: var(--cream); }
.btn-dark:hover { background: var(--forest); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--text); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { border-color: rgba(245, 241, 232, 0.25); background: transparent; color: var(--cream); }
.btn-small { min-height: 42px; padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; }

.text-link { display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid currentColor; font-weight: 800; padding-bottom: 3px; }
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translate(2px, 2px); }

.hero {
    min-height: max(760px, 100svh);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + 72px) 0 104px;
    background:
        linear-gradient(var(--soft-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--soft-line) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--page) 0%, transparent 35%, transparent 70%, var(--page) 100%);
    pointer-events: none;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; opacity: 0.9; }
.hero-orb-one { width: 36vw; height: 36vw; min-width: 420px; min-height: 420px; right: -8vw; top: 7%; background: radial-gradient(circle at 40% 40%, rgba(99, 230, 181, 0.34), rgba(99, 230, 181, 0)); }
.hero-orb-two { width: 22vw; height: 22vw; min-width: 260px; min-height: 260px; left: -8vw; bottom: -5%; background: radial-gradient(circle, rgba(255, 128, 102, 0.23), rgba(255, 128, 102, 0)); }

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr); align-items: center; gap: clamp(54px, 7vw, 112px); }

.eyebrow, .section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-strong); box-shadow: 0 0 0 6px rgba(99, 230, 181, 0.16); animation: breathe 2.3s infinite; }

@keyframes breathe { 50% { box-shadow: 0 0 0 11px rgba(99, 230, 181, 0); } }

.hero h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(58px, 7.4vw, 112px); line-height: 0.86; font-weight: 900; }

.hero-word { display: block; color: var(--forest); min-height: 0.88em; position: relative; transition: opacity 0.18s ease, transform 0.18s ease; }
:root[data-theme="dark"] .hero-word { color: var(--mint); }
.hero-word::after { content: ""; display: inline-block; width: 0.13em; height: 0.13em; margin-left: 0.04em; background: var(--coral); vertical-align: 0.08em; }
.hero-word.is-changing { opacity: 0; transform: translateY(10px); }

.hero-lead { max-width: 680px; margin-bottom: 34px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 40px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero-facts li { display: flex; align-items: center; gap: 7px; }
.hero-facts svg { width: 17px; height: 17px; fill: none; stroke: var(--forest); stroke-width: 2.3; }
:root[data-theme="dark"] .hero-facts svg { stroke: var(--mint); }

.hero-lab {
    position: relative;
    border: 1px solid rgba(245, 241, 232, 0.14);
    border-radius: 28px;
    overflow: hidden;
    background: var(--pine);
    color: var(--cream);
    box-shadow: 0 40px 90px rgba(7, 30, 26, 0.24);
    transform-style: preserve-3d;
    transition: transform 0.22s ease;
}

.lab-topbar { min-height: 56px; padding: 0 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; border-bottom: 1px solid rgba(245, 241, 232, 0.12); font-size: 10px; }
.lab-dots { display: flex; gap: 6px; }
.lab-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(245, 241, 232, 0.25); }
.lab-dots i:first-child { background: var(--coral); }
.lab-address { padding: 7px 14px; border-radius: 999px; background: rgba(245, 241, 232, 0.07); color: rgba(245, 241, 232, 0.5); }
.lab-address strong { color: var(--cream); }
.lab-live { justify-self: end; display: flex; align-items: center; gap: 6px; color: rgba(245, 241, 232, 0.65); text-transform: uppercase; letter-spacing: 0.15em; }
.lab-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }

.lab-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(245, 241, 232, 0.12); }
.lab-tabs button { position: relative; padding: 17px 8px; border: 0; background: transparent; color: rgba(245, 241, 232, 0.64); font-size: 11px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.lab-tabs button[aria-selected="true"] { color: var(--cream); }
.lab-tabs button[aria-selected="true"]::after { content: ""; position: absolute; inset: auto 28% -1px; height: 2px; background: var(--mint); }

.lab-stage { min-height: 410px; position: relative; overflow: hidden; }
.lab-stage::before { content: ""; position: absolute; inset: 0; opacity: 0.15; background-image: radial-gradient(rgba(245, 241, 232, 0.7) 0.7px, transparent 0.7px); background-size: 17px 17px; }
.preview-panel { position: relative; z-index: 1; min-height: 410px; padding: 54px 44px 40px; animation: panel-in 0.4s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
.preview-kicker { display: block; margin-bottom: 28px; color: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.preview-panel h2 { margin-bottom: 34px; font-size: clamp(34px, 4vw, 53px); line-height: 0.98; }
.preview-panel > p { max-width: 330px; margin: 30px 0 0; color: rgba(245, 241, 232, 0.57); font-size: 14px; }
.strategy-path { display: flex; align-items: center; gap: 8px; }
.strategy-path span { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(245, 241, 232, 0.2); border-radius: 50%; color: var(--cream); font-size: 10px; font-weight: 800; }
.strategy-path span:last-child { border-color: var(--mint); background: var(--mint); color: var(--pine); }
.strategy-path i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(245, 241, 232, 0.2), var(--mint)); }
.swatches { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 0.6fr; height: 84px; gap: 8px; }
.swatches i { border-radius: 12px; background: var(--forest); }
.swatches i:nth-child(2) { background: var(--mint); }
.swatches i:nth-child(3) { background: var(--coral); }
.swatches i:nth-child(4) { background: var(--cream); }
.code-lines { padding: 18px; border: 1px solid rgba(245, 241, 232, 0.14); border-radius: 14px; background: rgba(0, 0, 0, 0.16); }
.code-lines i { display: block; height: 9px; margin: 10px 0; border-radius: 99px; background: rgba(245, 241, 232, 0.14); }
.code-lines i:nth-child(1) { width: 64%; background: var(--mint); }
.code-lines i:nth-child(2) { width: 86%; }
.code-lines i:nth-child(3) { width: 48%; background: rgba(255, 128, 102, 0.75); }
.code-lines i:nth-child(4) { width: 73%; }
.lab-note { display: flex; justify-content: space-between; padding: 15px 20px; border-top: 1px solid rgba(245, 241, 232, 0.12); color: rgba(245, 241, 232, 0.68); font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-hint span { width: 1px; height: 30px; background: var(--muted); animation: scroll-pulse 1.8s ease infinite; transform-origin: top; }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

.signal-strip { background: var(--pine); color: var(--cream); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid p { margin: 0; padding: 25px 22px; border-right: 1px solid rgba(245, 241, 232, 0.13); font-size: 13px; font-weight: 750; text-align: center; }
.signal-grid p:first-child { border-left: 1px solid rgba(245, 241, 232, 0.13); }
.signal-grid strong { margin-right: 12px; color: var(--mint); font-size: 9px; letter-spacing: 0.12em; }

.section-head { display: grid; grid-template-columns: 1.25fr 0.65fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.section-head h2, .studio-copy h2, .faq-intro h2, .contact-copy h2 { margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: 0.98; }
.section-head > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); }
.section-head-light { color: var(--cream); }
.section-head-light > p { color: rgba(245, 241, 232, 0.6); }
.section-head-light em { color: var(--mint); }

.projects { background: var(--surface); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-chip { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 800; cursor: pointer; }
.filter-chip.is-active { border-color: var(--pine); background: var(--pine); color: var(--cream); }
:root[data-theme="dark"] .filter-chip.is-active { border-color: var(--mint); background: var(--mint); color: var(--pine); }
.project-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 28px; align-items: start; }
.project-card { min-width: 0; transition: opacity 0.25s ease, transform 0.25s ease; }
.project-card[hidden] { display: none; }
.project-visual { position: relative; height: 510px; overflow: hidden; border-radius: var(--radius-lg); }
.project-card-large .project-visual { height: 620px; }
.project-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px 0; }
.project-meta h3 { margin: 2px 0 0; font-size: 29px; }
.project-type { margin: 0; color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.circle-button { flex: 0 0 auto; display: grid; place-items: center; width: 51px; height: 51px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 22px; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.circle-button:hover { background: var(--pine); color: var(--mint); transform: rotate(8deg); }
.project-number { position: absolute; right: 22px; bottom: 16px; color: rgba(255, 255, 255, 0.58); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; }

.taxi-visual { display: grid; place-items: center; padding: 55px 34px; background: #d8ff3f; }
.taxi-visual::before { content: ""; position: absolute; width: 310px; height: 310px; left: -120px; top: -110px; border: 70px solid rgba(7, 30, 26, 0.08); border-radius: 50%; }
.device-shell { position: relative; width: 94%; border: 8px solid #111; border-radius: 18px; overflow: hidden; box-shadow: 0 35px 60px rgba(7, 30, 26, 0.24); transform: rotate(-2.5deg); }
.fake-browser { height: 29px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #ebebeb; }
.fake-browser i { width: 6px; height: 6px; border-radius: 50%; background: #b5b5b5; }
.fake-browser span { margin-left: 8px; color: #6b6b6b; font-size: 7px; }
.taxi-page { position: relative; min-height: 360px; overflow: hidden; padding: 24px; background: #10140e; color: white; }
.taxi-page::after { content: "TAXI"; position: absolute; right: -16px; bottom: -37px; color: rgba(216, 255, 63, 0.09); font-family: var(--font-display); font-size: 125px; font-weight: 900; }
.taxi-nav { font-size: 9px; font-weight: 900; letter-spacing: 0.08em; }
.taxi-nav span { float: right; padding: 3px 7px; border-radius: 99px; background: #d8ff3f; color: #10140e; }
.taxi-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; padding-top: 76px; }
.taxi-copy small { color: #d8ff3f; font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; }
.taxi-copy strong { max-width: 340px; margin: 8px 0 28px; font-family: var(--font-display); font-size: clamp(42px, 5vw, 70px); line-height: 0.92; letter-spacing: -0.06em; }
.taxi-copy span { padding: 9px 13px; border-radius: 99px; background: #d8ff3f; color: #10140e; font-size: 8px; font-weight: 900; }
.road-line { position: absolute; right: -60px; top: 100px; width: 220px; height: 220px; border: 20px solid rgba(255, 255, 255, 0.05); border-radius: 50%; }

.happycar-visual { display: grid; place-items: center; background: #6f62ff; }
.happycar-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 34%), linear-gradient(135deg, transparent 58%, rgba(0,0,0,.12) 58%); }
.phone-shell { position: relative; z-index: 2; width: 235px; min-height: 430px; padding: 30px 20px 22px; border: 7px solid #111; border-radius: 34px; background: #f7f4e9; color: #131313; box-shadow: 0 30px 50px rgba(23, 14, 90, 0.3); transform: rotate(4deg) translateX(-12px); }
.phone-island { width: 66px; height: 14px; margin: -25px auto 28px; border-radius: 99px; background: #111; }
.happy-logo { font-size: 10px; font-weight: 1000; letter-spacing: -0.04em; }
.phone-shell p { margin: 34px 0 20px; font-family: var(--font-display); font-size: 28px; line-height: 1; }
.phone-shell strong { color: #6f62ff; }
.car-shape { position: relative; height: 120px; margin: 8px -10px 22px; }
.car-shape::before { content: ""; position: absolute; inset: 28px 3px 25px; border-radius: 48% 54% 30% 30%; background: #191919; transform: skewX(-8deg); }
.car-shape::after { content: ""; position: absolute; left: 35px; right: 35px; top: 12px; height: 60px; border-radius: 60% 60% 12% 12%; background: #2c2c2c; transform: skewX(-8deg); }
.car-shape span::before, .car-shape span::after { content: ""; position: absolute; z-index: 2; bottom: 14px; width: 30px; height: 30px; border: 7px solid #181818; border-radius: 50%; background: #bbb; }
.car-shape span::before { left: 23px; }.car-shape span::after { right: 23px; }
.phone-button { padding: 10px; border-radius: 99px; background: #6f62ff; color: white; text-align: center; font-size: 9px; font-weight: 900; }
.happy-card { position: absolute; z-index: 3; right: 26px; top: 72px; display: flex; flex-direction: column; width: 110px; padding: 16px; border-radius: 18px; background: var(--coral); color: var(--pine); box-shadow: 0 18px 40px rgba(23,14,90,.2); transform: rotate(-5deg); }
.happy-card span, .happy-card small { font-size: 9px; font-weight: 800; text-transform: uppercase; }
.happy-card strong { font-family: var(--font-display); font-size: 28px; }

.services { overflow: hidden; background: var(--pine); color: var(--cream); }
.services::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: 7%; border: 1px solid rgba(99, 230, 181, 0.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(99, 230, 181, 0.025), 0 0 0 160px rgba(99, 230, 181, 0.018); }
.service-bento { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 420px; padding: 34px; overflow: hidden; border: 1px solid rgba(245, 241, 232, 0.14); border-radius: var(--radius); background: rgba(245, 241, 232, 0.045); transform-style: preserve-3d; transition: border-color 0.25s ease, transform 0.22s ease; }
.service-card:hover { border-color: rgba(99, 230, 181, 0.5); }
.service-card-wide { grid-column: span 2; }
.service-card-coral { background: var(--coral); color: var(--pine); border-color: var(--coral); }
.service-card-mint { background: var(--mint); color: var(--pine); border-color: var(--mint); }
.service-index { position: absolute; right: 26px; top: 22px; font-size: 11px; font-weight: 900; letter-spacing: 0.14em; opacity: 0.55; }
.service-icon { display: grid; place-items: center; width: 66px; height: 66px; margin-bottom: 52px; border: 1px solid rgba(245, 241, 232, 0.17); border-radius: 20px; }
.service-card-coral .service-icon, .service-card-mint .service-icon { border-color: rgba(7, 30, 26, 0.18); }
.service-icon svg { width: 36px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.service-card h3 { margin-bottom: 14px; font-size: clamp(27px, 3vw, 38px); }
.service-card p { max-width: 610px; color: rgba(245, 241, 232, 0.6); font-size: 15px; }
.service-card-coral p, .service-card-mint p { color: rgba(7, 30, 26, 0.7); }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 28px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 6px 10px; border: 1px solid rgba(245, 241, 232, 0.18); border-radius: 99px; font-size: 10px; font-weight: 800; }
.service-card-coral li, .service-card-mint li { border-color: rgba(7, 30, 26, 0.18); }

.pricing { background: var(--page); }
.market-ranges { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 56px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.market-ranges div { padding: 24px; border-right: 1px solid var(--line); }
.market-ranges div:nth-child(3) { border-right: 0; }
.market-ranges span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.market-ranges strong { font-family: var(--font-display); font-size: clamp(21px, 2.5vw, 30px); letter-spacing: -0.04em; }
.market-ranges > p { grid-column: 1 / -1; margin: 0; padding: 12px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.package-featured { background: var(--forest); color: var(--cream); transform: translateY(-14px); box-shadow: var(--shadow); }
.package-badge { position: absolute; right: 22px; top: 22px; padding: 6px 10px; border-radius: 99px; background: var(--mint); color: var(--pine); font-size: 9px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.package-label { color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.package-card h3 { margin: 12px 0 34px; font-size: 28px; line-height: 1.15; }
.package-price { padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); }
.package-featured .package-price { border-color: rgba(245, 241, 232, 0.15); color: rgba(245, 241, 232, 0.6); }
.package-price strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 42px; line-height: 1.2; letter-spacing: -0.05em; }
.package-featured .package-price strong { color: var(--cream); }
.package-tax { display: block; margin-top: -14px; color: var(--muted); font-size: 10px; }
.package-featured .package-tax { color: rgba(245, 241, 232, 0.68); }
.package-card ul { display: grid; gap: 12px; margin: 0 0 30px; padding: 22px 0 0; list-style: none; color: var(--muted); font-size: 14px; }
.package-card li::before { content: "↗"; margin-right: 9px; color: var(--coral); font-weight: 900; }
.package-featured ul { color: rgba(245, 241, 232, 0.7); }
.package-card .btn { margin-top: auto; }
.package-featured .btn-primary { box-shadow: none; }
.pricing-legal { max-width: 820px; margin: 0 0 80px; color: var(--muted); font-size: 12px; }

.planner { scroll-margin-top: 100px; display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.planner-copy { display: flex; flex-direction: column; padding: clamp(32px, 5vw, 58px); background: var(--forest); color: var(--cream); }
.planner-copy .section-kicker { color: var(--mint); }
.planner-copy h3 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 48px); line-height: 1.04; }
.planner-copy > p:not(.section-kicker, .care-result) { color: rgba(245, 241, 232, 0.63); font-size: 14px; }
.estimate-card { margin: 30px 0 12px; padding: 24px; border: 1px solid rgba(245, 241, 232, 0.16); border-radius: 18px; background: rgba(7, 30, 26, 0.35); }
.estimate-card span { display: block; color: rgba(245, 241, 232, 0.55); font-size: 9px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.estimate-card strong { display: block; margin: 8px 0 4px; font-family: var(--font-display); font-size: clamp(31px, 3.6vw, 43px); letter-spacing: -0.05em; color: var(--mint); }
.estimate-card p { margin: 0; font-size: 14px; font-weight: 800; }
.estimate-card small { color: rgba(245, 241, 232, 0.64); font-size: 10px; }
.care-result { margin: 0 0 24px; color: rgba(245, 241, 232, 0.62); font-size: 12px; }
.planner-copy .btn { margin-top: auto; background: var(--mint); color: var(--pine); }
.planner-form { display: grid; gap: 0; padding: clamp(28px, 5vw, 58px); }
.planner-form fieldset { margin: 0; padding: 0 0 30px; border: 0; }
.planner-form fieldset + fieldset { padding-top: 28px; border-top: 1px solid var(--line); }
.planner-form legend { width: 100%; margin-bottom: 17px; font-weight: 850; letter-spacing: -0.02em; }
.planner-form legend span { display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 9px; border-radius: 50%; background: var(--surface-alt); color: var(--muted); font-size: 10px; }
.choice-grid { display: grid; gap: 9px; }
.choice-grid-three { grid-template-columns: repeat(3, 1fr); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card > span { display: block; padding: 14px; border: 1px solid var(--line); border-radius: 13px; font-size: 13px; font-weight: 850; transition: border-color .2s ease, background .2s ease; }
.choice-card small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 600; }
.choice-card input:checked + span { border-color: var(--forest); background: color-mix(in srgb, var(--mint) 20%, var(--surface)); box-shadow: inset 0 0 0 1px var(--forest); }
.choice-card input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 3px; }
.range-row { display: grid; grid-template-columns: 1fr 92px; align-items: center; gap: 18px; }
input[type="range"] { width: 100%; accent-color: var(--forest); }
.range-row output { padding: 9px; border-radius: 10px; background: var(--surface-alt); font-size: 12px; font-weight: 850; text-align: center; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.check-grid label { display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; font-size: 12px; font-weight: 750; }
.check-grid input, .privacy-check input { width: 17px; height: 17px; accent-color: var(--forest); }
.planner-form select { width: 100%; min-height: 48px; padding: 10px 42px 10px 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); }

.process { background: var(--pine); color: var(--cream); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(245, 241, 232, 0.16); }
.process-step { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 26px; padding: 32px 6px; border-bottom: 1px solid rgba(245, 241, 232, 0.16); transition: padding 0.25s ease, background 0.25s ease; }
.process-step:hover { padding-inline: 22px; background: rgba(245, 241, 232, 0.04); }
.process-number { color: var(--mint); font-size: 11px; font-weight: 900; letter-spacing: 0.14em; }
.process-step p { margin: 0 0 3px; color: rgba(245, 241, 232, 0.68); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.process-step h3 { margin: 0; font-size: clamp(23px, 3vw, 37px); }
.process-duration { padding: 7px 11px; border: 1px solid rgba(245, 241, 232, 0.16); border-radius: 99px; color: rgba(245, 241, 232, 0.6); font-size: 10px; font-weight: 800; }

.studio { background: var(--surface); }
.studio-grid { display: grid; grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(56px, 9vw, 130px); }
.founder-card { position: relative; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); background: var(--forest); color: var(--cream); box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .22s ease; }
.founder-card::before { content: ""; position: absolute; width: 380px; height: 380px; top: -80px; right: -120px; border: 1px solid rgba(99, 230, 181, 0.3); border-radius: 50%; box-shadow: 0 0 0 60px rgba(99,230,181,.04), 0 0 0 120px rgba(99,230,181,.025); }
.founder-monogram { position: absolute; inset: 85px 45px auto; height: 270px; display: flex; align-items: center; justify-content: center; }
.founder-monogram span { font-family: var(--font-display); font-size: clamp(130px, 16vw, 220px); font-weight: 900; line-height: .8; letter-spacing: -.17em; }
.founder-monogram span:first-child { color: var(--mint); transform: translateX(8px); }
.founder-monogram span:last-child { color: var(--coral); mix-blend-mode: screen; transform: translateX(-8px); }
.founder-caption { position: absolute; left: 38px; right: 38px; bottom: 34px; display: grid; padding-top: 22px; border-top: 1px solid rgba(245,241,232,.17); }
.founder-caption span { color: var(--mint); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.founder-caption strong { margin: 4px 0; font-family: var(--font-display); font-size: 27px; }
.founder-caption small { color: rgba(245,241,232,.55); }
.founder-pixels { position: absolute; right: 32px; top: 32px; display: flex; gap: 6px; }
.founder-pixels i { width: 8px; height: 8px; background: var(--mint); }
.founder-pixels i:nth-child(2) { background: var(--coral); }.founder-pixels i:nth-child(3) { background: var(--cream); }
.studio-copy .section-kicker { margin-bottom: 22px; }
.studio-copy h2 { margin-bottom: 34px; }
.studio-lead { color: var(--text) !important; font-size: clamp(22px, 2.5vw, 29px); font-weight: 750; line-height: 1.35; letter-spacing: -.025em; }
.studio-copy > p { color: var(--muted); }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.value-row div { padding: 22px 12px 0 0; }
.value-row strong, .value-row span { display: block; }
.value-row strong { font-size: 13px; }.value-row span { color: var(--muted); font-size: 11px; }

.faq { background: var(--page); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-bottom: 26px; }
.faq-intro > p:not(.section-kicker) { max-width: 390px; color: var(--muted); }
.faq-intro .text-link { margin-top: 18px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 32px; gap: 20px; align-items: center; padding: 26px 0; font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); font-weight: 850; letter-spacing: -.035em; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--font-body); font-size: 18px; font-weight: 500; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary span { background: var(--mint); color: var(--pine); transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -4px 50px 26px 0; color: var(--muted); font-size: 15px; animation: faq-in .28s ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

.contact { overflow: hidden; background: var(--forest); color: var(--cream); }
.contact::before { content: ""; position: absolute; width: 600px; height: 600px; left: -280px; bottom: -340px; border: 90px solid rgba(99, 230, 181, 0.05); border-radius: 50%; }
.contact-shell { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 8vw, 110px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy .section-kicker { color: var(--mint); }
.contact-copy h2 { margin-bottom: 30px; }.contact-copy h2 em { color: var(--mint); }
.contact-copy > p:not(.section-kicker) { max-width: 470px; color: rgba(245,241,232,.65); }
.contact-direct { display: grid; justify-items: start; gap: 7px; margin-top: 42px; }
.contact-direct > span { color: rgba(245,241,232,.68); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-direct a { font-family: var(--font-display); font-size: clamp(19px, 2vw, 25px); font-weight: 850; border-bottom: 1px solid rgba(245,241,232,.2); }
.contact-direct button { padding: 0; border: 0; background: transparent; color: var(--mint); font-size: 11px; font-weight: 800; cursor: pointer; }
.contact-direct a:last-child { margin-top: 14px; }
.contact-form { padding: clamp(28px, 5vw, 52px); border: 1px solid rgba(245,241,232,.14); border-radius: var(--radius-lg); background: var(--cream); color: var(--pine); box-shadow: 0 30px 80px rgba(0,0,0,.17); }
.form-honeypot { 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; }
.form-progress { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 40px; color: #52635d; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.form-progress span:nth-child(2) { text-align: right; }.form-progress span.is-active { color: var(--pine); }
.form-progress i { grid-column: 1/-1; height: 3px; border-radius: 9px; background: #dbe1dc; overflow: hidden; }
.form-progress b { display: block; width: 50%; height: 100%; background: var(--coral); transition: width .3s ease; }
.contact-form fieldset { margin: 0; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 27px; font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 900; letter-spacing: -.045em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label:not(.privacy-check) { display: grid; gap: 8px; margin-bottom: 18px; color: #42504b; font-size: 11px; font-weight: 850; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #cbd4cf;
    border-radius: 11px;
    background: #fff;
    color: var(--pine);
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(22,76,63,.12); }
.contact-form [aria-invalid="true"] { border-color: #b92c2c !important; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 24px; color: #5f6e68; font-size: 11px; line-height: 1.5; }
.privacy-check input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--forest); }
.privacy-check a { text-decoration: underline; }
.form-buttons { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.contact-form .btn-ghost { border-color: #cbd4cf; color: var(--pine); }
.contact-form .btn:disabled { opacity: .62; cursor: wait; transform: none; }
.form-note { margin: 21px 0 0; color: #52635d; font-size: 10px; }
.form-status { min-height: 1.4em; margin: 8px 0 0; color: var(--forest); font-size: 12px; font-weight: 800; }
.form-status:focus { outline: none; }
.form-status.is-sending { color: #42504b; }
.form-status.is-success { color: #11633f; }
.form-status.is-error { color: #9b1c1c; }
.form-status a { text-decoration: underline; text-underline-offset: 2px; }
.form-step[hidden] { display: none; }

.site-footer { padding: 80px 0 26px; background: var(--pine); color: var(--cream); border-top: 1px solid rgba(245,241,232,.12); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 50px; padding-bottom: 70px; }
.brand-footer .brand-mark { width: 52px; height: 52px; }.brand-footer .brand-name { font-size: 22px; }.brand-footer .brand-tagline { color: rgba(245,241,232,.68); }
.footer-top > p { color: rgba(245,241,232,.5); font-size: 14px; }
.footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 28px; justify-self: end; min-width: 250px; }
.footer-top nav a { color: rgba(245,241,232,.72); font-size: 13px; }.footer-top nav a:hover { color: var(--mint); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; padding-top: 22px; border-top: 1px solid rgba(245,241,232,.12); color: rgba(245,241,232,.66); font-size: 10px; }
.footer-bottom p { margin: 0; }.footer-bottom > p:last-child { text-align: right; }.footer-bottom div { display: flex; gap: 20px; }.footer-bottom a:hover { color: var(--cream); }

.case-dialog { width: min(590px, calc(100% - 32px)); padding: clamp(28px, 5vw, 52px); border: 1px solid rgba(245,241,232,.14); border-radius: 28px; background: var(--pine); color: var(--cream); box-shadow: 0 40px 100px rgba(0,0,0,.4); }
.case-dialog::backdrop { background: rgba(2,13,11,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(245,241,232,.18); border-radius: 50%; background: transparent; color: var(--cream); font-size: 25px; cursor: pointer; }
.case-dialog .section-kicker { color: var(--mint); }.case-dialog h2 { margin-bottom: 18px; font-size: clamp(36px, 6vw, 58px); }.case-dialog > p:not(.section-kicker) { color: rgba(245,241,232,.66); }
.case-dialog ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 34px; padding: 0; list-style: none; }.case-dialog li { padding: 7px 11px; border: 1px solid rgba(245,241,232,.17); border-radius: 99px; font-size: 11px; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 28px; padding: 11px 17px; border-radius: 99px; background: var(--mint); color: var(--pine); font-size: 12px; font-weight: 850; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: grid; place-items: center; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--coral); color: var(--pine); font-size: 20px; font-weight: 900; box-shadow: var(--shadow); cursor: pointer; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.legal-content { min-height: 100vh; padding: calc(var(--header-height) + 70px) 0 90px; background: var(--page); }
.legal-shell { width: min(100%, 860px); }
.legal-shell > h1 { margin-bottom: 52px; font-size: clamp(50px, 8vw, 82px); line-height: .95; }
.legal-shell h2 { margin: 50px 0 14px; font-size: clamp(25px, 3vw, 34px); }
.legal-shell h3 { margin: 30px 0 10px; font-size: 20px; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
:root[data-theme="dark"] .legal-shell a { color: var(--mint); }
.legal-notice, .legal-todo { margin: 28px 0; padding: 20px 22px; border-radius: 15px; }
.legal-notice { border: 1px solid var(--line); background: var(--surface); }
.legal-todo { display: inline-block; margin: 7px 0; padding: 7px 10px; border: 2px solid var(--coral); background: color-mix(in srgb, var(--coral) 12%, var(--surface)); color: var(--text) !important; font-size: 13px; }
.legal-updated { margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .nav-menu { gap: 20px; }
    .hero-grid { grid-template-columns: 1fr 430px; gap: 48px; }
    .hero h1 { font-size: clamp(56px, 7.7vw, 85px); }
    .project-card-large .project-visual, .project-visual { height: 520px; }
    .service-bento { grid-template-columns: 1fr 1fr; }.service-card-wide { grid-column: auto; }
    .planner { grid-template-columns: .85fr 1.15fr; }
}

@media (max-width: 900px) {
    :root { --header-height: 74px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .nav-actions { margin-left: auto; }
    .nav-toggle { display: block; }
    .nav-menu { position: fixed; inset: var(--header-height) 12px auto; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu li a:not(.btn) { display: block; padding: 13px 10px; font-size: 17px; }.nav-menu li a::after { display: none; }.nav-menu .btn { margin-top: 8px; width: 100%; }
    .hero { min-height: auto; padding-top: calc(var(--header-height) + 72px); }
    .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.hero h1 { font-size: clamp(63px, 12vw, 104px); }.hero-lab { width: min(100%, 620px); margin-inline: auto; }.scroll-hint { display: none; }
    .section-head { grid-template-columns: 1fr; gap: 26px; }.section-head > p { max-width: 620px; }
    .project-grid { grid-template-columns: 1fr; }.project-card-large .project-visual, .project-visual { height: min(620px, 75vw); min-height: 480px; }
    .package-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }.package-card { min-height: auto; }.package-featured { transform: none; }
    .planner { grid-template-columns: 1fr; }.planner-copy .btn { margin-top: 10px; }
    .studio-grid { grid-template-columns: 1fr; }.founder-card { width: min(100%, 560px); min-height: 540px; }.founder-monogram { inset-inline: 45px; }
    .faq-grid { grid-template-columns: 1fr; gap: 50px; }.faq-intro, .contact-copy { position: static; }
    .contact-shell { grid-template-columns: 1fr; }.contact-copy { max-width: 690px; }
    .footer-top { grid-template-columns: 1fr 1fr; }.footer-top nav { grid-column: 2; grid-row: 1 / span 2; }.footer-bottom { grid-template-columns: 1fr auto; }.footer-bottom > p:last-child { display: none; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 88px 0; }
    .nav { gap: 12px; }
    .brand-name { font-size: 18px; }.brand-tagline { display: none; }.brand-mark { width: 40px; height: 40px; }
    .nav-link { min-height: 38px; padding: 8px 11px; font-size: 11px; }
    .hero { padding-top: calc(var(--header-height) + 52px); padding-bottom: 80px; background-size: 42px 42px; }
    .hero h1 { font-size: clamp(53px, 16vw, 79px); }.hero-lead { font-size: 17px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .btn { width: 100%; }.hero-actions .text-link { align-self: flex-start; }.hero-facts { display: grid; }
    .lab-topbar { grid-template-columns: auto 1fr; }.lab-address { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.lab-live { display: none; }.preview-panel { min-height: 360px; padding: 42px 25px 30px; }.lab-stage { min-height: 360px; }.preview-panel h2 { font-size: 39px; }.strategy-path span { width: 53px; height: 53px; }
    .signal-grid { grid-template-columns: 1fr 1fr; }.signal-grid p, .signal-grid p:first-child { border: 0; border-bottom: 1px solid rgba(245,241,232,.12); text-align: left; padding-inline: 12px; }.signal-grid p:nth-child(odd) { border-right: 1px solid rgba(245,241,232,.12); }
    .section-head h2, .studio-copy h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(43px, 13vw, 65px); }
    .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }.filter-chip { white-space: nowrap; }
    .project-card-large .project-visual, .project-visual { height: 460px; min-height: 0; border-radius: 24px; }.taxi-visual { padding: 40px 16px; }.device-shell { width: 105%; }.taxi-page { min-height: 310px; }.taxi-copy strong { font-size: 46px; }.phone-shell { width: 210px; min-height: 390px; }.happy-card { right: 15px; top: 60px; }
    .service-bento { grid-template-columns: 1fr; }.service-card { min-height: 390px; padding: 28px; }.service-icon { margin-bottom: 42px; }
    .market-ranges { grid-template-columns: 1fr; }.market-ranges div { border-right: 0; border-bottom: 1px solid var(--line); }.market-ranges > p { grid-column: auto; border-top: 0; }
    .package-card { padding: 28px; }.package-card h3 { font-size: 25px; }.package-price strong { font-size: 38px; }
    .planner-copy, .planner-form { padding: 28px; }.choice-grid-three, .check-grid { grid-template-columns: 1fr; }.range-row { grid-template-columns: 1fr 82px; }
    .process-step { grid-template-columns: 44px 1fr; gap: 14px; }.process-duration { grid-column: 2; justify-self: start; }.process-step:hover { padding-inline: 6px; }
    .founder-card { min-height: 470px; }.founder-monogram { inset: 70px 25px auto; }.founder-caption { inset-inline: 25px; }.value-row { grid-template-columns: 1fr; }.value-row div { padding-bottom: 13px; }
    .faq-list summary { font-size: 18px; }.faq-list details p { margin-right: 0; }
    .contact-form { padding: 26px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }.form-buttons { grid-template-columns: 1fr; }.form-buttons .btn-ghost { order: 2; }
    .footer-top { grid-template-columns: 1fr; }.footer-top nav { grid-column: auto; grid-row: auto; justify-self: start; }.footer-bottom { grid-template-columns: 1fr; }.footer-bottom div { order: -1; }
    .back-to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 390px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .theme-toggle { width: 38px; height: 38px; }.nav-toggle { width: 38px; height: 38px; }
    .hero h1 { font-size: 49px; }
    .preview-panel h2 { font-size: 34px; }
    .project-meta h3 { font-size: 24px; }
    .happy-card { right: 5px; }
}

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