
  @font-face {
    font-family: 'Humanist521';
    src: url('./humanist521lightbt-webfont.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'JessiNeue';
    src: url('./JessiNeue.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Brand palette: #f4f3ef / #6b8f71 / #2d605c */
    --sage: #6b8f71;
    --sage-light: #a8c4ad;
    --sage-pale: #e8ede9;
    --teal: #2d605c;
    --teal-mid: #4a8480;
    --teal-light: #9dbfbc;
    --teal-pale: #e2eeee;
    /* Keep warm clay as a subtle accent */
    --clay: #7a9e80;
    --clay-light: #c2d6c5;
    --clay-pale: #f0f4f1;
    --bark: #2d605c;
    --bark-mid: #4a8480;
    --bark-light: #9dbfbc;
    --cream: #f4f3ef;
    --white: #faf9f6;
    --text: #1a3330;
    --text-mid: #3d5e5b;
    --text-light: #7a9e9b;
    --serif: 'JessiNeue', 'Fraunces', Georgia, serif;
    --sans: 'Humanist521', 'Jost', system-ui, sans-serif;
    --transition: 0.3s ease;
  }

  html { scroll-behavior: smooth; }

  @media (min-width: 901px) {
    html { font-size: 115%; }
  }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(253,251,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122,108,94,0.1);
    transition: var(--transition);
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bark);
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
  }
  .nav-logo span { color: var(--sage); }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition);
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--clay); }

  .nav-cta {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--bark);
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 400;
    transition: background var(--transition);
    text-decoration: none;
  }
  .nav-cta-desktop { margin-left: auto; }
  .nav-cta:hover { background: var(--clay); }

  /* ─── PAGES ───────────────────────────────── */

  /* ─── HOME ────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }

  .hero-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 6rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: bold;
    line-height: 1.15;
    color: var(--bark);
    margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--sage); }

  .hero-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 420px;
    margin-bottom: 3rem;
    line-height: 1.8;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    background: var(--bark);
    border: none; padding: 0.9rem 2rem;
    border-radius: 2px; cursor: pointer;
    transition: background var(--transition), color var(--transition);
    font-weight: 400;
  }
  .btn-primary:hover { background: var(--clay); color: var(--white); }

  .btn-ghost {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--bark-light);
    padding: 0.9rem 2rem;
    border-radius: 2px; cursor: pointer;
    transition: all var(--transition);
    font-weight: 400;
  }
  .btn-ghost:hover { border-color: var(--clay); color: var(--clay); text-decoration: none; }

  .hero-image {
    position: relative;
    overflow: hidden;
    background: var(--sage-pale);
  }

  .hero-image-inner {
    width: 100%; height: 100%;
    display: block;
  }

  .hero-illustration {
    width: 70%; opacity: 0.6;
  }

  .hero-float {
    position: absolute;
    bottom: 3rem; left: -2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(45,96,92,0.12);
    max-width: 260px;
  }
  .hero-float-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--clay);
    line-height: 1;
  }
  .hero-float-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.25rem;
  }

  /* ─── HOME SECTIONS ───────────────────────── */
  .section {
    padding: 6rem 6rem;
  }

  .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    font-weight: bold;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--sage); }

  /* ─── Testimonials ─────────────────────────── */
  .home-testimonials {
    background: var(--white);
    padding: 6rem;
    border-top: 1px solid var(--sage-pale);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .testimonial-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 2px;
    border-left: 3px solid var(--sage-light);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,96,92,0.08); }
  .testimonial-card:nth-child(2) { border-color: var(--clay-light); }
  .testimonial-card:nth-child(3) { border-color: var(--bark-light); }
  .testimonial-card:nth-child(4) { border-color: var(--sage); }
  .testimonial-quote-icon {
    width: 24px; height: 18px;
    color: var(--sage-light);
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.6;
  }
  .testimonial-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
  }
  .testimonial-author {
    font-size: 0.78rem;
    font-family: var(--sans);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: bold;
  }

  /* Carousel dots — hidden on desktop */
  .testimonial-dots { display: none; }

  .home-pillars {
    background: var(--cream);
    padding: 6rem;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .pillar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    border-left: 3px solid var(--sage-light);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  @media (max-width: 900px) {

  .pillar-card {
    padding: 1.5rem 1.25rem;
  }

  .pillar-icon {
    margin-bottom: 0.75rem;
    width: 28px;
    height: 28px;
  }

  .pillar-title {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }

  .pillar-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pillars-grid {
    gap: 1rem;
  }

}
  .pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,96,92,0.08); }
  .pillar-card:nth-child(2) { border-color: var(--clay-light); }
  .pillar-card:nth-child(3) { border-color: var(--bark-light); }

  .pillar-icon {
    width: 40px; height: 40px;
    margin-bottom: 1.25rem;
    opacity: 0.7;
  }

  .pillar-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: bold;
    color: var(--bark);
    margin-bottom: 0.75rem;
  }

  .pillar-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

  .home-quote {
    background: var(--bark);
    padding: 5rem 10rem;
    text-align: center;
  }
  .home-quote blockquote {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: bold;
    color: var(--clay-light);
    line-height: 1.5;
    font-style: italic;
  }
  .home-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bark-light);
    font-style: normal;
    font-family: var(--sans);
  }

  /* ─── ABOUT ───────────────────────────────── */
  /* ─── SERVICES ────────────────────────────── */
  .services-hero {
    padding: 10rem 6rem 5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--bark-light);
    margin-top: 4rem;
    border: 2px solid var(--bark-light);
  }

  .service-item {
    background: var(--white);
    padding: 3rem;
    transition: background var(--transition);
    cursor: default;
  }
  .service-item:hover { background: var(--cream); }

  .service-tag {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1rem;
  }
  .service-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--bark);
    margin-bottom: 1rem;
  }
  .service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

  .services-image {
  width: 100%;
  max-width: 200px;
  height: 100px;
  object-fit: cover;
}
  .services-fees {
    padding: 5rem 6rem;
    background: var(--sage-pale);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .fee-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
  .fee-table tr { border-bottom: 1px solid var(--sage-light); }
  .fee-table td { padding: 0.85rem 0; font-size: 0.9rem; color: var(--text-mid); }
  .fee-table td:last-child { text-align: right; font-family: var(--sans); font-size: 1.1rem; color: var(--clay); font-weight: bold; }

  /* ─── SERVICES CTA ───────────────────────── */
  .services-cta {
    background: var(--cream);
    padding: 5rem 6rem;
    text-align: center;
  }
  .services-cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--bark);
    margin-bottom: 0.75rem;
    font-weight: bold;
  }
  .services-cta h2 em { color: var(--clay); font-style: italic; }
  .services-cta p {
    color: var(--text-mid);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.8;
  }
  .btn-cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bark);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(45,96,92,0.2);
  }
  .btn-cta-large:hover {
    background: var(--clay);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45,96,92,0.3);
  }
  @media (max-width: 900px) {
    .services-cta { padding: 3.5rem 1.5rem; }
  }

  /* ─── THERAPISTS ──────────────────────────── */
  .therapists-hero {
    padding: 10rem 6rem 5rem;
  }

  .therapists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 6rem 6rem;
  }

  .therapist-card {
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
    transition: transform var(--transition);
  }
  .therapist-card:hover { transform: translateY(-6px); }

  .therapist-avatar {
    height: 240px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: bold;
    color: var(--white);
  }
  .therapist-card:nth-child(1) .therapist-avatar { background: linear-gradient(135deg, #6b8f71, #3d6642); }
  .therapist-card:nth-child(2) .therapist-avatar { background: linear-gradient(135deg, #2d605c, #1a3a37); }
  .therapist-card:nth-child(3) .therapist-avatar { background: linear-gradient(135deg, #4a8480, #2d605c); }

  .therapist-info { padding: 1.75rem; }
  .therapist-name {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--bark);
    margin-bottom: 0.25rem;
  }
  .therapist-role {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 1rem;
  }
  .therapist-bio { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }
  .therapist-specialisms {
    margin-top: 1rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .tag {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem;
    background: var(--white);
    border: 1px solid var(--sage-light);
    color: var(--sage);
    border-radius: 20px;
  }

  /* ─── CONTACT ─────────────────────────────── */
  .contact-page {
    padding: 10rem 6rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    min-height: 100vh;
  }

  .contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: bold;
    color: var(--bark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .contact-info h2 em { font-style: italic; color: var(--sage); }
  .contact-info p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }

  .contact-detail {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.25rem;
  }
  .contact-detail-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-detail-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--sage); stroke-width: 1.5; }
  .contact-detail-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
  .contact-detail-value { font-size: 0.9rem; color: var(--text-mid); }
  .contact-detail-value a { color: var(--teal); text-decoration: none; }
  .contact-detail-value a:hover { color: var(--bark); text-decoration: underline; }

  #contact-form-wrap { scroll-margin-top: 80px; }
  .contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 2px;
  }
  .form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bark);
    margin-bottom: 2rem;
  }
  .form-group { margin-bottom: 1.5rem; }
  .form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--bark-light);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
    font-weight: 300;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-select { appearance: none; cursor: pointer; }

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

  .form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--bark);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--clay); }

  .form-success {
    display: none;
    text-align: center;
    padding: 3rem;
  }
  .form-success-icon {
    width: 60px; height: 60px;
    background: var(--sage-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
  }
  .form-success-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--sage); stroke-width: 1.5; }
  .form-success h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--bark); margin-bottom: 0.5rem; }
  .form-success p { font-size: 0.9rem; color: var(--text-mid); }

  /* ─── FOOTER ──────────────────────────────── */
  footer {
    background: var(--bark);
    padding: 4rem 6rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
  }

  .footer-brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--clay-light);
    margin-bottom: 1rem;
  }
  .footer-brand span { color: var(--sage-light); }
  .footer-tagline { font-size: 0.82rem; color: var(--bark-light); line-height: 1.7; }

  .footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark-light);
    margin-bottom: 0.35rem;
  }
  .footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--clay-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color var(--transition);
  }
  .footer-col a:hover { color: var(--white); }
  .footer-col p { font-size: 0.82rem; color: var(--clay-light); margin-bottom: 0.4rem; }

  .footer-bottom {
    background: #1a3a37;
    padding: 1.25rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--bark-light); }

  /* ─── ANIMATIONS ──────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page.active .hero-text > * { animation: fadeUp 0.7s ease both; }
  .page.active .hero-text > *:nth-child(1) { animation-delay: 0.1s; }
  .page.active .hero-text > *:nth-child(2) { animation-delay: 0.2s; }
  .page.active .hero-text > *:nth-child(3) { animation-delay: 0.3s; }
  .page.active .hero-text > *:nth-child(4) { animation-delay: 0.4s; }

  /* ─── UTILITY ─────────────────────────────── */
  .divider {
    width: 40px; height: 1px;
    background: var(--clay-light);
    margin: 1.5rem 0;
  }

  .text-balance { text-wrap: balance; }

  /* ─── HERO PHOTO ──────────────────────────── */
  .hero-image-inner {
    position: relative;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* ─── MEET BEN ────────────────────────────── */
  .meet-ben-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 85vh;
    padding-top: 80px;
  }
  .meet-ben-image {
    position: relative;
    overflow: hidden;
    background: var(--sage-pale);
  }
  .meet-ben-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .meet-ben-text {
    padding: 5rem 4rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ben-specialisms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  @media (max-width: 900px) {
  .meet-ben-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }

  .meet-ben-image {
    height: auto;
    order: 1;
    overflow: visible;
  }

  .meet-ben-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .meet-ben-text {
    padding: 2.5rem 1.5rem;
    order: 2;
  }

  section[style*="padding: 5rem 6rem"] {
    padding: 3.5rem 1.5rem !important;
  }
}

  /* ─── MOBILE NAV ──────────────────────────── */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px; height: 32px;
  }
  .nav-burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--bark);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-mobile-cta { display: none; }

  /* ─── RESPONSIVE ──────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-links {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      transform: none;
      background: rgba(253,251,248,0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      gap: 0;
      padding: 1rem 0 1.5rem;
      border-bottom: 1px solid rgba(122,108,94,0.15);
      z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(122,108,94,0.08); }
    .nav-mobile-cta.nav-mobile-cta { border-bottom: none; }
    .nav-links a { display: block; padding: 0.9rem 1.75rem; font-size: 0.82rem; }
  .nav-envelope { display: none; }
  .nav-cta-desktop { display: none; }
    .nav-envelope {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin-left: 0.5rem;
      color: var(--bark);
      flex-shrink: 0;
      overflow: visible;
    }
    .nav-envelope svg {
      width: 20px;
      height: 16px;
      fill: var(--bark);
      transition: fill var(--transition);
      overflow: visible;
      display: block;
    }
    .nav-envelope:hover svg { fill: var(--clay); }

    .nav-burger { display: flex; }
    .nav-mobile-cta { display: block; padding: 1.25rem 1.75rem 0.5rem; border-top: none; }
    .nav-mobile-cta a {
      display: block;
      text-align: center;
      background: var(--bark) !important;
      color: var(--white) !important;
      font-weight: 400 !important;
      font-size: 0.75rem !important;
      letter-spacing: 0.18em !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      padding: 1rem 2rem !important;
      border-radius: 2px;
      transition: background var(--transition);
    }
    .nav-mobile-cta a:hover { background: var(--clay) !important; }

    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
    .hero-text { padding: 3rem 1.5rem 2.5rem; order: 1; }
    .hero-image { order: 2; min-height: 260px; }
    .hero-float { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; }

    .section { padding: 3.5rem 1.5rem; }

    .home-testimonials { padding: 3.5rem 0 3.5rem 1.5rem; }
    .testimonials-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 1rem;
      padding-right: 1.5rem;
      padding-bottom: 1rem;
      margin-top: 2rem;
    }
    .testimonials-grid::-webkit-scrollbar { display: none; }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      padding-right: 1.5rem;
    }
    .testimonial-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--sage-light);
      opacity: 0.35;
      cursor: pointer;
      transition: opacity 0.25s, background 0.25s;
    }
    .testimonial-dot.active {
      background: var(--teal);
      opacity: 1;
    }
    .testimonial-card {
      flex: 0 0 80vw;
      max-width: 320px;
      scroll-snap-align: start;
    }

    .home-pillars { padding: 3.5rem 1.5rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .home-quote { padding: 3.5rem 1.75rem; }

    .about-values { padding: 3.5rem 1.5rem; }
    .values-grid { grid-template-columns: 1fr; gap: 0; }
    .value-item { padding: 1.5rem 0; }

    .services-hero { padding: 5.5rem 1.5rem 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item { padding: 2rem 1.5rem; }
    .services-fees { padding: 3rem 1.5rem; grid-template-columns: 1fr; gap: 0.5rem; }

    .therapists-hero { padding: 5.5rem 1.5rem 2.5rem; }
    .therapists-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3.5rem; gap: 1.5rem; }

    .contact-page { padding: 5.5rem 1.5rem 3.5rem; grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
    .contact-form { padding: 2rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }

    footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.4rem; text-align: center; }

    .home-about-section { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .accred-grid { grid-template-columns: 1fr !important; }
    .home-stats-grid { grid-template-columns: 1fr 1fr !important; padding: 2rem !important; gap: 1.25rem !important; }
  }

  @media (max-width: 600px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    .home-quote blockquote { font-size: 1.3rem; }
    .therapist-avatar { height: 180px; font-size: 3rem; }
  }

  /* ─── SVG LOGO ────────────────────────────── */
  .nav-logo-svg {
    display: flex;
    align-items: center;
  }
  .nav-logo-svg svg {
    height: 36px;
    width: auto;
  }
  /* Keep the original SVG colours in nav */
  .nav-logo-svg .st0 { fill: #6b8f71; }
  .nav-logo-svg .st1 { fill: #959595; }
  .nav-logo-svg .st2 { fill: #2d605c; }

  .footer-brand-svg {
    margin-bottom: 1rem;
  }
  .footer-brand-svg svg {
    height: 36px;
    width: auto;
  }
  /* Lighten the SVG for the dark footer */
  .footer-brand-svg .st0 { fill: #a8c4ad; }
  .footer-brand-svg .st1 { fill: #9dbfbc; }
  .footer-brand-svg .st2 { fill: #c8daca; }

  @media (max-width: 900px) {
    .nav-logo-svg svg { height: 32px; }
  }

  body.page-contact .nav-cta-desktop { visibility: hidden !important; }
  body.page-contact .nav-mobile-cta { display: none !important; }

