:root {
  --ink: #101014;
  --paper: #f2f0e9;
  --signal: #ff4b2b;
  --ease: cubic-bezier(.2,.75,.2,1);
  --scroll: 0;
  --mouse-x: .5;
  --mouse-y: .5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: clip;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; width: 100%; }
::selection { background: var(--signal); color: #fff; }

.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 1000;
  padding: .7rem 1rem; background: #fff; color: #000; border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.page-loader {
  position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center;
  gap: 1rem; background: #101014; color: #fff; font: 500 .65rem/1 "DM Mono", monospace;
  letter-spacing: .16em; transition: transform .9s var(--ease), visibility .9s;
}
.page-loader i { width: clamp(4rem, 18vw, 14rem); height: 1px; background: #555; overflow: hidden; position: relative; }
.page-loader i::after { content: ""; position: absolute; inset: 0; background: #fff; transform-origin: left; animation: loadline .75s var(--ease) both; }
body.is-ready .page-loader { transform: translateY(-101%); visibility: hidden; }
@keyframes loadline { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.mono { font: 400 .68rem/1.2 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .6rem; font: 400 .68rem/1.2 "DM Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: currentColor; }
.serif { font-family: "Instrument Serif", serif; font-weight: 400; }
.outline-button, .solid-button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem;
  min-width: 12rem; padding: .9rem 1.1rem; border: 1px solid currentColor; border-radius: 999px;
  font: 500 .68rem/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase;
  transition: color .25s, background .25s, transform .25s;
}
.outline-button::after, .solid-button::after { content: "↗"; font-size: 1rem; }
.outline-button:hover, .outline-button:focus-visible { background: currentColor; color: var(--paper); transform: translateY(-2px); }
.solid-button { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.solid-button:hover, .solid-button:focus-visible { transform: translateY(-2px); filter: brightness(1.2); }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

.global-progress { position: fixed; inset: 0 auto auto 0; width: calc(var(--scroll) * 100%); height: 3px; background: var(--accent, var(--signal)); z-index: 80; }
.demo-dock {
  position: fixed; z-index: 70; left: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: .75rem;
  padding: .6rem .85rem .6rem .65rem; background: rgba(15,15,18,.82); color: #fff; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; backdrop-filter: blur(14px); font: 400 .62rem/1 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase;
}
.demo-dock b { display: grid; place-items: center; width: 1.65rem; height: 1.65rem; border-radius: 50%; background: #fff; color: #111; font-size: .56rem; }
.demo-dock span:last-child { opacity: .55; }
.demo-nav { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.6rem; color: inherit; }
.wordmark { font: 600 .72rem/1 "DM Mono", monospace; letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; font: 400 .64rem/1 "DM Mono", monospace; letter-spacing: .09em; text-transform: uppercase; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; top: calc(100% + 4px); left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* COLLECTION */
.collection { --paper: #eae8df; --ink: #121215; background: var(--paper); min-height: 100vh; }
.collection-nav { position: fixed; z-index: 40; left: 0; top: 0; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.1rem 1.5rem; mix-blend-mode: difference; color: #fff; }
.collection-nav .mono:last-child { justify-self: end; }
.collection-hero { min-height: 100svh; display: grid; align-content: end; padding: 8rem 1.5rem 2rem; position: relative; overflow: hidden; }
.collection-orbit { position: absolute; width: 42vw; aspect-ratio: 1; border: 1px solid rgba(0,0,0,.14); border-radius: 50%; top: 8%; right: -10%; animation: orbit 14s linear infinite; }
.collection-orbit::before, .collection-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--signal); }
.collection-orbit::before { width: .8rem; height: .8rem; top: 12%; left: 18%; }
.collection-orbit::after { width: .35rem; height: .35rem; bottom: 18%; right: 14%; }
@keyframes orbit { to { transform: rotate(360deg); } }
.collection-kicker { margin-bottom: 1.5rem; display: flex; justify-content: space-between; max-width: 58rem; }
.collection-title { margin: 0; font-size: clamp(4.5rem, 14vw, 13rem); font-weight: 300; line-height: .72; letter-spacing: -.075em; text-transform: uppercase; }
.collection-title em { display: block; margin-left: 16vw; font-family: "Instrument Serif", serif; font-weight: 400; text-transform: none; color: var(--signal); }
.collection-intro { align-self: end; max-width: 24rem; margin: 2rem 0 0 auto; font-size: clamp(1rem, 1.4vw, 1.25rem); }
.collection-index { padding: 7rem 1.5rem 8rem; }
.collection-index-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 1rem; border-bottom: 1px solid #b6b2a6; }
.collection-index-head h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.05em; }
.concept-list { margin-top: 0; }
.concept-card { --card-color: #222; position: relative; display: grid; grid-template-columns: 4.5rem 1.25fr .8fr 2rem; gap: 1.2rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid #b6b2a6; overflow: hidden; }
.concept-card::before { content: ""; position: absolute; inset: 0; background: var(--card-color); transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease); }
.concept-card > * { position: relative; z-index: 2; }
.concept-card:hover { color: #fff; }
.concept-card:hover::before { transform: scaleY(1); }
.concept-card h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.045em; }
.concept-card p { max-width: 22rem; margin: 0; font-size: .86rem; }
.concept-card .arrow { justify-self: end; font-size: 1.6rem; transition: transform .3s; }
.concept-card:hover .arrow { transform: rotate(45deg); }
.concept-thumb { position: fixed; z-index: 30; width: min(25vw, 22rem); aspect-ratio: 4/3; pointer-events: none; object-fit: cover; opacity: 0; transform: translate(-50%,-50%) scale(.85) rotate(-3deg); transition: opacity .25s, transform .35s var(--ease); border-radius: .3rem; }
.concept-thumb.is-shown { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(-1deg); }
.collection-manifesto { min-height: 85svh; background: #17171a; color: #f4f1e8; display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; padding: 7rem 1.5rem; }
.collection-manifesto h2 { margin: 0; font: 400 clamp(3.5rem, 8vw, 8rem)/.9 "Instrument Serif", serif; letter-spacing: -.04em; }
.collection-manifesto h2 em { color: var(--signal); }
.manifesto-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.manifesto-copy article { border-top: 1px solid #525257; padding-top: 1rem; }
.manifesto-copy strong { display: block; font: 400 2.5rem/1 "Instrument Serif", serif; margin-bottom: 2rem; }
.collection-footer { padding: 1.5rem; background: var(--signal); color: #fff; display: flex; justify-content: space-between; align-items: end; }
.collection-footer h2 { margin: 0; font: 400 clamp(3rem, 9vw, 9rem)/.8 "Instrument Serif", serif; }

/* SHARED DEMO */
.site-page { position: relative; }
.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-media { position: absolute; inset: 0; background-position: center; background-size: cover; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.74)); }
.hero-copy { position: relative; z-index: 3; padding: 8rem 1.6rem 5rem; }
.hero-copy h1 { margin: 0; font-size: clamp(4rem, 13vw, 13rem); font-weight: 400; line-height: .76; letter-spacing: -.075em; }
.hero-bottom { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-top: 2rem; }
.hero-bottom p { max-width: 28rem; margin: 0; font-size: clamp(.9rem, 1.2vw, 1.15rem); }
.scroll-cue { display: flex; align-items: center; gap: .7rem; font: 400 .63rem/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue i { display: inline-block; width: 2.5rem; height: 1px; background: currentColor; animation: cue 1.8s var(--ease) infinite; transform-origin: left; }
@keyframes cue { 0%,100% { transform: scaleX(.25); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }
.section-pad { padding: clamp(5rem, 11vw, 11rem) 1.6rem; }
.section-head { display: grid; grid-template-columns: .7fr 1.5fr; gap: 3rem; align-items: start; }
.section-head h2 { margin: 0; font-size: clamp(3rem, 7vw, 7rem); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.section-head p { max-width: 34rem; margin: 1.5rem 0 0; }
.ticker { overflow: hidden; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; padding: 1rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 20s linear infinite; }
.ticker-track span { font: 400 .7rem/1 "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; padding-right: 3rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
.quote-band { min-height: 70svh; display: grid; place-items: center; padding: 5rem 1.5rem; text-align: center; }
.quote-band blockquote { max-width: 68rem; margin: 0; font: 400 clamp(2.8rem, 6vw, 6rem)/.95 "Instrument Serif", serif; letter-spacing: -.035em; }
.quote-band cite { display: block; margin-top: 2rem; font: 400 .65rem/1.4 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; font-style: normal; }
.site-cta { min-height: 80svh; padding: 3rem 1.6rem 1.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.site-cta h2 { margin: 0; max-width: 90%; font-size: clamp(4rem, 11vw, 12rem); line-height: .8; letter-spacing: -.07em; font-weight: 400; }
.cta-row { display: flex; justify-content: space-between; align-items: end; border-top: 1px solid currentColor; padding-top: 1rem; }

/* NORTHLINE */
.northline { --accent: #77b9ff; background: #0a0b0d; color: #f2f5f8; }
.northline .hero-media { background-image: url('assets/final/northline-auto.webp'); transform: scale(calc(1.08 + var(--scroll) * .08)); }
.northline .hero-copy h1 { text-transform: uppercase; }
.northline .hero-copy h1 span { display: block; margin-left: 22vw; color: var(--accent); font-family: "Instrument Serif", serif; font-style: italic; text-transform: none; }
.northline .proof { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #353941; border-bottom: 1px solid #353941; }
.northline .proof div { padding: 1.5rem; border-right: 1px solid #353941; }
.northline .proof strong { display: block; font: 400 2.8rem/1 "Instrument Serif", serif; color: var(--accent); }
.inspection { height: 260vh; position: relative; }
.inspection-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #111419; }
.inspection-image { position: absolute; inset: 0; background: url('assets/final/northline-auto.webp') center/cover; filter: saturate(.35) brightness(.55); transform: scale(calc(1.08 - var(--local) * .06)); }
.inspection-beam { position: absolute; top: 0; bottom: 0; width: 14vw; left: calc(var(--local) * 110% - 12%); background: linear-gradient(90deg, transparent, rgba(160,213,255,.3), rgba(255,255,255,.5), transparent); mix-blend-mode: screen; transform: skewX(-8deg); }
.inspection-copy { position: absolute; inset: auto 1.6rem 2rem; z-index: 3; display: flex; justify-content: space-between; align-items: end; }
.inspection-copy h2 { margin: 0; font-size: clamp(4rem, 9vw, 10rem); line-height: .78; letter-spacing: -.07em; font-weight: 400; text-transform: uppercase; }
.inspection-copy p { max-width: 22rem; }
.northline-services { padding: 8rem 1.5rem; }
.service-stack { max-width: 75rem; margin: 5rem auto 0; }
.service-card { position: sticky; top: calc(5rem + var(--i) * 1.2rem); min-height: 50vh; border: 1px solid #39404b; border-radius: 1rem; background: #11151b; padding: 2rem; display: grid; grid-template-columns: .5fr 1.4fr; gap: 3rem; box-shadow: 0 -1.5rem 4rem rgba(0,0,0,.35); }
.service-card:nth-child(2) { background: #151b24; }
.service-card:nth-child(3) { background: #1c2633; }
.service-card h3 { margin: 0; font-size: clamp(3rem, 7vw, 7rem); font-weight: 300; line-height: .85; letter-spacing: -.06em; }
.service-card p { max-width: 25rem; align-self: end; }
.northline .site-cta { background: var(--accent); color: #07121d; }

/* HEARTH */
.hearth { --accent: #d7e291; background: #ddd8c8; color: #273025; }
.hearth .demo-nav { color: #f7f0dd; }
.hearth .hero-media { background-image: url('assets/final/hearth-stone.webp'); clip-path: inset(calc(var(--scroll) * 4%) calc(var(--scroll) * 3%) round calc(var(--scroll) * 2rem)); transform: scale(calc(1.05 + var(--scroll) * .04)); }
.hearth .hero-shade { background: linear-gradient(180deg, rgba(17,29,25,.15), rgba(17,29,25,.72)); }
.hearth .hero { color: #f8f2df; }
.hearth .hero-copy h1 { font-family: "Instrument Serif", serif; font-size: clamp(4.8rem, 14vw, 14rem); }
.hearth .hero-copy h1 span { display: block; margin-left: 25vw; font-family: "Manrope", sans-serif; font-size: .37em; letter-spacing: -.04em; text-transform: uppercase; }
.landscape-intro { min-height: 95svh; display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 4rem; }
.landscape-intro h2 { font: 400 clamp(4rem, 9vw, 9rem)/.85 "Instrument Serif", serif; letter-spacing: -.05em; margin: 0; }
.landscape-intro .circle-note { width: 12rem; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; text-align: center; margin-left: auto; animation: slowspin 15s linear infinite; }
@keyframes slowspin { to { transform: rotate(360deg); } }
.blueprint { height: 280vh; position: relative; background: #273025; color: #e8edcf; }
.blueprint-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; grid-template-columns: .75fr 1.4fr; padding: 5rem 1.5rem 1.5rem; gap: 2rem; }
.blueprint-visual { position: relative; border: 1px solid rgba(232,237,207,.35); overflow: hidden; }
.blueprint-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(232,237,207,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(232,237,207,.15) 1px, transparent 1px); background-size: 3rem 3rem; transform: translateY(calc(var(--local) * -3rem)); }
.plan-pool { position: absolute; width: 55%; height: 26%; left: 24%; top: 28%; border: 1px solid #d7e291; border-radius: 55% 35% 45% 28%; transform: rotate(calc(-5deg + var(--local) * 12deg)) scale(calc(.75 + var(--local) * .25)); }
.plan-pool::before, .plan-pool::after { content: ""; position: absolute; border: 1px solid rgba(215,226,145,.55); border-radius: inherit; inset: 1rem; }
.plan-pool::after { inset: 2rem; }
.blueprint-copy { display: flex; flex-direction: column; justify-content: space-between; }
.blueprint-copy h2 { margin: 0; font: 400 clamp(4rem, 9vw, 9rem)/.82 "Instrument Serif", serif; letter-spacing: -.04em; }
.phase-list { border-top: 1px solid rgba(232,237,207,.4); }
.phase { display: grid; grid-template-columns: 3rem 1fr; padding: 1rem 0; border-bottom: 1px solid rgba(232,237,207,.4); opacity: .35; transition: opacity .4s, transform .4s; }
.phase.is-active { opacity: 1; transform: translateX(.5rem); }
.garden-projects { padding: 8rem 0; overflow: hidden; }
.garden-projects h2 { margin: 0 1.5rem 4rem; font: 400 clamp(4rem, 10vw, 10rem)/.82 "Instrument Serif", serif; }
.project-rail { display: flex; gap: 1.2rem; padding: 0 1.5rem; width: max-content; transform: translateX(calc(var(--rail, 0) * -25vw)); will-change: transform; }
.project-tile { width: min(68vw, 47rem); aspect-ratio: 4/3; position: relative; overflow: hidden; border-radius: 50% 50% .7rem .7rem; }
.project-tile img { height: 100%; object-fit: cover; }
.project-tile:nth-child(2) { background: #83945f; display: grid; place-items: center; padding: 4rem; color: #fff; }
.project-tile:nth-child(2) strong { font: 400 clamp(3rem,6vw,6rem)/.9 "Instrument Serif", serif; text-align: center; }
.project-tile:nth-child(3) { filter: hue-rotate(25deg) saturate(.7); }
.hearth .site-cta { background: #d7e291; }

/* VELVET HAMMER */
.velvet { --accent: #ffe253; background: #8d1025; color: #fff3dc; }
.velvet .hero { min-height: 110svh; background: #8d1025; justify-content: center; }
.velvet .hero-media { background-image: url('assets/final/velvet-hammer.webp'); width: 42vw; height: 62vh; inset: 20vh 7vw auto auto; border-radius: 50% 50% 1rem 1rem; transform: rotate(calc(-3deg + var(--scroll) * 7deg)) scale(calc(.94 + var(--scroll) * .12)); }
.velvet .hero-shade { display: none; }
.velvet .hero-copy { padding: 8rem 1.5rem 2rem; width: 100%; }
.velvet .hero-copy h1 { position: relative; z-index: 2; font-family: "Instrument Serif", serif; color: var(--accent); font-size: clamp(5rem, 15vw, 15rem); line-height: .65; }
.velvet .hero-copy h1 span { display: block; margin-left: 14vw; color: #fff3dc; }
.velvet .hero-bottom { max-width: 42vw; }
.type-river { padding: 3rem 0; background: var(--accent); color: #8d1025; overflow: hidden; }
.type-line { width: max-content; font: 400 clamp(5rem, 13vw, 13rem)/.75 "Instrument Serif", serif; letter-spacing: -.05em; white-space: nowrap; transform: translateX(calc((var(--scroll) - .35) * -45vw)); }
.type-line.reverse { transform: translateX(calc(-30vw + (var(--scroll) - .35) * 50vw)); color: transparent; -webkit-text-stroke: 1.5px #8d1025; }
.coffee-story { min-height: 220vh; position: relative; background: #f7e7c7; color: #8d1025; }
.coffee-stage { position: sticky; top: 0; height: 100svh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.coffee-photo { margin: 2rem; background: url('assets/final/velvet-hammer.webp') center/cover; clip-path: circle(calc(18% + var(--local) * 42%) at 50% 50%); transform: rotate(calc(-4deg + var(--local) * 8deg)); }
.coffee-copy { padding: 7rem 2rem 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.coffee-copy h2 { margin: 0; font: 400 clamp(4rem, 9vw, 9rem)/.78 "Instrument Serif", serif; letter-spacing: -.05em; }
.tasting-note { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.tasting-note div { aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; text-align: center; font: 400 .62rem/1.3 "DM Mono", monospace; text-transform: uppercase; transform: translateY(calc((1 - var(--local)) * 5rem)); }
.menu-board { padding: 8rem 1.5rem; background: #8d1025; }
.menu-board h2 { margin: 0 0 4rem; font: 400 clamp(5rem, 11vw, 11rem)/.78 "Instrument Serif", serif; color: var(--accent); }
.menu-row { display: grid; grid-template-columns: 1fr 1.2fr auto; padding: 1.2rem 0; border-top: 1px solid rgba(255,243,220,.45); align-items: center; }
.menu-row:last-child { border-bottom: 1px solid rgba(255,243,220,.45); }
.menu-row strong { font: 400 clamp(1.8rem, 4vw, 4rem)/1 "Instrument Serif", serif; }
.menu-row:hover { color: var(--accent); }
.velvet .quote-band { background: var(--accent); color: #8d1025; }
.velvet .site-cta { background: #f7e7c7; color: #8d1025; }

/* LUMEN */
.lumen { --accent: #7657ff; background: #f4f1ee; color: #1e2532; }
.lumen .demo-nav { color: #2b3343; }
.lumen .hero { color: #1e2532; background: #e9e9f4; }
.lumen .hero-media { background-image: url('assets/final/lumen-dental.webp'); clip-path: ellipse(46% 62% at 72% 50%); transform: translate3d(calc((var(--mouse-x) - .5) * -1.5rem), calc((var(--mouse-y) - .5) * -1.5rem),0) scale(1.05); }
.lumen .hero-shade { background: linear-gradient(90deg, #f4f1ee 0 34%, transparent 70%); }
.lumen .hero-copy h1 { max-width: 70%; font-family: "Instrument Serif", serif; font-size: clamp(5rem, 13vw, 13rem); color: #242d3c; }
.lumen .hero-copy h1 span { color: var(--accent); font-style: italic; }
.lumen .hero-bottom { max-width: 43%; }
.prism { position: absolute; z-index: 2; width: 14rem; aspect-ratio: 1; border-radius: 50%; right: 7%; bottom: 8%; background: conic-gradient(from 90deg, rgba(118,87,255,.45), rgba(98,226,255,.2), rgba(255,155,206,.35), rgba(118,87,255,.45)); filter: blur(2px); mix-blend-mode: multiply; animation: slowspin 11s linear infinite; }
.care-steps { height: 300vh; position: relative; background: #1e2532; color: #f5f1ec; }
.care-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; padding: 5rem 1.5rem 2rem; display: grid; grid-template-columns: .65fr 1.5fr; gap: 4rem; }
.care-labels { align-self: end; }
.care-label { padding: 1rem 0; border-top: 1px solid #596274; opacity: .35; transition: opacity .4s, color .4s; }
.care-label.is-active { opacity: 1; color: #9d8bff; }
.care-visual { position: relative; perspective: 900px; display: grid; place-items: center; }
.glass-card { position: absolute; width: min(66%, 34rem); aspect-ratio: 4/5; border: 1px solid rgba(255,255,255,.4); border-radius: 48% 48% 1.5rem 1.5rem; backdrop-filter: blur(12px); padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2rem 6rem rgba(0,0,0,.25); transition: opacity .4s; }
.glass-card:nth-child(1) { background: rgba(112,87,255,.22); transform: translate3d(calc(-8rem + var(--local) * 8rem),0,calc(-120px + var(--local) * 120px)) rotateY(calc(20deg - var(--local) * 20deg)); }
.glass-card:nth-child(2) { background: rgba(94,220,231,.16); transform: translate3d(0,calc(12rem - var(--local) * 12rem),calc(-80px + var(--local) * 80px)) rotateX(calc(-15deg + var(--local) * 15deg)); }
.glass-card:nth-child(3) { background: rgba(255,161,207,.15); transform: translate3d(calc(8rem - var(--local) * 8rem),0,calc(-40px + var(--local) * 40px)) rotateY(calc(-20deg + var(--local) * 20deg)); }
.glass-card b { font: 400 clamp(3rem,6vw,6rem)/.8 "Instrument Serif", serif; }
.glass-card span { font: 400 .65rem/1.3 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.lumen-services { padding: 8rem 1.5rem; }
.lumen-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.lumen-tile { min-height: 27rem; border: 1px solid #cbc8d1; border-radius: 10rem 10rem 1rem 1rem; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; transition: background .4s, color .4s, border-radius .4s; }
.lumen-tile:hover { background: var(--accent); color: #fff; border-radius: 1rem; }
.lumen-tile h3 { font: 400 2.7rem/1 "Instrument Serif", serif; margin: 0; }
.lumen .quote-band { background: #d8fbf4; }
.lumen .site-cta { background: #7657ff; color: #fff; }

/* IRONWOOD */
.ironwood { --accent: #fdc53b; background: #111419; color: #f2f0ea; }
.ironwood .hero-media { background-image: url('assets/final/ironwood-electric.webp'); transform: scale(calc(1.03 + var(--scroll) * .08)); }
.ironwood .hero-shade { background: linear-gradient(90deg, rgba(9,12,16,.95), rgba(9,12,16,.14) 70%), linear-gradient(0deg, rgba(9,12,16,.8), transparent 50%); }
.ironwood .hero-copy h1 { max-width: 68%; font-size: clamp(4.8rem, 13vw, 13rem); text-transform: uppercase; }
.ironwood .hero-copy h1 span { color: var(--accent); }
.ironwood .hero-bottom { max-width: 50%; }
.live-dot { display: inline-flex; gap: .6rem; align-items: center; }
.live-dot::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 .35rem rgba(253,197,59,.2); animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 .7rem rgba(253,197,59,0); } }
.power-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--accent); color: #111419; }
.power-strip div { padding: 1.4rem; border-right: 1px solid rgba(17,20,25,.45); }
.power-strip strong { font: 600 1.7rem/1 "DM Mono", monospace; }
.power-system { height: 300vh; position: relative; }
.power-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; grid-template-columns: .65fr 1.5fr; padding: 5rem 1.5rem 1.5rem; gap: 2rem; background-color: #15202a; background-image: linear-gradient(rgba(125,157,177,.15) 1px, transparent 1px),linear-gradient(90deg,rgba(125,157,177,.15) 1px,transparent 1px); background-size: 2.5rem 2.5rem; }
.power-copy h2 { margin: 0; font-size: clamp(4rem, 9vw, 9rem); font-weight: 300; line-height: .8; letter-spacing: -.07em; text-transform: uppercase; }
.power-copy h2 span { color: var(--accent); }
.power-copy p { max-width: 22rem; margin-top: 2rem; }
.circuit { position: relative; }
.circuit-line { position: absolute; background: #718493; }
.circuit-line.h { height: 2px; width: 78%; top: var(--y); left: 10%; transform: scaleX(var(--local)); transform-origin: left; }
.circuit-line.v { width: 2px; height: 64%; left: var(--x); top: 18%; transform: scaleY(var(--local)); transform-origin: top; }
.node { position: absolute; left: var(--x); top: var(--y); width: 1rem; height: 1rem; border: 2px solid var(--accent); border-radius: 50%; background: #15202a; transform: translate(-50%,-50%) scale(calc(.5 + var(--local) * .5)); box-shadow: 0 0 calc(var(--local) * 2rem) var(--accent); }
.energy-orb { position: absolute; width: 5rem; aspect-ratio: 1; left: calc(10% + var(--local) * 70%); top: calc(18% + sin(var(--local)) * 40%); border-radius: 50%; background: radial-gradient(circle, #fff, var(--accent) 20%, transparent 70%); filter: blur(2px); }
.service-grid { padding: 8rem 1.5rem; }
.trade-list { margin-top: 4rem; border-top: 1px solid #4b535e; }
.trade-row { display: grid; grid-template-columns: 4rem 1fr .8fr; align-items: center; padding: 1.3rem 0; border-bottom: 1px solid #4b535e; transition: padding .3s, color .3s; }
.trade-row:hover { padding-left: 1rem; color: var(--accent); }
.trade-row h3 { margin: 0; font-size: clamp(2rem,5vw,5rem); font-weight: 300; letter-spacing: -.045em; }
.ironwood .quote-band { background: var(--accent); color: #111419; }
.ironwood .site-cta { background: #f1efe9; color: #111419; }

@media (max-width: 760px) {
  .nav-links a:not(:last-child) { display: none; }
  .demo-nav { padding: 1rem; }
  .demo-dock { left: .7rem; bottom: .7rem; }
  .demo-dock span:last-child { display: none; }
  .collection-nav { grid-template-columns: 1fr 1fr; }
  .collection-nav .mono:nth-child(2) { display: none; }
  .collection-hero { padding: 7rem 1rem 2rem; }
  .collection-kicker > :last-child { display: none; }
  .collection-title { font-size: 22vw; }
  .collection-title em { margin-left: 8vw; }
  .collection-intro { margin-left: 0; }
  .collection-index { padding: 5rem 1rem; }
  .collection-index-head { align-items: start; }
  .concept-card { grid-template-columns: 2.5rem 1fr 1.5rem; gap: .5rem; }
  .concept-card p { display: none; }
  .concept-thumb { display: none; }
  .collection-manifesto { grid-template-columns: 1fr; padding: 5rem 1rem; gap: 2rem; }
  .manifesto-copy { grid-template-columns: 1fr; }
  .collection-footer { min-height: 60svh; flex-direction: column; align-items: start; }
  .hero-copy { padding: 7rem 1rem 5rem; }
  .hero-bottom, .cta-row { align-items: start; flex-direction: column; }
  .section-pad, .northline-services, .lumen-services, .service-grid { padding: 5rem 1rem; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .proof, .northline .proof, .power-strip { grid-template-columns: 1fr 1fr; }
  .inspection-copy { inset: auto 1rem 1.5rem; display: block; }
  .service-card { grid-template-columns: 1fr; padding: 1.2rem; min-height: 42vh; }
  .landscape-intro { grid-template-columns: 1fr; padding: 5rem 1rem; gap: 1rem; }
  .landscape-intro .circle-note { margin-left: 0; width: 8rem; }
  .blueprint-stage { grid-template-columns: 1fr; padding: 5rem 1rem 1rem; }
  .blueprint-visual { min-height: 33vh; }
  .project-tile { width: 85vw; }
  .velvet .hero-media { width: 72vw; height: 50vh; top: 14vh; right: -13vw; }
  .velvet .hero-bottom { max-width: 65vw; }
  .coffee-stage { grid-template-columns: 1fr; }
  .coffee-photo { position: absolute; inset: 12vh -15vw auto auto; width: 75vw; height: 48vh; opacity: .75; }
  .coffee-copy { position: relative; z-index: 2; padding: 6rem 1rem 1rem; }
  .tasting-note { gap: .3rem; }
  .menu-row { grid-template-columns: 1fr auto; }
  .menu-row span { display: none; }
  .lumen .hero-media { clip-path: ellipse(70% 48% at 65% 40%); opacity: .7; }
  .lumen .hero-shade { background: linear-gradient(0deg,#f4f1ee 12%,transparent 70%); }
  .lumen .hero-copy h1 { max-width: 100%; }
  .lumen .hero-bottom { max-width: 85%; }
  .care-stage { grid-template-columns: 1fr; padding: 5rem 1rem 1rem; }
  .care-labels { order: 2; display: flex; gap: 1rem; overflow: hidden; }
  .care-label { min-width: 6rem; }
  .glass-card { width: 70%; height: 60%; }
  .glass-card { padding: 1rem; }
  .glass-card b { font-size: clamp(2rem, 10vw, 2.8rem); }
  .glass-card p { margin: 0; font-size: .78rem; line-height: 1.25; }
  .glass-card span { font-size: .52rem; }
  .lumen-grid { grid-template-columns: 1fr; }
  .lumen-tile { min-height: 20rem; }
  .ironwood .hero-copy h1 { max-width: 100%; }
  .ironwood .hero-bottom { max-width: 80%; }
  .power-stage { grid-template-columns: 1fr; padding: 5rem 1rem 1rem; }
  .circuit { min-height: 40vh; }
  .trade-row { grid-template-columns: 2.5rem 1fr; }
  .trade-row p { display: none; }
  .site-cta h2 { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .hero-media, .type-line, .project-rail, .glass-card { transform: none !important; }
}
