@charset "UTF-8";

:root {
  --ink: #13241f;
  --ink-2: #1d342d;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --lime: #d8ff65;
  --mint: #a8d8c3;
  --line: rgba(19, 36, 31, .17);
  --muted: #5d6b66;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1240px, calc(100% - 72px)); margin-inline: auto; }
section[id] { scroll-margin-top: 84px; }
:where(a, button):focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-140%);
  padding: 12px 18px; background: var(--lime); color: var(--ink); font-weight: 800;
}
.skip-link:focus, .skip-link:focus-visible { transform: translateY(0); outline-color: var(--ink); }
.staging-bar {
  min-height: 28px; padding: 6px 20px; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--lime); color: var(--ink); text-transform: uppercase; letter-spacing: .14em;
  font-size: 9px; font-weight: 800;
}

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(251,250,246,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; letter-spacing: .19em; font-size: 15px; font-weight: 900; }
.wordmark svg { width: 29px; height: 29px; padding: 4px; background: var(--ink); fill: var(--lime); border-radius: 2px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav-links a { text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; }
.nav-links > a:not(.nav-cta) { padding-block: 12px; position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 1px; background: var(--ink); transition: right .25s ease; }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 24px; padding: 14px 17px; border: 1px solid var(--ink); }
.nav-cta span { font-size: 16px; line-height: 1; }
.menu-button { display: none; }
.language-switcher { position: relative; margin-left: auto; }
.nav-links .language-switcher { margin-left: 0; }
.language-button {
  min-width: 64px; min-height: 42px; padding: 8px 10px; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer;
  font: 850 9px/1 var(--sans); letter-spacing: .12em;
}
.language-button:hover, .language-button[aria-expanded="true"] { border-color: var(--ink); background: var(--cream); }
.language-button span:first-child { color: var(--muted); font-size: 12px; }
.language-menu {
  position: absolute; z-index: 40; top: calc(100% + 10px); right: 0; width: 156px; padding: 7px; display: none;
  border: 1px solid var(--ink); background: var(--paper); box-shadow: 8px 8px 0 var(--lime);
}
.language-menu.is-open { display: grid; }
.language-menu a { min-height: 39px; padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; text-decoration: none; font-size: 11px; font-weight: 750; }
.language-menu a:hover, .language-menu a:focus-visible { background: var(--cream); }
.language-menu a[aria-current="page"] { background: var(--ink); color: white; }
.language-menu a[aria-current="page"]::after { content: "●"; color: var(--lime); font-size: 7px; }

