/* ===== Design tokens ===== */
:root {
  --forest-900:#1e3a2b; --forest-800:#2d5a3d; --forest-700:#3e7552;
  --forest-600:#5a9068; --forest-500:#86a584; --forest-400:#b5c9ae;
  --forest-300:#d4ddc9; --forest-200:#e8ede0; --forest-100:#f2f5ec;
  --clay-900:#5c2a1e; --clay-800:#8a3e28; --clay-700:#b05636;
  --clay-600:#c97a52; --clay-500:#d89878; --clay-400:#e5b89e;
  --clay-300:#f0d3bf; --clay-200:#f7e5d6; --clay-100:#fbf3ec;
  --amethyst-900:#3b2449; --amethyst-800:#533563; --amethyst-700:#6f4b82;
  --amethyst-600:#8c6aa0; --amethyst-500:#a88bbb; --amethyst-400:#c4abd3;
  --amethyst-300:#dccde6; --amethyst-200:#eae0f0; --amethyst-100:#f5eff8;
  --bone-50:#fdfaf5; --bone-100:#f8f3eb; --bone-200:#ede5d5;
  --bone-300:#d9cdb8; --bone-400:#b3a589; --bone-500:#857962;
  --bone-600:#5d5440; --bone-700:#3f382a;
  --ink-900:#1c1a14; --ink-800:#2a2720;
  --sun:#d9a441; --berry:#9a3553;
  --surface:#ffffff;
  --fg:var(--ink-900); --fg-strong:var(--forest-900); --fg-muted:var(--bone-600);
  --hairline: rgba(28, 26, 20, 0.08);
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', Garamond, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bone-50); color: var(--fg);
  font-family: var(--font-sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* Blob background */
.v2-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.v2-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45;
  animation: v2-float 20s ease-in-out infinite; }
.v2-blob.b1 { width: 520px; height: 520px; top: -120px; left: -100px;
  background: radial-gradient(circle, var(--amethyst-300), transparent 70%); }
.v2-blob.b2 { width: 620px; height: 620px; top: 30%; right: -180px;
  background: radial-gradient(circle, var(--clay-300), transparent 70%); animation-delay: -7s; }
.v2-blob.b3 { width: 460px; height: 460px; bottom: -80px; left: 30%;
  background: radial-gradient(circle, var(--forest-300), transparent 70%); animation-delay: -14s; }
@keyframes v2-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}
.v2-root { position: relative; z-index: 1; }

/* Nav */
.v2-nav-wrap { position: sticky; top: 20px; z-index: 20; padding: 0 24px; margin-top: 20px; }
.v2-nav { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 32px;
  padding: 12px 12px 12px 24px; background: rgba(253, 250, 245, 0.75);
  backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px; box-shadow: 0 10px 40px -10px rgba(40, 36, 24, 0.15), 0 2px 6px rgba(40,36,24,0.05); }
.v2-brand { display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--font-serif); font-size: 20px; color: var(--fg-strong);
  font-weight: 500; letter-spacing: -0.01em; }
.v2-brand img { height: 32px; }
.v2-brand em { font-style: italic; color: var(--amethyst-700); font-weight: 400; }
.v2-links { display: flex; gap: 4px; margin-left: auto; }
.v2-links a { font: 500 13px var(--font-sans); color: var(--fg); text-decoration: none;
  padding: 8px 16px; border-radius: 999px; transition: all 180ms; }
.v2-links a:hover { background: rgba(140, 106, 160, 0.08); }
.v2-links a.on { background: var(--amethyst-100); color: var(--amethyst-700); }
.v2-nav-toggle { display: none; }

/* Buttons */
.v2-btn { font: 500 14px var(--font-sans); padding: 14px 26px; border-radius: 999px;
  border: 0; cursor: pointer; transition: all 220ms cubic-bezier(0.22,1,0.36,1);
  display: inline-flex; align-items: center; gap: 8px; }
.v2-btn-primary { background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
  color: var(--bone-50); box-shadow: 0 8px 24px -6px rgba(46, 90, 61, 0.4); }
.v2-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -6px rgba(46,90,61,0.55); }
.v2-btn-amethyst { background: linear-gradient(135deg, var(--amethyst-600), var(--amethyst-700));
  color: var(--bone-50); box-shadow: 0 8px 24px -6px rgba(140, 106, 160, 0.4); }
.v2-btn-amethyst:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -6px rgba(140,106,160,0.55); }
.v2-btn-ghost { background: rgba(255,255,255,0.6); color: var(--fg-strong);
  border: 1px solid var(--hairline); backdrop-filter: blur(8px); }
.v2-btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.v2-btn-lg { padding: 18px 34px; font-size: 15px; }

