

:root {
  
  --ink:        oklch(0.945 0.014 80);    
  --ink-2:      oklch(0.92 0.016 78);     
  --ink-3:      oklch(0.885 0.018 76);    
  --ink-dark:   oklch(0.20 0.013 60);     

  --cream:      oklch(0.20 0.013 60);     
  --cream-2:    oklch(0.36 0.013 60);     
  --cream-3:    oklch(0.52 0.012 65);     

  --bronze:      oklch(0.52 0.085 65);
  --bronze-2:    oklch(0.42 0.075 62);
  --bronze-glow: oklch(0.52 0.085 65 / 0.16);

  --rule:       oklch(0.20 0.013 60 / 0.16);
  --rule-soft:  oklch(0.20 0.013 60 / 0.08);
  --rule-strong:oklch(0.20 0.013 60 / 0.30);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: 32px;
  --container: 1480px;
  --pad-x: clamp(24px, 5vw, 96px);
  --pad-y: clamp(80px, 12vh, 160px);
}

* { box-sizing: border-box; }
*::selection { background: var(--bronze); color: var(--ink); }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 1px solid var(--bronze); outline-offset: 3px; }

img { display: block; max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.30 0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-3);
  display: inline-block;
}
.eyebrow-bronze { color: var(--bronze); }
.eyebrow-bronze .dot,
.dot-bronze { background: var(--bronze); box-shadow: 0 0 12px var(--bronze-glow); }

.display-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  color: var(--cream);
}
.display-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
}

.section-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 56ch;
  margin: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg,
    oklch(0.46 0.060 62 / 0.55) 0%,
    oklch(0.40 0.055 62 / 0.42) 100%);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: 1px solid oklch(0.66 0.06 65 / 0.28);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0 / 0.22),
    inset 0 -1px 0 oklch(0 0 0 / 0.08),
    0 14px 38px -12px oklch(0.20 0.013 60 / 0.22);
  overflow: hidden;
  isolation: isolate;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    
    linear-gradient(115deg,
      transparent 22%,
      oklch(1 0 0 / 0.06) 46%,
      oklch(1 0 0 / 0.11) 50%,
      oklch(1 0 0 / 0.06) 54%,
      transparent 78%),
    
    radial-gradient(ellipse 80% 100% at 50% -20%, oklch(1 0 0 / 0.10), transparent 60%);
  z-index: 0;
}
.topbar-inner { position: relative; z-index: 1; }

.topbar .brand { color: oklch(0.94 0.018 80); }
.topbar .topnav a { color: oklch(0.86 0.016 78); }
.topbar .topnav a:hover { color: oklch(0.98 0.018 80); }
.topbar .topnav a::after { background: oklch(0.94 0.018 80); }
.topbar .topcta {
  color: oklch(0.94 0.018 80);
  border-bottom-color: oklch(0.94 0.018 80);
}
.topbar .topcta:hover {
  color: oklch(0.98 0.018 80);
  border-bottom-color: oklch(0.98 0.018 80);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
}

.brand-svg {
  display: inline-block;
  height: 32px;
  aspect-ratio: 476 / 308;
  background-color: currentColor;
  -webkit-mask: url('assets/logo_ar.svg') no-repeat center / contain;
  mask: url('assets/logo_ar.svg') no-repeat center / contain;
}
.topbar .brand-svg { height: 46px; }
.footer .brand-svg { height: 72px; }

.topnav {
  justify-self: center;
  display: flex;
  gap: 36px;
}
.topnav a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color 0.25s ease;
  position: relative;
}
.topnav a:hover { color: var(--cream); }
.topnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s ease, left 0.3s ease;
}
.topnav a:hover::after { width: 100%; left: 0; }

.topcta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--bronze);
  transition: gap 0.25s ease, color 0.25s ease;
}
.topcta:hover { gap: 16px; color: var(--bronze); }
.topcta-arrow { font-family: var(--serif); font-style: italic; font-size: 16px; }

.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 52;
  margin: -12px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: oklch(0.94 0.018 80);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: linear-gradient(180deg,
    oklch(0.22 0.014 60 / 0.97),
    oklch(0.16 0.012 60 / 0.97));
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}
.nav-drawer.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px 32px;
  animation: drawer-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.nav-drawer nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: oklch(0.94 0.018 80);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-drawer nav a:hover,
.nav-drawer nav a:active { color: oklch(0.78 0.10 65); }

