/* ============ Choose Your Path Therapy — shared styles ============ */

:root {
  /* Palette — warm sage (default) */
  --bg: #eef0ea;
  --bg-alt: #e4e8dd;
  --paper: #fafaf6;
  --ink: #1d2a1a;
  --ink-2: #2d3d2a;
  --muted: #5a6a56;
  --accent: #6b8560;
  --accent-2: #c3d0a8;
  --line: #d4dac8;
  --warm: #c89a6b;

  /* Type */
  --font-sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Scale */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 18px;
}

/* Palette variants ------------------------------------------------- */
[data-palette="sage"] {
  --bg: #eef0ea; --bg-alt: #e4e8dd; --paper: #fafaf6;
  --ink: #1d2a1a; --ink-2: #2d3d2a; --muted: #5a6a56;
  --accent: #6b8560; --accent-2: #c3d0a8; --line: #d4dac8;
}
[data-palette="clay"] {
  --bg: #f4efe6; --bg-alt: #ebe3d4; --paper: #fbf8f1;
  --ink: #2a2220; --ink-2: #3a2a28; --muted: #6b5a50;
  --accent: #a85a3c; --accent-2: #e8c8a8; --line: #ddd0bc;
}
[data-palette="slate"] {
  --bg: #eef1f3; --bg-alt: #e1e6ea; --paper: #fafbfc;
  --ink: #1a2330; --ink-2: #2a3a4a; --muted: #5a6a78;
  --accent: #4a6b82; --accent-2: #b8c9d1; --line: #d0d8dd;
}
[data-palette="paper"] {
  --bg: #f5f3ee; --bg-alt: #ebe8df; --paper: #fcfaf5;
  --ink: #1a1a18; --ink-2: #2a2824; --muted: #6a675f;
  --accent: #3a3a36; --accent-2: #d4d0c3; --line: #d8d4c8;
}

/* Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

/* Layout ----------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Nav -------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-text > span { font-size: 15px; font-weight: 600; }
.brand-text small {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.nav-links a {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:not(.btn):hover {
  color: var(--ink);
  background: color-mix(in oklab, var(--accent-2) 40%, transparent);
}
.nav-links a.active:not(.btn) {
  color: var(--ink);
  background: color-mix(in oklab, var(--accent-2) 55%, transparent);
  font-weight: 500;
}
.nav-links a.btn-primary {
  color: #fff !important;
  margin-left: 12px;
  font-weight: 500;
  padding: 10px 18px;
}
.nav-links a.btn-primary:hover { color: #fff !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink-2);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); color: var(--paper); transform: translateY(-1px); box-shadow: 0 6px 18px -8px rgba(0,0,0,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--paper); }
.btn-lg { padding: 16px 26px; font-size: 15.5px; }
.btn .arr { display: inline-block; transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

.mobile-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-links.open a:last-child { border: none; }
}

/* Eyebrow ---------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Display type ----------------------------------------------------- */
.display {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* Sections --------------------------------------------------------- */
section { padding: clamp(32px, 5vw, 72px) 0; }
section.tight { padding: clamp(24px, 4vw, 56px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 48px);
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Hero ------------------------------------------------------------- */
.hero { padding-top: clamp(24px, 4vw, 48px); padding-bottom: clamp(32px, 5vw, 64px); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy .display { margin-bottom: 28px; }
.hero-copy .lede { margin-bottom: 36px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-meta .val {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 500px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 1px 0 var(--line), 0 40px 80px -40px rgba(30,40,25,0.25);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Decorative leaf/shape in hero bg */
.hero-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

/* About ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-copy p {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 1.2em;
  line-height: 1.6;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--ink); font-weight: 500; }

.quote-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 64px;
  line-height: 0.3;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 12px;
}
.quote-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.quote-meta::before {
  content: ""; width: 20px; height: 1px; background: var(--muted);
}

/* Questions list (the "Do you feel..." section) -------------------- */
.questions {
  background: var(--ink-2);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.questions .eyebrow { color: var(--accent-2); margin-bottom: 28px; }
.questions-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 22ch;
}
.questions-title em { font-family: var(--font-serif); font-style: italic; }
.q-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .q-list { grid-template-columns: 1fr; } }
.q-item {
  background: var(--ink-2);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.45;
}
.q-item .q-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Specialties ------------------------------------------------------ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.spec-card {
  grid-column: span 4;
  padding: 28px 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.spec-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.spec-card .spec-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}
.spec-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.spec-card ul li {
  padding: 9px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spec-card ul li:last-child { border-bottom: none; }
.spec-card ul li::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
@media (max-width: 900px) { .spec-card { grid-column: span 6; } }
@media (max-width: 600px) { .spec-card { grid-column: span 12; } }

/* Insurance -------------------------------------------------------- */
.insurance {
  background: var(--bg-alt);
  padding: clamp(24px, 4vw, 56px) 0;
}
.ins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 820px) { .ins-grid { grid-template-columns: 1fr; } }

.ins-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ins-list li {
  background: var(--paper);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ins-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* legacy .ins-list kept for backward compat if used elsewhere */
.ins-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 10px;
  border: 1px dashed var(--line);
}

/* Fee callout ------------------------------------------------------ */
.fee-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.fee-card .fee-amount {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
}
.fee-card .fee-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.fee-card .fee-text strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 500; }
@media (max-width: 600px) { .fee-card { grid-template-columns: 1fr; text-align: left; } }

/* Services (ESA / Supervision cross-promo) ------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.service-card .svc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-card h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service-card h3 em { font-family: var(--font-serif); font-style: italic; }
.service-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; flex: 1; }
.service-card .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.service-card .svc-link .arr { transition: transform 0.2s; }
.service-card:hover .svc-link .arr { transform: translateX(4px); }

/* Contact ---------------------------------------------------------- */
.contact {
  background: var(--ink-2);
  color: var(--paper);
  padding: clamp(64px, 9vw, 120px) 0;
  border-radius: var(--radius-lg);
  margin: 0 var(--gutter) clamp(40px, 6vw, 80px);
  max-width: calc(var(--container) - var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
}
.contact .eyebrow { color: var(--accent-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: 0 clamp(32px, 5vw, 64px);
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.contact h2 em { font-family: var(--font-serif); font-style: italic; }
.contact p { color: color-mix(in oklab, var(--paper) 70%, var(--ink-2)); font-size: 17px; line-height: 1.55; margin-bottom: 32px; }

.contact-methods { display: flex; flex-direction: column; gap: 2px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.c-method {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--ink-2);
  transition: background 0.15s;
}
.c-method:hover { background: color-mix(in oklab, var(--ink-2) 80%, var(--accent)); }
.c-method .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); }
.c-method .val { font-size: 17px; color: var(--paper); letter-spacing: -0.005em; overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
.c-method .arr { color: var(--accent-2); font-size: 18px; }
@media (max-width: 500px) {
  .c-method { grid-template-columns: 1fr; gap: 4px; }
  .c-method .arr { display: none; }
}

/* Footer ----------------------------------------------------------- */
footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-lic { font-family: var(--font-mono); letter-spacing: 0.05em; }

/* Subpage hero ----------------------------------------------------- */
.sub-hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
}
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .sub-hero-grid { grid-template-columns: 1fr; } }
.sub-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 28px 0 28px;
}
.sub-hero h1 em { font-family: var(--font-serif); font-style: italic; }
.sub-hero-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.03em; }
.breadcrumb a:hover { color: var(--ink); }

/* Content blocks (ESA/Supervision) --------------------------------- */
.prose {
  max-width: 68ch;
}
.prose p {
  font-size: 17.5px;
  color: var(--ink-2);
  margin-bottom: 1.3em;
  line-height: 1.65;
}
.prose h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.prose h2 em { font-family: var(--font-serif); font-style: italic; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.steps.steps-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .steps, .steps.steps-2 { grid-template-columns: 1fr; } }
.step {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* Facts (price, duration etc on sub-pages) ------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0 0;
}
@media (max-width: 760px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact {
  background: var(--paper);
  padding: 24px;
}
.fact .fact-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}
.fact .fact-val {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.fact .fact-val em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* Tweaks panel ----------------------------------------------------- */
.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  z-index: 100;
  font-size: 13px;
  display: none;
  overflow: hidden;
}
.tweaks-panel.on { display: block; }
.tweaks-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.tweaks-head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 8px; }
.tweaks-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 16px; max-height: 70vh; overflow-y: auto; }
.tweak-group label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s;
  position: relative;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active { border-color: var(--ink); }