/* Hero */
.v2-hero { padding: 100px 32px 120px; position: relative; }
.v2-hero-inner { max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: 1.25fr 1fr; gap: 80px; align-items: center; }
.v2-tagline { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--hairline);
  border-radius: 999px; font: 500 12px var(--font-sans); color: var(--fg-strong);
  backdrop-filter: blur(8px); margin-bottom: 32px; }
.v2-tagline .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--forest-600);
  box-shadow: 0 0 0 0 rgba(90,144,104,0.7); animation: v2-pulse 2s infinite; }
@keyframes v2-pulse {
  0% { box-shadow: 0 0 0 0 rgba(90,144,104,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(90,144,104,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,144,104,0); }
}
.v2-display { font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 8rem); line-height: 0.9; letter-spacing: -0.04em;
  color: var(--fg-strong); margin: 0 0 28px; text-wrap: balance; }
.v2-display em { font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--amethyst-600), var(--clay-600));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-lead { font-size: 20px; line-height: 1.55; color: var(--fg); max-width: 52ch; margin: 0; }
.v2-hero-cta { display: flex; gap: 16px; align-items: center; margin-top: 40px; flex-wrap: wrap; }
.v2-hero-figure { position: relative; }
.v2-hero-card { aspect-ratio: 4/5; border-radius: 40px; overflow: hidden; position: relative;
  box-shadow: 0 40px 80px -20px rgba(40, 36, 24, 0.3), 0 10px 30px rgba(40,36,24,0.1);
  transform: rotate(-2deg); transition: transform 400ms cubic-bezier(0.22,1,0.36,1); }
.v2-hero-card:hover { transform: rotate(0deg) scale(1.02); }
.v2-hero-card img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-card::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30, 58, 43, 0.4) 100%); }
.v2-floating-card { position: absolute; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px; padding: 18px 22px;
  box-shadow: 0 20px 50px -10px rgba(40,36,24,0.2);
  animation: v2-bob 4s ease-in-out infinite; }
.v2-floating-card.fc1 { left: -28px; top: 60px; }
.v2-floating-card.fc2 { right: -28px; bottom: 80px; animation-delay: -2s; max-width: 240px; }
.v2-floating-card { display: flex; flex-direction: column; gap: 10px; }
.v2-floating-card p { margin: 0; }
@keyframes v2-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.v2-fc-label { font: 600 10px var(--font-sans); letter-spacing: 0.18em; line-height: 1;
  text-transform: uppercase; color: var(--amethyst-700); margin: 0 0 4px; }
.v2-fc-value { font-family: var(--font-serif); font-size: 22px; font-weight: 500; line-height: 1.3;
  color: var(--fg-strong); letter-spacing: -0.015em; margin: 0; }
.v2-fc-value em { font-style: italic; color: var(--amethyst-700); font-weight: 400; }
.v2-fc-mini { display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-muted); }
.v2-fc-mini .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest-600); }

/* Marquee */
.v2-marquee { overflow: hidden; padding: 24px 0; border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px); }
.v2-marquee-track { display: flex; gap: 64px; animation: v2-scroll 30s linear infinite; width: max-content; }
.v2-marquee-item { display: flex; align-items: center; gap: 14px;
  font-family: var(--font-serif); font-size: 22px; color: var(--fg-strong);
  font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; }
.v2-marquee-item .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--amethyst-500); }
.v2-marquee-item em { font-style: italic; color: var(--amethyst-700); font-weight: 400; }
@keyframes v2-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section head */
.v2-section { max-width: 1280px; margin: 0 auto; padding: 140px 32px; position: relative; }
.v2-section-head { max-width: 720px; margin: 0 0 80px; }
.v2-section-head.center { text-align: center; margin: 0 auto 80px; }
.v2-eyebrow { display: inline-flex; align-items: center; gap: 10px;
  font: 600 11px var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amethyst-700); margin: 0 0 20px; padding: 8px 14px;
  background: var(--amethyst-100); border-radius: 999px; }
.v2-section h2 { font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; line-height: 1;
  margin: 0 0 24px; color: var(--fg-strong); text-wrap: balance; }
.v2-section h2 em { font-style: italic; color: var(--amethyst-700); font-weight: 400; }
.v2-section .v2-lead { font-size: 19px; color: var(--fg); max-width: 56ch; line-height: 1.65; }

/* Services */
.v2-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.v2-svc { position: relative; background: var(--surface); border-radius: 32px; padding: 8px;
  box-shadow: 0 20px 50px -20px rgba(40, 36, 24, 0.15);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1), box-shadow 300ms;
  overflow: hidden; cursor: pointer; }
