/* ============================================================
   Bella Acosta Arias, MD, PLLC - site styles
   Warm professional palette · cream + dusty rose · Cormorant Garamond
   ============================================================ */

:root {
  /* Warm light foundation */
  --bg: #f7f0e3;            /* warm cream */
  --bg-soft: #fbf5e9;       /* lighter cream */
  --bg-card: #ffffff;       /* clean card */
  --bg-elev: #fdfaf2;
  --bg-band: #f1e8d6;       /* darker cream for section banding */

  /* Warm ink (text) */
  --ink: #2a231b;           /* warm near-black */
  --ink-soft: #5b524a;      /* warm secondary text */
  --ink-faint: #6f6557;     /* warm gray - meets AA contrast on cream */

  /* Subtle borders */
  --line: rgba(42, 35, 27, 0.10);
  --line-strong: rgba(42, 35, 27, 0.22);

  /* Dusty rose accent - refined, warm, professional */
  --rose: #b05776;          /* primary accent */
  --rose-deep: #8c4159;     /* hover / pressed */
  --rose-soft: #d8a4b6;     /* soft accent for backgrounds */
  --rose-glow: rgba(176, 87, 118, 0.28);
  --rose-wash: rgba(176, 87, 118, 0.07);

  /* Supporting warm tones for atmospheric gradients */
  --peach: #f3d4be;
  --blush: #efc6ce;
  --sand: #e6d4b8;

  /* Muted sage - the cool counterweight */
  --sage: #8c9b87;          /* primary cool accent */
  --sage-deep: #6c7a68;     /* hover / pressed */
  --sage-deeper: #5c6a52;   /* dark sage - AA contrast for small text */
  --sage-soft: #c5d0bd;     /* light sage for atmospheric use */
  --sage-mist: #dfe5d7;     /* very pale sage backgrounds */
  --sage-glow: rgba(140, 155, 135, 0.28);
  --sage-wash: rgba(140, 155, 135, 0.07);

  /* Soft powder-blue - the gentle third tone, used for splashes only */
  --mist: #b3c2d4;          /* muted dusty blue */
  --mist-soft: #d4dde7;     /* atmospheric pale blue */
  --mist-pale: #e6ecf2;     /* very faint, almost white */
  --mist-wash: rgba(179, 194, 212, 0.06);

  /* Aliases used elsewhere in the codebase */
  --pink: var(--rose);
  --pink-deep: var(--rose-deep);
  --pink-soft: var(--rose-soft);
  --pink-glow: var(--rose-glow);
  --pink-wash: var(--rose-wash);

  /* Type - Fraunces for display, Mulish for UI/body */
  --serif: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1240px;
  --maxw-narrow: 920px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -----------------------------------------------------------
   Accessibility - skip link, focus states, screen-reader utils
   ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--rose-deep);
  color: #fff;
  padding: 0.75rem 1.35rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; }

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
main:focus { outline: none; }

/* -----------------------------------------------------------
   Ambient background - subtle warm wash + paper grain
   ----------------------------------------------------------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
  overflow: hidden;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
}
.aurora::before {
  background: radial-gradient(circle, var(--peach), transparent 70%);
  top: -25vw;
  left: -15vw;
}
.aurora::after {
  background: radial-gradient(circle, var(--blush), transparent 70%);
  bottom: -25vw;
  right: -15vw;
}
.aurora-3 {
  position: fixed;
  top: 45%;
  left: 30%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 35%, rgba(179, 194, 212, 0.85), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--sage-soft), transparent 70%);
  filter: blur(130px);
  opacity: 0.42;
  z-index: -2;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /></filter><rect width='100%25' height='100%25' filter='url(%23n)' /></svg>");
}

/* -----------------------------------------------------------
   Navigation
   ----------------------------------------------------------- */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(247, 240, 227, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
nav.top.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 240, 227, 0.92);
  box-shadow: 0 1px 24px rgba(42, 35, 27, 0.04);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Wordmark - Fraunces display serif with italic rose MD */
.logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}
.logo .mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 1px;
  background: var(--rose-deep);
}
.nav-cta {
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--rose) !important;
  color: var(--rose-deep) !important;
  border-radius: 999px;
  transition: all 0.3s ease;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover {
  background: var(--rose);
  color: #fff !important;
}
.nav-cta.active::after { display: none; }

/* Language toggle - distinct pill in the nav */
.nav-links a.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.38rem 0.72rem;
  margin-left: 0.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.nav-links a.nav-lang svg { width: 12px; height: 12px; flex-shrink: 0; }
