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

:root {
  --slate:      #1C2B3A;
  --slate-mid:  #2E4057;
  --slate-soft: #3D5470;
  --off-white:  #F7F4EF;
  --cream:      #FBFAF6;
  --copper:     #C47A3A;
  --copper-light:#D9914F;
  --copper-deep:#A8632A;
  --gray:       #8A8F9A;
  --gray-light: #E8E5DF;
  --white:      #FFFFFF;
  --body-max:   1160px;
  --narrow-max: 740px;
  --nav-h:      4.25rem;
  --nav-break:  1140px;
}

.anchor-alias {
  display: block; height: 0; margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h); visibility: hidden; pointer-events: none;
}
[id="lens-individual"],
[id="lens-group"],
[id="lens-organization"] { scroll-margin-top: calc(var(--nav-h) + 1rem); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28, 43, 58, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,122,58,0.12);
}
.nav-inner {
  max-width: var(--body-max);
  margin: 0 auto;
  padding: 0.85rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: var(--nav-h);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--off-white); letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.25;
  margin-right: auto;
}
.nav-logo-full span { color: var(--copper); }
.nav-links {
  display: flex;
  gap: clamp(0.55rem, 1vw, 1.25rem);
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
  justify-content: flex-end;
}
.nav-links > li { position: relative; flex-shrink: 0; }
.nav-links a {
  color: rgba(247,244,239,0.7); text-decoration: none;
  font-size: clamp(0.68rem, 0.72vw, 0.8rem); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }
.nav-cta {
  background: var(--copper); color: var(--white) !important;
  padding: 0.5rem 1rem; border-radius: 2px;
  transition: background 0.2s !important;
  display: inline-block;
}
.nav-cta:hover { background: var(--copper-light) !important; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 2.75rem; height: 2.75rem;
  padding: 0.4rem; margin-left: 0.5rem;
  flex-shrink: 0; border-radius: 2px;
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--off-white); transition: 0.2s;
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Services submenu — desktop */
.nav-item--has-sub > .nav-parent { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-item--has-sub > .nav-parent::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid rgba(247,244,239,0.45);
  transition: transform 0.2s;
}
.nav-item--has-sub:hover > .nav-parent::after,
.nav-item--has-sub.open > .nav-parent::after { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: calc(100% + 0.85rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px; list-style: none;
  background: var(--slate-mid);
  border: 1px solid rgba(196,122,58,0.18);
  border-radius: 4px; padding: 0.55rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 110;
}
.nav-item--has-sub:hover .nav-sub,
.nav-item--has-sub.open .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub a {
  display: block; padding: 0.55rem 1.25rem;
  font-size: 0.82rem; letter-spacing: 0.02em;
  text-transform: none; white-space: nowrap;
}
.nav-sub a:hover { background: rgba(196,122,58,0.12); }

/* Compact link labels — only on tight desktop widths */
.nav-label-short { display: none; }
@media (min-width: 1141px) and (max-width: 1280px) {
  .nav-label-full { display: none; }
  .nav-label-short { display: inline; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,122,58,0.10), transparent 55%),
    var(--slate);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4.5rem) 2.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.hero-inner { max-width: var(--body-max); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 1.9rem; display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2.2rem; height: 1px; background: var(--copper); }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  font-weight: 700; line-height: 1.08;
  color: var(--off-white); max-width: 880px; margin-bottom: 1.7rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--copper-light); }
.hero-sub {
  font-size: 1.16rem; font-weight: 300; color: rgba(247,244,239,0.62);
  max-width: 600px; line-height: 1.78; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--copper); color: var(--white);
  padding: 0.9rem 2.1rem; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s; display: inline-block;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(247,244,239,0.22); color: var(--off-white);
  padding: 0.9rem 2.1rem; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--copper); background: rgba(196,122,58,0.08); }
.btn-secondary {
  background: var(--slate); color: var(--off-white);
  padding: 0.9rem 2.1rem; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-secondary:hover { background: var(--copper); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--gray-light); color: var(--slate);
  padding: 0.9rem 2.1rem; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
  background: var(--white);
}
.btn-outline:hover { border-color: var(--copper); background: var(--cream); }