.v2-svc:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -20px rgba(40,36,24,0.25); }
.v2-svc-img { aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; position: relative; }
.v2-svc-img img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.v2-svc:hover .v2-svc-img img { transform: scale(1.06); }
.v2-svc-tag { position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border-radius: 999px; font: 600 10px var(--font-sans); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amethyst-700); }
.v2-svc-body { padding: 24px 22px 22px; }
.v2-svc-body h3 { font-family: var(--font-serif); font-weight: 500; font-size: 26px;
  letter-spacing: -0.02em; color: var(--fg-strong); margin: 0 0 10px; line-height: 1.1; }
.v2-svc-body p { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.v2-svc-price { display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 18px; border-top: 1px dashed var(--hairline); }
.v2-svc-price b { font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--forest-800); }
.v2-svc-price small { font-size: 11px; color: var(--fg-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; }

/* Data viz */
.v2-data { padding: 140px 32px; background: linear-gradient(180deg,
  rgba(253,250,245,0) 0%, rgba(245, 239, 248, 0.6) 50%, rgba(253,250,245,0) 100%); }
.v2-data-inner { max-width: 1280px; margin: 0 auto; }
.v2-data-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.v2-chart-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 32px; padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(40,36,24,0.15); position: relative; }
.v2-chart-tabs { display: flex; gap: 6px; margin-bottom: 24px; padding: 4px;
  background: var(--bone-100); border-radius: 999px; width: fit-content; }
.v2-chart-tab { padding: 8px 14px; border-radius: 999px; border: 0; background: transparent;
  font: 500 12px var(--font-sans); color: var(--fg-muted); cursor: pointer; transition: all 180ms; }
.v2-chart-tab.on { background: var(--surface); color: var(--fg-strong);
  box-shadow: 0 2px 6px rgba(40,36,24,0.08); }
.v2-chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.v2-chart-head h4 { font-family: var(--font-serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.015em; color: var(--fg-strong); margin: 0; }
.v2-chart-head .val { font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  color: var(--amethyst-700); letter-spacing: -0.02em; }
.v2-chart-head .val small { font-family: var(--font-sans); font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-left: 6px; }
.v2-chart { width: 100%; height: 180px; }
.v2-chart-legend { display: flex; gap: 18px; margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--hairline); font-size: 12px; color: var(--fg-muted); }
.v2-chart-legend span { display: flex; align-items: center; gap: 6px; }
.v2-chart-legend .sw { width: 12px; height: 3px; border-radius: 2px; }
.v2-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.v2-metric { background: var(--bone-100); border-radius: 16px; padding: 16px 18px; }
.v2-metric .k { font: 600 10px var(--font-sans); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amethyst-700); margin-bottom: 6px; }
.v2-metric .v { font-family: var(--font-serif); font-size: 24px; color: var(--fg-strong);
  font-weight: 500; letter-spacing: -0.015em; }
.v2-metric .v small { font-size: 11px; color: var(--forest-700); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; margin-left: 4px; }

/* Process */
.v2-process { padding: 140px 0; background:
  linear-gradient(180deg, var(--bone-50) 0%, var(--bone-100) 100%); }
.v2-process-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.v2-process-slider { margin-top: 60px; position: relative; }
.v2-slider-track { height: 4px; border-radius: 2px; background: var(--bone-300);
  position: relative; margin-bottom: 40px; }
.v2-slider-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-600), var(--amethyst-600));
  transition: width 400ms cubic-bezier(0.22,1,0.36,1); }
.v2-slider-handles { position: absolute; top: -10px; left: 0; right: 0;
  display: flex; justify-content: space-between; }
.v2-handle { width: 24px; height: 24px; border-radius: 50%; background: var(--surface);
  border: 3px solid var(--bone-300); cursor: pointer; transition: all 220ms;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
  font-weight: 700; color: transparent; font-family: var(--font-serif); font-style: italic; }
.v2-handle.done { background: var(--forest-600); border-color: var(--forest-600); }
.v2-handle.active { background: var(--amethyst-600); border-color: var(--amethyst-600);
  color: var(--bone-50); transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(140, 106, 160, 0.2); }