.nav-drawer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.012em;
  text-transform: none;
  color: oklch(0.20 0.013 60);
  background: oklch(0.94 0.018 80);
  padding: 18px 42px;
  text-decoration: none;
  border: 1px solid oklch(0.94 0.018 80);
  transition: gap 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.nav-drawer-cta:hover,
.nav-drawer-cta:active {
  background: transparent;
  color: oklch(0.94 0.018 80);
  gap: 24px;
}
.nav-drawer-cta .arr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0;
}
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--pad-x) 80px 0;
  overflow: hidden;
  z-index: 2;
}
.hero-grid {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 56px;
  z-index: 3;
}
.hero-main {
  display: block;
  position: relative;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  max-width: min(58ch, 60%);
  position: relative;
  z-index: 3;
}
.hero-text > .hero-link { align-self: flex-start; }
.hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
  color: var(--cream-2);
  max-width: 38ch;
  margin: 0;
  letter-spacing: -0.005em;
}
.hero-lede em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 400;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.hero-kicker .line {
  width: 72px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 10.5vw, 188px);
  line-height: 0.9;
  letter-spacing: -0.034em;
  margin: 0;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-line {
  display: flex;
  align-items: baseline;
  column-gap: clamp(18px, 1.8vw, 36px);
}
.hero-word {
  display: inline-block;
  position: relative;
}
.hero-it { font-style: italic; font-weight: 300; }
.hero-em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bronze);
  border: 1px solid var(--bronze);
  padding: 13px 22px;
  text-decoration: none;
  box-shadow: 0 6px 18px -10px oklch(0.20 0.013 60 / 0.3);
  transition: gap 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-link:hover {
  background: var(--cream);
  color: var(--ink);
  gap: 18px;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px oklch(0.20 0.013 60 / 0.4);
}
.hero-link-arr {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}
.meta-l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.meta-v {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--cream-2);
  line-height: 1.55;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap 0.3s ease, background 0.3s ease, color 0.3s ease;
  border: 1px solid var(--cream);
}
.primary-cta:hover { gap: 26px; background: var(--bronze); color: var(--ink); border-color: var(--bronze); }
.primary-cta-arr { font-family: var(--serif); font-style: italic; font-size: 18px; letter-spacing: 0; }
.primary-cta-bronze { background: var(--bronze); border-color: var(--bronze); }
.primary-cta-bronze:hover { background: transparent; color: var(--bronze); }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.scroll-cue-glyph {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--bronze);
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55vw;
  max-width: none;
  aspect-ratio: auto;
  z-index: 1;
  pointer-events: none;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ink) 0%,
    var(--ink) 18%,
    transparent 58%
  );
  z-index: 5;
  pointer-events: none;
}
.hero-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  pointer-events: auto;
  background: var(--ink-2);
}
.hero-media-img,
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05) brightness(0.96);
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-media-img.active { opacity: 1; }

.hmt-label, .hmc-project, .hmc-output {
  transition: opacity 0.5s ease;
}
.hero-media-frame[data-cycling="true"] .hmt-label,
.hero-media-frame[data-cycling="true"] .hmc-project,
.hero-media-frame[data-cycling="true"] .hmc-output { opacity: 0; }

.hero-media-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 40%, oklch(0.20 0.013 60 / 0.25) 100%),
    linear-gradient(180deg, oklch(0.20 0.013 60 / 0.45) 0%, transparent 22%, transparent 60%, oklch(0.20 0.013 60 / 0.65) 100%);
}

.hero-media-tag {
  position: absolute;
  top: 120px;
  left: auto;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: oklch(0.20 0.013 60 / 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: oklch(0.94 0.018 80);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 6;
}
.hmt-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 0 oklch(0.52 0.085 65 / 0.6);
  animation: hmt-pulse 1.8s ease-in-out infinite;
}
@keyframes hmt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.52 0.085 65 / 0); }
  50%      { box-shadow: 0 0 0 6px oklch(0.52 0.085 65 / 0.35); }
}

.hero-media-caption {
  position: absolute;
  left: auto;
  right: 32px;
  bottom: 100px;
  width: clamp(280px, 32%, 420px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  color: oklch(0.94 0.018 80);
  z-index: 6;
}
.hmc-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.78 0.016 75);
  margin-bottom: 4px;
}
.hmc-v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: oklch(0.94 0.018 80);
  letter-spacing: -0.005em;
}
.hmc-r { text-align: right; }

.hero-media-ts {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: oklch(0.20 0.013 60 / 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: oklch(0.94 0.018 80);
}
.hmt-rec {
  color: var(--bronze);
  font-size: 11px;
  animation: hmt-blink 1.4s ease-in-out infinite;
}
@keyframes hmt-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.3; }
}