.hero-audiences,
.hero-lenses {
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(247,244,239,0.1);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero-aud,
.hero-lens {
  font-size: 0.8rem; color: var(--gray);
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(247,244,239,0.12);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  flex: 1 1 160px;
  max-width: 240px;
}
.hero-aud:hover,
.hero-lens:hover {
  border-color: rgba(196,122,58,0.45);
  background: rgba(247,244,239,0.04);
}
.hero-aud strong,
.hero-lens strong { color: rgba(247,244,239,0.9); font-weight: 500; display: block; margin-bottom: 0.25rem; }

/* Page hero (inner pages) */
.page-hero {
  min-height: auto;
  padding: calc(var(--nav-h) + 3.5rem) 2.5rem 4.5rem;
}
.page-hero .hero-headline { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 720px; }
.page-hero .hero-sub { margin-bottom: 2rem; max-width: 560px; }

/* ── THESIS STRIP ── */
.thesis {
  background: var(--white); padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.thesis-inner {
  max-width: var(--body-max); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 2fr; gap: 4rem; align-items: start;
}
.label-tag {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 0.8rem;
}
.thesis-left h2 {
  font-family: 'Playfair Display', serif; font-size: 1.95rem;
  font-weight: 600; line-height: 1.25; color: var(--slate);
}
.thesis-right p {
  font-size: 1.06rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.8; margin-bottom: 1.1rem;
}
.thesis-right p:last-child { margin-bottom: 0; }
.thesis-right strong { font-weight: 600; color: var(--slate); }
.mission-grid {
  max-width: var(--body-max); margin: 3.5rem auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.mission-cell {
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 1.5rem 1.4rem;
}
.mission-cell h3 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.55rem;
}
.mission-cell p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.7; margin: 0;
}

/* ── SERVICES ── */
.services { padding: 6rem 2.5rem 3rem; background: var(--off-white); }
.section-head { max-width: var(--body-max); margin: 0 auto 3.5rem; }
.section-eyebrow {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 700;
  line-height: 1.18; color: var(--slate); max-width: 600px;
}
.section-intro {
  font-size: 1.05rem; font-weight: 300; color: var(--slate-mid);
  max-width: 620px; margin-top: 1.1rem; line-height: 1.75;
}

.service-block {
  max-width: var(--body-max); margin: 0 auto 1.5rem;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; overflow: hidden;
  display: grid; grid-template-columns: 56px 1fr;
  transition: box-shadow 0.3s, transform 0.25s, border-color 0.3s;
}
.service-block:hover {
  box-shadow: 0 14px 44px rgba(28,43,58,0.1);
  transform: translateY(-2px); border-color: transparent;
}
.service-rail {
  background: var(--slate); display: flex; align-items: flex-start;
  justify-content: center; padding-top: 2.6rem;
  font-family: 'Playfair Display', serif; color: var(--copper);
  font-size: 1.1rem; font-weight: 600;
  writing-mode: vertical-rl; text-orientation: mixed;
  letter-spacing: 0.2em; transition: background 0.3s;
}
.service-block:hover .service-rail { background: var(--slate-mid); }
.service-block--primary {
  border-color: rgba(196,122,58,0.35);
  box-shadow: 0 8px 32px rgba(28,43,58,0.06);
}
.service-block--primary .service-rail { background: var(--copper-deep); color: var(--off-white); }
.service-block--primary:hover .service-rail { background: var(--copper); }
.service-primary-label {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper-deep); margin-bottom: 0.5rem;
}
.service-tier-label {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.5rem;
}
.service-body { padding: 2.6rem 2.8rem; }
.service-grid-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }
.service-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 0.6rem;
}
.service-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 600; color: var(--slate); margin-bottom: 1rem; line-height: 1.25;
}
.service-desc {
  font-size: 0.97rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.8; margin-bottom: 1.2rem;
}
.service-who {
  font-size: 0.84rem; color: var(--copper-deep);
  font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.service-who span { color: var(--gray); font-weight: 400; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.88rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(168,99,42,0.35);
  padding-bottom: 2px; transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 0.7rem; color: var(--copper); }
.service-detail { list-style: none; }
.service-detail-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 0.9rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail li {
  font-size: 0.88rem; color: var(--slate-mid);
  padding: 0.42rem 0 0.42rem 1.3rem; position: relative; line-height: 1.5;
}
.service-detail li::before {
  content: '→'; position: absolute; left: 0; top: 0.42rem;
  color: var(--copper); font-size: 0.8rem;
}

/* ── PAGE CONTENT ── */
.page-content { padding: 5rem 2.5rem; background: var(--off-white); }
.page-content--white { background: var(--white); border-top: 1px solid var(--gray-light); }
.page-content-inner { max-width: var(--body-max); margin: 0 auto; }

.track-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.5rem;
}
.track-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 2.4rem 2.2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.track-card:hover {
  box-shadow: 0 12px 36px rgba(28,43,58,0.08);
  border-color: transparent;
}
.track-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--slate); margin-bottom: 0.9rem; line-height: 1.3;
}
.track-card p {
  font-size: 0.95rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.75; margin-bottom: 1rem;
}
.track-card ul { list-style: none; margin-bottom: 1.5rem; }
.track-card li {
  font-size: 0.88rem; color: var(--slate-mid);
  padding: 0.35rem 0 0.35rem 1.2rem; position: relative; line-height: 1.5;
}
.track-card li::before {
  content: '→'; position: absolute; left: 0; color: var(--copper); font-size: 0.8rem;
}
.track-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 2rem;
}
.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--slate);
  margin-bottom: 0.65rem;
}
.feature-card p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid); line-height: 1.7;
}