.nav-links a.nav-lang:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
  background: var(--rose-wash);
}
.nav-links a.nav-lang::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 0.5rem;
}

/* -----------------------------------------------------------
   Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  box-shadow: 0 6px 18px rgba(176, 87, 118, 0.18);
}
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(140, 65, 89, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-wash);
}
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 0.93rem; }

/* -----------------------------------------------------------
   Section primitives
   ----------------------------------------------------------- */
section { padding: 7rem 2rem; position: relative; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-inner.narrow { max-width: var(--maxw-narrow); }

.section-head { margin-bottom: 4rem; max-width: 46rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--rose-deep);
}
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }

h1.display, h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1.display {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  margin-bottom: 1.75rem;
}
h2.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0 0 1.5rem;
}
h1 em, h2 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.section-lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 38rem;
  font-weight: 400;
}
.section-head.centered .section-lede { margin-left: auto; margin-right: auto; }

/* -----------------------------------------------------------
   Hero - warm radiant gradient
   ----------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-radiant {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 22% 35%, rgba(243, 212, 190, 0.82), transparent 65%),
    radial-gradient(ellipse 50% 45% at 78% 25%, rgba(239, 198, 206, 0.65), transparent 65%),
    radial-gradient(ellipse 60% 55% at 60% 90%, rgba(216, 164, 182, 0.45), transparent 65%),
    radial-gradient(ellipse 60% 55% at 85% 65%, rgba(197, 208, 189, 0.7), transparent 65%),
    radial-gradient(ellipse 55% 50% at 32% 75%, rgba(179, 194, 212, 0.65), transparent 65%),
    radial-gradient(ellipse 70% 60% at 10% 85%, rgba(230, 212, 184, 0.45), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  animation: radiantPulse 18s ease-in-out infinite;
}
@keyframes radiantPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.92; transform: scale(1.03); }
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero side card - portrait + credentials */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(42, 35, 27, 0.08);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, var(--rose-wash), transparent 60%);
  pointer-events: none;
}
.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 198, 206, 0.55), transparent 55%),
    linear-gradient(160deg, var(--peach), var(--sand)),
    var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
.portrait::after {
  content: "Portrait";
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-style: normal;
  font-family: var(--sans);
}
.credentials {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.credentials li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
}
.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--rose);
}

/* -----------------------------------------------------------
   Trust bar
   ----------------------------------------------------------- */
.trust-bar {
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-band);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.trust-items li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 400;
  position: relative;
}
.trust-items li + li::before {
  content: "";
  position: absolute;
  left: -1.3rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-50%);
}

/* -----------------------------------------------------------
   Service snapshot cards
   ----------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 1px 0 rgba(42, 35, 27, 0.02);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--rose-soft);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(176, 87, 118, 0.14);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--rose);
}
h3.service-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--rose-wash);
  color: var(--rose-deep);
  letter-spacing: 0.06em;
  border: 1px solid rgba(176, 87, 118, 0.18);
  font-weight: 500;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  color: var(--rose);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.service-card:hover .learn { color: var(--rose-deep); }

/* -----------------------------------------------------------
   Where we treat - states grid
   ----------------------------------------------------------- */
