/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/*
  Color distribution:
  30% Soft light mint  #C8DDD3 — nav accents, borders, icons, subtle section backgrounds
  40% Gray  #ECECEC / #A8A8A8 — page backgrounds, body text, neutral sections
  25% Periwinkle lavender #9E9FD8 — buttons, CTA sections, card backgrounds, highlights
   5% Deeper purple #7B6FA0 — headings, hover states, strong accent moments
*/

:root {
  /* ── Mint (30%) ── */
  --mint:        #C8DDD3;    /* nav accents, borders, icons, subtle backgrounds */
  --mint-light:  #EBF4F0;    /* nav hover, trust strip, alternating section tint */

  /* ── Gray (40%) ── */
  --soft-white:  #FAFAF8;    /* primary page background */
  --white:       #FFFFFF;
  --light-gray:  #ECECEC;    /* neutral section backgrounds */
  --medium-gray: #A8A8A8;    /* body text */
  --gray-dark:   #2D2D3A;    /* page headers, footer background */
  --text:        #1E1E2E;    /* near-black for text on light/lavender backgrounds */

  /* ── Lavender (25%) ── */
  --lavender:       #9E9FD8; /* buttons, CTA sections, hero, card bg tint */
  --lavender-light: #EEEEF9; /* card backgrounds, subtle tints, section alternates */
  --lavender-mid:   #8687C8; /* slightly richer for borders and lang-pill details */

  /* ── Deep purple (5%) ── */
  --purple:      #7B6FA0;    /* h1, h2, hover states, strong accents */
  --purple-dark: #5A4E78;    /* darkest emphasis */

  /* ── Legacy aliases (used by inline styles in HTML) ── */
  --sage:          var(--mint);
  --sage-dark:     var(--purple);
  --sage-deep:     var(--gray-dark);
  --sage-light:    var(--mint-light);
  --warm-gray:     var(--medium-gray);
  --lavender-dark: var(--purple);
  --mint-dark:     var(--purple);
  --text-muted:    var(--medium-gray);

  /* ── Shadows — neutral ── */
  --shadow-sm:  0 2px 16px rgba(0,0,0,0.06);
  --shadow:     0 6px 32px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.13);

  /* ── Shape ── */
  --radius:      20px;
  --radius-sm:   10px;
  --radius-pill: 100px;

  /* ── Type ── */
  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Open Sans', 'Segoe UI', system-ui, sans-serif;

  --border: 1px solid rgba(200,221,211,0.4);  /* mint-tinted border throughout */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--warm-gray);
  background: var(--soft-white);
}

img { max-width: 100%; display: block; }
a { color: var(--purple); }
a:hover { color: var(--purple-dark); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.22;
  color: var(--purple);    /* deep purple headings — 5% allocation */
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.12rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-dark);    /* sage section labels */
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--sage);    /* sage dash */
  border-radius: 2px;
  flex-shrink: 0;
}

/* Sage underline after headings that follow a section-label */
.section-label + h2::after,
.section-label + h1::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--sage);    /* sage underline */
  border-radius: 2px;
  margin-top: 1rem;
  opacity: 0.85;
}
.text-center .section-label + h2::after,
.text-center .section-label + h1::after {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — lavender fill, dark text; hover shifts to deep purple */
.btn-primary {
  background: var(--lavender);
  color: var(--text);
  border-color: var(--lavender);
}
.btn-primary:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

/* Outline — sage border & text; hover fills sage-dark */
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

/* White — for use on dark backgrounds (dark sage headers, lavender hero) */
.btn-white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--sage-light);
  border-color: var(--sage-light);
  color: var(--purple-dark);
}

/* btn-lavender — same as primary */
.btn-lavender {
  background: var(--lavender);
  color: var(--text);
  border-color: var(--lavender);
}
.btn-lavender:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

/* ===== SITE HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: #ffffff;
  border-bottom: 1px solid rgba(200,221,211,0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 1px 14px rgba(0,0,0,0.05);
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding-top: 10px; padding-bottom: 10px; }

/* Left: brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-icon {
  display: block;
  height: 44px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-icon-img {
  height: 58px;
  width: auto;
  display: block;
}
.brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #7B6FA0;
  line-height: 1.2;
}

/* nav-center-right: invisible wrapper on desktop so children become
   direct flex items of .site-header; collapses to a dropdown on mobile */
.nav-center-right {
  display: contents;
}