section {
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 96ch;
  margin-bottom: 80px;
}
.section-head-tight { margin-bottom: 56px; }

.manifesto {
  padding: clamp(56px, 8vh, 100px) 0;
  border-top: 1px solid var(--rule);
  background: var(--ink);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 36px;
  align-items: flex-start;
}
.manifesto-meta { grid-column: 1; grid-row: 1 / span 2; }
.manifesto-body { grid-column: 2; grid-row: 1; }
.founder-mini-cards { grid-column: 2; grid-row: 2; }
.manifesto-eyebrow { margin-bottom: 36px; }
.manifesto-meta {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 28px;
}
.stat-v {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 1;
  color: var(--bronze);
  letter-spacing: -0.022em;
}
.stat-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.manifesto-portrait {
  margin: 0;
  position: relative;
}
.manifesto-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule-strong);
  filter: saturate(0.95) contrast(1.02);
}
.manifesto-portrait figcaption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.founder-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.founder-mini {
  position: relative;
  padding: 20px 22px 18px;
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  overflow: hidden;
}
.founder-mini::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.founder-mini:hover {
  transform: translateY(-3px);
  border-color: var(--bronze);
  box-shadow: 0 12px 28px -16px oklch(0.20 0.013 60 / 0.22);
}
.founder-mini:hover::before { transform: scaleX(1); }
.founder-mini-head {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.founder-mini-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.founder-mini-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.founder-mini-bio {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
}
.manifesto-body { max-width: 60ch; }
.manifesto-body .display-h {
  font-size: clamp(40px, 5.4vw, 80px);
  margin-bottom: 20px;
}
.manifesto-body .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 20px;
}
.manifesto-body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
  margin: 0 0 16px;
  max-width: 60ch;
}

.portfolio {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cat-tile {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  cursor: pointer;
}
.cat-tile-lg { grid-column: span 6; }
@media (min-width: 1100px) {
  .cat-tile-lg { grid-column: span 4; }
  .cat-grid > .cat-tile:not(.cat-tile-lg) { grid-column: span 2; }
  .cat-grid > .cat-tile-lg:nth-of-type(4n) { grid-column: span 4; }
}
.cat-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
  position: relative;
}
.cat-tile-lg .cat-img { aspect-ratio: 16 / 10; }
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, oklch(0.945 0.014 80 / 0.55));
  pointer-events: none;
}
.cat-tile:hover .cat-img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}
.cat-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 24px 4px 4px;
}
.cat-meta-l { display: flex; flex-direction: column; gap: 10px; }
.cat-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.cat-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream);
}
.cat-h em { font-style: italic; color: var(--bronze); }
.cat-loc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream-3);
  letter-spacing: 0.01em;
}
.cat-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cream-3);
  white-space: nowrap;
}

.services {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
  background: var(--ink);
}
.services .section-head { margin-bottom: 48px; }
.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
}
.svc-row {
  display: grid;
  grid-template-columns: 56px 1fr 130px 36px;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.svc-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--bronze-glow), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.svc-row:hover { padding-left: 28px; }
.svc-row:hover::before { opacity: 1; width: 100%; }
.svc-num {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  color: var(--bronze);
  letter-spacing: -0.01em;
  letter-spacing: -0.02em;
}
.svc-body { display: flex; flex-direction: column; gap: 6px; }
.svc-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream);
}
.svc-h em { font-style: italic; color: var(--bronze); }
.svc-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
  max-width: 56ch;
}
.svc-from {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}
.svc-from-l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.svc-from-v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bronze);
  letter-spacing: -0.01em;
}
.svc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  align-self: center;
  justify-self: end;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px -6px oklch(0.20 0.013 60 / 0.3);
}
.svc-row:hover .svc-arrow {
  transform: translateX(6px);
  box-shadow: 0 8px 18px -8px oklch(0.20 0.013 60 / 0.4);
}

.svc-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
.ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-strong);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.ghost-cta:hover { color: var(--bronze); border-color: var(--bronze); gap: 20px; }
.ghost-cta-arr { font-family: var(--serif); font-style: italic; font-size: 18px; }

.approach {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.proc-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.proc-rule {
  width: 100%;
  height: 1px;
  background: var(--rule-strong);
  position: relative;
}
.proc-rule::before {
  content: "";
  position: absolute;
  left: 0; top: -3px;
  width: 7px; height: 7px;
  background: var(--bronze);
  transform: rotate(45deg);
}
.proc-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 8px 0 0;
}
.proc-b {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-2);
  margin: 0;
  max-width: 32ch;
}

