
:root {
  --cream: #f9efe1;
  --ink: #184842;
  --mustard: #e1b426;
  --plum: #5f183f;
  --pink: #d78e97;
  --white: #ffffff;
  --paper: #fffaf2;
  --line: rgba(24, 72, 66, 0.23);
  --scroll-progress: 0;
  --scroll-y: 0;
  --mouse-x: 0;
  --mouse-y: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--mustard) var(--ink); }
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--ink); }
html::-webkit-scrollbar-thumb { background: linear-gradient(var(--mustard), var(--pink)); border: 3px solid var(--ink); border-radius: 20px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
.page-leaving { overflow: hidden; }
body::before { content: ""; position: fixed; z-index: 95; inset: 0; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }
.ui-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -.12em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-action-dock { display: none; }
::selection { background: var(--mustard); color: var(--ink); }

.pointer-dot {
  position: fixed;
  z-index: 121;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mustard);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(225,180,38,.3);
  transition: width .2s ease, height .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.pointer-ring {
  position: fixed;
  z-index: 120;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24,72,66,.75);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(249,239,225,.08);
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transition: width .28s cubic-bezier(.2,.8,.2,1), height .28s cubic-bezier(.2,.8,.2,1), background .25s ease, border-color .25s ease, opacity .2s ease;
}
.pointer-ring span { font: 900 8px/1 "Courier New", monospace; letter-spacing: .06em; opacity: 0; transition: opacity .18s ease; }
.cursor-visible .pointer-dot, .cursor-visible .pointer-ring { opacity: 1; }
.cursor-active .pointer-ring { width: 76px; height: 76px; background: var(--mustard); border-color: var(--mustard); color: var(--ink); }
.cursor-active .pointer-ring span { opacity: 1; }
.cursor-active .pointer-dot { width: 5px; height: 5px; background: var(--plum); }
.cursor-down .pointer-ring { width: 62px; height: 62px; }
.page-progress { position: fixed; z-index: 119; left: 0; top: 0; width: 100%; height: 4px; background: var(--mustard); transform: scaleX(var(--scroll-progress)); transform-origin: left; pointer-events: none; }
.page-progress::after { content: ""; position: absolute; right: -3px; top: -2px; width: 8px; height: 8px; border-radius: 50%; background: var(--plum); box-shadow: 0 0 0 4px rgba(95,24,63,.14); }
.page-wipe { position: fixed; z-index: 200; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); pointer-events: none; visibility: visible; }
.page-wipe i { display: block; height: 100%; transform: scaleY(1); transform-origin: top; }
.wipe-cream { background: var(--cream); }
.wipe-mustard { background: var(--mustard); }
.wipe-plum { background: var(--plum); }
.motion-ready .page-wipe i { animation: wipeReveal .28s cubic-bezier(.77,0,.18,1) forwards; }
.motion-ready .page-wipe i:nth-child(2) { animation-delay: .015s; }
.motion-ready .page-wipe i:nth-child(3) { animation-delay: .03s; }
.page-leaving .page-wipe { pointer-events: all; }
.page-leaving .page-wipe i { transform: scaleY(0); transform-origin: bottom; animation: wipeCover .18s cubic-bezier(.77,0,.18,1) forwards; }
.page-leaving .page-wipe i:nth-child(2) { animation-delay: .012s; }
.page-leaving .page-wipe i:nth-child(3) { animation-delay: .024s; }
@keyframes wipeReveal { to { transform: scaleY(0); } }
@keyframes wipeCover { to { transform: scaleY(1); } }

@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 4.4vw, 72px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), background .35s ease, height .35s ease, color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled { height: 82px; background: rgba(249,239,225,.9); box-shadow: 0 1px 0 rgba(24,72,66,.12); backdrop-filter: blur(14px); color: var(--ink); }
.site-header.is-hidden { transform: translateY(-110%); }
.contact-page .site-header.is-scrolled { background: rgba(95,24,63,.9); color: var(--cream); box-shadow: 0 1px 0 rgba(249,239,225,.16); }
.brand { position: relative; width: clamp(128px, 12vw, 178px); aspect-ratio: 791 / 219; display: block; background: url("/assets/point9-wordmark-green.png") left center / contain no-repeat; transition: transform .3s ease; }
.brand:hover { transform: translateY(-2px); }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .25s ease; }
.brand-logo-light { opacity: 0; }
.contact-page .brand-logo-green { opacity: 0; }
.contact-page .brand-logo-light { opacity: 1; }
.contact-page .brand { background-image: url("/assets/point9-wordmark-light.png"); }
.header-back { position: absolute; left: clamp(24px, 4.4vw, 72px); top: calc(100% + 10px); border: 1px solid currentColor; border-radius: 999px; padding: 9px 14px; display: inline-flex; align-items: center; gap: 9px; background: rgba(249,239,225,.9); color: var(--ink); box-shadow: 0 4px 14px rgba(24,72,66,.09); backdrop-filter: blur(10px); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.header-back:hover { transform: translateX(-3px); background: var(--mustard); box-shadow: 0 6px 18px rgba(24,72,66,.14); }
.header-back span { font-size: 17px; line-height: .7; transition: transform .22s ease; }
.header-back .ui-icon { width: 17px; height: 17px; vertical-align: 0; }
.header-back:hover span { transform: translateX(-4px); }
.home-header:not(.is-scrolled) .nav-links { color: var(--cream); }
.home-header:not(.is-scrolled) .nav-links { width: 41%; justify-content: center; gap: clamp(10px, 1.35vw, 22px); padding-left: 18px; }
.home-header:not(.is-scrolled) .nav-cta:hover { background: var(--cream); color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); font-size: 13px; font-weight: 700; }
.nav-links > a { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: currentColor; transition: right .25s ease; }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border: 1.5px solid currentColor; padding: 13px 17px; display: inline-flex; align-items: center; gap: 28px; transition: background .25s ease, color .25s ease, translate .3s cubic-bezier(.2,.8,.2,1); }
.nav-cta .ui-icon { width: 18px; height: 18px; }
.nav-cta:hover { background: var(--ink); color: var(--cream); }
.contact-page .nav-cta:hover { background: var(--cream); color: var(--plum); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 0; }