/* Middle: nav links list */
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Open Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #A8A8A8;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-link:hover { color: #C8DDD3; }
.nav-link.active { color: #7B6FA0; font-weight: 600; }

/* Right: actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-pill {
  display: flex;
  align-items: center;
  background: #EBF4F0;
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
  border: 1px solid rgba(200,221,211,0.4);
}
.lang-btn {
  padding: 5px 11px;
  border-radius: 100px;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #A8A8A8;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active {
  background: #ffffff;
  color: #7B6FA0;
  box-shadow: 0 1px 5px rgba(0,0,0,0.10);
}

/* Book Appointment button */
.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #9E9FD8;
  color: #ffffff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-book:hover { background: #8687C8; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #7B6FA0;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Shrink links at intermediate widths so nothing overlaps */
@media (max-width: 1280px) {
  .nav-link { font-size: 14px; }
  .nav-links-list { gap: 22px; }
}
@media (max-width: 1100px) {
  .site-header { padding: 14px 32px; }
  .nav-link { font-size: 13px; }
  .nav-links-list { gap: 16px; }
  .brand-name { font-size: 18px; }
  .btn-book { padding: 8px 16px; font-size: 13px; }
}

/* ===== HERO ===== */
/* Lavender hero — primary CTA section */
.hero {
  background: var(--lavender);
  color: var(--text);
  padding: 7.5rem 0 6.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-info-card { display: none; }

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.36);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  padding: 0.42rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.75rem;
}

.hero-content h1 {
  color: var(--text);               /* dark on lavender — passes contrast */
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 1.4rem;
}

.hero-content .subheadline {
  font-size: 1.1rem;
  color: rgba(30,30,46,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== TRUST STRIP ===== */
/* Sage accent strip */
.trust-strip {
  background: var(--sage-light);
  padding: 1.35rem 0;
  border-bottom: var(--border);
}
.trust-strip p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--sage-dark);
  letter-spacing: 0.015em;
  margin: 0;
  text-align: center;
}
.trust-strip strong { color: var(--sage-dark); }

/* ===== SERVICE CARDS ===== */
.services { background: var(--soft-white); }
.services .section-header { text-align: center; margin-bottom: 3.5rem; }
.services .section-header p {
  color: var(--warm-gray);
  max-width: 540px;
  margin: 1.1rem auto 0;
  font-size: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--lavender-light); /* lavender-tinted card backgrounds */
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,221,211,0.25);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Card icons — sage toned */
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 14px;
  border: 1px solid rgba(200,221,211,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  color: var(--sage-dark);
}
.card-icon.lavender-icon {
  background: var(--lavender-light);
  border-color: rgba(158,159,216,0.25);
  color: var(--purple);
}

.card h3 {
  color: var(--purple);             /* purple card headings */
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0;
}

/* ===== CTA BAND ===== */
/* Lavender CTA sections */
.cta-band {
  background: var(--lavender);
  color: var(--text);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--text); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(30,30,46,0.75); margin-bottom: 2.25rem; font-size: 1.05rem; }

/* ===== PAGE HEADER ===== */
/* Dark sage — inner page section headers */
.page-header {
  background: var(--sage-deep);
  color: var(--white);
  padding: 5rem 0;
}
.page-header .section-label {
  color: rgba(255,255,255,0.68);
  margin-bottom: 0.6rem;
}
.page-header .section-label::before {
  background: var(--sage);
  opacity: 0.85;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 0.65rem;
}
.page-header h1::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin-top: 1rem;
  margin-left: 0;
  opacity: 0.85;
}
.page-header p {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin: 0;
  max-width: 56ch;
}

/* ===== ABOUT PAGE ===== */
.about-bio {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4.5rem;
  align-items: start;
}

.about-photo-placeholder {
  background: var(--sage-light);
  border-radius: var(--radius);
  border: 1px solid rgba(200,221,211,0.4);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.about-photo-placeholder svg { margin: 0 auto 0.5rem; opacity: 0.4; }

.credentials-box {
  background: var(--lavender-light);
  border: none;
  border-left: 4px solid var(--lavender);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.credentials-box h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
}
.credentials-box ul { list-style: none; padding: 0; }
.credentials-box li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--warm-gray);
  border-bottom: 1px solid rgba(200,221,211,0.3);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.credentials-box li:last-child { border-bottom: none; }
.credentials-box li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-left: 4px solid var(--sage);
  padding: 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.value-card h3 { color: var(--sage-dark); margin-bottom: 0.55rem; font-size: 1.05rem; }
.value-card p  { font-size: 0.9rem; color: var(--warm-gray); margin: 0; line-height: 1.65; }

/* ===== PLACEHOLDER NOTICE ===== */
.placeholder-notice {
  background: #FFF9ED;
  border: 1px dashed #D4AA50;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: #7A5C20;
  margin-bottom: 1.75rem;
}
.placeholder-notice strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== SERVICES PAGE ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: start;
}

.visit-type-card {
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  transition: box-shadow 0.2s;
}
.visit-type-card:hover { box-shadow: var(--shadow); }

.visit-type-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.badge-sage     { background: var(--sage-light);    color: var(--sage-dark); }
.badge-lavender { background: var(--lavender-light); color: var(--purple); }

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.48rem 0;
  font-size: 0.9rem;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--light-gray);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--sage-dark);          /* sage checkmarks */
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.steps-list { list-style: none; padding: 0; }
.steps-list li {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.steps-list li:last-child { border-bottom: none; }

.step-num {
  width: 42px;
  height: 42px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-body h3 { margin-bottom: 0.3rem; color: var(--purple); font-size: 1rem; }
.step-body p  { font-size: 0.9rem; color: var(--warm-gray); margin: 0; }

/* ===== FORMS ===== */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow);
  border: var(--border);
}
.form-card h2 { margin-bottom: 0.35rem; }
.form-card .form-subtitle { color: var(--warm-gray); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.35rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.form-group label .required { color: #C0404F; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--soft-white);
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(200,221,211,0.4);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6F6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-radio-group { display: flex; gap: 1rem; margin-top: 0.4rem; flex-wrap: wrap; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--warm-gray);
}
.form-radio input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--sage-dark);
  cursor: pointer;
}

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }

