/* ==========================================================================
   Indigo Lee — indigolee.ai
   Production stylesheet. Tokens are inlined from the design system
   (_ds/tokens/*.css) so the site loads one stylesheet, not six.
   Non-negotiables: border-radius 0 everywhere · 1px warm hairlines instead of
   boxes and shadows · one easing curve · Inter 300 body, never bold.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Base neutrals: warm cream */
  --cream-1: #f6f1e8;
  --cream-2: #efe8dc;
  --cream-accent: #efe6d6;
  --card: #fffdf8;

  /* Ink */
  --ink: #221c16;
  --muted: #6c6055;
  --muted-2: #988a7a;

  /* Brand indigo — deep near-black navy. Never #4f46e5. */
  --indigo-ink: #0B0433;
  --indigo-soft: #ebe8f1;
  --indigo-tint: #dcd7ea;
  --indigo-light: #b6bbd9;

  /* Warm dark */
  --dark: #221b14;
  --dark-2: #2c241b;
  --dark-line: #473b2e;

  /* Hairlines */
  --line: #e4d9c8;
  --line-soft: #ece3d5;

  /* Semantic */
  --bg: var(--cream-1);
  --bg-alt: var(--cream-2);

  /* Type */
  --font-display: 'Saldo', 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Space */
  --content-max: 1020px;
  --content-pad: 40px;
  --side: 300px;

  /* Effects */
  --radius: 0;
  --shadow-sm: 0 1px 2px rgba(34, 28, 22, .05);
  --shadow-card: 0 1px 2px rgba(34, 28, 22, .04), 0 34px 70px -34px rgba(34, 28, 22, .30);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: 200ms;
  --dur: 450ms;
  --dur-slow: 700ms;
  /* Square indigo halo, per the design system. The pale --indigo-soft ring
     alone is close to invisible on cream, so a solid indigo core carries the
     contrast and the halo keeps the intended look. Dark sections invert it. */
  --focus-ring: 0 0 0 2px var(--indigo-ink), 0 0 0 5px var(--indigo-soft);
  --focus-ring-dark: 0 0 0 2px var(--cream-accent), 0 0 0 5px rgba(239, 230, 214, .22);
}

/* Saldo is licensed and not supplied. Drop Saldo-Regular.woff2 /
   Saldo-Medium.woff2 / Saldo-Italic.woff2 into /assets/fonts/ to activate;
   until then font-display:swap renders the Marcellus fallback. */