.v2-steps-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.v2-step { text-align: left; transition: opacity 220ms; }
.v2-step.dim { opacity: 0.35; }
.v2-step .label { font: 600 10px var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amethyst-700); margin: 0 0 8px; }
.v2-step h4 { font-family: var(--font-serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.015em; color: var(--fg-strong); margin: 0 0 10px; line-height: 1.15; }
.v2-step p { font-size: 13px; line-height: 1.6; color: var(--fg-muted); margin: 0; }

/* Testimonials */
.v2-testimonials { padding: 140px 32px; position: relative; }
.v2-t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2-t-card { background: var(--surface); border-radius: 32px; padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 50px -20px rgba(40,36,24,0.12);
  transition: transform 300ms, box-shadow 300ms; }
.v2-t-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -20px rgba(40,36,24,0.2); }
.v2-t-card:nth-child(2) { background: linear-gradient(135deg, var(--amethyst-100), var(--clay-100)); }
.v2-t-stars { color: var(--sun); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.v2-t-quote { font-family: var(--font-serif); font-size: 20px; line-height: 1.4;
  color: var(--fg-strong); font-weight: 400; letter-spacing: -0.01em; margin: 0 0 28px; text-wrap: pretty; }
.v2-t-quote em { font-style: italic; color: var(--amethyst-700); }
.v2-t-quote.is-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.v2-t-expand {
  display: inline-block;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--amethyst-700);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 150ms;
}
.v2-t-expand:hover { color: var(--amethyst-800); text-decoration: underline; }
.v2-t-foot { display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px dashed var(--hairline); }
.v2-avatar { width: 44px; height: 44px; border-radius: 50%; }
.v2-t-foot b { display: block; font-family: var(--font-sans); font-size: 14px; color: var(--fg-strong); font-weight: 600; }
.v2-t-foot small { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* Review carousel */
.v2-carousel { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.v2-carousel-track {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.v2-carousel-track::-webkit-scrollbar { display: none; }
.v2-carousel-track .v2-t-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  margin: 0;
}
.v2-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bone-50); color: var(--forest-800);
  border: 1px solid var(--bone-300);
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 12px rgba(40, 36, 24, 0.1);
  transition: background-color 150ms, transform 150ms, box-shadow 150ms, opacity 150ms;
  z-index: 2;
}
.v2-carousel-btn:hover { background: var(--amethyst-100); color: var(--amethyst-800); transform: translateY(-50%) scale(1.05); }
.v2-carousel-btn:disabled { opacity: 0.3; cursor: default; transform: translateY(-50%); }
.v2-carousel-btn--prev { left: 6px; }
.v2-carousel-btn--next { right: 6px; }
.v2-carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.v2-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bone-300); border: 0; padding: 0; cursor: pointer;
  transition: background-color 150ms, transform 150ms;
}
.v2-carousel-dot[aria-current="true"] {
  background: var(--amethyst-600); transform: scale(1.3);
}
.v2-carousel-dot:hover { background: var(--amethyst-400); }

@media (max-width: 960px) {
  .v2-carousel-track .v2-t-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .v2-carousel { padding: 0 8px; }
  .v2-carousel-track { gap: 16px; }
  .v2-carousel-track .v2-t-card { flex: 0 0 100%; }
  .v2-carousel-btn { width: 38px; height: 38px; }
  .v2-carousel-btn--prev { left: -4px; }
  .v2-carousel-btn--next { right: -4px; }
}

/* CTA band */
.v2-cta-band { padding: 80px 32px 140px; }
.v2-cta-inner { max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-800) 60%, var(--amethyst-800));
  border-radius: 48px; padding: 100px 64px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(30,58,43,0.5); }
