/* =========================================
   Renegade Counseling — Shared Styles
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;1,300;1,400&family=Outfit:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --teal-dark:   #0c3d3d;
  --teal-mid:    #1a6b6b;
  --teal-muted:  #2d8a7e;
  --teal-soft:   #d4eeeb;
  --teal-pale:   #edf7f6;
  --orange:      #e86020;
  --orange-dark: #c44d12;
  --orange-pale: #fdf0e8;
  --ink:         #0c2b2b;
  --muted:       #4a7070;
  --border:      #b8d8d5;
  --cream:       #f5fafa;
  --white:       #ffffff;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Base --- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 300;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
em { font-style: italic; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { width: 92%; max-width: 1160px; margin: 0 auto; }
section { padding: 88px 0; }

/* --- Labels --- */
.eyebrow, .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}
.eyebrow-teal { color: var(--teal-muted); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-white { background: var(--white); color: var(--teal-dark); border-color: var(--white); }
.btn-white:hover { background: var(--teal-soft); border-color: var(--teal-soft); }

/* --- Section Header (centered) --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { color: var(--teal-dark); }
.section-header p { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.8; }

/* --- Divider --- */
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 0.85rem 0 0; }
.divider-center { margin: 0.85rem auto 0; }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  color: var(--muted);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  margin-left: 0.75rem;
  font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--orange-dark); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0.75rem 0 1.25rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--muted);
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  border-left-color: var(--orange);
  background: var(--orange-pale);
  color: var(--ink);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.45rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--teal-dark);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 0.85rem auto 0;
  max-width: 520px;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}
.breadcrumb {
  font-size: 0.75rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: block;
}