.states-section { padding-top: 0; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.state-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.state-card:hover { border-color: var(--rose); transform: translateY(-2px); }
.state-card .dot {
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.6rem;
  box-shadow: 0 0 10px var(--rose-glow);
}
.state-card .state-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}
.state-card .state-mode {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* -----------------------------------------------------------
   Practice intro
   ----------------------------------------------------------- */
.practice-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.practice-intro-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.practice-intro-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  float: left;
  line-height: 0.9;
  padding: 0.4rem 0.6rem 0 0;
  color: var(--rose);
  font-weight: 500;
}
.practice-visual {
  aspect-ratio: 1 / 1.2;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 25%, rgba(239, 198, 206, 0.6), transparent 55%),
    radial-gradient(circle at 78% 70%, rgba(179, 194, 212, 0.7), transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(197, 208, 189, 0.6), transparent 55%),
    linear-gradient(135deg, var(--peach), var(--sand));
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 35, 27, 0.06);
}
.practice-visual::after {
  content: "Practice image";
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.practice-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.practice-visual:has(video)::after { display: none; }

/* -----------------------------------------------------------
   About - philosophy / bio / FAQ
   ----------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.principle {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.principle-marker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.principle h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.principle p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.bio-portrait { position: sticky; top: 7rem; }
.bio-portrait .portrait { margin-bottom: 1.5rem; }
.bio-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 1.75rem;
  box-shadow: 0 16px 40px rgba(42, 35, 27, 0.07);
}
.bio-meta {
  display: grid;
  gap: 0.5rem;
}
.bio-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.bio-meta dd {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
.bio-body h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.005em;
}
.bio-body h3:first-child { margin-top: 0; }
.bio-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.bio-body .pull-quote,
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--rose);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2rem 0;
  font-weight: 400;
}

/* Accordion FAQ */
.faq {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
details.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
details.faq-item[open] {
  border-color: var(--rose-soft);
  box-shadow: 0 8px 24px rgba(176, 87, 118, 0.08);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  user-select: none;
  letter-spacing: -0.005em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  color: var(--rose);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  font-weight: 300;
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item .faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}
details.faq-item .faq-body p + p { margin-top: 1rem; }

/* -----------------------------------------------------------
   Services - alternating image/text panels
   ----------------------------------------------------------- */
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.service-panel:first-of-type { border-top: 0; padding-top: 0; }
.service-panel.reverse .panel-visual { order: 2; }
.service-panel.reverse .panel-text { order: 1; }

.panel-visual {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 35, 27, 0.06);
}
.panel-visual.v1 {
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 198, 206, 0.8), transparent 55%),
    linear-gradient(135deg, var(--peach), var(--sand));
}
.panel-visual.v2 {
  background:
    radial-gradient(circle at 70% 40%, rgba(216, 164, 182, 0.65), transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(179, 194, 212, 0.78), transparent 55%),
    linear-gradient(160deg, var(--blush), var(--peach));
}
.panel-visual.v3 {
  background:
    radial-gradient(circle at 60% 30%, rgba(197, 208, 189, 0.7), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(243, 212, 190, 0.45), transparent 55%),
    linear-gradient(135deg, var(--sage-mist), var(--sand));
}
.panel-visual::after {
  content: "Image placeholder";
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.panel-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.panel-visual:has(img)::after { display: none; }

.panel-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: var(--ink);
}
.panel-text > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.panel-text ul.what-you-get {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}
.panel-text ul.what-you-get li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.panel-text ul.what-you-get li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 10px; height: 1px;
  background: var(--rose);
}

.fees {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
}
.fees h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  color: var(--rose);
  letter-spacing: -0.005em;
}
.fees .fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  gap: 1rem;
}
.fees .fee-row:last-of-type { border-bottom: 0; }
.fees .fee-row span:first-child { color: var(--ink-soft); }
.fees .fee-row span:last-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

/* -----------------------------------------------------------
   Services - intro call featured card (first step / free)
   ----------------------------------------------------------- */
.intro-call {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 164, 182, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(197, 208, 189, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(179, 194, 212, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 20px 50px rgba(42, 35, 27, 0.06);
  position: relative;
  overflow: hidden;
}
.intro-call-text .eyebrow { margin-bottom: 1rem; }
.intro-call-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.intro-call-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.intro-call-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 32rem;
}
.intro-call-cta {
  display: grid;
  justify-items: end;
  gap: 1.25rem;
  align-content: center;
}
.intro-call-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .intro-call {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  .intro-call-cta { justify-items: start; }
}

/* -----------------------------------------------------------
   Services - second-opinion card (no fee posted)
   ----------------------------------------------------------- */
.second-opinion {
  margin-top: 4rem;
  padding: 2.5rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  box-shadow: 0 12px 30px rgba(42, 35, 27, 0.04);
}
.second-opinion-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
}
.second-opinion h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.second-opinion p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.second-opinion p:last-child { margin-bottom: 0; }
.second-opinion .quote-line {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.98rem;
  margin-top: 0.25rem;
}
@media (max-width: 760px) {
  .second-opinion {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem;
  }
}

/* -----------------------------------------------------------
   Services - practice policies grid
   ----------------------------------------------------------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.policy-card:hover {
  border-color: var(--rose-soft);
  transform: translateY(-2px);
}
.policy-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.policy-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 760px) {
  .policy-grid { grid-template-columns: 1fr; }
}

/* No Surprises Act disclosure */
.nsa-notice {
  margin-top: 4rem;
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-band);
}
.nsa-notice h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ink);
}
.nsa-notice p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.nsa-notice p:last-child { margin-bottom: 0; }
.nsa-notice a { color: var(--rose); }
.nsa-notice a:hover { color: var(--rose-deep); }

/* -----------------------------------------------------------
   Forensic - dramatic hero + credential band + expertise grid
   ----------------------------------------------------------- */