.content-block { max-width: var(--narrow-max); margin: 0 auto; }
.content-block p {
  font-size: 1.02rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.85; margin-bottom: 1.1rem;
}
.content-block p:last-child { margin-bottom: 0; }

/* ── FRAMEWORK / PILLARS ── */
.framework { padding: 6rem 2.5rem; background: var(--cream); border-top: 1px solid var(--gray-light); border-bottom: 3px solid rgba(196,122,58,0.2); }
.framework-inner { max-width: var(--body-max); margin: 0 auto; }
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 2.2rem 2rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.25s;
}
a.pillar-card {
  display: block; text-decoration: none; color: inherit; cursor: pointer;
}
a.pillar-card:hover {
  box-shadow: 0 12px 36px rgba(28,43,58,0.08);
  border-color: rgba(196,122,58,0.35); transform: translateY(-2px);
}
.pillar-card:not(a):hover {
  box-shadow: 0 12px 36px rgba(28,43,58,0.08);
  border-color: transparent; transform: translateY(-2px);
}
.pillar-link {
  display: inline-block; margin-top: 1.1rem;
  font-size: 0.84rem; color: var(--copper-deep); font-weight: 500;
  letter-spacing: 0.02em;
}
a.pillar-card:hover .pillar-link { color: var(--copper); }
.pillar-num {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 600; color: var(--copper); letter-spacing: 0.12em;
  margin-bottom: 0;
}
.pillar-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap;
}
.pillar-depth {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--copper-deep);
  background: rgba(196,122,58,0.1); padding: 0.25rem 0.5rem; border-radius: 2px;
}
.pillar-outcome {
  font-size: 0.84rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.65; margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}
