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

:root {
  --black:    #09090b;
  --black2:   #0d0d10;
  --black3:   #141418;
  --purple:   oklch(50% .23 295);
  --purple-l: oklch(66% .21 295);
  --white:    #F6F5F1;
  --mist:     rgba(246,245,241,0.54);
  --quiet:    rgba(246,245,241,0.30);
  --faint:    rgba(246,245,241,0.09);
  --hair:     rgba(246,245,241,0.06);
  --glow-reach: 200;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* ─────── PRIMITIVES ─────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.eyebrow { font-size: 11px; font-weight: 400; letter-spacing: .36em; text-transform: uppercase; color: var(--purple-l); display: inline-flex; align-items: center; gap: 13px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--purple-l); }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -.01em; }

/* PRIMARY — glass pill with circular arrow icon (single primary style) */
.btn-pill {
  display: inline-flex; align-items: center; gap: 18px; padding: 8px 8px 8px 30px; border-radius: 100px;
  background: oklch(50% .23 295 / .55); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid oklch(72% .18 295 / .35); box-shadow: inset 0 1px 0 oklch(85% .12 295 / .35), 0 8px 30px oklch(40% .2 295 / .35);
  color: var(--white); font-family: 'Space Grotesk'; font-weight: 500;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn-pill .bp-label { position: relative; z-index: 2; }
.btn-pill .bp-icon {
  position: relative; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  background: oklch(96% .02 295 / .92); color: var(--purple); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn-pill::before { content: ""; position: absolute; inset: 0; background: oklch(62% .21 295 / .6); transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.btn-pill:hover::before { transform: translateY(0); }
.btn-pill:hover .bp-icon svg { transform: translateX(3px); }
.btn-pill .bp-icon svg { transition: transform .35s; }
/* compact variant (nav) */
.btn-pill.sm { gap: 11px; padding: 5px 5px 5px 20px; font-size: 11px; }
.btn-pill.sm .bp-icon { width: 30px; height: 30px; }
.btn-pill.sm .bp-icon svg { width: 12px; height: 12px; }

/* SECONDARY — glass outlined pill */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 26px; border-radius: 100px;
  background: rgba(246,245,241,.04); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: var(--white); font-family: 'Space Grotesk'; font-weight: 400;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--faint); cursor: pointer; transition: border-color .3s, color .3s, background .3s;
}
.btn-ghost:hover { border-color: var(--purple-l); color: var(--purple-l); background: oklch(50% .23 295 / .1); }

/* ─────── NAV (capsule) ─────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 88px; display: flex; align-items: center; transition: background .35s; }
nav.scrolled { background: rgba(9,9,11,.72); backdrop-filter: blur(18px); }
nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 30px; height: 30px; object-fit: contain; filter: invert(1) brightness(1.1); }
.nav-logo .nm { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 19px; letter-spacing: .12em; color: var(--white); text-transform: uppercase; line-height: 1; }
.nav-logo .sb { font-family: 'Space Grotesk'; font-weight: 300; font-size: 7px; letter-spacing: .5em; color: var(--purple-l); text-transform: uppercase; }
.nav-group {
  position: relative;
  display: flex; align-items: center; gap: 3px; padding: 5px;
  background: rgba(20,20,24,.5); backdrop-filter: blur(16px);
  border: 1px solid var(--faint); border-radius: 100px;
}
.nav-pill {
  position: absolute; top: 5px; left: 0; height: calc(100% - 10px);
  border-radius: 100px; pointer-events: none; opacity: 0;
  background: linear-gradient(160deg, rgba(246,245,241,.16), rgba(246,245,241,.04) 48%, rgba(160,120,235,.12));
  border: 1px solid rgba(246,245,241,.14);
  box-shadow: inset 0 1px 0 rgba(246,245,241,.28), inset 0 -6px 12px rgba(120,80,200,.12), 0 4px 14px rgba(0,0,0,.3);
  transition: transform .42s cubic-bezier(.22,1,.36,1), width .42s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  overflow: hidden;
}
.nav-pill::after {
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(246,245,241,.4), transparent);
  transform: skewX(-18deg);
}
.nav-group:hover .nav-pill { opacity: 1; }
.nav-group:hover .nav-pill::after { animation: navSheen .6s ease forwards; }
@keyframes navSheen { from { left: -40%; } to { left: 140%; } }
.nav-group a {
  position: relative; z-index: 2;
  padding: 9px 18px; border-radius: 100px; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mist); text-decoration: none; transition: color .25s;
}
.nav-group a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

/* hamburger toggle (mobile only) */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--faint); border-radius: 50%; background: rgba(20,20,24,.5); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 99; padding: 104px 24px 40px; background: rgba(9,9,11,.94); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); border-bottom: 1px solid var(--hair); transform: translateY(-102%); transition: transform .45s cubic-bezier(.22,1,.36,1), visibility .45s; pointer-events: none; visibility: hidden; }
body.menu-open .mobile-menu { transform: translateY(0); pointer-events: auto; visibility: visible; }
.mobile-menu .mm-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-menu .mm-links a { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--white); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--hair); transition: color .25s, padding-left .25s; }
.mobile-menu .mm-links a:hover { color: var(--purple-l); padding-left: 8px; }
.mobile-menu .mm-cta { width: 100%; justify-content: space-between; }

