/* Import Google Fonts with font-display for better loading performance */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;600&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --text: #1f2937;   /* slate-800 */
  --muted: #6b7280;  /* slate-500 */
  --primary: #62a2a2;/* blue-600 */
  --primary-contrast: #ffffff;
  --border: #e5e7eb; /* gray-200 */
  --brand: #0f172a;            /* deep slate for wordmark */
  --nav-bg: #62a2a2;
  --nav-border: rgba(15,23,42,.06);
  --nav-shadow: 0 6px 20px rgba(2, 6, 23, .06);
  --hover-ink: #0f172a;
  --accent: #62a2a2;           /* used for active underline */
  --font-body: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-nav: 'Merriweather Sans', sans-serif;
  
  /* Surfaces */
  --surface-white: #ffffff;  /* cards, main content */
  --surface-gray: #f3f4f6;   /* subtle section bands */
  --surface-warm: #fdf6ed;   /* optional soft warm background */

  /* Accents */
  --accent-coral: #e67c73;   /* buttons, links, highlights */
  --accent-gold: #f4c542;    /* optional secondary accent */
  --accent-navy: #385d5d;    /* alternative strong accent */
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font-body), -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.5; height: 100%; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f3f4f6; /* light gray (slate-100). Adjust as desired */
}



/* Let main grow to fill space */
main {
  flex: 1 0 auto;
}

/* Footer sticks to bottom */
.site-footer {
  margin-top: auto;
}
.container { margin: 0 auto; padding: 0 1rem; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--primary); color: var(--primary-contrast); padding: .5rem 1rem; z-index: 1000; }

/* Prevent layout shift during component injection */
[data-include="nav"] {
  min-height: 420px; /* Reserve exact space for nav: 64px (top padding) + 240px (logo) + 32px (bottom padding) + 85px (nav menu) */
  display: block;
  background: var(--nav-bg); /* Prevent white flash during load */
  border-bottom: 1px solid var(--nav-border);
}
[data-include="header"] {
  min-height: 57px; /* Reserve space for header */
  display: block;
  background: #fff; /* Match header background */
  border-bottom: 1px solid var(--border);
}
[data-include="footer"] {
  min-height: 200px; /* Reserve space for footer */
  display: block;
}

/* Responsive min-heights for nav on mobile */
@media (max-width: 768px) {
  [data-include="nav"] {
    min-height: 268px; /* Mobile: 32px (top padding) + 160px (logo) + 16px (bottom padding) + 60px (nav menu) */
  }
}

/* Ensure images maintain aspect ratio and don't cause layout shift */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Add aspect-ratio support for modern browsers */
img[width][height] {
  aspect-ratio: attr(width) / attr(height);
}

/* Header */
.site-header { border-bottom: 1px solid var(--border); background: #fff; position: sticky; top: 0; z-index: 50; padding: 0rem 2rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }
.site-title a { text-decoration: none; color: inherit; font-weight: 700; font-size: 1.125rem; letter-spacing: .2px; }
.header-cta .btn { padding: .55rem .9rem; border-radius: .5rem; background: var(--accent-coral); color: var(--primary-contrast); text-decoration: none; font-weight: 600; font-size: larger;}
.header-cta .btn:hover { opacity: .8; }

/* Nav */
.site-nav {
  position: sticky;
  top: 56px; /* stays under the header */
  z-index: 51;
  backdrop-filter: saturate(140%) blur(8px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow .25s ease;
}
.site-nav.is-scrolled { box-shadow: var(--nav-shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .6rem 0;
  justify-content: center; /* centers all nav links */
}

.nav-logo-header{
  display: flex;
  justify-content: center; /* centers horizontally */
  padding: 4rem 0rem 2rem
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.brand-mark {
  height: 15rem; 
  width: 30rem; 
  border-radius: .5rem;
  /* Ensure space is reserved even before image loads */
  min-height: 15rem;
  min-width: 30rem;
  display: block;
}
.brand-word {
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--brand);
  font-size: 1.05rem;
}

/* Menu core */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: .45rem .7rem;
  border-radius: .6rem;
  font: inherit;
}
.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  justify-content: center; /* centers all nav links */
}

/* Top-level links */
.nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: .65rem .75rem;
  border-radius: .5rem;
  line-height: 1;
  transition: color 0.5s ease;  /* smooth color change */
}
.nav-link:hover { color: var(--accent-gold); }