.pillar-outcome strong { font-weight: 600; color: var(--slate); }
.framework-foot {
  margin-top: 2.5rem; text-align: center;
  font-size: 0.95rem; color: var(--slate-mid);
}
.framework-foot a {
  color: var(--copper-deep); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(168,99,42,0.3);
}
.framework-foot a:hover { color: var(--copper); }
.pillar-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.75rem; line-height: 1.3;
}
.pillar-card p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.75; margin-bottom: 0.85rem;
}
.pillar-card p:last-child { margin-bottom: 0; }
.pillar-card ul { list-style: none; margin-top: 0.75rem; }
.pillar-card li {
  font-size: 0.84rem; color: var(--slate-mid);
  padding: 0.3rem 0 0.3rem 1.15rem; position: relative; line-height: 1.5;
}
.pillar-card li::before {
  content: '→'; position: absolute; left: 0; color: var(--copper); font-size: 0.75rem;
}
.lens-nav {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem;
}
.lens-nav a {
  font-size: 0.82rem; padding: 0.45rem 0.85rem;
  border: 1px solid var(--gray-light); border-radius: 2px;
  color: var(--slate-mid); text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.lens-nav a:hover { border-color: var(--copper); color: var(--slate); }
.lens-nav a.is-current {
  border-color: var(--copper); color: var(--slate); background: var(--cream);
}
.lens-concept-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
}
.lens-concept {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 1.75rem 1.5rem;
}
.lens-concept h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--slate); margin-bottom: 0.65rem; line-height: 1.35;
}
.lens-concept p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid); line-height: 1.75;
}
@media (max-width: 768px) {
  .lens-concept-grid { grid-template-columns: 1fr; }
}
.framework-cta { margin-top: 2.5rem; text-align: center; }
.feature-grid--three { grid-template-columns: repeat(3, 1fr); }
.instrument-card .service-tag { margin-bottom: 0.5rem; }

/* ── CLINICAL ANCHOR (IPD link) ── */
.anchor {
  background: var(--slate); padding: 5.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.anchor::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.anchor-inner {
  max-width: var(--narrow-max); margin: 0 auto; text-align: center;
  position: relative;
}
.anchor .section-eyebrow { display: inline-block; }
.anchor h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600;
  color: var(--off-white); line-height: 1.28; margin-bottom: 1.4rem;
}
.anchor h2 em { font-style: italic; color: var(--copper-light); }
.anchor p {
  font-size: 1.05rem; font-weight: 300; color: rgba(247,244,239,0.6);
  line-height: 1.8; margin-bottom: 1.1rem;
}
.anchor-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.5rem; color: var(--copper-light);
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em; border-bottom: 1px solid rgba(217,145,79,0.4);
  padding-bottom: 3px; transition: gap 0.2s, color 0.2s;
}
.anchor-link:hover { gap: 0.9rem; color: var(--copper); }

/* ── FOUNDER ── */
.founder { background: var(--cream); padding: 6rem 2.5rem; border-top: 1px solid var(--gray-light); }
.founder-inner {
  max-width: var(--body-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.founder-left .section-title { color: var(--slate); }
.founder-left p {
  font-size: 1rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.85; margin-top: 1.3rem;
}
.founder-left .inline-link {
  color: var(--copper-deep); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(168,99,42,0.3);
}
.founder-left .inline-link:hover { color: var(--copper); }
.founder-right { display: flex; flex-direction: column; gap: 1.8rem; padding-top: 0.4rem; }
.founder-point { border-left: 2px solid var(--copper); padding-left: 1.5rem; }
.founder-point h4 {
  font-family: 'Playfair Display', serif; font-size: 1.08rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.4rem;
}
.founder-point p {
  font-size: 0.9rem; font-weight: 300; color: var(--slate-mid); line-height: 1.7;
}

/* ── PROCESS ── */
.process { background: var(--white); padding: 6rem 2.5rem; border-top: 1px solid var(--gray-light); }
.process-inner { max-width: var(--body-max); margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 22px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(90deg, var(--copper), var(--gray-light), var(--copper));
}
.process-step { text-align: center; padding: 0 1.4rem; position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--slate); color: var(--copper);
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
}
.step-title {
  font-family: 'Playfair Display', serif; font-size: 1.02rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; font-weight: 300; }

/* ── CTA ── */
.cta-section {
  background: var(--off-white); padding: 6rem 2.5rem;
  text-align: center; border-top: 1px solid var(--gray-light);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .section-eyebrow { display: flex; justify-content: center; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  color: var(--slate); line-height: 1.22; margin-bottom: 1rem;
}
.cta-inner > p {
  font-size: 1rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.cta-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 520px; margin: 0 auto; }
.cta-form-row { display: flex; gap: 0.75rem; }
.cta-form select {
  width: 100%; padding: 0.9rem 1.25rem; border: 1px solid var(--gray-light);
  border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: var(--white); color: var(--slate); outline: none; transition: border-color 0.2s;
}
.cta-form select:focus { border-color: var(--copper); }
.cta-form input,
.cta-form textarea {
  flex: 1; padding: 0.9rem 1.25rem; border: 1px solid var(--gray-light);
  border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: var(--white); color: var(--slate); outline: none; transition: border-color 0.2s;
}
.cta-form textarea { min-height: 88px; resize: vertical; }
.cta-form input:focus,
.cta-form textarea:focus { border-color: var(--copper); }
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--gray); }
.cta-form button {
  background: var(--slate); color: var(--off-white);
  padding: 0.9rem 1.6rem; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.cta-form button:hover { background: var(--copper); }
.cta-note { font-size: 0.78rem; color: var(--gray); margin-top: 0.85rem; }
.cta-alt {
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--gray-light);
  font-size: 0.9rem; color: var(--slate-mid);
}
.cta-alt a { color: var(--copper-deep); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(168,99,42,0.3); }
.cta-alt a:hover { color: var(--copper); }