/* ─────── HERO ─────── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 70px; overflow: hidden; background: #030208; }
.hero-glow {
  position: absolute; width: 1050px; height: 1050px; border-radius: 50%;
  top: 50%; right: -300px; transform: translateY(-50%);
  background: radial-gradient(circle, oklch(50% .23 295 / .14), oklch(40% .2 295 / .05) 40%, transparent 66%);
  z-index: 0; pointer-events: none; will-change: transform;
}
.hero-cube-wrap { position: absolute; top: 50%; right: -1%; transform: translateY(-50%); height: 92%; width: 42%; max-width: 520px; z-index: 1; will-change: transform; }
.hero-cube { width: 100%; height: 100%; object-fit: contain; object-position: center; -webkit-mask-image: radial-gradient(ellipse 46% 80% at 50% 49%, #000 58%, transparent 84%); mask-image: radial-gradient(ellipse 46% 80% at 50% 49%, #000 58%, transparent 84%); }
/* chest glow pulse (over the cube) */
.hero-chest { position: absolute; left: 50%; top: 33%; width: 170px; height: 170px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, oklch(62% .24 295 / .55), transparent 64%); mix-blend-mode: screen; z-index: 2; pointer-events: none; }
/* particle field over the figure */
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: oklch(74% .19 295); box-shadow: 0 0 6px oklch(66% .21 295); opacity: 0; will-change: transform, opacity; }
@media (prefers-reduced-motion: no-preference) {
  .hero-cube { animation: heroBreathe 7s ease-in-out infinite; }
  .hero-chest { animation: chestPulse 4.5s ease-in-out infinite; }
  .particle { animation: particleRise var(--dur, 9s) linear infinite; animation-delay: var(--delay, 0s); }
}
@keyframes heroBreathe { 0%,100% { filter: brightness(1); transform: scale(1); } 50% { filter: brightness(1.13); transform: scale(1.014); } }
@keyframes chestPulse { 0%,100% { opacity: .35; transform: translate(-50%,-50%) scale(.82); } 50% { opacity: .8; transform: translate(-50%,-50%) scale(1.12); } }
@keyframes particleRise {
  0% { transform: translate(0, 0) scale(.5); opacity: 0; }
  12% { opacity: var(--op, .8); }
  85% { opacity: var(--op, .8); }
  100% { transform: translate(var(--drift, 0px), calc(-1 * var(--travel, 260px))) scale(1.15); opacity: 0; }
}
#hero .wrap { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 640px; }
.hero-content .eyebrow { margin-bottom: 30px; }
.hero-content h1 { font-size: clamp(50px, 6.4vw, 92px); line-height: .95; color: var(--white); margin-bottom: 28px; text-wrap: balance; }
.hero-content h1 em { font-style: italic; font-weight: 300; color: var(--purple-l); }
.hero-content .lede { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--mist); max-width: 470px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-status { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 100px; background: rgba(20,20,24,.5); backdrop-filter: blur(12px); border: 1px solid var(--faint); }
.hero-status .pulse { width: 9px; height: 9px; min-width: 9px; min-height: 9px; flex: 0 0 auto; line-height: 0; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.6); position: relative; }
.hero-status .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid #4ade80; animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0%{transform:scale(.6);opacity:1} 100%{transform:scale(1.8);opacity:0} }
.hero-status b { font-size: 12.5px; font-weight: 500; color: var(--white); letter-spacing: .02em; }
.hero-status span:not(.pulse) { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--quiet); padding-left: 12px; border-left: 1px solid var(--faint); }
.hero-scroll { position: absolute; bottom: 30px; left: 48px; z-index: 3; display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--quiet); }
.hero-scroll .ln { width: 40px; height: 1px; background: var(--faint); position: relative; overflow: hidden; }
.hero-scroll .ln::after { content: ""; position: absolute; inset: 0; background: var(--purple-l); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* mobile energy orb (replaces hero image) */
.hero-orb { display: none; }
@keyframes orbWave {
  0% { transform: translate(-50%,-50%) scale(.3); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}
@keyframes orbCore {
  0%,100% { transform: translate(-50%,-50%) scale(.9); opacity: .7; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

/* hero entrance */
.h-rise { opacity: 0; transform: translateY(34px); }
.loaded .h-rise { opacity: 1; transform: none; transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.loaded .h-rise.d1 { transition-delay: .1s; }
.loaded .h-rise.d2 { transition-delay: .25s; }
.loaded .h-rise.d3 { transition-delay: .4s; }
.loaded .h-rise.d4 { transition-delay: .55s; }
.loaded .h-rise.d5 { transition-delay: .7s; }
.hero-cube-wrap { opacity: 0; transform: translateY(-50%) scale(1.08); }
.loaded .hero-cube-wrap { opacity: 1; transform: translateY(-50%) scale(1); transition: opacity 1.8s ease, transform 2.2s cubic-bezier(.2,.8,.2,1); }

/* ─────── SECTION SHELL ─────── */
section.block { padding: 130px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 72px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.06; color: var(--white); }
.section-head p { margin-top: 22px; font-size: 16px; font-weight: 300; color: var(--mist); line-height: 1.7; }

/* ─────── SERVICES (cards) ─────── */
#services { border-top: 1px solid var(--hair); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; background: linear-gradient(165deg, var(--black3), var(--black2));
  border: 1px solid var(--faint); border-radius: 20px; padding: 36px 32px 32px;
  display: flex; flex-direction: column; min-height: 380px; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s;
}
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), transparent); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.svc-card::after { content: ""; position: absolute; inset: 0; border-radius: 20px; opacity: 0; transition: opacity .45s ease; pointer-events: none; background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), oklch(58% .22 295 / .20), transparent 58%), linear-gradient(rgba(246,245,241,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(246,245,241,.10) 1px, transparent 1px); background-size: 100% 100%, 26px 26px, 26px 26px; -webkit-mask-image: radial-gradient(340px circle at var(--mx,50%) var(--my,50%), #000 0%, rgba(0,0,0,.4) 45%, transparent 68%); mask-image: radial-gradient(340px circle at var(--mx,50%) var(--my,50%), #000 0%, rgba(0,0,0,.4) 45%, transparent 68%); }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(246,245,241,.16); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-card .svc-idx { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: 26px; color: var(--purple-l); margin-bottom: 26px; }
.svc-card h3 { font-size: 27px; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.svc-card p { font-size: 14px; font-weight: 300; color: var(--mist); line-height: 1.66; margin-bottom: 26px; }
.svc-card .svc-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card .svc-tag { font-size: 11px; letter-spacing: .04em; color: var(--mist); border: 1px solid var(--faint); border-radius: 100px; padding: 6px 13px; transition: border-color .3s, color .3s; }
.svc-card:hover .svc-tag { border-color: oklch(66% .21 295 / .3); }
/* Purple glow border that tracks the cursor (hue locked to brand 295) */
.svc-edge {
  position: absolute; inset: 0; border-radius: 20px; padding: 1.5px; z-index: 2;
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
  background: radial-gradient(calc(var(--glow-reach, 200) * 1px) circle at var(--mx, 50%) var(--my, 50%), oklch(80% .18 295 / .95), oklch(58% .23 295 / .45) 38%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
}
.svc-card:hover .svc-edge { opacity: 1; }
body[data-glow-border="off"] .svc-edge { display: none; }
/* touch devices: activate card effects on scroll */
@media (hover: none) {
  .svc-card.in-view { transform: translateY(-6px); border-color: rgba(246,245,241,.16); }
  .svc-card.in-view::before { transform: scaleX(1); }
  .svc-card.in-view::after { opacity: 1; }
  .svc-card.in-view .svc-tag { border-color: oklch(66% .21 295 / .3); }
  .svc-card.in-view .svc-edge { opacity: 1; }
  .proc-step.in-view { background: rgba(246,245,241,.03); border-left-color: var(--purple-l); box-shadow: 0 0 20px oklch(50% .23 295 / .08); }
  .proc-step.in-view .pidx { text-shadow: 0 0 18px oklch(58% .22 295 / .6); }
}

/* ─────── STATEMENT (parallax full-bleed) ─────── */
#statement { position: relative; height: 80vh; min-height: 560px; overflow: hidden; display: flex; align-items: center; }
#statement .stmt-bg { position: absolute; inset: -14% 0; background: url('../assets/structure.jpg') center/cover no-repeat; filter: brightness(.82) saturate(1.05); will-change: transform; z-index: 0; }
#statement .stmt-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--black) 2%, rgba(9,9,11,.55) 42%, rgba(9,9,11,.3)); z-index: 1; }
#statement .stmt-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--black) 0%, rgba(9,9,11,.4) 26%, transparent 44%, transparent 58%, rgba(9,9,11,.55) 78%, var(--black) 100%); z-index: 1; }
#statement .wrap { position: relative; z-index: 2; }
#statement .stmt-quote { max-width: 900px; }
#statement .stmt-quote .eyebrow { margin-bottom: 28px; }
#statement .stmt-quote h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(38px, 5.2vw, 78px); line-height: 1.07; color: var(--white); letter-spacing: -.015em; }
#statement .stmt-quote h2 em { font-style: italic; color: var(--purple-l); font-weight: 400; }
#statement .stmt-quote strong { font-weight: 600; }

/* ─────── PROCESS ─────── */
#process { background: var(--black2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.proc-wrap { position: relative; }
.proc-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--faint); }
.proc-line .fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--purple-l); box-shadow: 0 0 12px var(--purple-l); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; padding-top: 44px; }
.proc-step { transition: background .4s, border-color .4s, box-shadow .4s; }
.proc-step .pidx { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 32px; color: var(--purple-l); margin-bottom: 18px; transition: text-shadow .4s; }
.proc-step h3 { font-size: 23px; color: var(--white); margin-bottom: 13px; }
.proc-step p { font-size: 13.5px; font-weight: 300; color: var(--mist); line-height: 1.62; }

/* ─────── METHOD ─────── */
#method { overflow: hidden; }
#method .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 88px; align-items: center; }
.method-visual { position: relative; }
.method-visual .mv-stage { position: relative; width: 100%; aspect-ratio: 4/5; }
.method-visual .mv-glow { position: absolute; inset: -8%; z-index: 0; background: radial-gradient(circle at 50% 46%, oklch(50% .23 295 / .26), transparent 60%); pointer-events: none; }
.method-visual .mv-stage img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen; -webkit-mask-image: radial-gradient(ellipse 60% 72% at 50% 46%, #000 42%, rgba(0,0,0,.5) 66%, transparent 82%); mask-image: radial-gradient(ellipse 60% 72% at 50% 46%, #000 42%, rgba(0,0,0,.5) 66%, transparent 82%); }
.method-visual .mv-label { position: absolute; bottom: 4%; left: 0; right: 0; text-align: center; z-index: 2; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--quiet); }
.method-visual .mv-core { position: absolute; left: 50%; top: 46%; width: 130px; height: 130px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, oklch(70% .24 295 / .6), transparent 62%); mix-blend-mode: screen; z-index: 2; pointer-events: none; }
.method-visual .mv-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .method-visual .mv-stage img { animation: heroBreathe 8s ease-in-out infinite; }
  .method-visual .mv-core { animation: chestPulse 4s ease-in-out infinite; }
}
.method-text .eyebrow { margin-bottom: 24px; }
.method-text h2 { font-size: clamp(34px, 3.8vw, 50px); line-height: 1.1; color: var(--white); margin-bottom: 26px; }
.method-text p { font-size: 15px; font-weight: 300; color: var(--mist); line-height: 1.75; margin-bottom: 18px; }
.method-text p em { font-style: italic; color: var(--white); }
.principles { margin-top: 38px; display: flex; flex-direction: column; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; }
.principle { background: var(--black); padding: 20px 24px; display: flex; align-items: baseline; gap: 18px; transition: background .3s; }
.principle:hover { background: var(--black3); }
.principle .pk { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--purple-l); font-size: 18px; min-width: 100px; }
.principle .pv { font-size: 13px; font-weight: 300; color: var(--mist); }

