/* ============================================================
   CLEMENTINE SPEECH THERAPY — style.css
   Aesthetic: Haven-polish × Clementine warmth
   Fonts: Cormorant Garamond (display/italic) + DM Sans (body)
   ============================================================ */

:root {
  /* Core palette */
  --clementine:        #F8C9A0;
  --clementine-deep:   #e8a06a;
  --clementine-soft:   #FFF8F2;
  --clementine-warm:   #FFF0E4;
  --sage:              #527848;
  --sage-light:        #A9C6A3;
  --sage-pale:         #EBF2E8;
  --cream:             #FDFAF6;
  --text-main:         #2C2C2C;
  --text-muted:        #787063;
  --text-light:        #6E6259;
  --white:             #FFFFFF;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(60, 40, 20, 0.06);
  --shadow-md:   0 8px 28px rgba(60, 40, 20, 0.09);
  --shadow-lg:   0 20px 50px rgba(60, 40, 20, 0.11);

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Layout */
  --max-width: 1040px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body { line-height: 1.65; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ============================================================
   LAYOUT
   ============================================================ */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  background-color: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  padding: 1.4rem 0;

}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 0.5rem;
  text-decoration: none;
}

.brand-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.brand-icon svg { width: 100%; height: 100%; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-logo {
  height: 130px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--sage);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background-color 0.2s;
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  background-color: transparent

}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.15rem !important;
  background-color: var(--sage) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(82, 120, 72, 0.3);
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s !important;
}

.nav-cta:hover {
  background-color: #3d6035 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(82, 120, 72, 0.38) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s;
}

.btn-primary {
  background-color: var(--sage);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(82, 120, 72, 0.32);
}

.btn-primary:hover {
  background-color: #3d6035;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(82, 120, 72, 0.38);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(60, 40, 20, 0.18);
}

.btn-ghost:hover {
  background-color: var(--clementine-warm);
  border-color: var(--clementine-deep);
  color: var(--text-main);
}

.btn-outline {
  background-color: transparent;
  color: var(--sage);
  border: 1px solid var(--sage-light);
  font-size: 0.88rem;
}

.btn-outline:hover {
  background-color: var(--sage-pale);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  padding: 4rem 0 5rem;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(248,201,160,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  transform: translateX(-10px);
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clementine-deep);
  margin: 0 0 1.2rem;
  max-width: 580px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 1.4rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--clementine-deep);
}

.hero-body {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 0 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  background-color: var(--sage-pale);
  border: 1px solid rgba(82, 120, 72, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */

.photo-placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--clementine-warm), #f5e8d8);
  border: 1.5px dashed rgba(232, 160, 106, 0.45);
  overflow: visible;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder--sm  { aspect-ratio: 5/6; }
.photo-placeholder--tall { aspect-ratio: 3/4; }

.photo-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem;
}

.placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.55;
}

.placeholder-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clementine-deep);
  opacity: 0.7;
  margin: 0;
  font-weight: 400;
}

/* Decorative blobs */
.photo-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.photo-dec-1 {
  width: 80px; height: 80px;
  background: var(--clementine);
  opacity: 0.35;
  bottom: -24px; left: -24px;
  z-index: -1;
}

.photo-dec-2 {
  width: 50px; height: 50px;
  background: var(--sage-light);
  opacity: 0.3;
  top: -18px; right: -18px;
  z-index: -1;
}

.photo-dec-3 {
  width: 100px; height: 100px;
  background: var(--clementine);
  opacity: 0.25;
  bottom: -30px; right: -30px;
  z-index: -1;
}

/* ============================================================
   WHAT WE DO SECTION
   ============================================================ */

.section {
  padding: 5rem 0;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clementine-deep);
  margin: 0 0 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 1.2rem;
  color: var(--text-main);
}

.section-title em {
  font-style: italic;
  color: var(--clementine-deep);
}

.section-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 0 1.1rem;
  font-weight: 400;
}