.hero.forensic {
  min-height: 80vh;
  padding: 9rem 2rem 5rem;
}
.hero.forensic .hero-radiant {
  background:
    radial-gradient(ellipse 65% 55% at 25% 50%, rgba(216, 164, 182, 0.7), transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 30%, rgba(243, 212, 190, 0.75), transparent 65%),
    radial-gradient(ellipse 70% 60% at 60% 95%, rgba(230, 212, 184, 0.65), transparent 65%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.hero.forensic .hero-inner {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 900px;
}
.hero.forensic h1.display {
  font-size: clamp(3rem, 7vw, 6rem);
}
.hero.forensic .hero-sub {
  font-size: 1.2rem;
  max-width: 36rem;
}

.credential-band {
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-band);
}
.credential-band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.cred-item { text-align: left; }
.cred-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.cred-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.expertise-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.25rem;
  background: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.expertise-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(176, 87, 118, 0.1);
}
.expertise-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.expertise-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}
.expertise-card .cred-num-sm {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Forensic - process steps (intake to testimony) */
.process-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}
.process-step {
  counter-increment: step;
  position: relative;
  padding: 1.6rem 1.75rem 1.6rem 4.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.7rem;
  top: 1.55rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--sage-deep);
}
.process-step:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(140, 155, 135, 0.14);
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 620px) {
  .process-step { padding: 1.4rem; }
  .process-step::before {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* Forensic - "What I bring" intro with video */
.forensic-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.forensic-intro-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 35, 27, 0.08);
}
.forensic-intro-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .forensic-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* -----------------------------------------------------------
   Contact
   ----------------------------------------------------------- */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-top .section-head { margin-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(42, 35, 27, 0.05);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, var(--rose-wash), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(179, 194, 212, 0.14), transparent 55%);
  pointer-events: none;
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.75rem 0 0.4rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-card h3:first-of-type { margin-top: 0; }
.contact-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 1.75rem;
}
.contact-card p, .contact-card a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-card a { color: var(--rose); }
.contact-card a:hover { color: var(--rose-deep); }

/* Stacked email list inside the contact card */
.email-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}
.email-row {
  display: grid;
  grid-template-columns: minmax(95px, auto) 1fr;
  gap: 0.85rem;
  align-items: baseline;
}
.email-row dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  white-space: nowrap;
}
.email-row dd {
  font-size: 0.85rem;
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.email-row dd a {
  color: var(--rose);
  text-decoration: none;
}
.email-row dd a:hover { color: var(--rose-deep); }
@media (max-width: 520px) {
  .email-row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* Form */
form.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 36px rgba(42, 35, 27, 0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 400;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 3px var(--rose-glow);
}
textarea { resize: vertical; min-height: 120px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23b05776' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.privacy-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.5;
  max-width: 22rem;
}
.form-status {
  font-size: 0.88rem;
  color: var(--rose-deep);
  margin-top: 1rem;
  display: none;
}
.form-status.show { display: block; }

/* -----------------------------------------------------------
   CTA strip
   ----------------------------------------------------------- */
.cta-strip {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.cta-strip-inner {
  max-width: 50rem;
  margin: 0 auto;
  background:
    radial-gradient(circle at 30% 0%, rgba(216, 164, 182, 0.42), transparent 60%),
    radial-gradient(circle at 85% 10%, rgba(197, 208, 189, 0.4), transparent 60%),
    radial-gradient(circle at 75% 100%, rgba(179, 194, 212, 0.55), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 35, 27, 0.06);
}
.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  position: relative;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.cta-strip h2 em { font-style: italic; color: var(--rose); }
.cta-strip p {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-strip .hero-actions {
  justify-content: center;
  position: relative;
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
footer {
  border-top: 1px solid var(--line);
  padding: 0;
  margin-top: 4rem;
  background: var(--bg-band);
}
.footer-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

/* Crisis notice - sits at the top of the footer */
.crisis-notice {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--rose);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.6rem;
}
.crisis-notice .crisis-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.crisis-notice p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.crisis-notice strong {
  color: var(--ink);
  font-weight: 600;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  max-width: 22rem;
}
.footer-brand .logo {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: inline-flex;
}
.footer-brand p {
  color: var(--ink-faint);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, auto));
  gap: 0.6rem 3rem;
}
.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--rose); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.75rem;
}
.footer-bottom small {
  color: var(--ink-faint);
  font-size: 0.78rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  list-style: none;
}
.footer-legal a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--rose); }
.footer-legal .sep {
  color: var(--ink-faint);
  opacity: 0.6;
}

/* Legal page body */
.legal-body {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a { color: var(--rose); }
.legal-body a:hover { color: var(--rose-deep); }
.legal-body .updated {
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}
.legal-body blockquote {
  border-left: 2px solid var(--rose);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--ink);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
}