.inline-link {
  color: var(--copper-deep); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(168,99,42,0.3);
}
.inline-link:hover { color: var(--copper); }

/* ── METHODOLOGY ── */
.methodology {
  padding: 6rem 2.5rem; background: var(--white);
  border-top: 1px solid var(--gray-light);
}
.methodology-inner { max-width: var(--body-max); margin: 0 auto; }
.method-loop {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.method-step {
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 1.35rem 1.15rem;
}
.method-step-num {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--copper); margin-bottom: 0.5rem;
}
.method-step h3 {
  font-family: 'Playfair Display', serif; font-size: 0.98rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.45rem; line-height: 1.3;
}
.method-step p {
  font-size: 0.82rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.6; margin: 0;
}
.method-bridge {
  margin-top: 2.5rem; padding: 1.75rem 1.6rem;
  background: var(--slate); border-radius: 5px;
}
.method-bridge p {
  font-size: 1rem; font-weight: 300; color: rgba(247,244,239,0.82);
  line-height: 1.8; margin: 0;
}
.method-bridge strong { color: var(--off-white); font-weight: 600; }
.tools-matrix {
  margin-top: 2.5rem; border: 1px solid var(--gray-light);
  border-radius: 5px; overflow: hidden; background: var(--off-white);
}
.tools-matrix-head,
.tools-row {
  display: grid; grid-template-columns: 0.9fr 1.2fr 1.4fr 1fr;
  gap: 1rem; align-items: start; padding: 1rem 1.25rem;
}
.tools-matrix-head {
  background: var(--cream); border-bottom: 1px solid var(--gray-light);
}
.tools-col-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
}
.tools-row { border-bottom: 1px solid var(--gray-light); background: var(--white); }
.tools-row:last-child { border-bottom: none; }
.tools-row--lane { background: var(--cream); }
.tools-lens {
  font-family: 'Playfair Display', serif; font-size: 0.92rem;
  font-weight: 600; color: var(--slate); line-height: 1.35;
}
.tools-app {
  font-size: 0.88rem; font-weight: 300; color: var(--slate-mid); line-height: 1.55;
}
.tools-product {
  display: flex; flex-direction: column; gap: 0.35rem;
}
.tools-product a {
  font-size: 0.86rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none;
}
.tools-product a:hover { color: var(--copper); }
.tools-product-note {
  font-size: 0.82rem; font-weight: 300; color: var(--slate-mid);
}
.status-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.35rem 0.55rem; border-radius: 2px;
  line-height: 1.35;
}
.status-pill--live { background: rgba(196,122,58,0.15); color: var(--copper-deep); }
.status-pill--strong { background: rgba(28,43,58,0.08); color: var(--slate); }
.status-pill--developing { background: var(--cream); color: var(--slate-mid); border: 1px solid var(--gray-light); }
.method-foot {
  margin-top: 1.75rem; font-size: 0.95rem; font-weight: 300;
  color: var(--slate-mid); line-height: 1.75; max-width: 780px;
}
.method-foot a {
  display: inline-block; margin-top: 0.5rem;
  color: var(--copper-deep); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(168,99,42,0.3);
}
.method-foot a:hover { color: var(--copper); }
.method-proof {
  margin-top: 1.25rem; padding: 1.5rem 1.4rem;
  background: var(--cream); border: 1px solid rgba(196,122,58,0.25);
  border-radius: 5px; max-width: 820px;
}
.method-proof h3 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.55rem;
}
.method-proof p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.75; margin-bottom: 0.85rem;
}
.method-proof a {
  font-size: 0.86rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none; border-bottom: 1px solid rgba(168,99,42,0.3);
}
.method-proof a:hover { color: var(--copper); }