/* ─────── CTA ─────── */
#cta { position: relative; padding: 150px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--hair); }
#cta .cta-glow { position: absolute; width: 980px; height: 980px; top: 46%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, oklch(52% .23 295 / .30), oklch(42% .2 295 / .1) 38%, transparent 64%); pointer-events: none; z-index: 0; }
#cta .cta-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(var(--hair) 1px, transparent 1px), linear-gradient(90deg, var(--hair) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 46%, #000 8%, transparent 62%); mask-image: radial-gradient(ellipse 60% 60% at 50% 46%, #000 8%, transparent 62%); pointer-events: none; }
#cta .cta-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
#cta .wrap { position: relative; z-index: 2; }
#cta .eyebrow { justify-content: center; margin-bottom: 26px; }
#cta .eyebrow::before { display: none; }
#cta h2 { font-size: clamp(44px, 5.4vw, 80px); line-height: 1.02; color: var(--white); margin-bottom: 26px; }
#cta h2 em { font-style: italic; font-weight: 300; color: var(--purple-l); }
#cta p { font-size: 16px; font-weight: 300; color: var(--mist); line-height: 1.7; max-width: 500px; margin: 0 auto 46px; }
#cta .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
#cta .cta-note { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--quiet); }

/* ─────── FOOTER ─────── */
footer { border-top: 1px solid var(--hair); padding: 96px 0 40px; position: relative; }
footer .wrap { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 48px; }
.foot-brand { max-width: 360px; }
.foot-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 24px; }
.foot-logo img { width: 32px; height: 32px; object-fit: contain; filter: invert(1) brightness(1.1); }
.foot-logo .nm { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; letter-spacing: .12em; color: var(--white); text-transform: uppercase; line-height: 1; }
.foot-logo .sb { font-family: 'Space Grotesk'; font-weight: 300; font-size: 7px; letter-spacing: .5em; color: var(--purple-l); text-transform: uppercase; }
.foot-desc { font-size: 14.5px; font-weight: 300; line-height: 1.65; color: var(--mist); margin-bottom: 30px; }
.foot-col h4 { font-family: 'Space Grotesk'; font-weight: 500; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--purple-l); margin-bottom: 22px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col a, .foot-col span { font-size: 14px; font-weight: 300; color: var(--mist); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--white); }
.social-icon { display: none; }
.social-label { }
.foot-bar { border-top: 1px solid var(--hair); margin-top: 72px; padding-top: 32px; }
.foot-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.foot-meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--quiet); }