.v2-cta-inner::before { content: ''; position: absolute; top: -40%; left: -10%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(196,171,211,0.25), transparent 55%); pointer-events: none; }
.v2-cta-inner::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(216,152,120,0.2), transparent 55%); pointer-events: none; }
.v2-cta-inner > * { position: relative; z-index: 1; }
.v2-cta-inner h2 { color: var(--bone-50); font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 24px; }
.v2-cta-inner h2 em { background: linear-gradient(135deg, var(--amethyst-300), var(--clay-300));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-cta-inner p { color: var(--bone-200); font-size: 18px; line-height: 1.7;
  max-width: 56ch; margin: 0 auto 40px; }
.v2-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.v2-cta-inner .v2-btn-primary { background: var(--bone-50); color: var(--forest-900); }
.v2-cta-inner .v2-btn-primary:hover { background: #fff; }
.v2-cta-inner .v2-btn-ghost { background: transparent; color: var(--bone-100);
  border-color: rgba(237,229,213,0.4); }
.v2-cta-inner .v2-btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.v2-footer { background: var(--ink-900); color: var(--bone-200); padding: 96px 32px 32px; }
.v2-foot-top { max-width: 1280px; margin: 0 auto 56px; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(237,229,213,0.12); }
.v2-foot-brand .lock { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v2-foot-brand .lock img { height: 44px; }
.v2-foot-brand .word { font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  color: var(--bone-50); letter-spacing: -0.015em; line-height: 1; }
.v2-foot-brand .word em { font-style: italic; color: var(--amethyst-400); font-weight: 400; }
.v2-foot-brand p { color: var(--bone-400); font-size: 14px; line-height: 1.6; max-width: 40ch; margin: 0; }
.v2-foot-col h5 { color: var(--amethyst-400); font: 600 11px var(--font-sans);
  letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; }
.v2-foot-col a, .v2-foot-col span { display: block; color: var(--bone-200);
  text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 150ms; }
.v2-foot-col a:hover { color: var(--amethyst-300); }
.v2-foot-legal { max-width: 1280px; margin: 0 auto; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 12px;
  color: var(--bone-500); letter-spacing: 0.04em; }
.v2-foot-legal a { color: inherit; text-decoration: underline;
  text-decoration-color: var(--bone-400); text-underline-offset: 2px; }
.v2-foot-legal a:hover { color: var(--bone-700); text-decoration-color: currentColor; }

/* Scroll-reveal */
.v2-reveal { opacity: 0; transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.v2-reveal.shown { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .v2-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .v2-services, .v2-steps-preview, .v2-t-grid { grid-template-columns: 1fr; }
  .v2-data-grid { grid-template-columns: 1fr; gap: 48px; }
  .v2-foot-top { grid-template-columns: 1fr 1fr; }
  .v2-hero { padding: 60px 20px 80px; }
  .v2-section { padding: 80px 20px; }
  .v2-data, .v2-testimonials { padding: 80px 20px; }
  .v2-process { padding: 80px 0; }
  .v2-process-inner { padding: 0 20px; }
  .v2-cta-band { padding: 40px 20px 80px; }
  .v2-cta-inner { padding: 60px 28px; border-radius: 32px; }
  .v2-nav-wrap { padding: 0 12px; }
  .v2-nav { gap: 12px; padding: 10px 10px 10px 16px; position: relative; }
  .v2-brand { display: none; }
  .v2-search-btn { margin-left: auto; }
  .v2-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    order: -1;
    background: transparent;
    border: 1px solid var(--bone-400, #b3a589);
    border-radius: 999px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 150ms ease-out, background-color 150ms ease-out;
  }
  .v2-nav-toggle:hover { border-color: var(--amethyst-600, #8c6aa0); }
  .v2-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink-800, #2a2720);
    border-radius: 1px;
    transition: transform 200ms ease, opacity 150ms ease;
  }
  .v2-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .v2-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .v2-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .v2-links { display: none; }
  .v2-nav.is-mobile-open .v2-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 10px;
    background: rgba(253, 250, 245, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 12px 40px -10px rgba(40, 36, 24, 0.2);
  }
  .v2-nav.is-mobile-open .v2-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
    text-align: center;
  }
  .v2-nav.is-mobile-open .v2-links a:first-child {
    background: var(--amethyst-100);
    color: var(--amethyst-700);
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 6px;
  }
  .v2-floating-card.fc1 { left: 8px; top: 12px; }
  .v2-floating-card.fc2 { right: 8px; bottom: 12px; }
  .v2-foot-legal { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .v2-foot-top { grid-template-columns: 1fr; gap: 32px; }
  .v2-hero-cta { flex-direction: column; align-items: stretch; }
  .v2-hero-cta .v2-btn { justify-content: center; }
}

/* ==========================================================
   Services — featured discovery card + "free discovery" note
   ========================================================== */
.v2-svc-featured {
  margin: 0 0 36px;
  padding: 44px 52px;
  background:
    radial-gradient(ellipse 65% 85% at 15% 30%, rgba(220, 205, 230, 0.65), transparent 60%),
    radial-gradient(ellipse 55% 75% at 85% 70%, rgba(240, 211, 191, 0.55), transparent 60%),
    linear-gradient(135deg, var(--amethyst-100), var(--clay-100));
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 22px 50px -22px rgba(40, 36, 24, 0.18);
  position: relative;
  overflow: hidden;
}
.v2-svc-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--amethyst-500), var(--clay-500));
  border-radius: 0 0 6px 6px;
}
.v2-svc-featured-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 11px var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amethyst-700);
  margin: 0 0 14px;
}
.v2-svc-featured-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest-600);
  box-shadow: 0 0 0 0 rgba(90,144,104,0.7);
  animation: v2-pulse 2s infinite;
}
.v2-svc-featured h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-strong);
  margin: 0 0 14px;
  text-wrap: balance;
}
.v2-svc-featured p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-800);
  margin: 0;
  max-width: 56ch;
}
.v2-svc-featured-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* "Free Discovery included" note inside each tier card */
.v2-svc-includes {
  margin: 0 0 16px;
  padding: 12px 0 0;
  border-top: 1px dashed var(--hairline);
  font: 500 12px var(--font-sans);
  color: var(--amethyst-700);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-svc-includes::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-200);
  color: var(--forest-800);
  font-size: 11px;
  font-weight: 700;
}
/* When includes is present, price takes over the separator role */
.v2-svc-includes + .v2-svc-price {
  border-top: 0;
  padding-top: 0;
}
/* "Learn more" link on service cards that have a dedicated detail page */
.v2-svc-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amethyst-700);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 150ms, transform 150ms;
}
.v2-svc-more:hover {
  color: var(--amethyst-800);
  transform: translateX(2px);
}
.v2-svc.is-clickable { cursor: pointer; }