/* Underline hover (from center) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: .35rem;
  width: 0; height: 2px;
  background: currentColor;
  transition: width .2s ease, left .2s ease;
  opacity: .7;
}
.nav-link:hover::after { width: 60%; left: 20%; }

/* Apply nav font, increase size and padding */
.menu a,
.dropdown-toggle {
  font-family: var(--font-nav);
  font-size: 1.4rem;      /* larger text for readability */
  padding: 1rem 1.25rem;   /* more breathing room */
}

/* Active state */
.menu a.active,
.dropdown-toggle.active {
  color: var(--accent-gold);
}
.menu a.active::after,
.dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 20%; bottom: .35rem;
  width: 60%; height: 2px;
  background: var(--accent-gold);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: .65rem .75rem;
  border-radius: .5rem;
}
.dropdown-toggle:hover { color: var(--accent-gold); }
.caret {
  display: inline-block;
  width: .55rem; height: .55rem;
  margin-left: .35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .15s ease;
}
.dropdown-toggle[aria-expanded="true"] .caret {
  transform: rotate(-135deg) translateY(1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + .4rem);
  left: .25rem;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--nav-border);
  border-radius: .6rem;
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
  padding: .35rem;
  display: none;
  z-index: 51;
  list-style: none;
  margin: 0;
}
.dropdown.open { display: block; }
.dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-link {
  display: block;
  padding: .6rem .8rem;
  border-radius: .45rem;
  text-decoration: none;
  color: inherit;
  transition: background-color .2s ease, color .2s ease;
}
.dropdown-link:hover {
  background: var(--surface-warm);
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-logo-header {
    padding: 2rem 0rem 1rem; /* Reduce padding on mobile */
  }
  .brand-mark {
    height: 10rem; /* Smaller logo on mobile */
    width: 20rem;
    min-height: 10rem;
    min-width: 20rem;
  }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid var(--nav-border);
    padding-top: .5rem;
    margin-left: 0;
  }
  .menu.open { display: flex; }
  .nav-link, .dropdown-toggle { padding: .8rem .5rem; }
  .dropdown {
    position: relative;
    top: 0; left: 0;
    box-shadow: none;
    border: none;
    padding-left: .5rem;
  }
}