/* =========================================
   HOME — HERO
   ========================================= */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 55% 45%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 1px;
  height: 70%;
  background: var(--border);
}
.hero-left h1 { font-size: clamp(2.6rem, 4.2vw, 3.8rem); margin-bottom: 2rem; }
.hero-left h1 em { color: var(--teal-mid); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 40ch; line-height: 1.8; margin-bottom: 3rem; }
.cta-group { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.btn-ghost {
  color: var(--teal-mid);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 400;
}
.btn-ghost:hover { color: var(--teal-dark); border-color: var(--teal-mid); }

.hero-right {
  background: var(--teal-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: 30px; right: 30px;
  width: 240px; height: 240px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.quote-block {
  border-left: 3px solid var(--orange);
  padding-left: 1.75rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #e8f5f4;
  margin-bottom: 1rem;
  font-weight: 300;
}
.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.specialties { display: flex; flex-direction: column; gap: 0.7rem; position: relative; z-index: 1; }
.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.specialty-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   HOME — STATEMENT
   ========================================= */
.statement {
  background: var(--teal-pale);
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement h2 { font-size: clamp(1.8rem, 2.4vw, 2.5rem); color: var(--teal-dark); }
.statement h2 em { color: var(--orange); }
.statement-body { font-size: 0.98rem; color: var(--muted); line-height: 1.85; }
.statement-body p + p { margin-top: 1rem; }

/* =========================================
   HOME — APPROACH
   ========================================= */
.approach {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  border-bottom: 1px solid var(--border);
}
.approach-content h2 { font-size: clamp(1.7rem, 2vw, 2.3rem); margin-bottom: 1.5rem; color: var(--teal-dark); }
.approach-content p { color: var(--muted); font-size: 0.98rem; line-height: 1.85; max-width: 58ch; }
.approach-content p + p { margin-top: 1rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.pillar {
  background: var(--teal-pale);
  padding: 2rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.pillar:hover { border-left-color: var(--orange); }
.pillar-num { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--border); line-height: 1; margin-bottom: 0.75rem; font-weight: 300; }
.pillar-title { font-weight: 500; font-size: 0.92rem; color: var(--teal-dark); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.pillar-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* =========================================
   HOME — FOR YOU
   ========================================= */
.for-you {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  border-bottom: 1px solid var(--border);
}
.for-you-content h2 { font-size: clamp(1.7rem, 2vw, 2.3rem); margin-bottom: 1.75rem; color: var(--teal-dark); }
.recognition-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.recognition-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.65;
}
.recognition-list li::before { content: '—'; color: var(--orange); flex-shrink: 0; font-weight: 400; }
.closing-note {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-dark);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  line-height: 1.55;
  font-weight: 300;
}

/* =========================================
   HOME — TESTIMONIALS
   ========================================= */
.testimonials { background: var(--teal-dark); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.65); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem;
}
.testimonial-card blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.testimonial-author {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--teal-soft);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band { background: var(--orange); text-align: center; padding: 72px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* =========================================
   ABOUT PAGE
   ========================================= */

/* Full-width bio split — mirrors the hero 55/45 layout */
.about-bio {
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 55% 43%;
  gap: 5rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.about-bio-text h2 { color: var(--teal-dark); margin-bottom: 1.5rem; font-size: clamp(1.8rem, 2.5vw, 2.6rem); }
.about-bio-text p { color: var(--muted); font-size: 0.98rem; line-height: 1.85; }
.about-bio-text p + p { margin-top: 1rem; }

/* Full-width teal-pale approach-style section */
.approach-pale {
  background: var(--teal-pale);
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-pale h2 { color: var(--teal-dark); margin-bottom: 1.5rem; font-size: clamp(1.7rem, 2vw, 2.3rem); }
.approach-pale p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; }
.approach-pale p + p { margin-top: 0.85rem; }

/* Full-width teal-dark approach-style section */
.approach-dark {
  background: var(--teal-dark);
  padding: 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.approach-dark::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.approach-dark .section-label { color: rgba(255,255,255,0.45); }
.approach-dark h2 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(1.7rem, 2vw, 2.3rem); }
.approach-dark p { color: rgba(255,255,255,0.7); font-size: 0.97rem; line-height: 1.85; }
.approach-dark p + p { margin-top: 0.85rem; }

/* Credentials grid — sits inside .approach-pale right column */
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-text h2 { color: var(--teal-dark); margin-bottom: 1.25rem; }
.about-intro-text p { color: var(--muted); font-size: 0.98rem; line-height: 1.85; }
.about-intro-text p + p { margin-top: 0.85rem; }
.about-photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(12,61,61,0.15);
  background: var(--teal-dark);
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-photo-placeholder {
  min-height: 480px;
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.about-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}
.about-photo-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.about-credentials { background: var(--teal-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.credential-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(12,61,61,0.06);
}
.credential-card h3 {
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.credential-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.55rem;
}
.credential-card li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.55em;
}

.about-values { background: var(--teal-dark); }
.about-values .section-header h2 { color: var(--white); }
.about-values .section-header p { color: rgba(255,255,255,0.65); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem;
}
.value-card .num { font-family: 'Fraunces', serif; font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.6rem; font-weight: 300; }
.value-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* =========================================
   WHO I WORK WITH
   ========================================= */
.population-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.population-block:last-child { border-bottom: none; }
.population-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-muted);
  font-weight: 500;
  padding-top: 0.4rem;
  line-height: 1.6;
}
.population-content h2 { color: var(--teal-dark); margin-bottom: 1.25rem; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.population-content p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; }
.population-content p + p { margin-top: 0.85rem; }
.population-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.population-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}
.population-list li::before { content: '—'; color: var(--orange); flex-shrink: 0; }

/* =========================================
   WHAT I OFFER
   ========================================= */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-visual { order: 1; }
.service-text h2 { color: var(--teal-dark); margin-bottom: 1rem; font-size: clamp(1.5rem, 2vw, 2rem); }
.service-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; }
.service-text p + p { margin-top: 0.85rem; }
.service-feature-list { margin-top: 1.25rem; }
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.service-feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.55em;
}
.service-visual {
  background: var(--teal-pale);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
  gap: 1rem;
  border: 1px solid var(--border);
}
.service-visual svg {
  width: 60px; height: 60px;
  stroke: var(--teal-mid);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-visual-title { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--teal-dark); font-weight: 300; }