@media (max-width: 820px) {
  .v2-svc-featured {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 32px;
  }
  .v2-svc-featured-cta { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .v2-svc-featured {
    padding: 30px 24px;
    border-radius: 22px;
  }
}

/* ==========================================================
   About-Katka section
   ========================================================== */
.v2-about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px;
}
.v2-about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.v2-about-img {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(40, 36, 24, 0.25),
              0 8px 20px rgba(40, 36, 24, 0.08);
  aspect-ratio: 4 / 5;
}
.v2-about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.v2-about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(30, 58, 43, 0.25));
}
.v2-about-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg-strong);
  margin: 20px 0 28px;
  text-wrap: balance;
}
.v2-about-copy h2 em {
  font-style: italic;
  color: var(--amethyst-700);
  font-weight: 400;
}
.v2-about-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-800);
  margin: 0 0 18px;
  max-width: 58ch;
}
.v2-about-copy p em {
  font-style: italic;
  color: var(--amethyst-800);
}
.v2-about-copy p b {
  font-weight: 600;
  color: var(--fg-strong);
}
.v2-about-quote {
  margin: 32px 0 0;
  padding: 22px 24px 22px 28px;
  border-left: 3px solid var(--amethyst-500);
  background: linear-gradient(90deg, var(--amethyst-100), rgba(245, 239, 248, 0));
  border-radius: 0 18px 18px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4em;
  line-height: 1.4;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
}
.v2-about-quote em {
  font-style: italic;
  color: var(--amethyst-700);
  font-weight: 500;
}

@media (max-width: 960px) {
  .v2-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-about-img { max-width: 420px; aspect-ratio: 4 / 5; margin: 0 auto; }
  .v2-about { padding: 80px 20px; }
  .v2-about-quote { font-size: 1.2em; padding: 18px 20px 18px 22px; }
}

/* ==========================================================
   Practitioner byline (hero)
   ========================================================== */
.v2-practitioner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hairline);
  max-width: 52ch;
}
.v2-practitioner-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
}
.v2-practitioner-role {
  font: 600 11px var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amethyst-700);
}
.v2-practitioner-creds {
  font: 400 13px var(--font-sans);
  color: var(--fg-muted);
}

/* ==========================================================
   Lab menu — sidebar + numbered list (v2 Tests pattern)
   ========================================================== */