.quote-sec {
  padding: var(--pad-y) 0;
  background: var(--ink-dark);
  color: oklch(0.92 0.018 80);
  position: relative;
}
.quote-sec::before,
.quote-sec::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.52 0.085 65 / 0.7), transparent);
}
.quote-sec::before { top: 0; }
.quote-sec::after { bottom: 0; }
.quote-fig {
  margin: 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px 40px;
  max-width: 1100px;
}
.quote-b, .quote-cite { grid-column: 2; }
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 160px;
  line-height: 0.8;
  color: oklch(0.72 0.10 60);
  text-align: right;
}
.quote-b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: oklch(0.94 0.018 80);
  margin: 16px 0 24px;
}
.quote-cite {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.94 0.018 80 / 0.18);
  color: oklch(0.62 0.013 70);
}
.cite-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: oklch(0.72 0.10 60);
}
.cite-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.78 0.016 75);
}

.contact {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
  background: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 96px;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-strong);
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.contact-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.contact-v {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
}
.contact-v em { font-style: italic; color: var(--cream-2); }
.contact-v a { border-bottom: 1px solid var(--rule-strong); padding-bottom: 2px; transition: color 0.25s ease, border-color 0.25s ease; }
.contact-v a:hover { color: var(--bronze); border-color: var(--bronze); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 28px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.field input,
.field textarea {
  background: var(--ink-2);
  border: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 19px;
  padding: 16px 20px;
  resize: none;
  outline: none;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--cream-3);
  font-style: italic;
}
.field input:hover,
.field textarea:hover {
  border-color: var(--cream-3);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--bronze);
  background: var(--ink-3);
  box-shadow: 0 0 0 3px oklch(0.52 0.085 65 / 0.12);
}
.field textarea { min-height: 140px; line-height: 1.55; font-size: 17px; }

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  margin-top: 4px;
}
.form-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.contact-form button {
  font-family: var(--mono);
  cursor: pointer;
}

.footer {
  padding: 96px 0 48px;
  border-top: 1px solid var(--rule);
  background: var(--ink-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream-2);
  margin: 0;
  max-width: 32ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}