/* ─────── REVEAL ─────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal, .h-rise, .hero-cube-wrap { opacity: 1 !important; transform: none !important; } .hero-orb .orb-wave, .hero-orb .orb-core { animation: none !important; } }

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1000px) {
  .nav-group { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .hero-scroll { display: none; }
  #hero { padding: 116px 0 60px; min-height: auto; flex-direction: column; align-items: stretch; }
  .hero-glow { display: none; }
  .hero-cube-wrap { display: none; }
  .hero-orb { display: none; }
  .hero-content { max-width: 100%; }
  section.block { padding: 84px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: auto; }
  #statement { height: auto; min-height: 0; padding: 90px 0; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  #method .wrap { grid-template-columns: 1fr; gap: 48px; }
  .method-visual { max-width: 420px; }
  footer { padding: 64px 0 36px; }
  footer .wrap { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bar .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 540px) {
  nav { height: 74px; }
  .nav-logo img { width: 26px; height: 26px; }
  .nav-logo .nm { font-size: 17px; }
  .nav-cta { display: none; }
  #cta { padding: 100px 0; }
  #hero { padding: 100px 0 48px; }
  .hero-content .eyebrow { margin-bottom: 22px; }
  .hero-content h1 { margin-bottom: 22px; }
  .hero-content .lede { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { gap: 12px; margin-bottom: 40px; }
  .hero-actions .btn-pill, .hero-actions .btn-ghost { width: 100%; justify-content: space-between; }
  .hero-actions .btn-ghost { justify-content: center; }
  .hero-status { width: 100%; flex-wrap: wrap; }
  .section-head { margin-bottom: 48px; }
  .proc-grid { grid-template-columns: 1fr; gap: 8px; }
  .proc-line { display: none; }
  .proc-grid { padding-top: 8px; }
  .proc-step { padding: 22px 0 22px 16px; border-bottom: 1px solid var(--hair); border-left: 3px solid transparent; }
  .proc-step .pidx { margin-bottom: 10px; }
  .method-visual { max-width: 320px; }
  .principle { flex-direction: column; gap: 6px; }
  .principle .pk { min-width: 0; }
  footer .wrap { grid-template-columns: 1fr; gap: 36px; }
  .foot-social ul { flex-direction: row; gap: 12px; }
  .foot-social .social-icon { display: block; width: 20px; height: 20px; }
  .foot-social .social-label { display: none; }
  .foot-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--faint); background: rgba(20,20,24,.5); transition: border-color .3s, color .3s, background .3s; }
  .foot-social a:hover { border-color: var(--purple-l); color: var(--purple-l); background: oklch(50% .23 295 / .1); }
  .foot-brand .btn-pill { width: 100%; justify-content: space-between; }
  #cta .cta-actions .btn-pill, #cta .cta-actions .btn-ghost { width: 100%; justify-content: center; }
  #cta .cta-actions .btn-pill { justify-content: space-between; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 18px; }
  .mobile-menu { padding-left: 18px; padding-right: 18px; }
}