/* ── ENGAGEMENTS (homepage) ── */
.engagements {
  padding: 6rem 2.5rem; background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}
.engagements-inner { max-width: var(--body-max); margin: 0 auto; }
.engagement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.engagement-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 1.75rem 1.5rem;
}
.engagement-lens {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 0.65rem;
}
.engagement-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.65rem; line-height: 1.3;
}
.engagement-card p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.7; margin-bottom: 1.1rem;
}
.engagement-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.86rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.engagement-link:hover { gap: 0.55rem; color: var(--copper); }
.engagement-link--secondary {
  display: block; margin-top: 0.5rem; font-size: 0.82rem;
  color: var(--slate-mid);
}
.engagement-link--secondary:hover { color: var(--copper); }
.engagement-support {
  margin-top: 2.5rem; padding: 1.75rem 1.5rem;
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 5px; max-width: 820px;
}
.engagement-support h3 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 600; color: var(--slate); margin-bottom: 0.65rem;
}
.engagement-support p {
  font-size: 0.92rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.75; margin-bottom: 1rem;
}
.engagement-support-links {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
}
.engagement-support-links a {
  font-size: 0.86rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none; border-bottom: 1px solid rgba(168,99,42,0.25);
}
.engagement-support-links a:hover { color: var(--copper); }