.hero { min-height: 820px; height: 100svh; display: grid; grid-template-columns: 59% 41%; border-bottom: 1px solid var(--line); }
.hero-copy { padding: clamp(160px, 20vh, 205px) clamp(24px, 4.4vw, 72px) 48px; display: flex; flex-direction: column; justify-content: space-between; }
.eyebrow { margin: 0 0 25px; text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 800; }
.hero h1 { margin: 0; max-width: 870px; font-size: clamp(62px, 7.3vw, 121px); line-height: .87; letter-spacing: -.066em; font-weight: 900; }
h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero h1 em { display: block; color: var(--plum); }
.hero-bottom { margin-top: 46px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.hero-bottom > p { max-width: 500px; margin: 0; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.5; }
.round-link { flex: 0 0 118px; height: 118px; border: 1.5px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; font-weight: 800; transition: background .3s ease, rotate .3s ease, translate .3s cubic-bezier(.2,.8,.2,1); }
.round-link b { font-size: 22px; font-weight: 400; }
.round-link .ui-icon { width: 22px; height: 22px; }
.round-link:hover { background: var(--mustard); rotate: -7deg; }

.hero-mark { position: relative; background: var(--ink); overflow: hidden; display: grid; place-items: center; }
.hero-mark::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(249,239,225,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(249,239,225,.22) 1px, transparent 1px); background-size: 46px 46px; }
.hero-mark img { position: relative; z-index: 2; width: min(75%, 480px); height: auto; border-radius: 50%; translate: calc(var(--mouse-x) * 14px) calc(var(--mouse-y) * 14px); animation: markFloat 6s ease-in-out infinite; transition: translate .35s ease-out; }
.hero-mark .orbit { position: absolute; z-index: 1; border: 1px solid rgba(249,239,225,.38); border-radius: 50%; }
.orbit-one { width: 80%; aspect-ratio: 1; transform: rotate(calc(var(--scroll-progress) * 120deg)); }
.orbit-two { width: 112%; aspect-ratio: 1; transform: rotate(calc(var(--scroll-progress) * -80deg)); }
.hero-note { position: absolute; z-index: 3; left: 32px; bottom: 34px; color: var(--cream); font: 700 10px/1 "Courier New", monospace; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
@keyframes markFloat { 0%,100% { transform: translateY(-6px) rotate(-2deg); } 50% { transform: translateY(10px) rotate(2deg); } }

.ticker { background: var(--mustard); border-bottom: 1px solid var(--ink); overflow: hidden; }
.ticker-track { width: max-content; padding: 13px 0 12px; display: flex; align-items: center; animation: ticker 26s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span { font-size: 12px; letter-spacing: .18em; font-weight: 900; margin: 0 26px; }
.ticker i { font-size: 8px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(88px, 11vw, 170px) clamp(24px, 4.4vw, 72px); }
.section-label { display: flex; align-items: center; gap: 18px; align-self: start; }
.section-label span { width: 37px; height: 37px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 900; }
.section-label p { margin: 0; text-transform: uppercase; letter-spacing: .17em; font-size: 10px; font-weight: 900; }
.section-label.light { color: var(--cream); }

.manifesto { display: grid; grid-template-columns: 22% 78%; background: var(--white); }
.manifesto-content h2 { max-width: 1020px; margin: 0 0 clamp(70px, 8vw, 120px); font-size: clamp(42px, 5.5vw, 87px); line-height: 1.02; letter-spacing: -.05em; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 130px); border-top: 1px solid var(--line); padding-top: 32px; }
.manifesto-grid > p { margin: 0; font-size: clamp(18px, 1.55vw, 25px); line-height: 1.55; }
.manifesto-grid blockquote { margin: 0; padding-left: 28px; border-left: 5px solid var(--mustard); display: flex; flex-direction: column; gap: 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2vw, 32px); line-height: 1.25; }
.manifesto-grid blockquote strong { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }

