/* ================================================================
   Pasadena Clinical Group — Premium Design System
   Topic: Adult ADHD Group Therapy (Outpatient Psychology Clinic)
   Target: First-time therapy seekers in Los Angeles metro area
   Quality Bar: Ultra-SEO, Ultra-Design, Ultra-Narrative
   ================================================================ */

/* --- CSS Variables --- */
:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F5F0E8;
  --ink: #2D2A26;
  --muted: #6B6760;
  --muted-light: #9A9690;
  --accent: #C4825C;
  --accent-dark: #8B5A3C;
  --accent-soft: #F5ECE0;
  --accent-glow: rgba(196, 130, 92, 0.12);
  --sage: #7A9B8F;
  --sage-dark: #5C7D6F;
  --sage-soft: #EDF3F0;
  --border: #E8E2D6;
  --border-light: #F0ECE4;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 42, 38, 0.08);
  --shadow-lg: 0 18px 48px rgba(45, 42, 38, 0.10);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base (high-specificity overrides for Bootstrap 3) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  color: var(--ink) !important;
  background: var(--bg) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

html body h1 { font-size: clamp(2.5rem, 5vw, 3.75rem) !important; letter-spacing: -0.025em; line-height: 1.08; }
html body h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem) !important; letter-spacing: -0.015em; line-height: 1.18; }
html body h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem) !important; line-height: 1.3; }
html body h4 { font-size: 1.15rem !important; line-height: 1.35; }

html body p {
  margin: 0 0 1.2em;
  color: #4A463F;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Long-form body copy gets a darker, more readable ink */
.section-block p,
.page-hero-copy p,
.reasons-feature-copy p {
  color: #3A362F;
}

html body p:last-child { margin-bottom: 0; }

/* Beat Bootstrap's default link colors */
html body a {
  color: var(--accent);
  text-decoration: none;
}

html body a:hover,
html body a:focus {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.2em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

::selection {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
  color: #fff;
}

/* --- Topbar --- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,0.85);
}

.topbar a:hover {
  color: #fff;
}

.topbar-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.topbar-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-list i {
  opacity: 0.6;
  font-size: 12px;
}

.topbar-tagline {
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.site-nav {
  padding: 16px 0;
}

.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--sage));
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.brand-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* --- Navigation --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links > li > a.active,
.nav-links > li > a:hover,
.nav-links > li > a:focus {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* --- Dropdown --- */
.dropdown-toggle::after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 6px;
  font-size: 11px;
}

.dropdown {
  /* visibility hidden (not display:none) so we can animate AND keep the
     element in the layout — combined with the transparent bridge below
     this prevents losing :hover when the mouse crosses into the menu */
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 200;
  /* No margin-top — instead pad the dropdown's top so the visual gap
     is part of the dropdown's hit area. */
  padding-top: 14px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
  list-style: none;
}

/* Invisible bridge between nav item and dropdown — keeps hover continuous. */
.dropdown-toggle-wrapper::after,
.nav-links > li:has(> .dropdown)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: auto;
  display: none;
}

.nav-links > li:hover::after,
.nav-links > li:focus-within::after {
  display: block;
}

.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown,
.nav-links > li.menu-open > .dropdown {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s;
}

.dropdown li {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 400;
  font-size: 14px;
  transition: background var(--transition);
}

.dropdown a:hover {
  background: var(--sage-soft);
  color: var(--sage-dark);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
}

/* --- Section Blocks --- */
.hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(56px, 6vw, 90px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196, 130, 92, 0.12), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(122, 155, 143, 0.10), transparent 55%),
    linear-gradient(180deg, #FFFDFA 0%, #FBF7F0 100%);
  position: relative;
  overflow: hidden;
}

/* Modern hero grid (replaces Bootstrap row/col) */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-right: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual picture {
  display: block;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(45, 42, 38, 0.25),
    0 18px 36px -18px rgba(196, 130, 92, 0.20);
  transform: rotate(-1.2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover picture {
  transform: rotate(0deg) translateY(-4px);
}

.hero-visual picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 42, 38, 0.18) 100%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Floating quote badge over the hero image */
.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 280px;
  padding: 22px 24px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(45, 42, 38, 0.18);
  border: 1px solid var(--border);
  transform: rotate(2deg);
  z-index: 2;
}

