/* ============================================================
   WS LAND — Dark Luxury Design System v2
   ============================================================ */
:root {
  --bg:       #0b0907;
  --bg-2:     #131109;
  --bg-3:     #1a160f;
  --surface:  #1f1a12;
  --surface-2:#26211a;
  --ink:      #f0e6d2;
  --ink-2:    #c8baa8;
  --ink-3:    #7a6e60;
  --accent:   #c8432a;
  --accent-2: #e05a3a;
  --gold:     #c9a84c;
  --line:     rgba(240,230,210,.1);
  --line-2:   rgba(240,230,210,.06);
  --glow:     rgba(200,67,42,.18);
  --maxw:     1240px;
  --gutter:   40px;
  --serif:    "Fraunces", Georgia, serif;
  --read:     "Newsreader", Georgia, serif;
  --grot:     "Archivo", system-ui, sans-serif;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--read);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: screen;
}
.cursor.big { width: 40px; height: 40px; opacity: .4; }

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 1; }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .4s, border-color .4s;
}
.nav.scrolled {
  background: rgba(11,9,7,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.brand .mk {
  width: 18px; height: 18px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: relative; flex: none;
}
.brand .mk::before, .brand .mk::after {
  content: ""; position: absolute; background: var(--accent);
}
.brand .mk::before { left: 50%; top: 2.5px; bottom: 2.5px; width: 1.5px; transform: translateX(-50%); }
.brand .mk::after  { top: 50%; left: 2.5px; right: 2.5px; height: 1.5px; transform: translateY(-50%); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--grot);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: .7;
  transition: opacity .2s, color .2s;
  padding: 4px 0;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--ink); }
.nav-links a.active { opacity: 1; color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
}
.nav-cta {
  padding: 8px 18px !important;
  border: 1px solid rgba(240,230,210,.22) !important;
  opacity: 1 !important;
  transition: border-color .2s, background .2s, color .2s !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 22px; height: 1px; background: var(--ink); transition: .3s; }
.burger.x span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-eyebrow {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 120px var(--gutter) 0;
  position: relative; z-index: 1;
}
.hero-eyebrow-left {
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  height: 120px;
}
.hero-eyebrow-right {
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
  line-height: 2;
}
.hero-title-wrap {
  position: relative; z-index: 1;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(96px, 16vw, 220px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--ink);
  user-select: none;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.hero-title .line-2 { padding-left: 12%; }
.hero.ready .hero-title .line span { transform: translateY(0); }
.hero.ready .hero-title .line:nth-child(2) span { transition-delay: .08s; }
.hero-rule {
  border-top: 1px solid var(--line);
  margin: 32px var(--gutter) 0;
  position: relative; z-index: 1;
}
.hero-rule::before {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 1.4s var(--ease) .6s;
}
.hero.ready .hero-rule::before { width: 100%; }
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.hero-bottom-cell {
  padding: 28px var(--gutter);
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-bottom-cell:last-child { border-right: none; }
.hero.ready .hero-bottom-cell { opacity: 1; transform: translateY(0); }
.hero.ready .hero-bottom-cell:nth-child(2) { transition-delay: .1s; }
.hero.ready .hero-bottom-cell:nth-child(3) { transition-delay: .2s; }
.hbc-label {
  font-family: var(--grot);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.hbc-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.hbc-desc {
  font-family: var(--grot);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-top: 4px;
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--grot);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity .5s .8s;
  z-index: 1;
}
.hero.ready .scroll-hint { opacity: 1; }
.scroll-hint::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-3), transparent);
  animation: scrollbar 2s ease-in-out infinite;
}
@keyframes scrollbar {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(.5); opacity: 1; }
}