.projects { background: var(--ink); color: var(--cream); }
.section-heading { display: grid; grid-template-columns: 28% 72%; align-items: end; margin-bottom: clamp(62px, 8vw, 120px); }
.section-heading h2 { margin: 0; font-size: clamp(40px, 4.5vw, 72px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading h2 em { color: var(--mustard); }
.project-list { border-top: 1px solid rgba(249,239,225,.35); }
.project-row { display: grid; grid-template-columns: 8% 22% 1fr 180px 40px; gap: 24px; align-items: center; min-height: 240px; border-bottom: 1px solid rgba(249,239,225,.35); position: relative; isolation: isolate; transition: color .3s ease, padding .35s cubic-bezier(.2,.8,.2,1); }
.project-row::before { content: ""; position: absolute; z-index: -1; inset: 0; transform: scaleY(0); transform-origin: bottom; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.project-row.mustard::before { background: var(--mustard); }
.project-row.plum::before { background: var(--plum); }
.project-row:hover::before { transform: scaleY(1); }
.project-row.mustard:hover { color: var(--ink); }
.project-row:hover { padding-left: 18px; padding-right: 18px; }
.project-index { font: 700 11px/1 "Courier New", monospace; }
.project-title p { margin: 0 0 13px; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 800; }
.project-title h3 { margin: 0; font-size: clamp(38px, 4vw, 66px); letter-spacing: -.055em; line-height: .9; }
.project-story h4 { margin: 0 0 13px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(22px, 2.2vw, 34px); }
.project-story p { max-width: 520px; margin: 0; font-size: 14px; line-height: 1.55; opacity: .82; }
.project-status { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; line-height: 1.35; display: flex; align-items: flex-start; gap: 9px; }
.project-status span { flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; margin-top: 3px; background: var(--mustard); }
.mustard:hover .project-status span { background: var(--ink); }
.project-arrow { font-size: 30px; transition: transform .3s ease; }
.project-arrow .ui-icon { width: 30px; height: 30px; }
.project-row:hover .project-arrow { transform: rotate(45deg); }

.method { display: grid; grid-template-columns: 22% 78%; }
.method-content > h2 { margin: 0 0 80px; font-size: clamp(44px, 5vw, 80px); line-height: .98; letter-spacing: -.05em; }
.method-content > h2 em { color: var(--plum); }
.method-list { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 70px 27% 1fr; gap: 18px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .35s cubic-bezier(.2,.8,.2,1), background .25s ease; }
.method-step:hover { padding-left: 18px; padding-right: 18px; background: var(--paper); }
.method-step > span { font: 700 11px/1 "Courier New", monospace; }
.method-step h3 { margin: 0; font-size: clamp(26px, 2.5vw, 40px); letter-spacing: -.04em; }
.method-step p { margin: 0; max-width: 590px; font-size: 15px; line-height: 1.6; }

.collaboration { background: var(--mustard); display: grid; grid-template-columns: 22% 78%; }
.collab-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 65px; align-items: end; }
.collab-intro h2 { margin: 0; font-size: clamp(43px, 5vw, 80px); line-height: 1; letter-spacing: -.05em; }
.collab-intro h2 em { color: var(--plum); }
.collab-intro > p { margin: 0; font-size: 17px; line-height: 1.6; }
.collab-options { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border-top: 1px solid rgba(24,72,66,.45); border-bottom: 1px solid rgba(24,72,66,.45); }
.collab-options > div { padding: 30px 28px 38px 0; }
.collab-options > div + div { padding-left: 28px; border-left: 1px solid rgba(24,72,66,.45); }
.collab-options span { font: 700 10px/1 "Courier New", monospace; }
.collab-options h3 { margin: 50px 0 12px; font-size: 27px; letter-spacing: -.035em; }
.collab-options p { margin: 0; font-size: 14px; line-height: 1.55; }

.contact { min-height: 780px; position: relative; overflow: hidden; background: var(--plum); color: var(--cream); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.contact-mark { position: absolute; right: -1vw; top: 50%; transform: translateY(-55%); font-size: min(45vw, 650px); font-weight: 900; line-height: .7; opacity: .13; letter-spacing: -.18em; animation: contactBreath 7s ease-in-out infinite; }
.contact-mark span { font-size: .13em; vertical-align: .5em; margin-left: -.34em; color: var(--pink); }
.contact .eyebrow { position: relative; z-index: 1; color: var(--pink); }
.contact h2 { position: relative; z-index: 1; margin: 10px 0 55px; max-width: 1050px; font-size: clamp(51px, 7vw, 108px); line-height: .92; letter-spacing: -.06em; }
.contact h2 em { color: var(--pink); }
.contact-link { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; width: min(100%, 620px); min-height: 76px; padding: 18px 22px; border: 1.5px solid currentColor; overflow: hidden; font-size: clamp(19px, 1.7vw, 26px); font-weight: 800; transition: background .3s ease, color .3s ease, translate .3s cubic-bezier(.2,.8,.2,1); }
.contact-link:hover, .contact-link.is-launching { background: var(--cream); color: var(--plum); }
.contact-label { position: relative; z-index: 2; }
.contact-flight { position: relative; width: 132px; height: 28px; display: flex; align-items: center; justify-content: flex-end; }
.contact-flight::before { content: ""; position: absolute; left: 0; right: 25px; top: 50%; border-top: 1px dashed currentColor; opacity: .55; }
.contact-flight i { position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--mustard); }
.contact-flight b { font-size: 26px; font-weight: 400; transition: transform .3s ease; }
.contact-flight .ui-icon { width: 26px; height: 26px; }
.contact-link:hover .contact-flight i { animation: mailLoop 1.25s ease-in-out infinite; }
.contact-link:hover .contact-flight b { transform: translate(4px,-4px); }
.contact-link.is-launching .contact-flight i { animation: mailSend .8s cubic-bezier(.3,.8,.3,1) forwards; }
.contact-note { position: relative; z-index: 1; margin: 14px 0 0; font-size: 10px; opacity: .65; }
.nav-cta, .round-link, .contact-link, .page-next a, .detail-next a { --mag-x: 0px; --mag-y: 0px; translate: var(--mag-x) var(--mag-y); }

@keyframes contactBreath { 0%,100% { opacity: .1; transform: translateY(-55%) scale(.96); } 50% { opacity: .17; transform: translateY(-55%) scale(1.03); } }
@keyframes mailLoop { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 75% { opacity: 1; } 100% { left: calc(100% - 35px); opacity: 0; } }
@keyframes mailSend { 0% { left: 0; transform: scale(1); } 80% { left: calc(100% - 35px); transform: scale(1); } 100% { left: calc(100% - 25px); transform: scale(5); opacity: 0; } }

footer { padding: 60px clamp(24px, 4.4vw, 72px) 44px; display: grid; grid-template-columns: 1.35fr .7fr 1fr 1.35fr; align-items: start; gap: clamp(30px, 5vw, 80px); background: var(--ink); color: var(--cream); }
.footer-brand { display: block; width: min(190px, 100%); }
.footer-brand img { display: block; width: 100%; height: auto; }
footer p { margin: 0; font-size: 12px; line-height: 1.55; opacity: .72; }
.footer-identity { display: flex; flex-direction: column; gap: 24px; }
footer nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 11px; }
footer strong { margin-bottom: 10px; color: var(--mustard); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
footer nav a, .footer-contact a { width: fit-content; border-bottom: 1px solid transparent; }
footer nav a:hover, .footer-contact a:hover { border-color: currentColor; }
.footer-contact a { overflow-wrap: anywhere; }
.copyright { margin-top: 26px; }

.white-bg { background: var(--white); }
.cream-bg { background: var(--cream); }
.mustard-bg { background: var(--mustard); }
.plum-bg { background: var(--plum); color: var(--cream); }
.inner-page .site-header { color: var(--ink); }
.contact-page .site-header { color: var(--cream); }
.contact-page .menu-toggle span { background: var(--cream); }
.inner-hero { min-height: 760px; padding: 185px clamp(24px, 4.4vw, 72px) 100px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.inner-hero h1 { margin: 0; font-size: clamp(68px, 9vw, 142px); line-height: .86; letter-spacing: -.068em; }
.inner-hero h1, .detail-hero h1 { translate: calc(var(--mouse-x) * -7px) calc(var(--mouse-y) * -5px); transition: translate .4s ease-out; }
.inner-hero h1 em, .detail-statement em { color: var(--plum); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.inner-lead { max-width: 520px; margin: 0 0 10px; font-size: clamp(18px, 1.5vw, 24px); line-height: 1.55; }
.editorial-section { padding: clamp(100px, 11vw, 170px) clamp(24px, 4.4vw, 72px); display: grid; grid-template-columns: 22% 78%; }
.editorial-copy h2 { margin: 0 0 90px; max-width: 1050px; font-size: clamp(41px, 5vw, 78px); line-height: 1.05; letter-spacing: -.05em; }
.two-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-top: 30px; border-top: 1px solid var(--line); }
.two-copy p { margin: 0; font-size: 18px; line-height: 1.65; }
.principles, .solution-grid { padding: clamp(80px, 9vw, 135px) clamp(24px, 4.4vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); }
.principles article, .solution-grid article { min-height: 310px; padding: 28px 34px 34px 0; border-top: 1px solid var(--line); }
.principles article + article, .solution-grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.principles span, .solution-grid span { font: 700 10px/1 "Courier New", monospace; }
.principles h3, .solution-grid h3 { margin: 85px 0 14px; font-size: 30px; letter-spacing: -.04em; }
.principles p, .solution-grid p { margin: 0; max-width: 330px; line-height: 1.6; }
.page-next, .detail-next { min-height: 260px; padding: 60px clamp(24px, 4.4vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.page-next p, .detail-next p { margin: 0; max-width: 630px; font-size: clamp(24px, 3vw, 44px); line-height: 1.1; }
.page-next a, .detail-next a { padding: 18px 0; border-bottom: 2px solid currentColor; font-size: 18px; font-weight: 800; }
.page-next a span, .detail-next a span { display: inline-block; margin-left: 35px; transition: transform .2s ease; }
.page-next a:hover span, .detail-next a:hover span { transform: translate(5px,-5px); }
.project-gallery { padding: 90px clamp(24px, 4.4vw, 72px) 130px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-panel { min-height: 610px; padding: 42px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: translate .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.project-panel:hover { translate: 0 -10px; box-shadow: 0 28px 60px rgba(24,72,66,.14); }
.project-panel::after { content: "9"; position: absolute; right: -20px; bottom: -100px; font-size: 430px; line-height: 1; opacity: .08; font-weight: 900; translate: calc(var(--mouse-x) * 10px) calc(var(--mouse-y) * 10px); transition: translate .4s ease-out; }
.habi-panel { background: var(--mustard); color: var(--ink); }
.encavia-panel { background: var(--plum); color: var(--cream); }
.project-panel > p { margin: 24px 0 0; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 900; }
.project-panel h2 { margin: auto 0 10px; font-size: clamp(62px, 7vw, 110px); letter-spacing: -.06em; line-height: .8; }
.project-panel h3 { margin: 15px 0 45px; max-width: 520px; font: 400 clamp(24px, 2.5vw, 38px)/1.15 Georgia, serif; }
.panel-link { font-size: 13px; font-weight: 900; }
.phase-list { padding: 90px clamp(24px, 4.4vw, 72px) 140px; }
.phase-list article { display: grid; grid-template-columns: 90px 30% 1fr; align-items: baseline; gap: 24px; padding: 37px 0; border-top: 1px solid var(--line); }
.phase-list article:last-child { border-bottom: 1px solid var(--line); }
.phase-list span { font: 700 11px/1 "Courier New", monospace; }
.phase-list h2 { margin: 0; font-size: clamp(34px, 4vw, 62px); letter-spacing: -.05em; }
.phase-list p { margin: 0; font-size: 17px; line-height: 1.6; }
.contact-full { min-height: 100svh; padding: 190px clamp(24px, 4.4vw, 72px) 100px; }
.contact-full h1 { position: relative; z-index: 1; margin: 10px 0 35px; max-width: 1000px; font-size: clamp(66px, 8.5vw, 135px); line-height: .87; letter-spacing: -.065em; }
.contact-full h1 em { color: var(--pink); font-family: Georgia, serif; font-weight: 400; }
.contact-intro { position: relative; z-index: 2; max-width: 600px; margin: 0 0 44px; font-size: 19px; line-height: 1.55; }
.detail-hero { min-height: 790px; padding: 180px clamp(24px, 4.4vw, 72px) 90px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 70px; }
.detail-hero h1 { margin: 12px 0 0; font-size: clamp(86px, 12vw, 190px); line-height: .75; letter-spacing: -.075em; }
.detail-statement > span { display: inline-block; margin-bottom: 30px; padding: 9px 12px; background: var(--mustard); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 900; }
.detail-statement h2 { margin: 0; font-size: clamp(45px, 5vw, 80px); line-height: 1; letter-spacing: -.05em; }
.problem-section { padding: clamp(100px, 11vw, 170px) clamp(24px, 4.4vw, 72px); display: grid; grid-template-columns: 20% 1.25fr .55fr; gap: 50px; align-items: start; }
.problem-section h2 { margin: 0; font-size: clamp(40px, 4.8vw, 75px); line-height: 1.03; letter-spacing: -.05em; }
.problem-section > p { margin: 8px 0 0; font-size: 17px; line-height: 1.65; }
.legal-content { padding: 190px clamp(24px, 13vw, 210px) 120px; }
.legal-content h1 { margin: 20px 0 80px; font-size: clamp(58px, 8vw, 120px); line-height: .9; letter-spacing: -.06em; }
.legal-content article { display: grid; grid-template-columns: 30% 1fr; gap: 50px; max-width: 1000px; padding: 30px 0; border-top: 1px solid var(--line); }
.legal-content article h2 { margin: 0; font-size: 20px; }
.legal-content article p { margin: 0; line-height: 1.7; }
.legal-content article p + p { margin-top: 8px; }
.legal-content article a { text-decoration: underline; }
.legal-update { margin-top: 55px; font-size: 11px; opacity: .6; }

/* Soft cartoon direction — bold shapes, gentle depth, Point 9 palette. */
:root {
  --cartoon-line: 2px solid var(--ink);
  --soft-shadow: 0 10px 0 rgba(95, 24, 63, .11);
  --lift-shadow: 0 16px 32px rgba(24, 72, 66, .13);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);
}
body { background: var(--paper); }
h1, h2, h3, .project-title, .contact-link, .page-next a, .detail-next a {
  font-family: "Arial Rounded MT Bold", "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
}
.site-header.is-scrolled {
  inset: 10px clamp(10px, 1.8vw, 28px) auto;
  border: 1.5px solid rgba(24,72,66,.18);
  border-radius: 24px;
  box-shadow: 0 7px 0 rgba(24,72,66,.08);
}
.contact-page .site-header.is-scrolled { border-color: rgba(249,239,225,.22); box-shadow: 0 7px 0 rgba(215,142,151,.13); }
.nav-links > a:not(.nav-cta) { padding: 8px 10px; border-radius: 999px; transition: background .22s ease, color .22s ease, transform .22s var(--bounce); }
.nav-links > a:not(.nav-cta)::after { display: none; }
.nav-links > a:not(.nav-cta):hover { background: var(--mustard); color: var(--ink); transform: rotate(-2deg) translateY(-2px); }
.nav-cta { border-width: 2px; border-radius: 16px; box-shadow: 4px 4px 0 currentColor; transition: background .22s ease, color .22s ease, translate .3s var(--bounce), transform .22s var(--bounce), box-shadow .22s ease; }
.nav-cta:hover { transform: translate(-2px,-2px) rotate(1deg); box-shadow: 7px 7px 0 currentColor; }
.header-back { border-width: 2px; box-shadow: 4px 4px 0 rgba(24,72,66,.22); transition-timing-function: var(--bounce); }
.header-back:hover { transform: translate(-3px,-2px) rotate(-2deg); box-shadow: 7px 7px 0 rgba(24,72,66,.18); }

.hero {
  height: auto;
  min-height: 100svh;
  padding: 12px;
  gap: 12px;
  border: 0;
  background: var(--white);
}
.hero-copy {
  position: relative;
  overflow: hidden;
  border: var(--cartoon-line);
  border-radius: 38px;
  background: linear-gradient(145deg, var(--cream) 0 70%, #fff8ed 100%);
  box-shadow: var(--soft-shadow);
}
.hero-copy::after {
  content: "9";
  position: absolute;
  z-index: 0;
  right: clamp(18px, 3vw, 55px);
  top: clamp(125px, 17vh, 180px);
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--plum);
  border-radius: 48% 52% 44% 56%;
  background: var(--pink);
  color: var(--plum);
  font: 950 27px/1 "Arial Rounded MT Bold", sans-serif;
  transform: rotate(9deg);
  box-shadow: none;
  filter: none;
  animation: sweetBob 4.8s ease-in-out infinite;
}
.hero-copy > * { position: relative; z-index: 1; }
.hero h1 { letter-spacing: -.06em; }
.hero h1 em { width: fit-content; transform: rotate(-1.2deg); text-shadow: 3px 3px 0 rgba(215,142,151,.2); }
.hero-mark { border: var(--cartoon-line); border-radius: 42px; box-shadow: 0 10px 0 var(--mustard); }
.hero-mark img { border-radius: 0; clip-path: circle(48.5% at 50% 50%); filter: none; }
.round-link { border-width: 2px; background: var(--white); box-shadow: none; filter: none; isolation: isolate; overflow: hidden; transition: background .25s ease, rotate .3s var(--bounce), translate .3s var(--bounce), transform .25s var(--bounce); }
.round-link:hover { transform: scale(1.04); filter: none; }
.ticker { margin: 10px 12px 18px; border: var(--cartoon-line); border-radius: 999px; box-shadow: 5px 5px 0 rgba(24,72,66,.18); }

.manifesto, .projects, .method, .collaboration, .editorial-section, .principles, .solution-grid, .phase-list, .problem-section, .legal-content {
  margin: 18px 12px;
  border: var(--cartoon-line);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.white-bg { background: linear-gradient(145deg, var(--white), #fffaf3); }
.cream-bg { background: linear-gradient(145deg, var(--cream), #fff7ec); }
.section-label span {
  width: 42px;
  height: 42px;
  border-width: 2px;
  background: var(--pink);
  color: var(--plum);
  flex: 0 0 42px;
  box-shadow: none;
  filter: none;
  isolation: isolate;
  overflow: hidden;
}
.section-label.light span { background: var(--mustard); color: var(--ink); }
.manifesto-grid blockquote { border: 2px solid var(--plum); border-radius: 22px; padding: 24px; background: #fff5f4; box-shadow: 6px 6px 0 rgba(95,24,63,.14); }

.projects { padding-bottom: clamp(40px, 5vw, 72px); box-shadow: 0 10px 0 var(--mustard); }
.project-list { display: grid; gap: 14px; border: 0; }
.project-row {
  min-height: 215px;
  padding: 22px;
  border: 2px solid rgba(249,239,225,.72);
  border-radius: 30px;
  overflow: hidden;
  transition: color .3s ease, transform .3s var(--bounce), box-shadow .3s ease;
}
.project-row:hover { padding: 22px; transform: translateY(-6px) rotate(-.35deg); box-shadow: 0 12px 0 rgba(0,0,0,.14); }
.project-row::before { border-radius: 27px; }
.project-status { padding: 8px 11px; width: fit-content; border: 1px solid currentColor; border-radius: 999px; }
.project-arrow { width: 42px; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; }

.method-list { display: grid; gap: 12px; border: 0; }
.method-step {
  padding: 24px;
  border: 1.5px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  transition: transform .28s var(--bounce), background .25s ease, box-shadow .25s ease;
}
.method-step:hover { padding: 24px; transform: translateX(8px) rotate(.2deg); background: var(--white); box-shadow: 6px 6px 0 rgba(225,180,38,.34); }
.collaboration { box-shadow: 0 10px 0 var(--plum); }
.collab-options { gap: 14px; border: 0; }
.collab-options > div, .collab-options > div + div { padding: 28px; border: 2px solid rgba(24,72,66,.55); border-radius: 24px; background: rgba(255,255,255,.27); transition: transform .28s var(--bounce), background .25s ease; }
.collab-options > div:hover { transform: translateY(-7px) rotate(-.6deg); background: rgba(255,255,255,.5); }

.contact { margin: 18px 12px 0; border: 2px solid var(--plum); border-radius: 48px 48px 26px 26px; box-shadow: 0 10px 0 var(--pink); }
.contact-link { border-width: 2px; border-radius: 20px; box-shadow: 7px 7px 0 var(--pink); transition: background .3s ease, color .3s ease, translate .3s var(--bounce), transform .25s var(--bounce), box-shadow .25s ease; }
.contact-link:hover { transform: translate(-4px,-4px) rotate(-.5deg); box-shadow: 12px 12px 0 var(--mustard); }
.contact-note { padding-left: 6px; }
footer { margin: 12px; border: 2px solid var(--ink); border-radius: 36px; box-shadow: 0 8px 0 var(--mustard); }
footer nav a, .footer-contact a { padding: 4px 7px; border: 0; border-radius: 8px; transition: background .2s ease, color .2s ease, transform .2s var(--bounce); }
footer nav a:hover, .footer-contact a:hover { background: var(--mustard); color: var(--ink); transform: translateX(4px); }

.inner-hero, .detail-hero {
  margin: 12px;
  border: var(--cartoon-line);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.inner-hero h1 em, .detail-statement em { text-shadow: 3px 3px 0 rgba(215,142,151,.2); }
.principles, .solution-grid { gap: 16px; }
.principles article, .solution-grid article {
  margin: 0;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  transition: transform .28s var(--bounce), box-shadow .28s ease;
}
.principles article + article, .solution-grid article + article { padding-left: 28px; border-left: 2px solid var(--line); }
.principles article:hover, .solution-grid article:hover { transform: translateY(-7px) rotate(-.5deg); box-shadow: 7px 7px 0 rgba(215,142,151,.25); }
.page-next, .detail-next { margin: 18px 12px; border: var(--cartoon-line); border-radius: 32px; box-shadow: var(--soft-shadow); }
.page-next a, .detail-next a { padding: 14px 18px; border: 2px solid currentColor; border-radius: 16px; box-shadow: 5px 5px 0 currentColor; }
.project-gallery { gap: 30px; }
.project-panel { border: var(--cartoon-line); border-radius: 38px; box-shadow: 0 10px 0 rgba(24,72,66,.16); }
.project-panel:hover { translate: 0 -8px; rotate: -.5deg; box-shadow: 0 18px 0 rgba(24,72,66,.12); }
.phase-list article { margin: 10px 0; padding: 30px; border: 1.5px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.55); }
.phase-list article:last-child { border-bottom: 1.5px solid var(--line); }
.legal-content article { margin: 12px 0; padding: 26px; border: 1.5px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.7); }
.pointer-ring { border-width: 2px; border-radius: 46% 54% 48% 52%; animation: cursorBlob 4s ease-in-out infinite; }
.cursor-active .pointer-ring { background: var(--pink); border-color: var(--plum); }
.cursor-active .pointer-dot { background: var(--mustard); }
@keyframes sweetBob { 0%,100% { transform: rotate(9deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-9px); } }
@keyframes cursorBlob { 0%,100% { border-radius: 46% 54% 48% 52%; } 50% { border-radius: 55% 45% 57% 43%; } }

/* Preserve rounded silhouettes and font descenders during reveals. */
.manifesto-content h2,
.editorial-copy h2,
.section-heading h2,
.method-content > h2,
.collab-intro h2,
.detail-statement h2,
.problem-section h2 {
  line-height: 1.1;
  padding-bottom: .14em;
  overflow: visible;
}
h1[data-reveal], h2[data-reveal], h3[data-reveal] { clip-path: inset(-.12em -.08em -.28em -.08em); }
h1[data-reveal].is-visible, h2[data-reveal].is-visible, h3[data-reveal].is-visible { clip-path: none; }

[data-reveal] { --reveal-order: 0; opacity: 0; transform: translateY(48px) skewY(1.2deg); filter: blur(7px); clip-path: inset(0 0 18% 0); transition: opacity .85s ease, transform .95s cubic-bezier(.16,1,.3,1), filter .8s ease, clip-path .95s cubic-bezier(.16,1,.3,1); transition-delay: calc(var(--reveal-order) * 75ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); clip-path: inset(0 0 0 0); }
.section-label.is-visible span { animation: labelSpin .85s cubic-bezier(.16,1,.3,1) both; }
@keyframes labelSpin { from { transform: rotate(-120deg) scale(.5); } to { transform: rotate(0) scale(1); } }

@media (max-width: 980px) {
  .pointer-dot, .pointer-ring { display: none; }
  .hero { height: auto; min-height: 100svh; grid-template-columns: 1fr; }
  .hero-copy { min-height: 760px; }
  .hero-mark { min-height: 580px; }
  .hero-mark img { width: min(60%, 420px); }
  .manifesto, .method, .collaboration { grid-template-columns: 1fr; gap: 55px; }
  .section-heading { grid-template-columns: 1fr; gap: 45px; }
  .project-row { grid-template-columns: 55px 1fr 1.3fr 30px; }
  .project-status { display: none; }
  .collab-options { grid-column: 1; }
  .inner-hero { grid-template-columns: 1fr; min-height: 730px; gap: 40px; }
  .editorial-section { grid-template-columns: 1fr; gap: 55px; }
  .principles, .solution-grid { grid-template-columns: 1fr; }
  .principles article, .solution-grid article { min-height: 230px; }
  .principles article + article, .solution-grid article + article { padding-left: 0; border-left: 0; }
  .project-gallery { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .problem-section { grid-template-columns: 1fr; }
  .legal-content article { grid-template-columns: 1fr; gap: 14px; }
  footer { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 860px) {
  .site-header { height: 84px; }
  .site-header.is-scrolled { inset: 8px 8px auto; height: 70px; padding-inline: 16px; border-radius: 19px; }
  .brand { width: 118px; }
  .header-back { left: 18px; top: calc(100% + 8px); padding: 8px 11px; font-size: 8px; gap: 5px; }
  .header-back:hover { transform: translateX(-2px); }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .site-header.menu-open { color: var(--ink); }
  .home-header:not(.is-scrolled) .nav-links { width: auto; padding-left: 28px; }
  .contact-page .site-header.menu-open .menu-toggle span { background: var(--ink); }
  .contact-page .site-header.menu-open .brand-logo-green { opacity: 1; }
  .contact-page .site-header.menu-open .brand-logo-light { opacity: 0; }
  .nav-links { position: fixed; inset: 0; z-index: 21; background: var(--mustard); padding: 120px 28px 50px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; transform: translateY(-105%); transition: transform .45s cubic-bezier(.7,0,.2,1); font-size: 29px; }
  .nav-links.is-open { transform: translateY(0); }
  .nav-cta { margin-top: 18px; font-size: 15px; }
  .hero { padding: 8px; gap: 8px; }
  .hero-copy { min-height: 700px; padding-top: 142px; }
  .hero-copy::after { top: 104px; right: 18px; width: 44px; font-size: 21px; }
  .hero h1 { font-size: clamp(58px, 18vw, 84px); }
  .hero-bottom { align-items: flex-start; }
  .hero-bottom > p { max-width: 270px; font-size: 16px; }
  .round-link { flex-basis: 92px; height: 92px; font-size: 10px; }
  .hero-mark { min-height: 430px; }
  .hero-mark img { width: 72%; }
  .manifesto, .projects, .method, .collaboration, .editorial-section, .principles, .solution-grid, .phase-list, .problem-section, .legal-content,
  .inner-hero, .detail-hero, .page-next, .detail-next, .contact, footer {
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 30px;
  }
  .section-pad { padding-top: 90px; padding-bottom: 90px; }
  .manifesto-content h2 { font-size: 43px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 41px; }
  .project-row { grid-template-columns: 40px 1fr 30px; padding: 24px; min-height: 0; }
  .project-row:hover { padding: 24px; }
  .project-story { grid-column: 2; margin-top: 10px; }
  .project-arrow { grid-column: 3; grid-row: 1; }
  .method-step { grid-template-columns: 42px 1fr; }
  .method-step p { grid-column: 2; }
  .collab-intro { grid-template-columns: 1fr; gap: 32px; }
  .collab-options { grid-template-columns: 1fr; margin-top: 55px; }
  .collab-options > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(24,72,66,.45); }
  .collab-options > div, .collab-options > div + div { padding: 24px; border: 2px solid rgba(24,72,66,.55); }
  .collab-options h3 { margin-top: 26px; }
  .contact { min-height: 680px; }
  .contact h2 { font-size: 51px; }
  .contact-link { min-height: 68px; padding: 15px; }
  .contact-flight { width: 88px; }
  .inner-hero { padding-top: 145px; min-height: 660px; }
  .inner-hero h1 { font-size: clamp(60px, 18vw, 88px); }
  .two-copy { grid-template-columns: 1fr; gap: 28px; }
  .principles article + article, .solution-grid article + article { padding: 28px; border: 2px solid var(--line); }
  .page-next, .detail-next { min-height: 320px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .project-panel { min-height: 470px; padding: 28px; }
  .phase-list article { grid-template-columns: 42px 1fr; }
  .phase-list article p { grid-column: 2; }
  .detail-hero { min-height: 680px; padding-top: 145px; }
  .detail-hero h1 { font-size: 82px; }
  .detail-statement h2 { font-size: 43px; }
  .legal-content { padding-top: 150px; }
  .legal-content h1 { font-size: 58px; margin-bottom: 55px; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --soft-shadow: 0 6px 0 rgba(95, 24, 63, .09); }
  html { -webkit-text-size-adjust: 100%; }
  body { width: 100%; min-width: 0; overflow-wrap: break-word; }
  main, section, article, div, nav, a { min-width: 0; }
  img { max-width: 100%; height: auto; }

  .site-header { height: 76px; padding: max(12px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 12px max(20px, env(safe-area-inset-left)); }
  .site-header.is-scrolled { height: 64px; padding-inline: 14px; }
  .brand { width: 108px; }
  .menu-toggle { width: 40px; height: 40px; padding: 9px; }
  .header-back { left: 12px; top: calc(100% + 7px); padding: 7px 10px; }
  .nav-links,
  .home-header:not(.is-scrolled) .nav-links {
    width: 100%;
    min-height: 100dvh;
    padding: max(112px, calc(env(safe-area-inset-top) + 90px)) max(24px, env(safe-area-inset-right)) max(42px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    gap: 22px;
    font-size: clamp(25px, 8vw, 31px);
  }
  .nav-links > a { min-height: 44px; display: flex; align-items: center; }
  .nav-cta { width: 100%; justify-content: space-between; margin-top: 10px; padding: 15px 17px; }

  .hero { min-height: 0; }
  .hero-copy {
    min-height: min(680px, calc(100svh - 16px));
    padding: 122px 20px 28px;
    border-radius: 28px;
  }
  .hero-copy::after { top: 88px; right: 17px; width: 38px; font-size: 18px; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: .17em; }
  .hero h1 { font-size: clamp(44px, 14.4vw, 62px); line-height: .94; letter-spacing: -.05em; text-wrap: balance; }
  .hero h1 em { text-shadow: 2px 2px 0 rgba(215,142,151,.18); }
  .hero-bottom { margin-top: 34px; flex-direction: column; align-items: stretch; gap: 24px; }
  .hero-bottom > p { max-width: none; font-size: 15px; line-height: 1.55; }
  .round-link { width: 96px; height: 96px; flex: 0 0 96px; align-self: flex-end; font-size: 10px; }
  .round-link b { font-size: 18px; }
  .hero-mark { min-height: 340px; border-radius: 28px; }
  .hero-mark img { width: min(69%, 245px); filter: none; }
  .hero-note { left: 18px; bottom: 20px; font-size: 8px; }
  .ticker { margin: 7px 8px 14px; }
  .ticker-track { padding-block: 10px; }

  .manifesto, .projects, .method, .collaboration, .editorial-section, .principles, .solution-grid, .phase-list, .problem-section, .legal-content,
  .inner-hero, .detail-hero, .page-next, .detail-next, .contact, footer {
    margin: 12px 8px;
    border-radius: 26px;
  }
  .section-pad,
  .editorial-section,
  .principles,
  .solution-grid,
  .problem-section {
    padding: 68px 20px;
  }
  .manifesto, .method, .collaboration, .editorial-section { gap: 38px; }
  .section-label { gap: 12px; }
  .section-label span { width: 36px; height: 36px; flex-basis: 36px; font-size: 9px; }
  .section-label p { font-size: 8px; letter-spacing: .13em; overflow-wrap: anywhere; }
  p { orphans: 2; widows: 2; }

  .manifesto-content h2,
  .editorial-copy h2,
  .section-heading h2,
  .method-content > h2,
  .collab-intro h2,
  .detail-statement h2,
  .problem-section h2 {
    font-size: clamp(34px, 10.7vw, 43px);
    line-height: 1.06;
    letter-spacing: -.045em;
    padding-bottom: .18em;
    overflow-wrap: break-word;
  }
  .manifesto-content h2 { margin-bottom: 50px; }
  .manifesto-grid { gap: 24px; padding-top: 24px; }
  .manifesto-grid > p, .two-copy p { font-size: 16px; line-height: 1.6; }
  .manifesto-grid blockquote { padding: 20px; font-size: 22px; }

  .section-heading { gap: 32px; margin-bottom: 46px; }
  .project-list { gap: 10px; }
  .project-row { grid-template-columns: 26px minmax(0, 1fr) 32px; gap: 10px; padding: 18px 16px; border-radius: 22px; }
  .project-row:hover { padding: 18px; transform: none; }
  .project-title h3 { font-size: clamp(34px, 11vw, 46px); }
  .project-story { grid-column: 1 / -1; padding-top: 6px; }
  .project-story h4 { font-size: 21px; }
  .project-story p { font-size: 13px; }
  .project-arrow { width: 32px; justify-self: end; }

  .method-content > h2 { margin-bottom: 48px; }
  .method-list { gap: 9px; }
  .method-step { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 18px; border-radius: 18px; }
  .method-step:hover { padding: 18px; transform: none; }
  .method-step h3 { font-size: 27px; }
  .method-step p { font-size: 14px; line-height: 1.55; }
  .collab-intro { gap: 24px; }
  .collab-intro > p { font-size: 15px; }
  .collab-options { margin-top: 34px; gap: 10px; }
  .collab-options > div, .collab-options > div + div { padding: 20px; border-radius: 18px; }

  .contact { min-height: 600px; padding: 70px 20px; }
  .contact h2 { margin-bottom: 38px; font-size: clamp(39px, 12vw, 49px); line-height: 1; letter-spacing: -.045em; text-wrap: balance; }
  .contact-link { width: 100%; min-height: 64px; padding: 13px 14px; gap: 12px; font-size: 17px; border-radius: 16px; box-shadow: 5px 5px 0 var(--pink); }
  .contact-flight { width: 62px; flex: 0 0 62px; }
  .contact-note { overflow-wrap: anywhere; }

  .inner-hero { min-height: auto; padding: 140px 20px 64px; gap: 28px; }
  .inner-hero h1 { font-size: clamp(49px, 15vw, 64px); line-height: .93; overflow-wrap: break-word; }
  .inner-lead { font-size: 16px; line-height: 1.55; }
  .editorial-copy h2 { margin-bottom: 46px; }
  .two-copy { gap: 22px; padding-top: 22px; }
  .principles, .solution-grid { gap: 10px; }
  .principles article, .solution-grid article,
  .principles article + article, .solution-grid article + article { min-height: auto; padding: 22px; border-radius: 19px; }
  .principles h3, .solution-grid h3 { margin: 46px 0 12px; font-size: 26px; }
  .page-next, .detail-next { min-height: 250px; padding: 42px 20px; gap: 24px; }
  .page-next p, .detail-next p { font-size: clamp(23px, 7.2vw, 27px); text-wrap: balance; }
  .page-next a, .detail-next a { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 13px 14px; font-size: 15px; overflow-wrap: anywhere; }
  .page-next a span, .detail-next a span { flex: 0 0 auto; margin-left: 12px; }

  .project-gallery { padding: 66px 20px 78px; gap: 18px; }
  .project-panel { min-height: 410px; padding: 24px; border-radius: 26px; }
  .project-panel h2 { font-size: clamp(48px, 15vw, 64px); line-height: .88; overflow-wrap: anywhere; }
  .project-panel h3 { margin-bottom: 32px; font-size: 24px; }
  .project-panel::after { right: -35px; bottom: -65px; font-size: 300px; }

  .phase-list { padding: 64px 20px 76px; }
  .phase-list article { grid-template-columns: 28px minmax(0, 1fr); gap: 10px; padding: 20px; border-radius: 18px; }
  .phase-list h2 { font-size: 31px; }
  .phase-list p { font-size: 15px; }

  .contact-full { min-height: 100svh; padding: 150px 20px 76px; }
  .contact-full h1 { font-size: clamp(42px, 13.2vw, 56px); line-height: .97; overflow-wrap: break-word; text-wrap: balance; }
  .contact-intro { margin-bottom: 34px; font-size: 16px; }
  .detail-hero { min-height: auto; padding: 145px 20px 68px; gap: 40px; }
  .detail-hero h1 { font-size: clamp(50px, 16vw, 66px); line-height: .86; overflow-wrap: anywhere; }
  .detail-statement > span { margin-bottom: 20px; }
  .problem-section { gap: 30px; }
  .problem-section > p { font-size: 16px; }

  .legal-content { padding: 142px 20px 76px; }
  .legal-content h1 { margin: 16px 0 42px; font-size: clamp(43px, 13vw, 55px); line-height: .96; overflow-wrap: anywhere; }
  .legal-content article { margin: 8px 0; padding: 20px; gap: 10px; border-radius: 18px; }
  .legal-content article p { font-size: 15px; overflow-wrap: anywhere; }

  footer { padding: 44px 20px 36px; gap: 34px; }
  .footer-brand { width: 150px; }
  footer nav, .footer-contact { font-size: 12px; }

  /* Mobile signature: tactile objects, bold rhythm and a persistent action. */
  .home-page { padding-bottom: 82px; }
  .home-page .hero { position: relative; isolation: isolate; }
  .home-page .hero-copy { box-shadow: inset 0 0 0 1px rgba(24,72,66,.08), 0 10px 0 rgba(24,72,66,.12); }
  .home-page .hero-copy::before {
    content: "POINT 9 / 001";
    position: absolute;
    left: 20px;
    bottom: 22px;
    font: 800 8px/1 "Courier New", monospace;
    letter-spacing: .18em;
    opacity: .45;
  }
  .home-page .hero-mark {
    min-height: 385px;
    margin-top: 4px;
    background: radial-gradient(circle at 52% 45%, #245e56 0 18%, var(--ink) 58%);
    box-shadow: 0 12px 0 var(--mustard);
  }
  .home-page .hero-mark::after {
    content: "09";
    position: absolute;
    right: 17px;
    top: 18px;
    color: var(--cream);
    font: 800 10px/1 "Courier New", monospace;
    letter-spacing: .12em;
    opacity: .72;
  }
  .home-page .hero-mark img { width: min(74%, 270px); animation-duration: 5s; }
  .home-page .ticker { position: relative; z-index: 2; border: 2px solid var(--ink); border-radius: 999px; transform: rotate(-1deg); box-shadow: 5px 5px 0 var(--plum); }
  .home-page .ticker-track { padding-block: 12px; }

  .home-page .manifesto { background: var(--paper); }
  .home-page .manifesto-grid blockquote {
    position: relative;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--mustard);
    box-shadow: 6px 6px 0 var(--ink);
    transform: rotate(-1.2deg);
  }
  .home-page .manifesto-grid blockquote::after {
    content: "9";
    position: absolute;
    right: 14px;
    top: 10px;
    font: 900 28px/1 Arial, sans-serif;
    opacity: .16;
  }

  .home-page .projects { padding-inline: 12px; }
  .home-page .project-list { border-top: 0; display: grid; gap: 16px; }
  .home-page .project-row { min-height: 330px; align-content: start; border: 0; box-shadow: 7px 7px 0 rgba(249,239,225,.22); transition: transform .16s ease, box-shadow .16s ease; }
  .home-page .project-row.mustard { background: var(--mustard); color: var(--ink); transform: rotate(-1deg); }
  .home-page .project-row.plum { background: var(--plum); color: var(--cream); transform: rotate(1deg); }
  .home-page .project-row::before { display: none; }
  .home-page .project-row.is-pressed { transform: translate(4px,4px) rotate(0); box-shadow: 2px 2px 0 rgba(249,239,225,.22); }
  .home-page .project-title { align-self: start; }
  .home-page .project-story { margin-top: auto; align-self: end; }
  .home-page .project-status {
    display: flex;
    grid-column: 1 / -1;
    width: max-content;
    max-width: 100%;
    margin-top: 16px;
    padding: 8px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 8px;
  }
  .home-page .project-row.mustard .project-status span { background: var(--ink); }
  .home-page .project-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 50%;
  }
  .home-page .project-arrow .ui-icon { width: 20px; height: 20px; }

  .home-page .method-list { border-top: 0; display: grid; gap: 10px; }
  .home-page .method-step { border: 1.5px solid var(--ink); background: var(--white); box-shadow: 4px 4px 0 var(--mustard); transition: transform .16s ease, box-shadow .16s ease; }
  .home-page .method-step:nth-child(even) { transform: translateX(5px); box-shadow: -4px 4px 0 var(--pink); }
  .home-page .method-step.is-pressed { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--mustard); }

  .home-page .collab-options > div { background: rgba(249,239,225,.28); box-shadow: 4px 4px 0 var(--ink); transition: transform .16s ease; }
  .home-page .collab-options > div.is-pressed { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }

  .mobile-action-dock {
    position: fixed;
    z-index: 118;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 6px 7px 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1.5px solid var(--cream);
    border-radius: 18px;
    background: rgba(24,72,66,.96);
    color: var(--cream);
    box-shadow: 0 8px 28px rgba(24,72,66,.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    pointer-events: none;
    transition: opacity .3s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  .mobile-action-dock.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-action-dock > a:first-child { display: flex; align-items: center; gap: 8px; padding-left: 4px; }
  .mobile-action-dock > a:first-child span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--mustard); color: var(--ink); font-weight: 900; }
  .mobile-action-dock small { font: 800 8px/1 "Courier New", monospace; letter-spacing: .15em; }
  .mobile-action-dock > a:last-child { min-height: 44px; padding: 0 13px; display: flex; align-items: center; gap: 9px; border-radius: 12px; background: var(--cream); color: var(--ink); font-size: 12px; }
  .mobile-action-dock .ui-icon { width: 17px; height: 17px; }

  @media (max-height: 700px) {
    .hero-copy { min-height: 620px; padding-top: 108px; }
    .hero-bottom { margin-top: 26px; }
    .nav-links, .home-header:not(.is-scrolled) .nav-links { justify-content: flex-start; overflow-y: auto; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .page-wipe { display: none; }
  .hero-mark img, .inner-hero h1, .detail-hero h1, .project-panel::after { translate: none; }
}

/* Kept as a final standalone query so older mobile WebKit versions do not
   lose the persistent dock when parsing nested media conditions above. */
@media screen and (max-width: 520px) {
  body .mobile-action-dock {
    position: fixed;
    z-index: 118;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    min-height: 58px;
    padding: 6px 7px 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1.5px solid var(--cream);
    border-radius: 18px;
    background: rgba(24,72,66,.96);
    color: var(--cream);
    box-shadow: 0 8px 28px rgba(24,72,66,.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    pointer-events: none;
    transition: opacity .3s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  body .mobile-action-dock.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  body .mobile-action-dock > a:first-child { display: flex; align-items: center; gap: 8px; padding-left: 4px; }
  body .mobile-action-dock > a:first-child span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--mustard); color: var(--ink); font-weight: 900; }
  body .mobile-action-dock small { font: 800 8px/1 "Courier New", monospace; letter-spacing: .15em; }
  body .mobile-action-dock > a:last-child { min-height: 44px; padding: 0 13px; display: flex; align-items: center; gap: 9px; border-radius: 12px; background: var(--cream); color: var(--ink); font-size: 12px; }
  body .mobile-action-dock .ui-icon { width: 17px; height: 17px; }
}

/* Mobile coherence pass — one visual grammar: restrained editorial radii,
   hairline borders and real overlay depth only. */
@media screen and (max-width: 520px) {
  :root {
    --mobile-panel-radius: 18px;
    --mobile-card-radius: 14px;
    --mobile-control-radius: 10px;
    --mobile-hairline: rgba(24,72,66,.24);
  }

  .site-header.is-scrolled,
  .hero-copy,
  .hero-mark,
  .manifesto,
  .projects,
  .method,
  .collaboration,
  .editorial-section,
  .principles,
  .solution-grid,
  .phase-list,
  .problem-section,
  .legal-content,
  .inner-hero,
  .detail-hero,
  .page-next,
  .detail-next,
  .contact,
  footer {
    border-radius: var(--mobile-panel-radius);
    box-shadow: none;
  }

  .site-header.is-scrolled {
    border: 1px solid rgba(24,72,66,.16);
    background: rgba(249,239,225,.94);
  }
  .nav-links { border-radius: 0; }
  .nav-cta {
    border-radius: var(--mobile-control-radius);
    box-shadow: none;
  }

  .home-page .hero-copy {
    border: 1px solid var(--mobile-hairline);
    box-shadow: none;
  }
  .home-page .hero-mark {
    border: 0;
    box-shadow: inset 0 -4px 0 var(--mustard);
  }
  .home-page .ticker {
    margin-block: 10px 16px;
    border: 1px solid var(--ink);
    border-radius: var(--mobile-control-radius);
    box-shadow: none;
    transform: none;
  }

  .home-page .manifesto-grid blockquote {
    border: 1px solid rgba(24,72,66,.4);
    border-radius: var(--mobile-card-radius);
    box-shadow: none;
    transform: none;
  }

  .home-page .projects { box-shadow: none; }
  .home-page .project-list { gap: 12px; }
  .home-page .project-row,
  .project-row {
    border-radius: var(--mobile-card-radius);
    border: 1px solid rgba(249,239,225,.28);
    box-shadow: none;
    transform: none;
  }
  .home-page .project-row.mustard { transform: none; border-color: rgba(24,72,66,.34); }
  .home-page .project-row.plum { transform: none; border-color: rgba(249,239,225,.3); }
  .home-page .project-row.is-pressed {
    transform: scale(.985);
    box-shadow: none;
  }
  .home-page .project-arrow {
    border-width: 1px;
    background: rgba(255,255,255,.12);
  }

  .home-page .method-list { gap: 8px; }
  .home-page .method-step,
  .home-page .method-step:nth-child(even),
  .method-step {
    border: 1px solid var(--mobile-hairline);
    border-radius: var(--mobile-card-radius);
    box-shadow: none;
    transform: none;
  }
  .home-page .method-step:nth-child(even) { background: var(--paper); }
  .home-page .method-step.is-pressed { transform: scale(.985); box-shadow: none; }

  .home-page .collab-options > div,
  .home-page .collab-options > div + div,
  .collab-options > div,
  .collab-options > div + div {
    border: 1px solid rgba(24,72,66,.36);
    border-radius: var(--mobile-card-radius);
    box-shadow: none;
    transform: none;
  }
  .home-page .collab-options > div.is-pressed { transform: scale(.985); box-shadow: none; }

  .contact-link {
    border-radius: var(--mobile-control-radius);
    box-shadow: none;
  }
  .principles article,
  .solution-grid article,
  .principles article + article,
  .solution-grid article + article,
  .phase-list article,
  .legal-content article,
  .project-panel {
    border-radius: var(--mobile-card-radius);
    box-shadow: none;
  }
  .page-next a,
  .detail-next a {
    border-radius: var(--mobile-control-radius);
    box-shadow: none;
  }

  body .mobile-action-dock {
    border: 1px solid rgba(249,239,225,.5);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(12,40,36,.2);
  }
  body .mobile-action-dock > a:last-child { border-radius: 8px; }
}