.hero-badge-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
}

.hero-badge-attribution {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual picture { transform: none; }
  .hero-badge {
    position: static;
    width: auto;
    margin-top: 20px;
    transform: none;
  }
}

.page-hero {
  padding: clamp(60px, 7vw, 96px) 0 clamp(56px, 6vw, 80px);
  background:
    radial-gradient(ellipse at 70% 10%, rgba(196, 130, 92, 0.10), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(122, 155, 143, 0.08), transparent 50%),
    linear-gradient(180deg, #FFFDFA 0%, #F7F3EC 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero > .container { position: relative; z-index: 1; }

/* Page-hero modern 2-column grid (used by conditions; also matches approach .row) */
.page-hero .page-hero-grid,
.page-hero .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin: 0 !important;
}

.page-hero .page-hero-grid > *,
.page-hero .row > [class*="col-"] {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-hero-copy,
.page-hero .col-md-7,
.page-hero .col-md-8 {
  max-width: 100%;
}

.page-hero-visual,
.page-hero .col-md-5,
.page-hero .col-md-4 {
  position: relative;
}

.page-hero-visual picture,
.page-hero .col-md-5 picture,
.page-hero .col-md-4 picture {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 56px -22px rgba(45, 42, 38, 0.28),
    0 16px 32px -16px rgba(196, 130, 92, 0.18);
  transform: rotate(-1deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  aspect-ratio: 4 / 3;
}

.page-hero-visual:hover picture,
.page-hero .col-md-5:hover picture,
.page-hero .col-md-4:hover picture {
  transform: rotate(0) translateY(-4px);
}

.page-hero-visual picture img,
.page-hero .col-md-5 picture img,
.page-hero .col-md-4 picture img,
.page-hero-visual > img,
.page-hero .col-md-5 > img,
.page-hero .col-md-4 > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero-visual:hover picture img,
.page-hero .col-md-5:hover picture img,
.page-hero .col-md-4:hover picture img {
  transform: scale(1.04);
}

/* Approach pages with bare <img> in col-md-5 (no <picture> wrapper) */
.page-hero .col-md-5 > img,
.page-hero .col-md-4 > img {
  border-radius: 24px !important;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 28px 56px -22px rgba(45, 42, 38, 0.28),
    0 16px 32px -16px rgba(196, 130, 92, 0.18) !important;
  transform: rotate(-1deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero .col-md-5:hover > img,
.page-hero .col-md-4:hover > img {
  transform: rotate(0) translateY(-4px);
}

@media (max-width: 991px) {
  .page-hero .page-hero-grid,
  .page-hero .row {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .page-hero-visual picture,
  .page-hero .col-md-5 picture,
  .page-hero .col-md-4 picture,
  .page-hero .col-md-5 > img,
  .page-hero .col-md-4 > img {
    transform: none;
  }
}

.section-block {
  padding: 90px 0;
}

.section-block.alt {
  background: var(--sage-soft);
}

.section-block.warm {
  background: linear-gradient(180deg, #FFFDFA 0%, #FBF6EE 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* --- Hero Content --- */
.hero-copy {
  padding-right: 40px;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  letter-spacing: -0.03em;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
}

.hero-subtitle,
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* --- Buttons --- */
.btn-main,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}

.btn-main {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 90, 60, 0.25);
}

.btn-main:hover,
.btn-main:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 90, 60, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-main:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Cards --- */
.hero-card,
.content-card,
.condition-card,
.approach-card,
.info-card,
.step-card,
.insurance-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.hero-card {
  padding: 36px;
}

.content-card,
.info-card,
.step-card {
  padding: 32px;
}

.condition-card,
.approach-card,
.insurance-card {
  padding: 28px;
}

.review-card {
  padding: 28px;
  position: relative;
}

/* --- Card Grids --- */
.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric {
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- Section Headings --- */
.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 1.1rem;
}

/* --- Card Content --- */
.content-card h3,
.condition-card h3,
.approach-card h3,
.info-card h3,
.step-card h3,
.insurance-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.content-card p,
.condition-card p,
.approach-card p,
.info-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.condition-card img,
.approach-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --- Meta / Check Lists --- */
.meta-list,
.check-list,
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meta-list li,
.check-list li,
.hero-highlights li {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.hero-highlights li {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.95rem;
}

.meta-list i,
.check-list i,
.hero-highlights i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* --- Step Cards --- */
.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

/* --- Trust Band --- */
.trust-band {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-item .trust-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.trust-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.trust-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Testimonials --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1199px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card blockquote {
  margin: 0 0 16px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.review-card blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 8px;
  opacity: 0.6;
}

.review-card .review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.review-card .review-meta {
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* --- Placeholder Note --- */
.placeholder-note {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #FFF6DC;
  color: #8A6316;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* --- Legal Banner --- */
.legal-banner {
  padding: 16px 20px;
  background: #FFF6DC;
  border: 1px solid #E8D58A;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6B5520;
}

.legal-banner strong {
  display: block;
  margin-bottom: 4px;
}

/* --- Forms --- */
.form-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-card h2 {
  font-family: var(--font-serif);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-group label .required {
  color: var(--accent);
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #FCFBF9;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group small {
  display: block;
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 0.8rem;
}

.form-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.9rem;
}

.form-checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
}

.form-disclaimer {
  padding: 16px;
  background: var(--sage-soft);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.form-message {
  display: none;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-message.success {
  display: block;
  background: #E8F5E9;
  color: #2E5A30;
  border: 1px solid #A5D6A7;
}

.form-message.error {
  display: block;
  background: #FFEBEE;
  color: #7F1D1D;
  border: 1px solid #EF9A9A;
}

/* --- Loading Spinner --- */
.btn-main.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-main.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
  width: 24px;
  text-align: center;
}

.contact-info-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-info-item span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Map --- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
}

/* --- Conditions Overview Page --- */
.condition-group {
  margin-bottom: 48px;
}

.condition-group h2 {
  font-family: var(--font-serif);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-soft);
}

.condition-group .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Approach Card --- */
.approach-card .card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

/* --- Page Links (tag-style) --- */
.page-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-links a {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--sage-soft);
  border-radius: 999px;
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}

.page-links a:hover {
  background: var(--sage);
  color: #fff;
}

/* --- Related Conditions --- */
.related-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-links h3 {
  font-family: var(--font-serif);
  margin-bottom: 16px;
}

/* --- FAQ --- */
.faq-section {
  margin-top: 48px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 18px;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open h3::after {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  display: none;
  padding-bottom: 8px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px 28px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-card-body .blog-date {
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.blog-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}

.blog-content h2 {
  margin-top: 2em;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* --- Footer --- */
.site-footer {
  padding: 70px 0 0;
  background: #24211D;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-family: var(--font-serif);
  margin-bottom: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-list i {
  margin-right: 8px;
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-crisis {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-crisis strong {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(45, 42, 38, 0.15);
  z-index: 1000;
  padding: 24px 0;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 600px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner .btn-cookie {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  transition: background var(--transition);
}

.cookie-banner .btn-cookie.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-banner .btn-cookie.accept:hover {
  background: var(--accent-dark);
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(36, 33, 29, 0.6);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 560px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-content h3 {
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-toggle label {
  font-weight: 500;
  font-size: 0.95rem;
}

.cookie-toggle .toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.cookie-toggle .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle .toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--sage);
}

.cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Scroll Animations --- */
/* Default: visible. Only fade-in BELOW the fold (handled by .below-fold class). */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Above-the-fold hero must NEVER fade — it's the LCP element. */
.hero.fade-in,
.page-hero.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* Sections marked .below-fold start hidden and animate in on scroll. */
.below-fold.fade-in {
  opacity: 0;
  transform: translateY(24px);
}

.below-fold.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1199px) {
  .nav-links > li > a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .hero h1 { font-size: clamp(2.2rem, 5.5vw, 3rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .metric-grid,
  .review-grid,
  .trust-grid,
  .blog-grid,
  .condition-group .card-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .hero-copy { padding-right: 0; margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cookie-banner .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-tagline { display: none; }
  .topbar-list { justify-content: center; }

  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    gap: 4px;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links > li > a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .hero,
  .section-block {
    padding: 60px 0;
  }

  .page-hero {
    padding: 50px 0 40px;
  }

  .form-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-checkbox-group { grid-template-columns: 1fr; }

  .cookie-banner .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-banner .btn-cookie { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-main, .btn-secondary, .btn-outline { width: 100%; text-align: center; }
}

/* --- Focus States --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Print Styles --- */
@media print {
  .site-header,
  .topbar,
  .site-footer,
  .cookie-banner,
  .menu-toggle { display: none; }
}

/* ================================================================
   Design Polish Layer
   Subtle distinctive details — restraint over decoration.
   ================================================================ */

/* --- Hero: organic decorative blob (very subtle) --- */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at center, rgba(122, 155, 143, 0.12), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

/* --- Section heading: small accent bar below H2s --- */
.section-heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  border-radius: 999px;
  margin-top: 22px;
  opacity: 0.85;
}

/* When section heading is centered (e.g., final CTA block) */
.section-block .container[style*="text-align:center"] .section-heading h2::after,
.section-heading[style*="margin:0 auto"] h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- Refined card hover (condition + approach + blog) --- */
.condition-card,
.approach-card,
.insurance-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.condition-card:hover,
.approach-card:hover,
.insurance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

/* Subtle image zoom inside condition cards */
.condition-card picture,
.condition-card img,
.blog-card picture {
  overflow: hidden;
  display: block;
  border-radius: var(--radius-sm);
}

.condition-card picture {
  position: relative;
  margin-bottom: 18px;
  aspect-ratio: 4 / 3;
}

.condition-card picture img {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.condition-card:hover picture img {
  transform: scale(1.04);
}

/* --- Inline body links: animated underline --- */
.content-card a:not(.btn-main):not(.btn-secondary):not(.btn-outline),
main p a:not(.btn-main):not(.btn-secondary):not(.btn-outline):not(.read-more) {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1.5px;
  transition: background-size 0.3s ease, color var(--transition);
  padding-bottom: 1px;
}

.content-card a:not(.btn-main):not(.btn-secondary):not(.btn-outline):hover,
main p a:not(.btn-main):not(.btn-secondary):not(.btn-outline):not(.read-more):hover {
  background-size: 100% 1.5px;
}

/* --- Refined testimonials --- */
.review-card {
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-card blockquote {
  position: relative;
  font-style: normal;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}

.review-card blockquote::before {
  position: absolute;
  top: -22px;
  left: -6px;
  font-size: 4rem;
  opacity: 0.18;
  color: var(--accent);
  margin: 0;
}

.review-card .review-author {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* --- Drop cap for long-form intro paragraphs --- */
.dropcap::first-letter,
.blog-content > p:first-of-type::first-letter,
.condition-intro > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* --- Soft section divider between contrasting sections --- */
.section-block + .section-block.alt,
.section-block.alt + .section-block:not(.alt):not(.warm),
.section-block.warm + .section-block:not(.warm):not(.alt) {
  position: relative;
}

/* --- Trust band: lift items on hover --- */
.trust-item {
  transition: transform var(--transition);
}

.trust-item:hover { transform: translateY(-3px); }

.trust-item:hover .trust-icon {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.trust-icon { transition: background var(--transition), color var(--transition); }

/* --- Hero highlights checkmark refinement --- */
.hero-highlights li {
  align-items: center;
}

.hero-highlights li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 0;
  flex-shrink: 0;
}

/* --- Step number: more distinctive --- */
.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  opacity: 0.6;
}

.step-number {
  background: linear-gradient(135deg, var(--accent-soft), #FBE9D6);
  color: var(--accent-dark);
  box-shadow: 0 2px 8px rgba(196, 130, 92, 0.15);
}

/* --- Eyebrow refinement --- */
.eyebrow {
  background: rgba(122, 155, 143, 0.14);
  border: 1px solid rgba(122, 155, 143, 0.2);
}

/* --- Selection refinement --- */
::selection {
  background: var(--accent);
  color: #fff;
}

/* --- Brand mark: more sophisticated gradient --- */
.brand-mark {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 50%, var(--sage) 100%);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.22);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%);
  pointer-events: none;
}

/* --- Pull quote (for use within long-form content) --- */
.pull-quote {
  margin: 40px 0;
  padding: 32px 36px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}

/* --- Buttons: subtle inner shine --- */
.btn-main {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  position: relative;
  overflow: hidden;
}

.btn-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-main:hover::after { left: 100%; }

/* --- Soft scroll-margin for anchor jumps under sticky header --- */
[id] { scroll-margin-top: 100px; }

/* --- Footer brand bar (gradient line between content and bottom row) --- */
.footer-bottom {
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  border-radius: 999px;
}

/* --- Map polish --- */
.map-embed {
  position: relative;
  transition: box-shadow var(--transition);
}

.map-embed:hover { box-shadow: var(--shadow-lg); }

/* --- Refined responsive tweaks for testimonials & polish --- */
@media (max-width: 767px) {
  .review-grid { grid-template-columns: 1fr; }
  .hero::before, .hero::after { opacity: 0.6; }
  .pull-quote { padding: 24px; font-size: 1.15rem; }
}

/* ================================================================
   Body content layout — modernize Bootstrap 3 .row/.col-md-* grids
   used inside section-block on conditions/approach/blog/legal pages.
   ================================================================ */

.section-block .row {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin: 0 !important;
}

.section-block .row > [class*="col-"] {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Single-column rows (col-md-12, col-md-8 with offset) */
.section-block .row > .col-md-12,
.section-block .row > .col-md-8.col-md-offset-2,
.section-block .row > .col-md-10.col-md-offset-1,
.section-block .row > .col-md-6.col-md-offset-3 {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* When only ONE child exists, span full width */
.section-block .row:has(> :only-child) {
  grid-template-columns: 1fr;
}

@media (max-width: 991px) {
  .section-block .row {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Long-form content (condition/approach body) — generous typography */
.section-block .col-md-8 > p,
.section-block .col-md-12 > p,
.section-block .col-md-8.col-md-offset-2 > p {
  font-size: 1.075rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 68ch;
}

.section-block .col-md-8 > h2,
.section-block .col-md-12 > h2 {
  margin-top: 2em;
  font-family: var(--font-serif);
}

.section-block .col-md-8 > h2:first-child,
.section-block .col-md-12 > h2:first-child {
  margin-top: 0;
}

.section-block .col-md-8 > .check-list,
.section-block .col-md-12 > .check-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.section-block .col-md-8 > .check-list li,
.section-block .col-md-12 > .check-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
  color: var(--ink);
}

.section-block .col-md-8 > .check-list li:last-child,
.section-block .col-md-12 > .check-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-block .col-md-8 > .check-list li:first-child,
.section-block .col-md-12 > .check-list li:first-child {
  padding-top: 0;
}

.section-block .col-md-8 > .check-list i,
.section-block .col-md-12 > .check-list i {
  color: var(--accent);
  background: var(--accent-soft);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* Sidebar (col-md-4) — make it sticky and feel like an actual aside */
.section-block .col-md-4 {
  position: sticky;
  top: 110px;
}

.section-block .col-md-4 .info-card,
.section-block .col-md-4 .content-card,
.section-block .col-md-4 > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .section-block .col-md-4 { position: static; }
}

/* ================================================================
   New homepage sections (Do I really need therapy?, Conditions overview)
   ================================================================ */

/* Centered section heading variant */
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* "Reasons" feature row — image + lead copy side by side */
.reasons-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.reasons-feature-visual {
  position: relative;
}

.reasons-feature-visual picture {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 56px -22px rgba(45, 42, 38, 0.28),
    0 16px 32px -16px rgba(122, 155, 143, 0.20);
}

.reasons-feature-visual picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Floating quote card overlapping the image */
.reasons-quote-card {
  position: absolute;
  bottom: -36px;
  right: -24px;
  max-width: 320px;
  padding: 22px 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(45, 42, 38, 0.16);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.reasons-quote-card i {
  display: inline-block;
  color: var(--accent);
  opacity: 0.6;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.reasons-quote-card p { margin: 0; color: var(--ink); }

.reasons-feature-copy p {
  font-size: 1.075rem;
  line-height: 1.85;
  color: var(--ink);
}

.reasons-feature-copy p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 4em;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* Reasons grid — 3 supporting points below the feature */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 56px);
}

.reasons-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.reasons-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  border-radius: 0 0 999px 999px;
  opacity: 0.7;
}

.reasons-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reasons-card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), #FBE9D6);
  color: var(--accent-dark);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(196, 130, 92, 0.15);
}

.reasons-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.2rem !important;
  margin-bottom: 12px;
  line-height: 1.3;
}

.reasons-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Section divider — soft top edge to separate from previous section */
.section-divided {
  position: relative;
}

.section-divided::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  border-radius: 0 0 999px 999px;
  opacity: 0.85;
}

/* Conditions overview group label */
.condition-group-label {
  font-family: var(--font-serif) !important;
  font-size: 1.4rem !important;
  margin-bottom: 28px !important;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-soft);
  display: inline-block;
  position: relative;
}

.condition-group-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 56px;
  height: 2px;
  background: var(--accent);
}

/* Condition card refinement (homepage cards) */
.condition-card {
  display: block;
  color: var(--ink) !important;
  text-decoration: none !important;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.condition-card picture {
  margin: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: 4 / 3;
}

.condition-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.condition-card h3,
.condition-card p,
.condition-card .card-link {
  padding-left: 24px;
  padding-right: 24px;
}

.condition-card h3 {
  margin-top: 22px !important;
  margin-bottom: 10px !important;
  font-size: 1.2rem !important;
  font-family: var(--font-serif) !important;
}

.condition-card p {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px !important;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  transition: gap var(--transition);
}

.card-link i {
  font-size: 0.78rem;
  transition: transform var(--transition);
}

.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.condition-card:hover .card-link {
  gap: 12px;
}

.condition-card:hover .card-link i {
  transform: translateX(2px);
}

/* Responsive fallbacks */
@media (max-width: 1199px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .reasons-feature {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .reasons-quote-card {
    position: static;
    max-width: 100%;
    margin-top: 18px;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Approach pages — stats band, 2-column body, visual breaks
   ================================================================ */

/* Stats band sits flush below the hero, breaks the hero/body transition */
.approach-stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.approach-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

.approach-stat {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.approach-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--border);
}

.approach-stat-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), #FBE9D6);
  color: var(--accent-dark);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(196, 130, 92, 0.12);
}

.approach-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.15;
}

.approach-stat span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .approach-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-stat:nth-child(2)::after { display: none; }
}

@media (max-width: 575px) {
  .approach-stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .approach-stat::after { display: none; }
}

/* 2-column body grid (overrides the centered-single-column for approach pages) */
.section-block.approach-body .row,
.section-block .row.approach-body-row {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
  align-items: start;
}

.section-block.approach-body .row > .col-md-8.col-md-offset-2,
.section-block .row.approach-body-row > .col-md-8.col-md-offset-2 {
  grid-column: 1 / 2 !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Sticky sidebar card for approach pages */
.approach-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}

.approach-sidebar-card h4 {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.approach-sidebar-card h4 i {
  color: var(--accent);
  font-size: 14px;
}

.approach-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}

.approach-sidebar-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  gap: 12px;
}

.approach-sidebar-card li:not(:last-child) {
  border-bottom: 1px dashed var(--border-light);
}

.approach-sidebar-card .label {
  color: var(--muted);
  font-size: 0.86rem;
}

.approach-sidebar-card .value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.approach-sidebar-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 26px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 24px -10px rgba(139, 90, 60, 0.4);
}

.approach-sidebar-cta h4 {
  color: #fff !important;
  font-family: var(--font-serif) !important;
  font-size: 1.1rem !important;
  margin: 0 0 8px !important;
  border: none !important;
  padding: 0 !important;
}

.approach-sidebar-cta p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.9rem !important;
  line-height: 1.5;
  margin: 0 0 18px !important;
}

.approach-sidebar-cta .btn-main {
  background: #fff !important;
  color: var(--accent-dark) !important;
  width: 100%;
}

.approach-sidebar-cta .btn-main:hover {
  background: #FBE9D6 !important;
  color: var(--accent-dark) !important;
}

@media (max-width: 991px) {
  .section-block.approach-body .row,
  .section-block .row.approach-body-row {
    grid-template-columns: 1fr !important;
  }
  .approach-sidebar { position: static; }
}

/* Pull quote between body sections */
.approach-pullquote {
  margin: 48px 0;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--sage-soft) 0%, transparent 80%);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  position: relative;
}

.approach-pullquote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 4rem;
  color: var(--sage);
  opacity: 0.35;
  line-height: 1;
  font-family: var(--font-serif);
}

.approach-pullquote p {
  position: relative;
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.approach-pullquote-attribution {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Section image break — full-width image with overlay caption */
.approach-image-break {
  margin: 56px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 21 / 9;
  box-shadow:
    0 24px 56px -22px rgba(45, 42, 38, 0.30),
    0 12px 28px -16px rgba(196, 130, 92, 0.20);
}

.approach-image-break picture,
.approach-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-image-break .caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  right: 32px;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  z-index: 2;
  max-width: 720px;
}

.approach-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(45, 42, 38, 0.55) 100%);
  pointer-events: none;
}

/* Section H2 styling on approach pages — stronger contrast */
.section-block .col-md-8 > h2,
.section-block .col-md-12 > h2 {
  color: var(--ink) !important;
  margin-top: 2.5em !important;
  position: relative;
  padding-top: 12px;
}

.section-block .col-md-8 > h2:first-of-type {
  margin-top: 0 !important;
  padding-top: 0;
}

.section-block .col-md-8 > h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage));
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-block .col-md-8 > h2:first-of-type::before { display: none; }

/* --- Card grid modifier: full-width card inside a multi-col grid --- */
.content-card-wide {
  grid-column: 1 / -1;
}

/* Slightly tighter padding on content cards inside a grid (vs. centered single column) */
.card-grid .content-card {
  padding: 28px 30px;
}

.card-grid .content-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-grid .content-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.9em;
}

.card-grid .content-card p:last-child {
  margin-bottom: 0;
}

.card-grid .content-card .check-list {
  margin-top: 6px;
}

.card-grid .content-card .check-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-grid .content-card .check-list li:last-child {
  margin-bottom: 0;
}

/* Compact card grid — smaller cards for many short blocks */
.card-grid.card-grid-compact {
  gap: 20px;
}

.card-grid.card-grid-compact .content-card {
  padding: 22px 24px;
}

.card-grid.card-grid-compact .content-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card-grid.card-grid-compact .content-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Language chips */
.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.lang-chips span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --- Insurance "many more — call us" card --- */
.insurance-card-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  background: linear-gradient(155deg, var(--accent-soft) 0%, #FBF6EE 60%, var(--sage-soft) 100%);
  border: 1px solid var(--accent-soft);
  position: relative;
  overflow: hidden;
}

.insurance-card-more::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.insurance-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(196, 130, 92, 0.28);
  position: relative;
  z-index: 1;
}