/* Main + Footer */
main.container { padding: 1rem 0 2rem; max-width: 1600px}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  background: #fff;
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin: 0 auto 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__col--right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 4rem;
  border-left: 1px solid var(--border);
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__title {
  font-family: var(--font-nav);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.footer__description {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.footer__verification {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer__link:hover {
  color: var(--accent-gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__contact-item .footer__link {
  color: var(--primary);
  font-weight: 500;
}

.footer__contact-item .footer__link:hover {
  color: var(--accent-coral);
}

.btn--sm {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__copyright,
.footer__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer__col--right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
    gap: 2rem;
  }
  
  .footer__section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
  
  .footer__inner {
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .footer__col--right {
    padding-top: 2rem;
    gap: 2rem;
  }
  
  .footer__section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .menu { display: none; flex-direction: column; border-top: 1px solid var(--border); padding-top: .5rem; width: 100%; }
  .menu.open { display: flex; }
  .site-nav { top: 56px;  } /* still below header */
  .nav-inner { align-items: flex-start; }
  .dropdown { position: relative; top: auto; left: auto; box-shadow: none; border: none; padding-left: .25rem; }
}

/* Unify Services dropdown toggle font with nav links */
.dropdown-toggle {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Dropdown links themselves */
.dropdown-link {
  font-family: var(--font-nav);
  font-size: 1.05rem;   /* slightly smaller than top-level */
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: inherit;
  display: block;
}

/* === Hero (Text Left, Image Right) === */
.hero {
  display: flex;                 /* <- key */
  flex-direction: row;           /* desktop: side-by-side */
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;           /* REQUIRED: create positioning context */
  background-color: #fff;       /* your section bg */
  overflow: hidden;             /* keeps watermark edges tidy */
}

/* Put the watermark ABOVE the bg, BELOW the content */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;                     /* fill the hero */
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center;  /* or 'right 5% center' etc. */
  background-size: clamp(320px, 80%, 1100px);
  opacity: 0.35;                /* faint */
  pointer-events: none;
  z-index: 0;                   /* place under content */
}

/* Ensure hero content sits above the pseudo-element */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 50%;
  min-width: 320px;
}

.hero-image {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Sections & spacing */
.section { padding: 3rem 0 2rem; }
.section__title {
  font-family: var(--font-nav);
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
}

/* Hero (large) */
.hero.hero--wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text emphasis */
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 4rem 2rem;
  position: relative;           /* ensure positioning context for ::before */
}
.hero__title {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 .75rem;
}
.hero__lead {
  color: var(--muted);
  font-size: 1.125rem;
  margin: 0 0 1.25rem;
}
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.hero__image {
  padding: 3rem 5rem
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--nav-border);
  border-radius: .75rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 18px rgba(2,6,23,.05);
}
.card h3 {
  margin: 0 0 .4rem;
  font-size: 1.125rem;
  font-family: var(--font-nav);
}
.card p { margin: 0 0 .6rem; color: var(--muted); }
.card__link {
  text-decoration: none;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Promo band */
.band {
  background: #f8fafc; /* soft neutral */
  border: 1px solid var(--nav-border);
  border-radius: .75rem;
  margin: 2.25rem 0;
}
.band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1rem;
}
.band__title { margin: 0 0 .25rem; font-family: var(--font-nav); }
.band__text { margin: 0; color: var(--muted); }

/* Bottom CTA panel */
.cta {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff;
  border: 1px solid var(--nav-border);
  border-radius: .75rem;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  margin: 2.5rem 0;
}
.cta__title { margin: 0 0 .5rem; font-family: var(--font-nav); font-size: 1.5rem; }
.cta__text  { margin: 0 0 1rem; color: var(--muted); }

/* Buttons (shared) */
.btn {
  --btn-bg: var(--accent);
  --btn-text: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1rem; border-radius: .6rem;
  text-decoration: none; font-weight: 600;
  border: 1px solid transparent; color: var(--btn-text);
  background: var(--btn-bg);
}
.btn:hover { filter: brightness(.97); }
.btn--ghost {
  --btn-bg: transparent; --btn-text: var(--text);
  border-color: var(--nav-border);
}
.btn--lg { padding: .9rem 1.25rem; font-size: 1.05rem; }

/* Responsive tweaks */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .hero.hero--wide { grid-template-columns: 1fr; }
  .hero__image { order: -1; } /* image first on small screens, like many therapy sites */
  .band__inner { flex-direction: column; align-items: flex-start; }
  .cards { grid-template-columns: 1fr; }
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-text, .hero-image { min-width: 0; }
}


.overview__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0;
}

.overview__text {
  flex: 1 1 60%;
  font-size: x-large;
}

.overview__image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0;
}

.overview__image img {
  max-width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.overview__actions {
  text-align: center;
  margin-top: 2rem;
}

/* Bottom decorative image */
.bottom-image {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  margin: 0 auto;
  max-width: 600px;
}

.bottom-image img {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .bottom-image {
    max-width: 400px;
    padding: 2rem 1rem;
  }
}

/* Dark variant for overview section */
.section--dark {
  background: var(--accent-navy);
  color: #ffffff;
  border-radius: .75rem;
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 24px rgba(2,6,23,.12);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.95);
}

.section--dark .btn--primary {
  background: var(--accent-coral);
  color: #ffffff;
  border-color: var(--accent-coral);
}

.section--dark .btn--primary:hover {
  background: #d66a62;
  border-color: #d66a62;
}
.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
}
.about__inner--reverse {
  flex-direction: row-reverse;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.about__inner--compact {
  padding: 1rem 0;
  margin-top: 1.5rem;
}
.about__inner--compact.about__inner--reverse {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}
.about__inner--compact .about__image {
  flex: 0 0 30%;
}
.about__image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
}
.about__image--double {
  flex-direction: column;
  gap: 1.5rem;
}
.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: var(--shadow);
}
.about__text {
  flex: 1 1 60%;
}
.about__cta {
  text-align: center;
  margin-top: 2rem;
}
.about__cta-text {
  font-style: italic;
  margin-bottom: 1rem;
}
.section-heading {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.section-heading:first-of-type {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}
.fees__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0 0.5rem 0;
}
.fees__text {
  flex: 1 1 75%;
}
.fees__image {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}
.fees__image img {
  max-width: 50%;
  height: auto;
  border-radius: .75rem;
  box-shadow: var(--shadow);
}
.fees__full-width {
  padding: 0.5rem 0 2rem 0;
}
.fees__cta {
  text-align: center;
}