.sidebar-info { position: sticky; top: 100px; }
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: var(--border);
  margin-bottom: 1.25rem;
}
.info-box h3 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}
.info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon { color: var(--sage-dark); flex-shrink: 0; margin-top: 0.15rem; display: flex; }
.info-item p { font-size: 0.88rem; color: var(--warm-gray); margin: 0; line-height: 1.6; }
.info-item strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

/* ===== INSURANCE ===== */
.insurance-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.insurance-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}
.insurance-item::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: inherit; }

.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: var(--radius-pill);
  padding: 0.24rem 0.75rem;
  width: fit-content;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.35;
  margin: 0;
}
.blog-card-excerpt { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.7; flex: 1; margin: 0; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.blog-card-read-more { color: var(--sage-dark); font-weight: 600; text-decoration: none; }
.blog-card:hover .blog-card-read-more { color: var(--purple); }

.blog-card-img {
  width: calc(100% + 2.5rem);
  margin: -1.5rem -1.25rem 1.25rem;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}

/* ===== POST HERO IMAGE ===== */
.post-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  display: block;
}

/* ===== PROSE (blog post body) ===== */
.prose { font-family: var(--font-body); font-size: 1rem; line-height: 1.85; color: var(--text); }
.prose h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gray-dark); margin: 2rem 0 0.75rem; }
.prose h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gray-dark); margin: 1.75rem 0 0.5rem; }
.prose p  { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a  { color: var(--purple); text-decoration: underline; }
.prose a:hover { color: var(--purple-dark); }
.prose blockquote { border-left: 3px solid var(--mint); padding-left: 1rem; color: var(--medium-gray); margin: 1.5rem 0; font-style: italic; }
.prose img { max-width: 100%; border-radius: var(--radius-sm); margin: 1.5rem 0; display: block; }
.prose code { background: var(--light-gray); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.875em; }
.prose pre  { background: var(--light-gray); padding: 1rem 1.25rem; border-radius: var(--radius-sm); overflow-x: auto; margin-bottom: 1.25rem; }
.prose pre code { background: none; padding: 0; }
.prose strong { font-weight: 700; color: var(--gray-dark); }
.prose hr { border: none; border-top: var(--border); margin: 2.5rem 0; }

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.resource-card h4 { font-size: 0.95rem; color: var(--sage-dark); }
.resource-card p  { font-size: 0.88rem; color: var(--warm-gray); margin: 0; flex: 1; line-height: 1.6; }
.resource-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.resource-card a:hover { color: var(--purple); }

.crisis-box {
  background: #FFF4F4;
  border: 1.5px solid #E8AAAA;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}
.crisis-box h3 { color: #8B2020; margin-bottom: 0.55rem; font-size: 1rem; }
.crisis-box p  { font-size: 0.9rem; color: #5A2020; margin-bottom: 0.4rem; }
.crisis-box p:last-child { margin-bottom: 0; }
.crisis-box strong { color: #8B2020; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  border: var(--border);
}
.map-embed p {
  padding: 0.9rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  border-bottom: var(--border);
  background: var(--sage-light);
}
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ===== ABOUT SNIPPET (home) ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 5rem;
  align-items: center;
}
.about-intro h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
/* Dark sage footer */
.site-footer {
  background: var(--sage-deep);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--sage-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
}
.footer-brand .footer-logo span { color: var(--sage); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 0.6rem;
  margin-bottom: 0.1rem;
}
.footer-phone {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.footer-phone:hover { color: var(--white); }
.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 0.55rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.42); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--sage-deep);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.88rem;
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus { top: 0; }

/* ===== SR-ONLY ===== */
.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;
}

/* ===== FOCUS STYLES ===== */
:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-header { padding: 14px 24px; position: relative; }
  .nav-hamburger { display: flex; }
  .nav-center-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(200,221,211,0.4);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .nav-center-right.open { display: flex; }
  .nav-links-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .nav-link { display: block; padding: 12px 24px; font-size: 15px; }
  .nav-actions {
    padding: 12px 24px;
    border-top: 1px solid rgba(200,221,211,0.4);
    gap: 12px;
  }
  .brand-name { font-size: 16px; }
}

@media (max-width: 900px) {
  .hero-inner { padding: 0 1.5rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .sidebar-info { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-card { padding: 1.75rem; }
}

@media (max-width: 420px) {
  .hero-actions .btn { text-align: center; width: 100%; }
  .btn-book { display: none; }
}