.swatch-sage { background: linear-gradient(135deg, #6b8560 50%, #eef0ea 50%); }
.swatch-clay { background: linear-gradient(135deg, #a85a3c 50%, #f4efe6 50%); }
.swatch-slate { background: linear-gradient(135deg, #4a6b82 50%, #eef1f3 50%); }
.swatch-paper { background: linear-gradient(135deg, #2a2824 50%, #f5f3ee 50%); }

.tweak-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 12px;
  cursor: pointer;
}
.pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.tweak-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  font-family: var(--font-sans);
}
.tweak-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.tweaks-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg);
  padding: 3px;
  border-radius: 8px;
}
.tweaks-toggle button {
  flex: 1;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
}
.tweaks-toggle button.active { background: var(--paper); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

/* Photo-off state */
body[data-photo="off"] .hero-photo img { display: none; }
body[data-photo="off"] .hero-photo { background: var(--bg-alt); position: relative; }
body[data-photo="off"] .hero-photo::after {
  content: "portrait omitted";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Body weight toggle */
body[data-weight="light"] { font-weight: 350; }
body[data-weight="light"] h1, body[data-weight="light"] h2, body[data-weight="light"] h3 { font-weight: 300; }
body[data-weight="bold"] { font-weight: 450; }
body[data-weight="bold"] h1, body[data-weight="bold"] h2, body[data-weight="bold"] h3 { font-weight: 600; }

/* Small helpers */
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.mt-lg { margin-top: clamp(32px, 5vw, 56px); }

/* Insurance strip — horizontal row between hero and about ---------- */
.ins-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px) 0;
}
.ins-strip .container {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}
.ins-strip-label {
  font-family: var(--font-mono, var(--font-sans));
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
}
.ins-strip-row {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 40px) clamp(24px, 3.5vw, 48px);
  row-gap: clamp(16px, 2.5vw, 24px);
}
.ins-strip-item {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.ins-strip-item img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.ins-strip-item:hover img {
  opacity: 1;
}
.ins-strip-item--text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}
.ins-strip-item--text:hover { color: var(--ink-2); }

@media (max-width: 720px) {
  .ins-strip .container { flex-direction: column; align-items: flex-start; }
  .ins-strip-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px 0;
    width: 100%;
  }
  .ins-strip-row { width: 100%; justify-content: space-between; }
}

/* Supervision credential list --------------------------------- */
.cred-list {
  margin: 36px auto 0;
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.cred-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  justify-items: center;
  text-align: center;
}
.cred-row dt {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cred-row dd {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cred-row dd span {
  color: var(--muted);
  margin: 0 6px;
  font-style: normal;
}
@media (max-width: 680px) {
  .cred-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .cred-row dd { font-size: 20px; }
}