.footer-col a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream-2);
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--cream-3); transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--bronze); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    justify-content: flex-start;
    min-height: 100vh;
  }
  .hero-grid { padding-left: 0; }
  .hero-text { max-width: 100%; }
  
  .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin-top: 0;
    pointer-events: none;
  }
  .hero-media::after {
    background: linear-gradient(
      to bottom,
      var(--ink) 0%,
      var(--ink) 62%,
      transparent 88%
    );
  }
  .hero-media-frame {
    border: 0;
    box-shadow: none;
    pointer-events: auto;
  }
  
  .hero-media-tag {
    top: auto;
    bottom: 100px;
    left: 20px;
    right: auto;
  }
  .hero-media-caption {
    left: 20px;
    right: 20px;
    bottom: 28px;
    width: auto;
  }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-eyebrow { margin-bottom: 20px; }
  .manifesto-body { order: 1; grid-column: 1; grid-row: auto; }
  .manifesto-meta { position: static; order: 2; grid-column: 1; grid-row: auto; }
  .founder-mini-cards { order: 3; grid-column: 1; grid-row: auto; grid-template-columns: 1fr; gap: 12px; margin-top: 0; }
  .manifesto-portrait img { aspect-ratio: auto; height: auto; object-fit: contain; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid .contact-form { order: 1; }
  .contact-grid .contact-info { order: 2; }
  .contact { padding-bottom: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .proc-track { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

@media (max-width: 800px) {
  :root { --pad-x: 24px; --pad-y: 80px; }
  .topnav { display: none; }
  .topcta { display: none; }
  .nav-hamburger { display: inline-flex; }
  
  .topbar-inner { grid-template-columns: 1fr auto; }
  .hero { padding-top: 110px; padding-bottom: 60px; min-height: 100vh; }
  .hero-lede { font-size: clamp(20px, 4.8vw, 26px); line-height: 1.4; max-width: 100%; }
  .hero-link { font-size: 12px; padding: 14px 24px; }
  .hero-link-arr { font-size: 20px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-title { font-size: clamp(68px, 18vw, 112px); column-gap: 14px; line-height: 0.92; }
  .hero-media { aspect-ratio: 4 / 3; }
  .hero-media-tag, .hero-media-ts { padding: 7px 11px; font-size: 9.5px; }
  .hero-media-caption { left: 14px; right: 14px; bottom: 14px; gap: 16px; }
  .hmc-v { font-size: 13px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-tile, .cat-tile-lg { grid-column: 1 / -1; }
  .svc-row {
    grid-template-columns: 48px 1fr 48px;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    padding: 18px 0;
    align-items: center;
  }
  .svc-num { font-size: 26px; grid-row: 1 / span 2; align-self: center; }
  .svc-body { grid-column: 2; grid-row: 1; }
  .svc-from { grid-column: 2; grid-row: 2; align-items: flex-start; text-align: left; flex-direction: row; gap: 10px; align-items: baseline; }
  .svc-arrow { grid-column: 3; grid-row: 1 / span 2; justify-self: end; align-self: center; width: 40px; height: 40px; font-size: 20px; }
  .svc-row:hover { padding-left: 12px; }
  .proc-track { grid-template-columns: 1fr; }
  .quote-fig { grid-template-columns: 48px 1fr; gap: 24px; }
  .quote-mark { font-size: 92px; }
  .contact-form { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-col a { font-size: 13.5px; }
  .footer-col-h { font-size: 9.5px; letter-spacing: 0.18em; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

.sub-hero {
  padding: 140px 0 56px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.sub-hero-h {
  font-size: clamp(40px, 5.8vw, 88px);
  margin: 24px 0 20px;
  max-width: 18ch;
}
.sub-hero-sub {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 56ch;
  margin: 0;
}
.sub-hero-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 60ch;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.sub-hero-note em,
.sub-hero-note strong { color: var(--bronze); font-style: italic; font-weight: 400; }

.svc-tabs {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 8px 16px -12px oklch(0.20 0.013 60 / 0.18);
}
.svc-tabs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tabs-inner::-webkit-scrollbar { display: none; }
.svc-tab {
  background: transparent;
  border: 0;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--cream-3);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
.svc-tab:hover { color: var(--cream); }
.svc-tab:focus-visible { outline: 1px solid var(--bronze); outline-offset: 4px; }
.svc-tab[aria-selected="true"] {
  background: var(--bronze);
  color: oklch(0.96 0.018 80);
  font-weight: 600;
}
@media (max-width: 800px) {
  .svc-tabs { top: 60px; }
  .svc-tabs-inner {
    gap: 4px;
    overflow-x: visible;
    justify-content: space-between;
  }
  .svc-tab {
    flex: 1 1 0;
    padding: 8px 4px;
    font-size: 13px;
    margin: 8px 0;
    text-align: center;
    min-width: 0;
  }
}

.svc-block {
  padding: 56px 0;
}
.svc-block[hidden] { display: none; }
.svc-block:not([hidden]) {
  animation: svc-panel-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes svc-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-block:not([hidden]) .svc-block-head,
.svc-block:not([hidden]) .tier,
.svc-block:not([hidden]) .side-table {
  animation: svc-panel-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.svc-block:not([hidden]) .svc-block-head { animation-delay: 0.05s; }
.svc-block:not([hidden]) .tier:nth-child(1) { animation-delay: 0.15s; }
.svc-block:not([hidden]) .tier:nth-child(2) { animation-delay: 0.22s; }
.svc-block:not([hidden]) .tier:nth-child(3) { animation-delay: 0.29s; }
.svc-block:not([hidden]) .side-table { animation-delay: 0.36s; }
@keyframes svc-panel-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-block:not([hidden]),
  .svc-block:not([hidden]) .svc-block-head,
  .svc-block:not([hidden]) .tier,
  .svc-block:not([hidden]) .side-table {
    animation: none;
  }
  .svc-tab::after { transition: none; }
}
.svc-block:first-of-type { border-top: 0; }
.svc-block-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.svc-block-head .display-h {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 0;
}
.svc-block-l { max-width: 70ch; }
.svc-block-blurb {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 14px 0 0;
}
.svc-block-from {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
  padding: 8px 0 0;
}
.svc-block-from .from-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.svc-block-from .from-v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--bronze);
  letter-spacing: -0.015em;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-controls { display: none; }
.tier {
  position: relative;
  padding: 24px 24px 20px;
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.tier:hover { transform: translateY(-3px); border-color: var(--bronze); }
.tier-featured {
  border-color: var(--bronze);
  background: var(--ink-2);
}
.tier-flag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--bronze);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}
.tier-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 16px;
}
.tier-featured .tier-name { color: var(--bronze); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.tier-now {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13.5px;
}
.tier-meta > div { display: flex; justify-content: space-between; gap: 12px; }
.tier-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.tier-v { color: var(--cream); text-align: right; }
.tier-feats {
  list-style: none;
  padding: 14px 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-feats li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--cream-2);
}
.tier-feats li::before {
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 12px;
}
.tier-feats li.on::before { content: "✓"; color: var(--bronze); }
.tier-feats li.off { color: var(--cream-3); }
.tier-feats li.off::before { content: "-"; color: var(--cream-3); }
.tier-cta {
  display: block;
  margin-top: 18px;
  padding: 12px 16px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.tier-cta:hover {
  background: var(--bronze);
  color: oklch(0.96 0.018 80);
}

.side-table {
  margin-top: 36px;
}
.side-table-lead { margin-top: 0; }
.side-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
  margin-bottom: 18px;
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.rate-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule-strong);
}
.rate-table th.r,
.rate-table td.r { text-align: right; padding-right: 0; }
.rate-table td {
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--cream);
  vertical-align: top;
  font-size: 13.5px;
}
.rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table .now {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--cream);
}

.addons, .terms {
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.addons .section-head, .terms .section-head { margin-bottom: 36px; }
.addons .display-h, .terms .display-h {
  font-size: clamp(42px, 5.2vw, 76px);
  margin-bottom: 16px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  overflow: hidden;
}
.addon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.addon:hover {
  transform: translateY(-3px);
  border-color: var(--bronze);
  box-shadow: 0 12px 28px -16px oklch(0.20 0.013 60 / 0.22);
}
.addon:hover::before { transform: scaleX(1); }
.addon-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.addon-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
  line-height: 1.2;
}
.addon-price {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--bronze);
  white-space: nowrap;
}
.addon-body {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-2);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 24px;
}
.terms-col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.terms-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.terms-col li {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream-2);
  padding-left: 18px;
  position: relative;
}
.terms-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--bronze);
}
.terms-col li em {
  font-family: var(--sans);
  font-style: normal;
  color: var(--bronze);
  font-weight: 600;
}