.v2-lab-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.v2-lab-sidebar {
  position: sticky;
  top: 120px;
}
.v2-lab-sidebar .v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.v2-lab-sidebar h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg-strong);
  margin: 0 0 24px;
  text-wrap: balance;
}
.v2-lab-sidebar h2 em {
  font-style: italic;
  color: var(--amethyst-700);
  font-weight: 400;
}
.v2-lab-sidebar .v2-lead {
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.v2-lab-list-wrap {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 8px 32px 12px;
  box-shadow: 0 24px 60px -24px rgba(40, 36, 24, 0.18);
}
.v2-lab-list-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font: 600 10px var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amethyst-700);
}
.v2-lab-list-header span:last-child {
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.v2-lab-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.v2-lab-item { margin: 0; }
.v2-lab-btn {
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 160ms ease, transform 160ms ease;
}
.v2-lab-btn:hover,
.v2-lab-btn:focus-visible {
  background: var(--amethyst-100);
  outline: none;
}
.v2-lab-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(140, 106, 160, 0.35);
}
.v2-lab-idx {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--amethyst-700);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.v2-lab-name {
  font: 500 13.5px var(--font-sans);
  color: var(--fg-strong);
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.v2-lab-plus {
  font: 500 18px var(--font-sans);
  color: var(--amethyst-500);
  opacity: 0.55;
  justify-self: end;
  line-height: 1;
  transition: opacity 160ms, transform 160ms;
}
.v2-lab-btn:hover .v2-lab-plus,
.v2-lab-btn:focus-visible .v2-lab-plus {
  opacity: 1;
  transform: rotate(90deg);
  color: var(--amethyst-700);
}
.v2-lab-list-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 4px;
  border-top: 1px solid var(--hairline);
  margin-top: 8px;
  font: 600 10px var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

@media (max-width: 1024px) {
  .v2-lab-menu-inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-lab-sidebar { position: static; }
}
@media (max-width: 640px) {
  .v2-lab-list { grid-template-columns: 1fr; }
  .v2-lab-list-wrap { padding: 4px 20px 8px; border-radius: 18px; }
  .v2-lab-btn { padding: 10px 10px; grid-template-columns: 30px 1fr 20px; gap: 10px; }
  .v2-lab-name { font-size: 13px; }
  .v2-lab-list-foot { font-size: 9px; letter-spacing: 0.18em; gap: 12px; flex-wrap: wrap; }
}

/* ==========================================================
   Lab detail modal
   ========================================================== */
.v2-lab-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
.v2-lab-modal[aria-hidden="false"] {
  display: flex;
  pointer-events: auto;
}
.v2-lab-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(140, 106, 160, 0.45), transparent 70%),
    radial-gradient(ellipse 80% 60% at 75% 80%, rgba(216, 152, 120, 0.35), transparent 70%),
    rgba(28, 26, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: v2-lab-fade 200ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.v2-lab-modal-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 44px 48px 36px;
  box-shadow: 0 50px 100px -30px rgba(30, 30, 20, 0.55),
              0 8px 20px rgba(40, 36, 24, 0.15);
  animation: v2-lab-scale 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* Hero-overlay layout for lab modals that include an image */
.v2-lab-modal-card.has-figure {
  max-width: 900px;
  padding: 0 0 32px 0;
  overflow: hidden;
}
.v2-lab-modal-card.has-figure .v2-lab-modal-close {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.v2-lab-modal-card.has-figure .v2-lab-modal-counter {
  position: absolute;
  top: 28px;
  left: 48px;
  z-index: 2;
  margin: 0;
  color: var(--amethyst-800);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}
.v2-lab-modal-card.has-figure .v2-lab-modal-title {
  position: absolute;
  top: 58px;
  left: 48px;
  right: auto;
  max-width: 44%;
  z-index: 2;
  margin: 0;
  color: var(--forest-900);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
.v2-lab-modal-card.has-figure .v2-lab-modal-body .v2-lab-figure {
  margin: 0 0 24px;
  border-radius: 0;
  background: transparent;
}
.v2-lab-modal-card.has-figure .v2-lab-modal-body p {
  padding: 0 48px;
}
.v2-lab-modal-card.has-figure .v2-lab-modal-nav {
  padding: 8px 48px 0;
}
@media (max-width: 720px) {
  .v2-lab-modal-card.has-figure .v2-lab-modal-title {
    position: static;
    max-width: none;
    padding: 14px 48px 0;
    color: var(--fg-strong);
    text-shadow: none;
  }
  .v2-lab-modal-card.has-figure .v2-lab-modal-counter {
    position: static;
    padding: 16px 48px 0;
    color: var(--amethyst-700);
    text-shadow: none;
  }
  .v2-lab-modal-card.has-figure .v2-lab-modal-body .v2-lab-figure {
    margin: 16px 0 24px;
  }
}
.v2-lab-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--fg-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms, color 160ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v2-lab-modal-close:hover,
.v2-lab-modal-close:focus-visible {
  background: var(--bone-100);
  color: var(--fg-strong);
  outline: none;
}
.v2-lab-modal-counter {
  font: 600 10px var(--font-sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amethyst-700);
  font-variant-numeric: tabular-nums;
  margin: 0 0 14px;
}
.v2-lab-modal-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-strong);
  margin: 0 0 22px;
  text-wrap: balance;
}
.v2-lab-modal-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-800);
  margin: 0 0 14px;
}
.v2-lab-modal-body p:last-child { margin-bottom: 0; }
.v2-lab-modal-body .v2-lab-figure {
  margin: 0 0 18px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bone-100);
}
.v2-lab-modal-body .v2-lab-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.v2-lab-modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dashed var(--hairline);
}
.v2-lab-modal-nav button {
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 18px;
  font: 600 11px var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-strong);
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms, transform 180ms;
}
.v2-lab-modal-nav button:hover,
.v2-lab-modal-nav button:focus-visible {
  background: var(--amethyst-100);
  border-color: var(--amethyst-300);
  color: var(--amethyst-800);
  outline: none;
}
.v2-lab-modal-nav .v2-lab-modal-prev:hover span,
.v2-lab-modal-nav .v2-lab-modal-prev:focus-visible span {
  transform: translateX(-2px);
}

@keyframes v2-lab-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes v2-lab-scale {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .v2-lab-modal { padding: 16px; }
  .v2-lab-modal-card { padding: 36px 24px 28px; border-radius: 18px; }
  .v2-lab-modal-title { margin-bottom: 16px; }
  .v2-lab-modal-body p { font-size: 14.5px; }
  .v2-lab-modal-nav { flex-direction: column; gap: 8px; }
  .v2-lab-modal-nav button { text-align: center; }
}

/* Body scroll lock while modal is open (class toggled by JS) */
body.has-lab-modal { overflow: hidden; }