/* -----------------------------------------------------------
   Scroll reveal
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner, .practice-intro, .bio-grid, .contact-grid, .service-panel {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .service-panel.reverse .panel-visual,
  .service-panel.reverse .panel-text { order: initial; }
  .service-grid, .philosophy-grid, .expertise-grid, .credential-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .bio-portrait { position: static; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(247, 240, 227, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { padding: 3rem 1.5rem; }
}
@media (max-width: 620px) {
  .service-grid, .philosophy-grid, .expertise-grid, .credential-band-inner {
    grid-template-columns: 1fr;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .trust-items { gap: 1.75rem; }
  .trust-items li + li::before { left: -1rem; }
  .contact-top { flex-direction: column; align-items: stretch; }
  .logo { font-size: 1rem; gap: 0.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ============================================================
   Forensic page - sage-dominant, attorney-facing variant
   Activated by adding class="forensic-page" to <body>.
   Brand identity stays consistent (same wordmark, same primary
   CTA color), but the page's accents shift to sage and the
   atmospheric gradients drop the warm pinks for cooler greens.
   ============================================================ */
body.forensic-page .aurora::before {
  background: radial-gradient(circle, var(--sage-mist), transparent 70%);
  opacity: 0.5;
}
body.forensic-page .aurora::after {
  background: radial-gradient(circle, var(--sage-soft), transparent 70%);
  opacity: 0.45;
}
body.forensic-page .aurora-3 {
  background: radial-gradient(circle, var(--sand), transparent 70%);
  opacity: 0.25;
}

body.forensic-page .hero.forensic .hero-radiant {
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(140, 155, 135, 0.45), transparent 65%),
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(197, 208, 189, 0.75), transparent 65%),
    radial-gradient(ellipse 70% 55% at 60% 95%, rgba(223, 229, 215, 0.7), transparent 65%),
    radial-gradient(ellipse 55% 50% at 12% 90%, rgba(230, 212, 184, 0.4), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

/* Sage takes over the italic accent on this page only */
body.forensic-page h1 em,
body.forensic-page h2 em,
body.forensic-page .panel-text h2 em,
body.forensic-page .cta-strip h2 em {
  color: var(--sage-deep);
}

/* Eyebrows shift to sage */
body.forensic-page .eyebrow { color: var(--sage-deeper); }
body.forensic-page .eyebrow::before { background: var(--sage-deeper); }

/* Credential band - sage-tinted, more serious */
body.forensic-page .credential-band {
  background: linear-gradient(180deg, rgba(140, 155, 135, 0.05), rgba(140, 155, 135, 0.09));
  border-color: rgba(140, 155, 135, 0.18);
}
body.forensic-page .cred-num { color: var(--sage-deep); }

/* Expertise card hover state turns sage */
body.forensic-page .expertise-card {
  background: var(--bg-card);
}
body.forensic-page .expertise-card:hover {
  border-color: var(--sage);
  box-shadow: 0 18px 40px rgba(140, 155, 135, 0.14);
}
body.forensic-page .expertise-card .cred-num-sm { color: var(--sage-deep); }

/* Process step numbers and other inline italic accents → sage */
body.forensic-page .principle-marker,
body.forensic-page .service-num {
  color: var(--sage-deep);
}

/* Ghost buttons on forensic borrow the sage border on hover */
body.forensic-page .btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  background: var(--sage-wash);
}

/* Tags get a sage tint */
body.forensic-page .tag {
  background: var(--sage-wash);
  color: var(--sage-deep);
  border-color: rgba(140, 155, 135, 0.22);
}

/* Soft-edged section bands look more architectural with sage */
body.forensic-page .trust-bar,
body.forensic-page footer {
  background: rgba(223, 229, 215, 0.5);
}

/* CTA strip on forensic - sage-edged warm card */
body.forensic-page .cta-strip-inner {
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 208, 189, 0.55), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--sage-mist));
  border-color: rgba(140, 155, 135, 0.18);
}

/* Nav active underline on forensic page itself → sage */
body.forensic-page .nav-links a:hover,
body.forensic-page .nav-links a.active { color: var(--sage-deeper); }
body.forensic-page .nav-links a.active::after { background: var(--sage-deeper); }

/* Crisis notice keeps its rose left border for consistency
   across the whole site - intentional brand cue. */

/* Primary CTA button stays rose on forensic for brand
   recognition - the "Book an introductory call" button
   should feel like the same button everywhere on the site. */