.svc-cta-sec {
  padding: var(--pad-y) 0;
  background: var(--ink-dark);
  color: oklch(0.92 0.018 80);
  position: relative;
}
.svc-cta-sec::before,
.svc-cta-sec::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.52 0.085 65 / 0.7), transparent);
}
.svc-cta-sec::before { top: 0; }
.svc-cta-sec::after { bottom: 0; }
.svc-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.svc-cta-inner .display-h { color: oklch(0.94 0.018 80); }
.svc-cta-inner .display-h em { color: oklch(0.72 0.10 60); }
.svc-cta-inner .eyebrow-bronze { color: oklch(0.72 0.10 60); justify-content: center; }
.svc-cta-inner .eyebrow-bronze .dot { background: oklch(0.72 0.10 60); }
.svc-cta-sub {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: oklch(0.78 0.016 75);
  max-width: 60ch;
  margin: 0 auto 36px;
}
.svc-cta-inner .primary-cta {
  background: oklch(0.72 0.10 60);
  color: var(--ink-dark);
  border-color: oklch(0.72 0.10 60);
}
.svc-cta-inner .primary-cta:hover {
  background: oklch(0.94 0.018 80);
  border-color: oklch(0.94 0.018 80);
  color: var(--ink-dark);
}

.about-positioning {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 96px;
  align-items: flex-start;
}
.positioning-aside { padding-top: 12px; }
.positioning-body { max-width: 64ch; }
.positioning-body p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-2);
  margin: 24px 0 0;
}
.positioning-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 64px;
  font-family: var(--sans);
}
.positioning-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--rule-strong);
}
.positioning-table th.r,
.positioning-table td.r { text-align: right; padding-right: 0; }
.positioning-table td {
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--cream-2);
  vertical-align: top;
}
.positioning-table td strong { color: var(--cream); font-weight: 500; }
.positioning-table tr.hl td {
  background: oklch(0.52 0.085 65 / 0.08);
  color: var(--cream);
}
.positioning-table tr.hl td:first-child strong { color: var(--bronze); }
.positioning-table tr.hl td.r em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--bronze);
}
.positioning-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 24px;
}

.principles {
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.principles .section-head { margin-bottom: 36px; }
.principles .display-h {
  font-size: clamp(42px, 5.2vw, 76px);
  margin-bottom: 0;
}
.principles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.principle {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  overflow: hidden;
}
.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.principle:hover {
  transform: translateY(-3px);
  border-color: var(--bronze);
  box-shadow: 0 12px 28px -16px oklch(0.20 0.013 60 / 0.22);
}
.principle:hover::before { transform: scaleX(1); }
.p-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--bronze);
}
.p-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--cream);
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.p-body p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
  max-width: 64ch;
}