.hero { position: relative; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .34; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-grid { min-height: 700px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); gap: 4vw; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-block: 90px; }
.eyebrow, .section-label {
  display: flex; align-items: center; gap: 10px; margin: 0 0 24px; text-transform: uppercase;
  font-size: 10px; line-height: 1.3; font-weight: 850; letter-spacing: .2em;
}
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 780px; margin: 0; font-size: clamp(66px, 7.35vw, 112px); line-height: .86;
  font-weight: 800; letter-spacing: -.065em;
}
.hero h1 em { display: block; color: var(--ink); font-family: var(--serif); font-weight: 400; letter-spacing: -.05em; }
.hero-lead { max-width: 670px; margin: 36px 0 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); }
.hero-proofline { margin: 24px 0 0; display: flex; align-items: center; gap: 10px; color: var(--ink); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; line-height: 1.4; font-weight: 850; }
.hero-proofline span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(216,255,101,.45); }
.hero-actions { margin-top: 38px; display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 34px; padding: 15px 20px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 850; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary span { color: var(--lime); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 10px; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 850; text-underline-offset: 6px; }
.text-link span { font-size: 15px; }

.hero-system { position: relative; height: 560px; min-width: 0; }
.hero-system::before { content: ""; position: absolute; width: 340px; height: 340px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: var(--mint); opacity: .68; }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(19,36,31,.25); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 290px; height: 290px; border-style: dashed; }
.path-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.path-line path { fill: none; stroke: var(--ink); stroke-width: 1.3; stroke-dasharray: 4 6; opacity: .55; }
.system-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 192px; height: 192px; transform: translate(-50%, -50%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: var(--ink); color: white; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; font-weight: 800; box-shadow: 0 30px 80px rgba(19,36,31,.18); }
.system-core strong { color: var(--lime); font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1; }
.system-note { position: absolute; z-index: 3; width: 150px; min-height: 76px; padding: 14px; border: 1px solid var(--ink); background: rgba(251,250,246,.94); box-shadow: 8px 8px 0 var(--lime); }
.system-note b { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.system-note span { display: block; font-size: 13px; line-height: 1.3; font-weight: 750; }
.note-a { top: 35px; left: 19%; }
.note-b { right: 0; top: 40%; }
.note-c { left: 8%; bottom: 34px; }
.hero-rail { position: relative; z-index: 2; min-height: 66px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid var(--line); }
.hero-rail span { padding: 9px 20px; border-right: 1px solid var(--line); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 750; }
.hero-rail span:first-child { padding-left: 0; }
.hero-rail span:last-child { border-right: 0; }

.section { padding: 130px 0; }
.section-label { color: var(--muted); }
.section-label.light { color: var(--mint); }
.split-intro { display: grid; grid-template-columns: 1.45fr .55fr; gap: 8vw; align-items: end; }
.split-intro h2, .section-heading h2, .work-heading h2, .process-sticky h2, .studio-copy h2, .cta-inner h2 {
  margin: 0; font-size: clamp(46px, 5.7vw, 82px); line-height: .96; letter-spacing: -.055em; font-weight: 750;
}
.intro-copy { padding-top: 42px; border-top: 1px solid var(--ink); color: var(--muted); font-size: 17px; }
.intro-copy p { margin: 0 0 20px; }
.intro-copy p:last-child { margin-bottom: 0; }
.fit-note { padding: 18px 20px; border-left: 3px solid var(--ink); background: var(--cream); color: var(--ink); font-size: 14px; }

.services-section { background: var(--ink); color: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 330px; gap: 8vw; align-items: end; margin-bottom: 70px; }
.section-heading > p { margin: 0 0 10px; color: #a9b8b2; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.service-card { position: relative; min-height: 410px; padding: 42px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); overflow: hidden; transition: background-color .3s ease, transform .3s ease; }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--lime); transition: height .35s ease; }
.service-card:hover { background: var(--ink-2); transform: translateY(-3px); }
.service-card:hover::before { height: 8px; }
.service-icon { width: 56px; height: 56px; margin-bottom: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--lime); font-family: var(--serif); font-size: 19px; }
.card-index { position: absolute; right: 42px; top: 42px; margin: 0; color: #94a39d; font-size: 10px; letter-spacing: .15em; }
.service-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.service-card > p:not(.card-index) { max-width: 480px; margin: 0; color: #a9b8b2; }
.service-card ul { margin: 29px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; }
.service-card li { color: #d9e0dd; font-size: 11px; }
.service-card li::before { content: "+"; margin-right: 7px; color: var(--lime); }

.work-section { background: var(--paper); }
.work-heading { display: grid; grid-template-columns: 1fr minmax(360px, .75fr); gap: 8vw; align-items: end; margin-bottom: 80px; }
.disclosure-box { padding: 25px 28px; border-left: 3px solid var(--ink); background: var(--cream); }
.disclosure-box strong { text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.disclosure-box p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.proof-card, .proof-boundary { padding: 36px; border: 1px solid var(--ink); background: var(--paper); transition: box-shadow .25s ease, transform .25s ease; }
.proof-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--mint); }
.proof-card { min-height: 420px; display: flex; flex-direction: column; }
.proof-topline { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 800; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 9px; border: 1px solid var(--ink); color: var(--ink); white-space: nowrap; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-live { background: var(--lime); }
.status-tested { background: var(--mint); }
.proof-card h3, .proof-boundary h3 { margin: 42px 0 16px; font-family: var(--serif); font-size: clamp(30px, 3vw, 43px); line-height: 1; font-weight: 400; }
.proof-card > p:not(.proof-note), .proof-boundary > p:not(.section-label) { margin: 0; color: var(--muted); font-size: 16px; }
.proof-card dl { margin: auto 0 0; padding-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--line); }
.proof-card dl div { min-width: 0; }
.proof-card dt { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; }
.proof-card dd { margin: 7px 0 0; font-size: 14px; font-weight: 800; }
.proof-list { margin: auto 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); list-style: none; }
.proof-list li { padding: 7px 0; font-size: 14px; }
.proof-list li::before { content: "+"; margin-right: 8px; font-weight: 900; }
.proof-note { margin: 24px 0 0; color: var(--muted); font-size: 11px; }
.proof-boundary { grid-column: 1 / -1; display: grid; grid-template-columns: .45fr .75fr 1fr; gap: 42px; align-items: start; background: var(--cream); }
.proof-boundary .section-label, .proof-boundary h3 { margin: 0; }
.proof-boundary .text-link { justify-self: end; align-self: end; }

.concept-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 28px; align-items: start; }
.concept-card { min-width: 0; }
.concept-wide { grid-column: 1 / -1; width: 78%; }
.concept-last { justify-self: end; }
.concept-image { position: relative; min-width: 0; aspect-ratio: 1.55 / 1; overflow: hidden; background: #d8ddd8; border: 1px solid var(--line); }
.concept-wide .concept-image { aspect-ratio: 2.05 / 1; }
.concept-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.concept-card:hover img { transform: scale(1.018); }
.private-badge { position: absolute; top: 16px; left: 16px; padding: 8px 10px; background: var(--lime); color: var(--ink); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; font-weight: 900; box-shadow: 4px 4px 0 var(--ink); }
.concept-meta { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .65fr); gap: 30px; padding-top: 22px; border-top: 1px solid var(--ink); }
.concept-meta p { margin: 0; color: var(--muted); font-size: 12px; }
.concept-meta > div > p { margin-bottom: 9px; text-transform: uppercase; letter-spacing: .15em; font-size: 8px; font-weight: 800; }
.concept-meta h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); line-height: 1; font-weight: 400; }
.concept-purpose { align-self: end; }
.work-footnote { max-width: 850px; margin: 70px 0 0 auto; padding: 22px 0 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.process-section { background: var(--cream); }
.process-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: start; }
.process-sticky { position: sticky; top: 40px; }
.process-sticky > p:last-child { max-width: 410px; margin: 33px 0 0; color: var(--muted); }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.process-list li { min-height: 188px; display: grid; grid-template-columns: 62px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.process-list h3 { margin: 0 0 11px; font-family: var(--serif); font-size: 32px; line-height: 1; font-weight: 400; }
.process-list p { max-width: 600px; margin: 0; color: var(--muted); }

.studio-section { background: var(--paper); }
.studio-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: center; }
.founder-card { position: relative; min-height: 570px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--ink); color: white; }
.founder-card::before, .founder-card::after { content: ""; position: absolute; border-radius: 50%; }
.founder-card::before { width: 490px; height: 490px; right: -220px; top: -160px; border: 1px solid rgba(216,255,101,.5); box-shadow: 0 0 0 60px rgba(168,216,195,.06), 0 0 0 120px rgba(168,216,195,.04); }
.founder-card::after { width: 180px; height: 180px; left: -70px; bottom: 90px; background: var(--mint); opacity: .75; }
.founder-monogram { position: relative; z-index: 1; padding: 45px; color: var(--lime); font-family: var(--serif); font-size: clamp(100px, 14vw, 190px); line-height: .8; font-style: italic; letter-spacing: -.09em; }
.founder-caption { position: relative; z-index: 1; padding: 32px 36px; background: var(--lime); color: var(--ink); }
.founder-caption span { display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 850; }
.founder-caption strong { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.studio-copy h2 { max-width: 720px; }
.large-copy { max-width: 710px; margin: 34px 0 50px; color: var(--muted); font-size: 19px; }
.principles { border-top: 1px solid var(--ink); }
.principles > div { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles span { color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.principles p { margin: 0; color: var(--muted); font-size: 14px; }
.principles strong { color: var(--ink); }

.cta-section { position: relative; overflow: hidden; padding: 140px 0; background: var(--ink); color: white; }
.cta-section::after { content: "N"; position: absolute; right: -30px; bottom: -220px; color: rgba(216,255,101,.055); font-family: var(--serif); font-size: 630px; line-height: 1; font-style: italic; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { max-width: 1000px; font-size: clamp(58px, 8vw, 112px); }
.cta-inner h2 em { color: var(--lime); font-family: var(--serif); font-weight: 400; }
.cta-inner > p:not(.section-label):not(.contact-status) { max-width: 610px; margin: 34px 0; color: #adbbb6; font-size: 18px; }
.contact-checklist { max-width: 760px; margin: 0 0 34px; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.22); list-style: none; }
.contact-checklist li { padding: 18px 18px 18px 0; color: #d8e1de; font-size: 13px; }
.contact-checklist span { display: block; margin-bottom: 8px; color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.button-lime { background: var(--lime); color: var(--ink); }
.button.is-disabled { border-color: rgba(255,255,255,.26); background: transparent; color: #bdc8c4; cursor: not-allowed; }
.contact-status { max-width: 620px; margin: 18px 0 0; color: #8fa09a; font-size: 11px; }

.site-footer { padding: 70px 0 30px; background: #0b1713; color: white; }
.footer-grid { display: grid; grid-template-columns: .7fr .8fr 1.2fr; gap: 60px; align-items: start; }
.footer-mark svg { background: var(--lime); fill: var(--ink); }
.footer-grid > p { max-width: 280px; margin: 0; color: #94a29d; font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 16px 28px; }
.footer-links a { min-height: 32px; display: inline-flex; align-items: center; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 750; text-underline-offset: 5px; }
.footer-bottom { margin-top: 62px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); color: #9aaba4; font-size: 11px; }
.footer-bottom p { margin: 0; }
.legal-page { min-height: 70vh; padding: 92px 0 120px; }
.legal-copy { max-width: 780px; }
.legal-copy h1 { margin: 0 0 28px; font-size: clamp(52px, 8vw, 96px); line-height: .92; letter-spacing: -.055em; }
.legal-copy h2 { margin: 46px 0 13px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy a { text-underline-offset: 4px; }


[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .shell { width: min(100% - 46px, 1240px); }
  .nav-links { gap: 18px; }
  .hero-grid { min-height: 650px; grid-template-columns: 1.1fr .9fr; }
  .hero-system { height: 500px; }
  .orbit-one { width: 390px; height: 390px; }
  .system-note { width: 130px; }
  .note-a { left: 7%; }
  .split-intro { grid-template-columns: 1.2fr .8fr; gap: 6vw; }
  .section { padding: 105px 0; }
  .concept-wide { width: 88%; }
  .studio-grid { gap: 5vw; }
  .founder-card { min-height: 520px; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px, 1240px); }
  .staging-bar { gap: 6px; padding-inline: 10px; font-size: 7px; letter-spacing: .1em; }
  .nav-wrap { min-height: 70px; }
  .menu-button { width: 46px; height: 46px; padding: 13px 9px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border: 0; background: transparent; }
  .menu-button span { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; display: none; padding: 26px 16px 32px; flex-direction: column; align-items: stretch; gap: 4px; background: var(--paper); border-bottom: 1px solid var(--ink); box-shadow: 0 25px 50px rgba(19,36,31,.12); }
  .nav-links.is-open { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; padding-inline: 8px; }
  .nav-cta { margin-top: 10px; justify-content: space-between; padding-inline: 16px !important; }
  .nav-wrap > .nav-cta { display: none; }
  .nav-links .language-switcher { width: 100%; margin: 8px 0; }
  .nav-links .language-button { width: 100%; min-height: 48px; padding-inline: 10px; justify-content: space-between; }
  .nav-links .language-menu { position: static; width: 100%; margin-top: 6px; box-shadow: 5px 5px 0 var(--lime); }

  .hero::before { background-size: 52px 52px; mask-image: linear-gradient(#000, transparent 72%); }
  .hero-grid { min-height: 0; grid-template-columns: minmax(0, 1fr); gap: 0; }
  .hero-copy { padding: 72px 0 48px; }
  .eyebrow { margin-bottom: 20px; font-size: 10px; line-height: 1.45; }
  .hero h1 { max-width: 560px; font-size: clamp(50px, 14vw, 78px); line-height: .9; }
  .hero-lead { margin-top: 27px; font-size: 16px; }
  .hero-actions { margin-top: 29px; gap: 20px; }
  .button { min-height: 52px; }
  .hero-system { height: 420px; margin: 0 0 22px; }
  .hero-system::before { width: 260px; height: 260px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 220px; height: 220px; }
  .system-core { width: 145px; height: 145px; }
  .system-note { width: 126px; min-height: 66px; padding: 10px; box-shadow: 6px 6px 0 var(--lime); }
  .system-note span { font-size: 11px; }
  .note-a { top: 3px; left: 12px; }
  .note-b { right: 12px; top: 42%; }
  .note-c { left: 12px; bottom: 2px; }
  .hero-rail { width: 100%; min-height: 0; grid-template-columns: repeat(2, 1fr); }
  .hero-rail span { min-height: 48px; display: flex; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--line); font-size: 10px; }
  .hero-rail span:nth-child(2) { border-right: 0; }
  .hero-rail span:first-child { padding-left: 16px; }

  .section { padding: 86px 0; }
  .split-intro, .section-heading, .work-heading, .process-layout, .studio-grid { grid-template-columns: minmax(0, 1fr); }
  .split-intro, .section-heading, .work-heading, .studio-grid { gap: 48px; }
  .split-intro h2, .section-heading h2, .work-heading h2, .process-sticky h2, .studio-copy h2 { font-size: clamp(43px, 13vw, 67px); }
  .intro-copy { padding-top: 26px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading > p { max-width: 520px; }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .service-card { min-height: 360px; padding: 30px; }
  .service-icon { margin-bottom: 45px; }
  .card-index { top: 30px; right: 30px; }

  .work-heading { margin-bottom: 55px; }
  .disclosure-box { padding: 20px; }
  .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .proof-card { min-height: 0; padding: 28px; }
  .proof-topline { align-items: flex-start; flex-direction: column; }
  .proof-card h3 { margin-top: 34px; }
  .proof-card dl { margin-top: 42px; grid-template-columns: 1fr; gap: 18px; }
  .proof-list { margin-top: 42px; }
  .proof-boundary { grid-column: auto; padding: 28px; grid-template-columns: 1fr; gap: 24px; }
  .proof-boundary .text-link { justify-self: start; }

  .concept-grid { grid-template-columns: minmax(0, 1fr); gap: 58px; }
  .concept-wide, .concept-card { grid-column: auto; width: 100%; }
  .concept-image, .concept-wide .concept-image { aspect-ratio: 1.25 / 1; }
  .concept-meta { grid-template-columns: 1fr; gap: 14px; }
  .concept-meta h3 { font-size: 30px; }
  .concept-purpose { max-width: 540px; }
  .work-footnote { margin-top: 55px; padding-left: 0; }

  .process-layout { gap: 50px; }
  .process-sticky { position: static; }
  .process-list li { min-height: 0; grid-template-columns: 48px 1fr; gap: 13px; padding: 27px 0; }
  .process-list h3 { font-size: 29px; }
  .process-list p { font-size: 14px; }
  .founder-card { min-height: 480px; }
  .studio-copy { order: -1; }
  .large-copy { margin: 28px 0 40px; font-size: 17px; }

  .cta-section { padding: 95px 0; }
  .cta-section::after { right: -80px; bottom: -100px; font-size: 390px; }
  .cta-inner h2 { font-size: clamp(52px, 14.5vw, 82px); }
  .cta-inner > p:not(.section-label):not(.contact-status) { font-size: 16px; }
  .contact-checklist { grid-template-columns: 1fr; }
  .contact-checklist li { border-bottom: 1px solid rgba(255,255,255,.14); }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { margin-top: 45px; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { min-height: 48px; }
  .hero-system { height: 380px; }
  .orbit-one { width: 305px; height: 305px; }
  .system-note { width: 112px; }
  .note-a { left: 6px; }
  .note-b { right: 6px; }
  .note-c { left: 6px; }
  .founder-card { min-height: 430px; }
  .founder-monogram { padding: 35px; }
  .founder-caption { padding: 26px; }
  .principles > div { grid-template-columns: 38px 1fr; }
  .button-lime, .button.is-disabled { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