.ticker {
  background: var(--accent);
  overflow: hidden;
  padding: 12px 0;
  user-select: none;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  padding: 0 56px;
  display: flex; align-items: center;
}
.ticker-item .dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  margin-right: 56px;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.stat-cell:hover::before { transform: scaleX(1); }
.stat-n {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-sfx { color: var(--accent); }
.stat-label {
  font-family: var(--grot);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 10px;
  line-height: 1.4;
}

.manifesto {
  padding: 120px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-tag {
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.manifesto-tag::before {
  content: ""; width: 30px; height: 1px; background: var(--accent);
}
.manifesto-side h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-2);
}
.manifesto-text {
  font-family: var(--read);
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink);
}
.manifesto-text em { font-style: normal; color: var(--accent); }

.divider {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.divider::before {
  content: "";
  position: absolute;
  left: var(--gutter); top: 0;
  width: 60px; height: 1px;
  background: var(--accent);
}

.criteria-section {
  padding: 100px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.06;
}
.section-head .sh-note {
  font-family: var(--grot);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.crit-card {
  background: var(--bg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s var(--ease);
}
.crit-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.crit-card:hover { background: var(--bg-2); }
.crit-card:hover::before { transform: scaleX(1); }
.crit-n {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 600;
  color: var(--ink);
  opacity: .04;
  position: absolute;
  right: 24px; top: 16px;
  line-height: 1;
  pointer-events: none;
}
.crit-tag {
  font-family: var(--grot);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.crit-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.crit-card p {
  font-family: var(--read);
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 24px;
}
.crit-list { list-style: none; }
.crit-list li {
  font-family: var(--grot);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 10px;
}
.crit-list li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.crit-list li:last-child { border-bottom: none; }

.process-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px var(--gutter);
}
.process-inner { max-width: var(--maxw); margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}
.step {
  padding: 44px 36px 44px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 36px; }
.step-n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  opacity: .5;
  margin-bottom: 20px;
}
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.step p { font-family: var(--read); font-size: 15.5px; color: var(--ink-3); line-height: 1.65; }

.map-section { padding: 100px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.mkt-list { border-top: 1px solid var(--line); }
.mkt-item {
  width: 100%; text-align: left; background: none; border: none;
  border-bottom: 1px solid var(--line-2); cursor: pointer; padding: 16px 0;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 14px; transition: padding-left .2s var(--ease); color: var(--ink);
}
.mkt-item:hover { padding-left: 8px; }
.mkt-item.active { padding-left: 12px; }
.mkt-idx { font-family: var(--grot); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); width: 24px; }
.mkt-item.active .mkt-idx { color: var(--accent); }
.mkt-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.mkt-item.active .mkt-name { color: var(--ink); }
.mkt-dot { width: 8px; height: 8px; border: 1.5px solid var(--line); transform: rotate(45deg); transition: .25s; flex-shrink: 0; }
.mkt-item.active .mkt-dot { background: var(--accent); border-color: var(--accent); }
.map-stage { background: var(--bg-2); border: 1px solid var(--line); padding: 24px; }
.map-stage svg { width: 100%; height: auto; }
.us-line { fill: none; stroke: var(--ink-2); stroke-opacity: .18; stroke-width: 1; }
.grat { stroke: var(--ink); stroke-opacity: .04; stroke-width: 1; }
.dot { transition: fill .35s, r .35s; }
.dot.off { fill: var(--ink); fill-opacity: .15; }
.dot.on { fill: var(--accent); }
.dot-pulse { fill: none; stroke: var(--accent); opacity: 0; }
.dot-pulse.live { animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { r: 5; opacity: .55; } 100% { r: 22; opacity: 0; } }
.map-readout { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.ro-tag { font-family: var(--grot); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.map-readout h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.map-readout p { font-family: var(--read); font-size: 16px; color: var(--ink-3); line-height: 1.6; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-family: var(--grot); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; padding: 5px 10px; border: 1px solid var(--line); color: var(--ink-2); }
.map-cap { display: flex; justify-content: space-between; font-family: var(--grot); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; border-top: 1px solid var(--line-2); padding-top: 10px; }

.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,67,42,.06), transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-family: var(--serif); font-size: clamp(36px, 6vw, 88px); font-weight: 600; letter-spacing: -.03em; line-height: 1.0; color: var(--ink); max-width: 16ch; margin: 0 auto 32px; }
.cta-section p { font-family: var(--read); font-size: 18px; color: var(--ink-3); max-width: 42ch; margin: 0 auto 44px; line-height: 1.65; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; font-family: var(--grot); font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 18px 36px; background: var(--accent); color: #fff; border: none; cursor: pointer; transition: background .2s, transform .2s; text-decoration: none; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 12px; font-family: var(--grot); font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 18px 36px; background: transparent; color: var(--ink-2); border: 1px solid var(--line); cursor: pointer; transition: border-color .2s, color .2s; text-decoration: none; }
.btn-outline:hover { border-color: var(--ink-2); color: var(--ink); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

footer { background: var(--bg-3); border-top: 1px solid var(--line); padding: 72px 0 36px; }
.foot-top { display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap; margin-bottom: 56px; max-width: var(--maxw); margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
.foot-brand { max-width: 28ch; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-family: var(--read); font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--grot); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.foot-col a { display: block; font-family: var(--read); font-size: 14px; color: var(--ink-2); margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--line-2); padding-top: 24px; margin-top: 56px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; max-width: var(--maxw); margin-left: auto; margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); font-family: var(--grot); font-size: 11px; letter-spacing: .08em; color: var(--ink-3); }

.page-hero { padding: 160px var(--gutter) 80px; border-bottom: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }
.page-kicker { font-family: var(--grot); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.page-kicker::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px, 7vw, 96px); font-weight: 600; letter-spacing: -.03em; line-height: .96; color: var(--ink); max-width: 14ch; margin-bottom: 28px; }
.page-hero .dek { font-family: var(--read); font-style: italic; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink-3); max-width: 48ch; line-height: 1.55; }
.page-meta { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.page-meta-item { font-family: var(--grot); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.page-meta-item span { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink); margin-top: 4px; }

.approach-layout { display: grid; grid-template-columns: .38fr 1fr; gap: 72px; padding: 80px var(--gutter) 100px; max-width: var(--maxw); margin: 0 auto; }
.approach-rail { position: sticky; top: 96px; align-self: start; }
.approach-rail h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink-2); line-height: 1.2; margin-top: 14px; margin-bottom: 18px; }
.approach-rail p { font-family: var(--read); font-size: 16px; color: var(--ink-3); line-height: 1.65; max-width: 28ch; }
.rail-quote { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-2); line-height: 1.4; }
.rail-quote em { font-style: normal; color: var(--accent); }
.steps-list { border-top: 1px solid var(--line); }
.step-item { display: grid; grid-template-columns: auto 1fr; gap: 36px; padding: 44px 0; border-bottom: 1px solid var(--line-2); align-items: baseline; transition: background .2s; }
.step-item:hover { background: rgba(200,67,42,.025); }
.step-num { font-family: var(--serif); font-size: 54px; font-weight: 500; color: var(--accent); opacity: .4; line-height: .9; font-variant-numeric: tabular-nums; }
.step-item h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.step-item p { font-family: var(--read); font-size: 16.5px; color: var(--ink-3); line-height: 1.65; max-width: 54ch; }
.step-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.step-tag { font-family: var(--grot); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; padding: 4px 10px; border: 1px solid var(--line); color: var(--ink-3); }