.about-hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.about-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.032em;
  color: var(--cream);
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-hero-title em { font-style: italic; color: var(--bronze); }
.about-hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.about-hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 56ch;
  margin: 0;
}
.about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--bronze);
  padding: 8px 0;
  white-space: nowrap;
  transition: gap 0.25s ease, color 0.25s ease;
}
.about-hero-cta:hover { color: var(--bronze); gap: 18px; }
.about-hero-cta .arr { font-family: var(--serif); font-style: italic; font-size: 16px; }

.atelier {
  padding: clamp(120px, 16vh, 180px) 0 var(--pad-y);
}
.atelier-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: flex-start;
  margin-top: 24px;
}
.atelier-portrait {
  margin: 0;
  position: sticky;
  top: 120px;
}

.atelier-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin-top: 32px;
}
.atelier-row .atelier-portrait {
  position: static;
  margin: 0;
}
.atelier-row .atelier-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.founders-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.founder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.founder-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0;
}
.founder-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.founder-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  color: var(--cream);
  margin: 0;
}
.founder p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  margin: 0;
}
.atelier-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule-strong);
  filter: saturate(0.92) contrast(1.02);
}
.atelier-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.atelier-portrait .cap-l { color: var(--bronze); }
.atelier-bio { max-width: 60ch; }
.atelier-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 36px;
}
.atelier-bio p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-2);
  margin: 0 0 24px;
}
.atelier-sig {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sig-glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.sig-stop { color: var(--bronze); }
.sig-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.manifesto-essay {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.manifesto-essay .container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.manifesto-rail {
  position: sticky;
  top: 120px;
}
.manifesto-article {
  max-width: 64ch;
}
.manifesto-article .display-h { margin-bottom: 36px; }
.manifesto-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 36px;
}
.manifesto-article p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-2);
  margin: 0 0 24px;
  max-width: 60ch;
}
.manifesto-pull {
  margin: 40px 0;
  padding: 32px 36px;
  border-left: 2px solid var(--bronze);
  background: oklch(0.52 0.085 65 / 0.05);
}
.manifesto-pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -0.012em;
}
.manifesto-pull p em { color: var(--bronze); font-style: italic; }
.manifesto-pull footer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.toolkit-essay {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.toolkit-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}
.toolkit-col {
  padding: 40px 32px 32px 0;
  border-right: 1px solid var(--rule);
}
.toolkit-col:nth-child(2) { padding-left: 32px; padding-right: 32px; }
.toolkit-col:last-child { padding-left: 32px; padding-right: 0; border-right: 0; }
.toolkit-col-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 28px;
  font-weight: 500;
}
.toolkit-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.toolkit-dl dt {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.toolkit-dl dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream-2);
}

.pull-quote-sec {
  padding: var(--pad-y) 0;
  background: var(--ink-dark);
  color: oklch(0.92 0.018 80);
  position: relative;
  border-top: 0;
}
.pull-quote-sec::before,
.pull-quote-sec::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.52 0.085 65 / 0.7), transparent);
}
.pull-quote-sec::before { top: 0; }
.pull-quote-sec::after { bottom: 0; }
.pq-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: oklch(0.94 0.018 80);
  margin: 0 auto 40px;
  max-width: 24ch;
  text-align: center;
}
.pq-text em { color: oklch(0.72 0.10 60); font-style: italic; }
.pq-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.72 0.10 60);
  text-align: center;
}

.about-cta-sec {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--rule);
}
.about-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-cta-inner .eyebrow { justify-content: center; }
.about-cta-sub {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 56ch;
  margin: 0 auto 36px;
}

.legal-hero {
  padding: 180px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.legal-hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.legal-hero-meta .v-pill {
  padding: 6px 14px;
  border: 1px solid var(--rule-strong);
  color: var(--cream);
}

.legal-layout {
  padding: 80px 0 var(--pad-y);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--sans);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 16px;
}
.legal-toc-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.legal-toc a {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--cream-2);
  padding: 4px 0;
  transition: color 0.2s ease;
}
.legal-toc a:hover { color: var(--bronze); }
.legal-toc a .toc-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cream-3);
  flex: 0 0 24px;
  text-transform: uppercase;
}
.legal-toc-siblings {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-toc-siblings a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
}