.section-what {
  background-color: var(--white);
  border-top: 1px solid rgba(232, 160, 106, 0.1);
  border-bottom: 1px solid rgba(232, 160, 106, 0.1);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* ============================================================
   WHO WE SUPPORT
   ============================================================ */

.section-who {
  background-color: var(--cream);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-centered .section-kicker { display: block; }
.section-header-centered .section-title  { max-width: 28rem; margin: 0 auto 0; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.who-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.who-card--accent {
  background: linear-gradient(150deg, #fff8f2, #fff2e6);
  border-color: rgba(232, 160, 106, 0.25);
}

.who-card-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.who-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0;
}

.who-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0.25rem 0 0.75rem;
  font-weight: 400;
  flex: 1;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.card-link:hover { color: #3d6035; }

/* ============================================================
   WHY CLEMENTINE
   ============================================================ */

.section-why {
  background-color: var(--clementine-soft);
  border-top: 1px solid rgba(232, 160, 106, 0.12);
  border-bottom: 1px solid rgba(232, 160, 106, 0.12);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--clementine-deep);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.why-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.why-point p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.section-testimonials {
  background-color: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 160, 106, 0.1);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial--accent {
  background: linear-gradient(150deg, #fff8f2, #fff2e6);
  border-color: rgba(232, 160, 106, 0.22);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
  font-weight: 400;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, #f5e4ce, #e8d5c4);
  padding: 4rem 0;
  border-top: 1px solid rgba(232, 160, 106, 0.2);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 0.4rem;
}

.cta-band-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--text-main);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clementine-soft);
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(255,248,242,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,248,242,0.82);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--clementine); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,248,242,0.65);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid,
  .what-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-section { padding: 3.5rem 0 3rem; }
  .hero-content {margin-top: -10px;}
  .hero-title { font-size: 2.8rem; }

  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .why-media  { order: -1; max-width: 380px; margin: 0 auto; }

  .who-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hero-kicker {
  max-width: 100%;
}
  .container { padding: 0 1rem; }

  .nav-links { display: none; }

  .hamburger { display: flex; }

  .hero-title { font-size: 2.4rem;
  line-height: 1.1; }
  .no-wrap {
  white-space: normal;
  }
  .section { padding: 3.5rem 0; }

  .who-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
  padding: 3rem 0 2.5rem;
  }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions {
  flex-direction: column;
  align-items: flex-start;
}
  .section-title { font-size: 1.9rem; }

  .footer-inner { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--clementine-warm) 0%, var(--cream) 55%, var(--sage-pale) 100%);
  border-bottom: 1px solid rgba(232, 160, 106, 0.12);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(248, 201, 160, 0.35) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(169, 198, 163, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}

.page-hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clementine-deep);
  margin: 0 0 0.9rem;
  display: block;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.page-hero-title em {
  font-style: italic;
  color: var(--clementine-deep);
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36rem;
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   CARD SYSTEM
   ============================================================ */

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(232, 160, 106, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card--accent {
  background: linear-gradient(150deg, #fff8f2, #fff2e6);
  border-color: rgba(232, 160, 106, 0.25);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
}

.card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clementine-deep);
  font-size: 0.78rem;
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.no-wrap {
  white-space: nowrap;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   ABOUT PAGE — BIO GRID
   ============================================================ */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.bio-photo {
  position: sticky;
  top: 6rem;
}

.bio-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 1.2rem;
}

.bio-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
  font-weight: 400;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--clementine-soft);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(232, 160, 106, 0.15);
}

.value-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.35rem;
}

.value-card-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   CONTACT STRIP (bottom of inner pages)
   ============================================================ */

.contact-strip {
  background-color: var(--clementine-soft);
  border-top: 1px solid rgba(232, 160, 106, 0.15);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-strip-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.contact-detail-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(232, 160, 106, 0.15);
  box-shadow: var(--shadow-md);
}

.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(232, 160, 106, 0.1);
}

.contact-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail-row:first-child { padding-top: 0; }

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-detail-value {
  font-size: 0.92rem;
  color: var(--text-main);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-notice {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-section-group { margin-bottom: 3rem; }

.faq-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(232, 160, 106, 0.15);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 160, 106, 0.12);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.3rem 1.8rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  list-style: none;
  transition: background-color 0.15s;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover { background-color: var(--clementine-warm); }

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clementine-deep);
  transition: transform 0.25s;
}

details[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.8rem 1.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-weight: 400;
}

.faq-answer p { margin: 0 0 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bio-photo { position: static; max-width: 380px; margin: 0 auto; }

  .contact-strip-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-hero-title { font-size: 2.6rem; }
}

@media (max-width: 680px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 2.1rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
}

/* ============================================================
   ACCESSIBILITY — FOCUS STYLES
   ============================================================ */

:focus-visible {
  outline: 3px solid var(--clementine-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--clementine-deep);
  outline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid var(--clementine-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-question:focus-visible {
  outline: 3px solid var(--clementine-deep);
  outline-offset: -3px;
}