.service-visual-sub { font-size: 0.87rem; color: var(--muted); max-width: 220px; line-height: 1.6; }

/* =========================================
   FEES PAGE
   ========================================= */
.fees-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fee-table { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); margin-bottom: 1.5rem; }
.fee-table-header { background: var(--teal-dark); color: var(--white); padding: 1.1rem 1.75rem; }
.fee-table-header h3 { font-size: 0.92rem; color: var(--white); margin: 0; font-family: 'Outfit', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  gap: 1rem;
}
.fee-row:last-child { border-bottom: none; }
.fee-row-label { color: var(--ink); font-weight: 400; }
.fee-row-sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.fee-amount { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--teal-dark); font-weight: 300; white-space: nowrap; }
.fee-note {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal-muted);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--teal-dark);
  line-height: 1.75;
}
.fees-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.aside-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(12,61,61,0.07);
}
.aside-card h3 { font-size: 0.78rem; font-family: 'Outfit', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-dark); margin-bottom: 0.85rem; }
.aside-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.aside-card p + p { margin-top: 0.75rem; }
.insurance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.insurance-inner h2 { color: var(--teal-dark); margin-bottom: 1.25rem; }
.insurance-inner p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; }
.insurance-inner p + p { margin-top: 0.85rem; }
.insurance-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.insurance-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--orange); line-height: 1; font-weight: 300; flex-shrink: 0; min-width: 2rem; }
.step-text h4 { font-size: 0.9rem; font-weight: 500; color: var(--teal-dark); margin-bottom: 0.25rem; }
.step-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(12,61,61,0.08);
}
.contact-form-wrap h2 { color: var(--teal-dark); margin-bottom: 0.5rem; font-size: 1.6rem; }
.contact-form-wrap .sub { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-family: 'Outfit', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-muted);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; text-align: center; padding: 0.95rem; }
.form-success {
  display: none;
  background: var(--teal-pale);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
}
.form-error {
  display: none;
  background: var(--orange-pale);
  border: 1px solid #f0c0a0;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--orange-dark);
  font-size: 0.9rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(12,61,61,0.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--teal-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card-text h4 { font-size: 0.7rem; margin-bottom: 0.2rem; color: var(--teal-muted); font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.info-card-text p,
.info-card-text a { font-size: 0.93rem; color: var(--ink); }
.info-card-text a:hover { color: var(--orange); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-left::after { display: none; }
  .hero-right { padding: 3rem 2rem; min-height: 50vh; }

  .statement { grid-template-columns: 1fr; padding: 3.5rem 2rem; gap: 2.5rem; }
  .approach { grid-template-columns: 1fr; padding: 4.5rem 2rem; gap: 2.5rem; }
  .for-you { grid-template-columns: 1fr; padding: 4.5rem 2rem; gap: 2.5rem; }
  .approach-pale { grid-template-columns: 1fr; padding: 4.5rem 2rem; gap: 2.5rem; }
  .approach-dark { grid-template-columns: 1fr; padding: 4.5rem 2rem; gap: 2.5rem; }
  .about-bio { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2.5rem; }

  .about-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .population-block { grid-template-columns: 1fr; gap: 1.5rem; padding: 48px 0; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; padding: 48px 0; }
  .service-block.reverse .service-text,
  .service-block.reverse .service-visual { order: unset; }

  .fees-grid { grid-template-columns: 1fr; }
  .insurance-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }

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

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .approach { padding: 60px 1.5rem; }
  .for-you { padding: 60px 1.5rem; }
  .statement { padding: 60px 1.5rem; }
  .approach-pale { padding: 60px 1.5rem; }
  .approach-dark { padding: 60px 1.5rem; }
  .about-bio { padding: 60px 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