/* ==========================================================
   "Illustrative example" disclaimer on the chart card
   ========================================================== */
.v2-chart-note {
  position: absolute;
  top: 12px; right: 12px;
  font: 600 9px var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amethyst-700);
  background: var(--amethyst-100);
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

/* ==========================================================
   Testimonial avatar fallback (initials instead of external image)
   ========================================================== */
.v2-avatar-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amethyst-500), var(--clay-500));
  color: var(--bone-50);
  font: 600 14px var(--font-sans);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ==========================================================
   "Read all reviews" link below testimonials
   ========================================================== */
.v2-reviews-more {
  text-align: center;
  margin: 32px auto 0;
}
.v2-reviews-more a {
  font: 600 13px var(--font-sans);
  letter-spacing: 0.08em;
  color: var(--amethyst-700);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  transition: background 220ms, border-color 220ms, color 220ms;
}
.v2-reviews-more a:hover {
  background: var(--amethyst-100);
  border-color: var(--amethyst-300);
  color: var(--amethyst-800);
}

/* ===== Healing Framework (pyramid section) ===== */
.khf-section { position: relative; padding: 96px 32px 80px; z-index: 1; }
.khf-section-inner { max-width: 1640px; margin: 0 auto; }
.khf-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(720px, 2fr);
  gap: 56px;
  align-items: start;
}

/* Left column */
.khf-left { padding-top: 6px; }
.khf-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.khf-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--amethyst-700);
  max-width: 22ch;
  margin: 0 0 26px;
}
.khf-rule { width: 110px; height: 3px; background: var(--clay-700); border-radius: 2px; margin-bottom: 26px; }

.khf-checklist { display: flex; flex-direction: column; gap: 16px; max-width: 44ch; }
.khf-check-row { display: flex; gap: 14px; align-items: flex-start; }
.khf-check-row .khf-ico {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--amethyst-700);
  display: grid; place-items: center;
  margin-top: 2px;
  color: var(--amethyst-700);
}
.khf-check-row .khf-ico svg { width: 14px; height: 14px; }
.khf-check-row p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-800);
}

.khf-principles {
  margin: 32px 0 0;
  padding: 0 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
  list-style: none;
}
.khf-principle {
  display: grid;
  grid-template-columns: 36px 14px 1fr;
  align-items: center;
  gap: 14px;
}
.khf-principle .khf-pn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--amethyst-100);
  color: var(--amethyst-800);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
}
.khf-principle .khf-slash {
  color: var(--bone-400);
  font-family: var(--font-sans);
  font-size: 16px;
  text-align: center;
}
.khf-principle .khf-lbl {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

/* Right column: pyramid */
.khf-pyramid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 1080;
  max-width: 1280px;
  padding-right: 200px;
  box-sizing: border-box;
  margin-left: auto;
}
.khf-pyramid-inner { position: relative; width: 100%; height: 100%; }

.khf-tri-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 30px 60px rgba(60, 40, 90, 0.18));
}

.khf-labels { position: absolute; inset: 0; pointer-events: none; }
.khf-label-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.25;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.khf-label-row .khf-rn {
  font-variant-numeric: tabular-nums;
  margin-right: 6px;
  font-weight: 600;
  color: var(--amethyst-800);
}

.khf-brackets { position: absolute; inset: 0; pointer-events: none; }
.khf-bracket {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
}
.khf-bracket .khf-line { width: 2px; border-radius: 2px; }
.khf-bracket .khf-caps {
  position: absolute;
  width: 18px; height: 2px;
  border-radius: 2px;
  left: -16px;
}
.khf-bracket .khf-blabel {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}
.khf-bracket.khf-restoration .khf-line,
.khf-bracket.khf-restoration .khf-caps { background: var(--clay-700); }
.khf-bracket.khf-restoration .khf-blabel { color: var(--clay-700); }
.khf-bracket.khf-targeted .khf-line,
.khf-bracket.khf-targeted .khf-caps { background: var(--amethyst-700); }
.khf-bracket.khf-targeted .khf-blabel { color: var(--amethyst-700); }
.khf-bracket.khf-foundation .khf-line,
.khf-bracket.khf-foundation .khf-caps { background: var(--amethyst-700); }
.khf-bracket.khf-foundation .khf-blabel { color: var(--amethyst-700); }

@media (max-width: 1100px) {
  .khf-shell { grid-template-columns: 1fr; gap: 48px; }
  .khf-pyramid-wrap { margin: 0 auto; max-width: 720px; padding-right: 140px; }
}
@media (max-width: 720px) {
  .khf-section { padding: 64px 20px 56px; }
  .khf-pyramid-wrap { padding-right: 110px; }
  .khf-principles { padding-left: 0; }
}