.legal-body { max-width: 70ch; }
.legal-sec {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.legal-sec:last-child { border-bottom: 0; }
.legal-sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}
.legal-sec-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}
.legal-sec-t {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 0;
}
.legal-body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-2);
  margin: 0 0 18px;
}
.legal-body p strong { color: var(--cream); font-weight: 500; }
.legal-body p em { color: var(--bronze); font-style: italic; }
.legal-body a {
  color: var(--bronze);
  border-bottom: 1px solid oklch(0.52 0.085 65 / 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.legal-body a:hover { border-bottom-color: var(--bronze); }
.legal-body ul {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--bronze);
}
.legal-body ul li strong { color: var(--cream); font-weight: 500; }

.def-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 32px;
  margin: 16px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.def-list dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-top: 4px;
}
.def-list dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--cream-2);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-family: var(--sans);
  font-size: 14px;
}
.legal-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-weight: 500;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule-strong);
  background: oklch(0.20 0.013 60 / 0.04);
}
.legal-table td {
  padding: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--cream-2);
  vertical-align: top;
  line-height: 1.5;
}

.callout {
  background: oklch(0.52 0.085 65 / 0.06);
  border-left: 2px solid var(--bronze);
  padding: 22px 24px;
  margin: 18px 0 24px;
}
.callout-l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.contact-block {
  background: var(--ink-2);
  padding: 22px 28px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  margin: 18px 0 24px;
  border-left: 2px solid var(--bronze);
}

.placeholder {
  display: inline-block;
  padding: 1px 8px;
  background: oklch(0.20 0.013 60 / 0.08);
  border: 1px dashed var(--rule-strong);
  color: var(--cream-3);
  font-style: italic;
  font-size: 0.95em;
}

@media (max-width: 1100px) {
  .svc-block-head { grid-template-columns: 1fr; gap: 24px; }
  .tier-grid { grid-template-columns: 1fr; gap: 32px; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-list { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: 1fr; gap: 40px; }
  .positioning-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; }
  .legal-toc { position: static; max-height: none; }
  .toolkit-cols { grid-template-columns: 1fr; }
  .toolkit-col,
  .toolkit-col:nth-child(2),
  .toolkit-col:last-child {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .toolkit-col:last-child { border-bottom: 0; }
  .atelier-grid { grid-template-columns: 1fr; gap: 56px; }
  .atelier-portrait { position: static; max-width: 480px; }
  .atelier-row { grid-template-columns: 1fr; gap: 48px; }
  .atelier-row .atelier-portrait { max-width: 520px; margin: 0 auto; }
  .founders-stack { gap: 48px; }
  .manifesto-essay .container { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-rail { position: static; }
  .about-hero-foot { grid-template-columns: 1fr; gap: 32px; align-items: flex-start; }
  .tool:nth-child(odd) { padding-right: 0; }
}
@media (max-width: 800px) {
  .sub-hero { padding-top: 110px; padding-bottom: 56px; }
  .sub-hero-h { font-size: clamp(48px, 11vw, 80px); }
  .svc-block-from .from-v { font-size: 32px; }
  .addons-grid { grid-template-columns: 1fr; }
  .principles-list { grid-template-columns: 1fr; }
  .legal-hero { padding-top: 110px; padding-bottom: 48px; }
  .def-list { grid-template-columns: 1fr; gap: 4px 0; }
  .def-list dt { padding-top: 10px; }
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 10px 8px; }
  .about-hero { padding-top: 110px; padding-bottom: 56px; }
  .about-hero-title { font-size: clamp(44px, 12vw, 76px); }
  .manifesto-pull { padding: 24px 22px; }
  .pq-text { font-size: clamp(28px, 8vw, 44px); }

  .tier-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px var(--pad-x) 6px;
    margin: 0 calc(-1 * var(--pad-x));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tier-grid::-webkit-scrollbar { display: none; }
  .tier {
    flex: 0 0 calc(100% - 56px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-width: 0;
  }
  .tier:hover { transform: none; }
  .tier-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
  }
  .tier-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--rule-strong);
    background: var(--ink);
    color: var(--cream);
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.25s ease;
  }
  .tier-arrow:hover:not(:disabled) {
    border-color: var(--bronze);
    color: var(--bronze);
  }
  .tier-arrow:disabled {
    opacity: 0.25;
    cursor: default;
  }
  .tier-dots {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .tier-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: var(--rule-strong);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .tier-dot.on {
    background: var(--bronze);
    transform: scale(1.4);
  }
}