@font-face { font-family: "Saldo"; src: url("../fonts/Saldo-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Saldo"; src: url("../fonts/Saldo-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Saldo"; src: url("../fonts/Saldo-Italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; }

a { color: var(--indigo-ink); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: pretty;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

em.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--indigo-ink);
}

/* Focus. Listed with enough specificity to beat component box-shadows
   (.btn--primary and .panel-card both set one), and never removed. */
:focus-visible,
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.door:focus-visible,
.cross:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 0;
}

/* On the warm-dark sections an indigo ring disappears; invert to cream. */
.section-dark a:focus-visible,
.section-dark button:focus-visible,
.section-dark .btn:focus-visible,
.footer a:focus-visible,
.door:focus-visible {
  box-shadow: var(--focus-ring-dark);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 22px;
  background: var(--indigo-ink);
  color: var(--cream-accent);
  font-size: 13px;
  letter-spacing: .02em;
}
.skip:focus { left: 0; color: var(--cream-accent); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Shared primitives ---------- */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--content-pad);
  padding-right: var(--content-pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  line-height: 1.4;
}
.eyebrow--sm { font-size: 10px; letter-spacing: .2em; }
.eyebrow--dark { color: var(--indigo-light); }

.ic { flex: none; }

.lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.h2 { font-size: clamp(30px, 3.2vw, 40px); line-height: 1.14; }

/* Buttons — square, sentence case, sliding arrow */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 15px 28px;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--lg { padding: 18px 34px; font-size: 14px; }
.btn .arw { display: inline-flex; transition: transform var(--dur) var(--ease); }
.btn:hover .arw, .btn:focus-visible .arw { transform: translateX(4px); }

.btn--primary {
  background: var(--indigo-ink);
  color: var(--cream-accent);
  border-color: var(--indigo-ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: #160d47;
  border-color: #160d47;
  color: var(--cream-accent);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: var(--indigo-ink);
  border-color: var(--indigo-ink);
  color: var(--cream-accent);
  transform: translateY(-1px);
}

.btn--ghost-dark {
  padding: 18px 30px;
  border: 1px solid var(--dark-line);
  color: var(--cream-accent);
  font-size: 13px;
}
.btn--ghost-dark:hover, .btn--ghost-dark:focus-visible {
  background: rgba(239, 230, 214, .06);
  color: var(--cream-accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Aurora — cinematic ambient background */
.aurora {
  position: absolute;
  inset: -10% -10% 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.blob--lav { background: radial-gradient(circle, rgba(150, 142, 190, .15), rgba(150, 142, 190, 0) 68%); }
.blob--lav-strong { background: radial-gradient(circle, rgba(150, 142, 190, .20), rgba(150, 142, 190, 0) 70%); }
.blob--cream { background: radial-gradient(circle, rgba(239, 230, 214, .9), rgba(239, 230, 214, 0) 70%); }

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(6%, -4%, 0) scale(1.12); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes floaty {
  0%   { transform: translateY(0) rotate(-1.5deg); }
  50%  { transform: translateY(-14px) rotate(.5deg); }
  100% { transform: translateY(0) rotate(-1.5deg); }
}
@keyframes beat {
  0%   { box-shadow: 0 0 0 0 rgba(11, 4, 51, .28); }
  70%  { box-shadow: 0 0 0 9px rgba(11, 4, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 4, 51, 0); }
}

/* Scroll reveal — JS adds .is-in. Fallbacks in site.js guarantee visibility. */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================================
   Shell — fixed sidebar (desktop) / frosted top bar + drawer (mobile)
   ========================================================================== */
.shell { display: flex; align-items: flex-start; min-height: 100vh; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--side);
  height: 100vh;
  background: var(--cream-1);
  border-right: 1px solid var(--line);
  padding: 44px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  overflow: hidden;
  z-index: 6;
}

.watermark {
  position: absolute;
  left: -34px;
  bottom: -96px;
  font-family: var(--font-display);
  font-size: 300px;
  line-height: .78;
  color: rgba(34, 28, 22, .038);
  pointer-events: none;
  user-select: none;
}

.wordmark {
  position: relative;
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -.01em;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.wordmark b { font-weight: 400; color: var(--indigo-ink); }
.wordmark:hover { color: var(--ink); }

.side-eyebrow { position: relative; margin-top: -24px; }

.nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); transform: translateX(5px); }
.nav .tick {
  display: block;
  width: 10px;
  height: 1px;
  background: var(--line);
  flex: none;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] .tick { width: 22px; background: var(--indigo-ink); }

.side-foot {
  position: relative;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.concierge {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.side-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
}
.side-contact a { color: var(--muted); }
.side-contact a:hover { color: var(--indigo-ink); }
.side-contact .copyline {
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .06em;
  margin-top: 8px;
}

.main {
  margin-left: var(--side);
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Mobile top bar + drawer — hidden on desktop */
.topbar { display: none; }
.drawer, .scrim { display: none; }

/* ==========================================================================
   Home
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 96px;
}
.hero .wrap { position: relative; z-index: 1; padding-top: 104px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
.pill .dot {
  width: 6px;
  height: 6px;
  background: var(--indigo-ink);
  flex: none;
  animation: beat 2.6s ease-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, .68fr);
  gap: 48px;
  align-items: end;
  margin-top: 40px;
}
.hero h1 {
  font-size: clamp(46px, 5.4vw, 70px);
  line-height: 1.03;
  letter-spacing: -.015em;
}
.hero-lead {
  max-width: 60ch;
  margin-top: 30px;
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--muted);
}
.hero .btn-row { margin-top: 38px; }
.plane {
  width: 100%;
  max-width: 320px;
  justify-self: end;
  filter: drop-shadow(0 26px 34px rgba(34, 28, 22, .18));
  animation: floaty 13s ease-in-out infinite;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 76px;
}
.trust > div { padding: 22px 26px 0; border-right: 1px solid var(--line-soft); }
.trust > div:first-child { padding-left: 0; }
.trust > div:last-child { border-right: 0; padding-right: 0; }
.trust-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo-ink);
}
.trust-head span { font-size: 13px; letter-spacing: .02em; color: var(--ink); }
.trust p { margin-top: 8px; font-size: 13px; line-height: 1.6; color: var(--muted-2); }

.practices-intro { padding-top: 0; padding-bottom: 30px; }
.practices-intro h2 { margin-top: 14px; max-width: 22ch; }
.practices-intro .lead { margin-top: 16px; }

/* The three doors — the signature device */
.doors {
  display: flex;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 44px;
  min-height: 440px;
}
.door {
  flex: 1;
  position: relative;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  overflow: hidden;
  color: var(--ink);
  transition: flex var(--dur-slow) var(--ease), background var(--dur-slow) var(--ease);
}
.door--re  { background: linear-gradient(160deg, #f3eee4, #e9e1d2); }
.door--con { background: linear-gradient(160deg, #edeaf1, #e0dcec); }
.door--ops { background: linear-gradient(160deg, #efe6d6, #e6dbc6); }

.door-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
}
.door-num { font-family: var(--font-display); font-size: 15px; color: var(--muted-2); }
.door-eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.door h3 { font-size: 30px; line-height: 1.14; margin-top: 12px; color: var(--ink); }
.door p { max-width: 44ch; margin-top: 14px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.door-enter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-ink);
  font-weight: 600;
}
.door-enter .ic { transition: transform var(--dur) var(--ease); }

/* Hover / focus: grow and invert to indigo — text must invert with it. */
.door:hover, .door:focus-visible {
  flex: 1.42;
  background: linear-gradient(160deg, #0B0433, #171049);
  color: var(--cream-accent);
}
.door:hover .door-top,
.door:hover h3,
.door:focus-visible .door-top,
.door:focus-visible h3 { color: var(--cream-accent); }
.door:hover .door-num,
.door:hover .door-eyebrow,
.door:hover p,
.door:focus-visible .door-num,
.door:focus-visible .door-eyebrow,
.door:focus-visible p { color: var(--indigo-light); }
.door:hover .door-enter,
.door:focus-visible .door-enter { color: var(--cream-accent); }
.door:hover .door-enter .ic,
.door:focus-visible .door-enter .ic { transform: translateX(4px); }

/* Approach — dark section with accordion */
.section-dark {
  position: relative;
  background: var(--dark);
  color: var(--cream-accent);
  overflow: hidden;
}
.section-dark .wrap { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream-accent); }
.section-dark .lead { color: var(--indigo-light); }

.approach { padding: 104px 0; }
.approach h2 { margin-top: 14px; max-width: 24ch; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.12; }
.approach .lead { margin-top: 16px; max-width: 60ch; line-height: 1.75; }

.acc-dark { display: flex; flex-direction: column; border-top: 1px solid var(--dark-line); margin-top: 52px; }
.acc-dark > div { border-bottom: 1px solid var(--dark-line); }

/* Heading wraps the button — the APG accordion pattern. The heading itself
   carries no visual weight; the spans inside the button do. */
.acc-h { margin: 0; font: inherit; letter-spacing: normal; }

.acc-dark-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 30px 4px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.acc-dark-head:hover { background: rgba(239, 230, 214, .04); }
.acc-step { font-family: var(--font-display); font-size: 15px; color: var(--indigo-light); }
.acc-title-col { display: block; }
.acc-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--cream-accent);
}
.acc-summary {
  display: block;
  margin-top: 8px;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--indigo-light);
}
.acc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--indigo-light);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
/* Plus becomes an x when the row is open — one glyph, rotated. */
.acc-glyph { transition: transform var(--dur) var(--ease); }
[aria-expanded="true"] .acc-glyph { transform: rotate(45deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease);
}
.acc-panel > .acc-inner { overflow: hidden; min-height: 0; }
.acc-panel[aria-hidden="false"] { grid-template-rows: 1fr; }

.acc-body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, .8fr);
  gap: 24px;
  padding: 4px 4px 38px;
}
.acc-detail { font-size: 15.5px; line-height: 1.8; color: var(--cream-accent); opacity: .86; max-width: 56ch; }
.acc-leave { border-left: 1px solid var(--dark-line); padding-left: 24px; }
.acc-leave ul { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.acc-leave li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cream-accent);
  opacity: .8;
  display: flex;
  gap: 9px;
}
.acc-leave li::before { content: "·"; color: var(--indigo-light); }

/* Engagement standards */
.standards-sec { padding: 104px 0 0; }
.standards-sec h2 { margin-top: 14px; max-width: 26ch; }
.grid-hair {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 44px;
}
.grid-hair--3 { grid-template-columns: repeat(3, 1fr); }
.grid-hair > * {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 28px;
  background: var(--card);
  transition: background .5s var(--ease);
}
.grid-hair > *:hover { background: #fff; }
.grid-hair .ic-wrap { color: var(--indigo-ink); }
.grid-hair h3 { font-size: 19px; line-height: 1.25; margin-top: 16px; }
.grid-hair p { margin-top: 10px; font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* Quote + investment teaser */
.quote-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .62fr);
  gap: 56px;
  align-items: start;
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.quote-mark { color: var(--indigo-tint); }
.pullquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 27px;
  line-height: 1.42;
  color: var(--ink);
  margin-top: 20px;
  max-width: 34ch;
}
.attrib {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.panel-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
}
.panel-card h3 { font-size: 24px; line-height: 1.2; margin-top: 14px; }
.panel-card p { margin-top: 12px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.panel-card .btn-row { margin-top: 22px; }

/* ==========================================================================
   Practice pages
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; padding-top: 88px; }
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}
.backlink:hover { color: var(--ink); }
.practice-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: var(--indigo-ink);
}
.practice-tag span {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.page-hero h1 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-top: 22px;
  max-width: 24ch;
}
.page-hero .lead {
  max-width: 62ch;
  margin-top: 26px;
  font-size: 17.5px;
  line-height: 1.75;
}
.page-hero .btn-row { margin-top: 36px; padding-bottom: 88px; }

.section-alt { border-top: 1px solid var(--line); background: var(--bg-alt); }
.section-plain { border-top: 1px solid var(--line); }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 72px 0; }

.sec-head h2 { margin-top: 14px; max-width: 26ch; font-size: clamp(28px, 3vw, 38px); line-height: 1.14; }
.sec-head .lead { margin-top: 14px; font-size: 16px; max-width: 60ch; }

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 44px;
}
.svc {
  background: var(--card);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--indigo-ink);
}
.svc-num { font-family: var(--font-display); font-size: 14px; color: var(--muted-2); }
.svc h3 { font-size: 22px; line-height: 1.24; margin-top: 20px; }
.svc p { margin: 12px 0 20px; font-size: 14px; line-height: 1.72; color: var(--muted); }
.svc-payoff {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink);
}

/* Catalog accordion (light) */
.acc-light { border-top: 1px solid var(--line); margin-top: 40px; }
.acc-light > div { border-bottom: 1px solid var(--line); }
.acc-light-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 26px 4px;
  cursor: pointer;
  transition: padding-left var(--dur) var(--ease);
}
.acc-light-head:hover { padding-left: 12px; }
.acc-title-light {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}
.acc-light-head .acc-glyph-wrap { color: var(--indigo-ink); flex: none; }
.acc-list {
  padding: 0 4px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 74ch;
}
.acc-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.acc-list li::before { content: "·"; color: var(--indigo-ink); }

.footnote { margin-top: 34px; font-size: 13.5px; line-height: 1.7; color: var(--muted-2); max-width: 70ch; }

.cross-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 26px;
}
.cross {
  background: var(--card);
  padding: 30px;
  display: block;
  transition: background .5s var(--ease);
}
.cross:hover { background: #fff; }
.cross-head { display: flex; align-items: center; gap: 12px; color: var(--indigo-ink); }
.cross-head h3 { font-size: 21px; color: var(--ink); }
.cross p { margin-top: 12px; font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ==========================================================================
   Investment
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tier {
  background: var(--card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tier:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.tier-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tier-num { font-family: var(--font-display); font-size: 14px; color: var(--muted-2); }
.tier h3 { font-size: 26px; line-height: 1.18; margin-top: 18px; }
.tier > p { margin-top: 12px; font-size: 14px; line-height: 1.72; color: var(--muted); }
.price {
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.price-range {
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -.01em;
  color: var(--indigo-ink);
  line-height: 1.15;
}
.price-unit {
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tier ul { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.tier li { display: flex; gap: 11px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.tier li::before { content: "·"; color: var(--indigo-ink); }
.tier-foot {
  margin: auto 0 0;
  padding-top: 22px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

/* Copy lengths differ per tier, which leaves the price bands ragged across the
   row. Subgrid locks each band to a shared row so the three prices line up.
   Falls back to the plain flex column where subgrid is unavailable. */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 761px) {
    .tiers { grid-auto-rows: min-content; }
    .tier {
      display: grid;
      grid-row: span 6;
      grid-template-rows: subgrid;
      align-content: start;
    }
    .tier h3 { margin-top: 18px; }
    .tier > p { margin-top: 12px; }
    .tier-foot { margin: 0; align-self: end; }
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.split--ruled { padding-top: 56px; border-top: 1px solid var(--line); }
.split h2 { margin-top: 14px; max-width: 22ch; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.16; }
.split-copy { margin-top: 16px; font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 44ch; }

.pricelist { border-top: 1px solid var(--line); }
.pricelist-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.pricelist-row h3 { font-size: 20px; }
.pricelist-row p { margin-top: 7px; font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 48ch; }
.pricelist-range {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--indigo-ink);
  white-space: nowrap;
}
.pricelist + .microcopy, .factors + .microcopy { margin-top: 22px; }
.microcopy { font-size: 13px; line-height: 1.7; color: var(--muted-2); max-width: 74ch; }

.factors { border-top: 1px solid var(--line); }
.factor {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.factor-num { font-family: var(--font-display); font-size: 14px; color: var(--muted-2); }
.factor h3 { font-size: 20px; }
.factor p { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ==========================================================================
   Our Story
   ========================================================================== */
.beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.belief { background: var(--card); padding: 34px 30px; }
.belief h2 { font-size: 23px; line-height: 1.2; margin-top: 16px; }
.belief p { margin-top: 12px; font-size: 14px; line-height: 1.75; color: var(--muted); }

.note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
  gap: 64px;
  align-items: start;
}
.note-statement {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  margin-top: 24px;
  max-width: 36ch;
}
.note-body {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--cream-accent);
  opacity: .84;
  max-width: 56ch;
}
.note-attrib {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-light);
  font-weight: 600;
}
.who-panel { border: 1px solid var(--dark-line); padding: 30px 28px; background: var(--dark-2); }
.who-panel ul { margin-top: 18px; display: flex; flex-direction: column; gap: 13px; }
.who-panel li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-accent);
  opacity: .86;
}
.who-panel li::before { content: "·"; color: var(--indigo-light); }

/* ==========================================================================
   Shared: final CTA + footer
   ========================================================================== */
.cta { border-top: 1px solid var(--dark-line); }
.cta .wrap { padding-top: 104px; padding-bottom: 104px; }
.cta h2 { margin-top: 16px; max-width: 22ch; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.1; }
.cta .lead { margin-top: 20px; max-width: 58ch; line-height: 1.75; }
.cta .btn-row { margin-top: 36px; }

.footer {
  background: var(--dark-2);
  color: var(--indigo-light);
  border-top: 1px solid var(--dark-line);
}
.footer .wrap {
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer .wordmark { font-size: 20px; color: var(--cream-accent); }
.footer .wordmark b { color: var(--indigo-light); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links a { color: var(--indigo-light); }
.footer-links a:hover { color: var(--cream-accent); }
.footer-copy { font-size: 11.5px; color: var(--indigo-light); opacity: .7; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound .wrap { padding-top: 140px; padding-bottom: 120px; }
.notfound h1 { font-size: clamp(40px, 4.6vw, 60px); line-height: 1.06; margin-top: 22px; max-width: 20ch; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet: drop the sidebar for a frosted top bar + drawer. */
@media (max-width: 1080px) {
  :root { --content-pad: 32px; }

  .sidebar { display: none; }
  .main { margin-left: 0; }

  .topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--content-pad);
    background: rgba(246, 241, 232, .82);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    backdrop-filter: blur(12px) saturate(1.4);
    border-bottom: 1px solid var(--line);
  }
  .topbar .wordmark { font-size: 23px; }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px 10px 14px;
    color: var(--ink);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
  }

  body { padding-top: 64px; }

  .scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(34, 28, 22, .38);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
  }
  .drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    z-index: 26;
    flex-direction: column;
    gap: 28px;
    padding: 24px 30px 34px;
    background: var(--cream-1);
    border-left: 1px solid var(--line);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
  }
  .drawer-top { display: flex; align-items: center; justify-content: space-between; }
  .drawer .nav { margin-top: 0; }
  .drawer .nav a { font-size: 22px; padding: 11px 0; }
  .drawer .side-foot { margin-top: auto; gap: 18px; }

  body.drawer-open { overflow: hidden; }
  body.drawer-open .scrim { opacity: 1; visibility: visible; }
  body.drawer-open .drawer { transform: none; visibility: visible; }

  /* Doors stop growing on hover once they are stacked or touch-driven. */
  .doors { flex-direction: column; min-height: 0; }
  .door { min-height: 0; padding: 38px 32px; }
  .door:hover, .door:focus-visible { flex: 1; }
  .door h3 { font-size: 27px; }

  .hero .wrap { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .plane { justify-self: start; max-width: 260px; }
  .trust { margin-top: 56px; }
}

/* Phone */
@media (max-width: 760px) {
  :root { --content-pad: 22px; }

  .hero { padding-bottom: 64px; }
  .hero .wrap { padding-top: 56px; }
  .hero-lead { font-size: 17px; margin-top: 24px; }
  .hero .btn-row { margin-top: 30px; }
  .btn, .btn--lg { width: 100%; }
  .btn-row { gap: 12px; }
  .plane { max-width: 210px; }

  .trust { grid-template-columns: 1fr; margin-top: 48px; }
  .trust > div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .trust > div:last-child { border-bottom: 0; padding-bottom: 0; }

  .approach { padding: 72px 0; }
  .acc-dark { margin-top: 36px; }
  .acc-dark-head { grid-template-columns: 40px 1fr auto; gap: 14px; padding: 24px 0; }
  .acc-title { font-size: 22px; }
  .acc-summary { font-size: 16px; }
  .acc-meta { flex-direction: column-reverse; align-items: flex-end; gap: 10px; font-size: 9.5px; }
  .acc-body { grid-template-columns: 1fr; gap: 24px; padding: 0 0 30px; }
  .acc-body > .acc-spacer { display: none; }
  .acc-leave { border-left: 0; border-top: 1px solid var(--dark-line); padding-left: 0; padding-top: 20px; }

  .standards-sec { padding-top: 72px; }
  .grid-hair--3 { grid-template-columns: 1fr; }
  .grid-hair > * { padding: 26px 22px; }

  .quote-block { grid-template-columns: 1fr; gap: 40px; margin-top: 64px; padding-top: 44px; }
  .pullquote { font-size: 23px; }
  .panel-card { padding: 28px 24px; }

  .page-hero .wrap { padding-top: 56px; }
  .page-hero .btn-row { padding-bottom: 64px; }
  .practice-tag { margin-top: 30px; }

  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 56px 0; }
  .cards-2 { grid-template-columns: 1fr; margin-top: 36px; }
  .svc { padding: 28px 24px; }
  .cross-grid { grid-template-columns: 1fr; }
  .cross { padding: 26px 24px; }

  .acc-light-head { padding: 22px 0; gap: 16px; }
  .acc-light-head:hover { padding-left: 0; }
  .acc-title-light { font-size: 19px; }

  .tiers { grid-template-columns: 1fr; }
  .tier { padding: 30px 24px; }
  .split, .note-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--ruled { padding-top: 40px; }
  .split-copy, .pricelist-row p { max-width: none; }
  .pricelist-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .beliefs { grid-template-columns: 1fr; }
  .belief { padding: 28px 24px; }
  .note-statement { font-size: 22px; }
  .who-panel { padding: 26px 24px; }

  .cta .wrap { padding-top: 72px; padding-bottom: 72px; }
  .footer .wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px 22px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .plane, .pill .dot { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .acc-panel { transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .sidebar, .topbar, .drawer, .scrim, .aurora, .cta, .skip { display: none !important; }
  .main { margin-left: 0; }
  body { background: #fff; padding-top: 0; }
  .acc-panel { grid-template-rows: 1fr !important; }
}