.firm-layout { display: grid; grid-template-columns: .38fr 1fr; gap: 72px; padding: 80px var(--gutter); max-width: var(--maxw); margin: 0 auto; border-bottom: 1px solid var(--line); }
.firm-sidebar h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink-2); line-height: 1.2; margin-top: 14px; margin-bottom: 24px; }
.firm-sidebar p { font-family: var(--read); font-size: 16px; color: var(--ink-3); line-height: 1.65; max-width: 28ch; }
.firm-creds { margin-top: 36px; border-top: 1px solid var(--line); }
.cred-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-family: var(--grot); font-size: 12px; letter-spacing: .04em; transition: padding-left .2s; }
.cred-row:hover { padding-left: 6px; }
.cred-k { color: var(--ink-3); text-transform: uppercase; font-size: 10.5px; letter-spacing: .14em; }
.cred-v { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.firm-prose p { font-family: var(--read); font-size: 18px; line-height: 1.72; color: var(--ink-2); margin-bottom: 22px; max-width: 62ch; }
.firm-prose p:first-child::first-letter { font-family: var(--serif); float: left; font-size: 5em; line-height: .76; font-weight: 600; color: var(--accent); padding: .04em .1em 0 0; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 64px; }
.principle { background: var(--bg); padding: 40px; transition: background .3s; }
.principle:hover { background: var(--bg-2); }
.principle-n { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--accent); opacity: .25; line-height: 1; margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.principle h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.principle p { font-family: var(--read); font-size: 15.5px; color: var(--ink-3); line-height: 1.65; max-width: 36ch; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; padding: 80px var(--gutter) 100px; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.contact-lead h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 52px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px; line-height: 1.06; }
.contact-lead p { font-family: var(--read); font-size: 17px; color: var(--ink-3); max-width: 36ch; line-height: 1.65; }
.contact-email { margin-top: 28px; font-family: var(--grot); font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.contact-email a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: color .2s; }
.contact-email a:hover { color: var(--accent); }
.contact-who { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.contact-who h4 { font-family: var(--grot); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.contact-who ul { list-style: none; }
.contact-who li { font-family: var(--read); font-size: 16px; color: var(--ink-2); padding: 10px 0; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 12px; }
.contact-who li::before { content: ""; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.form-card { border: 1px solid var(--line); background: var(--bg-2); padding: 40px; }
.form-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-family: var(--grot); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); padding: 14px; color: var(--ink); font-family: var(--read); font-size: 16px; transition: border-color .2s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer; }
.field option { background: var(--bg-2); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--accent); }
.field .msg { font-family: var(--grot); font-size: 11px; color: var(--accent); margin-top: 6px; display: none; letter-spacing: .04em; }
.field.err .msg { display: block; }
.form-submit { width: 100%; background: var(--accent); color: #fff; border: none; padding: 16px; font-family: var(--grot); font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--accent-2); }
.form-note { font-family: var(--read); font-size: 13px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 60px 24px; border: 1px solid var(--line); background: var(--bg-2); }
.form-success.show { display: block; }
.form-success .chk { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.form-success h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.form-success p { font-family: var(--read); font-size: 16px; color: var(--ink-3); }

.footprint-layout { display: grid; grid-template-columns: .38fr 1fr; gap: 56px; padding: 80px var(--gutter) 100px; max-width: var(--maxw); margin: 0 auto; align-items: start; }
.footprint-sidebar h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink-2); margin: 14px 0 20px; line-height: 1.2; }
.footprint-sidebar p { font-family: var(--read); font-size: 16px; color: var(--ink-3); line-height: 1.65; max-width: 28ch; margin-bottom: 32px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1040px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; padding-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .step:not(:first-child) { padding-left: 0; }
  .step:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 36px; }
  .approach-layout { grid-template-columns: 1fr; }
  .approach-rail { position: static; }
  .firm-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footprint-layout { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 36px; }
  .principles-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; position: fixed; inset: 64px 0 auto 0; background: rgba(13,11,8,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 28px; transform: translateY(-130%); transition: transform .3s var(--ease); z-index: 99; }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 16px 0; font-family: var(--serif); font-size: 22px; color: var(--ink); border-bottom: 1px solid var(--line-2); }
  .mobile-menu a:last-child { border-bottom: none; }
  .hero-title { font-size: clamp(72px, 18vw, 120px); }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-bottom-cell:last-child { grid-column: span 2; border-right: none; border-top: 1px solid var(--line); }
  .criteria-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: 12px; }
  .page-meta { gap: 28px; flex-wrap: wrap; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; border-bottom: 1px solid var(--line-2) !important; }
  .field-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-title .line span, .hero-bottom-cell, .scroll-hint { opacity: 1 !important; transform: none !important; }
  .hero-rule::before { width: 100% !important; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cursor { display: none; }
}