/* ── START HERE / PATH FINDER ── */
.start-here {
  padding: 5.5rem 2.5rem; background: var(--white);
  border-top: 1px solid var(--gray-light);
}
.start-here-inner { max-width: var(--body-max); margin: 0 auto; }
.path-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  margin-top: 2.5rem;
}
.path-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 5px; padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
}
.path-card:hover {
  border-color: rgba(196,122,58,0.4);
  box-shadow: 0 10px 28px rgba(28,43,58,0.07);
  transform: translateY(-2px);
}
.path-card-num {
  font-family: 'Playfair Display', serif; font-size: 0.85rem;
  font-weight: 600; color: var(--copper); letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.path-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  color: var(--slate); margin-bottom: 0.5rem; line-height: 1.3;
}
.path-card p {
  font-size: 0.9rem; font-weight: 300; color: var(--slate-mid);
  line-height: 1.65; margin-bottom: 0.75rem;
}
.path-card-cta {
  font-size: 0.82rem; font-weight: 500; color: var(--copper-deep);
}
.path-card:hover .path-card-cta { color: var(--copper); }
.org-paths {
  margin-top: 2.5rem; padding: 1.75rem 1.5rem;
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 5px;
}
.org-paths h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--slate); margin-bottom: 0.5rem;
}
.org-paths > p {
  font-size: 0.9rem; color: var(--slate-mid); margin-bottom: 1.25rem; line-height: 1.65;
}
.org-path-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
}
.org-path-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--copper-deep);
  text-decoration: none; border-bottom: 1px solid rgba(168,99,42,0.25);
}
.org-path-links a:hover { color: var(--copper); }
@media (max-width: 768px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* ── PAGE BANNER (cross-links) ── */
.page-banner {
  padding: 1rem 2.5rem; background: var(--cream);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}
.page-banner p {
  font-size: 0.88rem; color: var(--slate-mid); max-width: 640px; margin: 0 auto;
}
.page-banner a {
  color: var(--copper-deep); font-weight: 500; text-decoration: none;
  border-bottom: 1px solid rgba(168,99,42,0.25);
}
.page-banner a:hover { color: var(--copper); }

/* ── FOOTER ── */
footer {
  background: var(--slate); color: rgba(247,244,239,0.45);
  padding: 3rem 2.5rem 2.2rem;
}
.footer-top {
  max-width: var(--body-max); margin: 0 auto 2rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247,244,239,0.1);
}
.footer-brand { max-width: 320px; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--off-white); margin-bottom: 0.7rem;
}
.footer-logo span { color: var(--copper); }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; color: rgba(247,244,239,0.4); }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(247,244,239,0.55);
  text-decoration: none; margin-bottom: 0.55rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-bottom {
  max-width: var(--body-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem; font-size: 0.76rem; color: rgba(247,244,239,0.35);
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .thesis-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .method-loop { grid-template-columns: 1fr; }
  .tools-matrix-head { display: none; }
  .tools-row {
    grid-template-columns: 1fr; gap: 0.5rem;
    padding: 1.25rem;
  }
  .tools-lens::before { content: 'Lens · '; color: var(--copper); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.15rem; }
  .tools-row--lane .tools-lens::before { content: 'Lane · '; }
  .tools-app::before { content: 'Application · '; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 0.2rem; }
  .tools-product::before { content: 'Tools · '; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 0.35rem; }
  .tools-status::before { content: 'Status · '; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 0.35rem; }
  .engagement-grid { grid-template-columns: 1fr; }
  .service-grid-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-steps::before { display: none; }
  .track-grid, .feature-grid, .pillar-grid, .feature-grid--three { grid-template-columns: 1fr; }
}
@media (max-width: 1140px) {
  :root { --nav-h: 3.75rem; }
  .nav-inner {
    flex-wrap: wrap;
    padding: 0.65rem 1.25rem;
    gap: 0;
    align-items: center;
  }
  .nav-logo {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
    max-width: calc(100% - 3.5rem);
    margin-right: 0;
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-logo-full {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-toggle { display: flex; order: 2; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.75rem 0 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(196,122,58,0.15);
    max-height: calc(100dvh - var(--nav-h) - 1rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; flex-shrink: 0; }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    white-space: normal;
  }
  .nav-label-full { display: inline !important; }
  .nav-label-short { display: none !important; }
  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
    padding: 0.75rem 1rem !important;
  }
  .nav-item--has-sub > .nav-parent::after { margin-left: 0.5rem; }
  .nav-sub {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; border: none;
    background: rgba(0,0,0,0.14); margin: 0 0 0.5rem;
    display: none; min-width: 0; border-radius: 3px;
  }
  .nav-item--has-sub.open .nav-sub { display: block; }
  .nav-sub a { padding: 0.55rem 1rem; font-size: 0.88rem; }
  .nav-item--has-sub:hover .nav-sub { transform: none; }
}
@media (max-width: 680px) {
  .hero { padding: calc(var(--nav-h) + 3rem) 1.25rem 4rem; }
  .page-hero { padding: calc(var(--nav-h) + 2.75rem) 1.25rem 3.5rem; }
  .services, .anchor, .founder, .process, .cta-section, .page-content, .framework, .engagements, .methodology { padding: 4rem 1.25rem; }
  .thesis { padding: 3rem 1.25rem; }
  .service-rail { writing-mode: horizontal-tb; padding: 1.2rem 0 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-rail { flex-direction: row; justify-content: flex-start; padding: 1.4rem 1.5rem 0; }
  .service-body { padding: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-form-row { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .footer-top { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