.insurance-card-more h3 {
  color: var(--accent-dark);
  position: relative;
  z-index: 1;
}

.insurance-card-more p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.insurance-card-more p strong {
  color: var(--accent-dark);
  white-space: nowrap;
}

.insurance-more-cta {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-dark);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), color var(--transition);
}

.insurance-card-more:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(196, 130, 92, 0.18);
}

.insurance-card-more:hover .insurance-more-cta {
  color: var(--accent);
  transform: translateX(4px);
}

/* ================================================================
   Refined Footer — structured, professional
   ================================================================ */
.site-footer {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(180deg, #2A2723 0%, #1F1C18 100%);
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 35%, var(--sage-dark) 70%, var(--sage) 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(196, 130, 92, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-family: var(--font-serif);
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 22px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

/* Brand column gets a serif heading instead of the small uppercase one */
.footer-col:first-child h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.4fr;
  gap: 56px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.footer-list li a {
  position: relative;
  padding-left: 0;
  transition: padding-left var(--transition), color var(--transition);
}

.footer-list li a:hover {
  padding-left: 6px;
  color: #fff;
}

.footer-col:first-child .footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-col:first-child .footer-list i {
  flex-shrink: 0;
  margin-right: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 130, 92, 0.12);
  color: var(--accent);
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 2px;
}

.footer-list i {
  margin-right: 8px;
  color: var(--accent);
  width: 16px;
  text-align: center;
}

/* Footer brand intro paragraph */
.site-footer .footer-col:first-child > p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.93rem !important;
  line-height: 1.7 !important;
  max-width: 340px;
}

.footer-bottom {
  margin-top: 0;
  padding: 26px 0;
  border-top: none;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}

.footer-bottom::before {
  display: none;
}

.footer-bottom > span:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-crisis {
  margin-top: 0;
  padding: 26px 32px;
  border-top: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 30px;
  line-height: 1.65;
}

.footer-crisis strong {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-crisis p {
  margin: 0;
  color: inherit;
}

.footer-crisis p + p {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-crisis {
    padding: 22px 20px;
  }
}

/* ================================================================
   Conditions pages — multi-section, multi-column layout
   ================================================================ */

/* Lead intro: 2-col with copy + sidebar callout */
.cond-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.cond-intro-lead .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.lead-prose p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.55;
  color: #2D2A26;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.cond-intro-aside {
  position: sticky;
  top: 110px;
}

.cond-callout {
  position: relative;
  padding: 28px 28px 24px;
  background: linear-gradient(155deg, var(--accent-soft) 0%, var(--sage-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 130, 92, 0.18);
}

.cond-callout > i {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.55;
}

.cond-callout p {
  margin: 24px 0 0;
  font-style: italic;
  color: var(--accent-dark);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cond-callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.cond-callout-cta:hover {
  transform: translateX(4px);
  border-color: var(--accent);
  color: var(--accent);
}

/* "What this can feel like" — symptom cards in 2-col grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.symptom-card {
  position: relative;
  padding: 26px 28px 26px 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.symptom-num {
  position: absolute;
  top: 26px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.symptom-num::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.5;
}

.symptom-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

/* "How group therapy can help" — numbered approach pillars */
.approach-grid {
  display: grid;
  gap: 24px;
}

.approach-grid.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.approach-grid.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.approach-pillar {
  position: relative;
  padding: 32px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.approach-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(196, 130, 92, 0.28);
}

.approach-pillar p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--muted);
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

/* Page-hero meta strip — quick scannable badges under the CTAs */
.page-hero .hero-actions {
  margin: 28px 0 0;
}

.page-hero-meta {
  list-style: none;
  padding: 18px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(45, 42, 38, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.page-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.005em;
}

.page-hero-meta i {
  color: var(--accent);
  font-size: 0.78rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
}

/* CTA section */
.cond-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cond-cta-inner .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.cond-cta-inner h2 {
  font-family: var(--font-serif);
  margin-bottom: 16px;
}

.cond-cta-inner p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* FAQ grid: 2 columns of accordion cards */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}

.faq-grid .faq-item {
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-grid .faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-grid .faq-item.open,
.faq-grid .faq-item:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}

.faq-grid .faq-item h3 {
  font-size: 1.02rem;
  margin: 0;
  padding-right: 24px;
}

.faq-grid .faq-item .faq-answer {
  margin-top: 10px;
}

.faq-grid .faq-item .faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  color: var(--muted);
}

/* Related conditions: visual cards with images */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.related-card picture,
.related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  overflow: hidden;
}

.related-card picture {
  position: relative;
}

.related-card img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-weight: 600;
}

.related-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}

.related-card-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.related-card:hover .related-card-cta {
  color: var(--accent-dark);
  gap: 10px;
}

/* Conditions-page responsive */
@media (max-width: 991px) {
  .cond-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cond-intro-aside {
    position: static;
  }
  .symptom-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid.card-grid-3,
  .approach-grid.card-grid-2 {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .lead-prose p {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .symptom-card {
    padding: 24px 22px 22px 64px;
  }
  .symptom-num {
    left: 20px;
    font-size: 1.2rem;
  }
}

/* --- Reduced motion: respect user preference --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* Visually hidden but available to assistive tech (heading hierarchy fixes, etc.) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