/* Service sections with text + image */
.service__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

/* Alternating backgrounds for service sections */
#psychotherapy {
  background: var(--surface-white);
  padding: 3rem 0;
  margin-bottom: 0;
}

#anxiety {
  background: #f9fafb; /* very light gray-blue */
  padding: 3rem 0;
  margin-bottom: 0;
}

#depression {
  background: var(--surface-white);
  padding: 3rem 0;
  margin-bottom: 0;
}

#eating {
  background: #fdfaf6; /* very light warm tone */
  padding: 3rem 0;
  margin-bottom: 0;
}

#ptsd {
  background: var(--surface-white);
  padding: 3rem 0;
  margin-bottom: 0;
}

#ocd {
  background: #f9fafb; /* very light gray-blue */
  padding: 3rem 0;
  margin-bottom: 0;
}

.service__text {
  flex: 1 1 50%;
}

/* Service links list styling */
.service-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.service-links li {
  margin: 0;
}

.service-links a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--surface-white);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  position: relative;
}

.service-links a::before {
  content: '→';
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.service-links a:hover {
  border-color: var(--primary);
  background: var(--surface-gray);
  transform: translateX(4px);
}

.service-links a:hover::before {
  transform: translateX(4px);
  color: var(--accent-coral);
}

.service__image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  padding: 2rem 5rem;
}

.service__image img {
  max-width: 100%;
  max-height: fit-content;
  height: auto;
  border-radius: .75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Mobile stacking */
@media (max-width: 900px) {
  .about__inner {
    flex-direction: column;
  }
  .about__inner--reverse {
    flex-direction: column;
  }
  .about__inner--compact {
    margin-top: 1rem;
  }
  .about__image {
    order: -1; /* image appears above text on mobile */
    flex: 1 1 auto;
    padding: 1rem 0;
  }
  .about__inner--compact .about__image {
    flex: 1 1 auto;
  }
  .about__text {
    flex: 1 1 auto;
  }
  .fees__inner {
    flex-direction: column;
  }
  .fees__image {
    order: -1; /* image appears above text on mobile */
    flex: 1 1 auto;
    padding: 1rem 0;
  }
  .fees__text {
    flex: 1 1 auto;
  }
  .service__inner {
    flex-direction: column;
    text-align: center;
  }
  .service__image {
    order: -1; /* image appears above text on mobile */
  }
  .service-links a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  .service-links a::before {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  .overview__inner {
    flex-direction: column;
  }
  .overview__image {
    flex: 1 1 auto;
    padding: 1rem 0;
  }
  .overview__text {
    flex: 1 1 auto;
  }
}

/* FAQ */
/* FAQ wrapper centers everything */
.faq {
  padding: 2rem 0 2.5rem;
  max-width: 800px;      /* constrain width */
  margin: 0 auto;        /* center horizontally */
}
.faq h1 {
  font-family: var(--font-nav);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 1rem;
}

/* Each item is full width of faq */
.faq-item {
  display: block;
  width: 100%;           /* take full width of container */
  border: 1px solid var(--nav-border);
  border-radius: .75rem;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Space between items */
.faq-item + .faq-item {
  margin-top: .75rem;
}

/* Summary always fills width */
.faq-question {
  width: 100%;           /* force it to match container width */
  display: flex;         /* for caret + text */
  align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--font-nav);
  font-weight: 600;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
}

/* Remove native triangle marker (WebKit) */
.faq-question::-webkit-details-marker { display: none; }

/* Custom caret */
.faq-question::after {
  content: "";
  margin-left: auto;
  width: .6rem; height: .6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  opacity: .9;
}

/* Hover/focus states */
.faq-item:hover .faq-question,
.faq-question:focus {
  color: var(--accent-gold);
  outline: none;
  background: #f8fafc;
}

/* Expanded state */
.faq-item[open] .faq-question {
  color: var(--accent-gold);
}
.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

/* Answer text just flows inside, no width change */
.faq-answer {
  padding: .75rem 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--nav-border);
}

/* Scroll-triggered fade-in animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Motion preference - disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  .faq-question::after { transition: none; }
  .faq-question { transition: none; }
  .fade-in-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service__image img {
    transition: none;
  }
  .service__image img:hover {
    transform: none;
  }
}
