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

  :root {
    --sage: #4a7c6f;
    --sage-light: #e8f0ed;
    --sage-mid: #7aaa9b;
    --warm: #c9a97a;
    --warm-light: #f5ede0;
    --cream: #faf8f4;
    --deep: #2c3e35;
    --muted: #6b7b74;
    --white: #ffffff;
    --radius: 16px;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--deep);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: background 0.3s, border-color 0.3s;
  }
  nav.scrolled {
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(74,124,111,0.12);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 20px; color: white;
    text-decoration: none; line-height: 1.2;
    transition: color 0.3s;
  }
  nav.scrolled .nav-logo { color: var(--deep); }
  .nav-logo span { color: var(--sage-mid); font-style: italic; }
  nav.scrolled .nav-logo span { color: var(--sage); }
  .nav-links { display: flex; gap: 24px; list-style: none; }
  .nav-links a {
    font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.8);
    text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--muted); }
  .nav-links a:hover, .nav-links a.nav-active { color: white; }
  nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.nav-active { color: var(--sage); }
  .nav-cta {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 10px 24px; font-size: 14px; font-weight: 500;
    font-family: var(--sans); cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  nav.scrolled .nav-cta {
    background: var(--sage);
    border-color: var(--sage);
  }
  .nav-cta:hover { background: white; color: var(--deep); border-color: white; transform: translateY(-1px); }
  nav.scrolled .nav-cta:hover { background: var(--deep); border-color: var(--deep); color: white; }

  /* ── Full-screen fixed video hero ───────────── */
  .hero {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
  }
  .hero video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(44,62,53,0.15) 0%,
      rgba(44,62,53,0.08) 40%,
      rgba(44,62,53,0.72) 100%
    );
  }
  .hero-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    text-align: left;
    width: 55%;
    max-width: 680px;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
  }
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  }
  .hero-content h1 em {
    font-style: italic;
    color: #7ec8b0;
  }
  .hero-locations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0 28px;
  }
  .hero-locations span {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px; padding: 6px 16px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
    margin-bottom: 28px; width: fit-content;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--sage-mid);
  }
  h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.05; color: white;
    margin-bottom: 20px;
  }
  h1 em { color: var(--sage-mid); font-style: italic; }
  .hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.82); max-width: 560px;
    line-height: 1.7; margin-bottom: 0; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--sage); color: white;
    border: none; border-radius: 50px;
    padding: 14px 32px; font-size: 15px; font-weight: 500;
    font-family: var(--sans); cursor: pointer;
    transition: all 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: white; color: var(--deep); transform: translateY(-2px); }
  .btn-ghost {
    color: var(--sage); font-size: 15px; font-weight: 500;
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: gap 0.2s;
  }
  .btn-ghost:hover { gap: 12px; }
  .btn-ghost-light { color: rgba(255,255,255,0.85); }
  .btn-ghost-light:hover { color: white; }

  /* Scroll hint */
  @keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%       { transform: translateY(6px); opacity: 1; }
  }
  .hero-scroll {
    position: absolute;
    bottom: 36px; right: 80px;
    z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.65);
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
  }
  .hero-scroll svg { width: 18px; height: 18px; }

  /* ── Page body scrolls over the video ───────── */
  .page-body {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: var(--cream);
    border-radius: 48px 48px 0 0;
    box-shadow: 0 -12px 60px rgba(44,62,53,0.25);
  }

  /* Hero fade-in animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* hero-content is scroll-driven — no CSS fade-in */

  /* Testimonial card (used elsewhere on page) */
  .hero-card {
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(44,62,53,0.16);
    border: 1px solid rgba(74,124,111,0.1);
    max-width: 300px;
  }
  .card-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 8px;
  }
  .card-quote {
    font-family: var(--serif); font-size: 14px;
    color: var(--deep); line-height: 1.5; margin-bottom: 14px;
    font-style: italic;
  }
  .card-author { display: flex; align-items: center; gap: 10px; }
  .avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--sage); display: flex; align-items: center;
    justify-content: center; color: white; font-size: 12px; font-weight: 500;
    flex-shrink: 0;
  }
  .avatar-name { font-size: 13px; font-weight: 500; color: var(--deep); }
  .avatar-role { font-size: 11px; color: var(--muted); }

  /* Stats (kept for use inside page-body if needed) */
  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    padding-top: 40px; border-top: 1px solid rgba(74,124,111,0.15);
  }
  .stat-num { font-family: var(--serif); font-size: 36px; color: var(--deep); line-height: 1; }
  .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

  section { padding: 100px 80px; }
  .section-label {
    font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
  }
  h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--deep); line-height: 1.15; margin-bottom: 20px;
  }
  h2 em { color: var(--sage); font-style: italic; }
  .section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; font-weight: 300; }

  .services { background: var(--white); }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: end; margin-bottom: 64px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    border: 1px solid rgba(74,124,111,0.12);
    border-radius: var(--radius); padding: 32px;
    background: var(--cream);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(44,62,53,0.08);
  }
  .service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--sage); fill: none; stroke-width: 1.5; }
  .service-title {
    font-family: var(--serif); font-size: 20px;
    color: var(--deep); margin-bottom: 10px;
  }
  .service-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--sage); font-size: 13px; font-weight: 500;
    margin-top: 20px; text-decoration: none;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }

  .process { background: var(--cream); }
  .process-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .steps { display: flex; flex-direction: column; gap: 32px; }
  .step { display: flex; gap: 24px; }
  .step-num {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 50%; background: var(--sage);
    color: white; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 18px; font-weight: 600;
  }
  .step-body h3 { font-family: var(--serif); font-size: 20px; color: var(--deep); margin-bottom: 8px; }
  .step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  .process-visual {
    background: var(--sage-light);
    border-radius: 24px; padding: 48px;
    position: relative; overflow: hidden;
  }
  .location-card {
    background: white; border-radius: var(--radius);
    padding: 24px; margin-bottom: 16px;
    box-shadow: 0 4px 24px rgba(44,62,53,0.07);
  }
  .location-name { font-family: var(--serif); font-size: 18px; color: var(--deep); margin-bottom: 6px; }
  .location-detail { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
  .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); display: inline-block; }

  .team { background: var(--white); }
  .team-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .team-filter {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center;
  }
  .filter-btn {
    background: none; border: 1px solid rgba(74,124,111,0.25); border-radius: 50px;
    padding: 7px 18px; font-size: 13px; font-family: var(--sans); color: var(--muted);
    cursor: pointer; transition: all 0.2s;
  }
  .filter-btn:hover, .filter-btn.active { background: var(--sage); color: white; border-color: var(--sage); }
  .team-card {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(74,124,111,0.1);
    transition: transform 0.2s;
  }
  .team-card:hover { transform: translateY(-4px); }
  .team-avatar {
    height: 320px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 40px; color: white;
    font-weight: 600; font-style: italic; overflow: hidden;
  }
  .team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .team-info { padding: 20px; background: var(--cream); }
  .team-name { font-family: var(--serif); font-size: 16px; color: var(--deep); margin-bottom: 4px; }
  .team-role { font-size: 12px; color: var(--sage); font-weight: 500; margin-bottom: 8px; }
  .team-interests { font-size: 12px; color: var(--muted); line-height: 1.5; }
  .team-avail { font-size: 11px; color: var(--sage); margin-top: 8px; font-weight: 500; }
  .team-card-btn {
    display: inline-block; margin-top: 12px; font-size: 12px; color: var(--sage);
    background: var(--sage-light); border: none; border-radius: 50px;
    padding: 5px 14px; cursor: pointer; font-family: var(--sans); transition: background 0.2s;
  }
  .team-card-btn:hover { background: var(--sage); color: white; }

  /* Admin Team Section */
  .admin-team-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid var(--sage-light);
  }
  .admin-team-heading {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--deep);
    margin-bottom: 8px;
    text-align: center;
  }
  .admin-team-sub {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 36px;
  }
  .admin-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .admin-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 2px 16px rgba(44,62,53,0.07);
    min-width: 280px;
    max-width: 340px;
    flex: 1;
  }
  .admin-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sage-light);
    overflow: hidden;
    flex-shrink: 0;
  }
  .admin-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--deep);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .admin-role {
    font-size: 13px;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .admin-contact a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
  }
  .admin-contact a:hover { color: var(--sage); }

  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(44,62,53,0.5); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 24px;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white; border-radius: 24px; max-width: 680px; width: 100%;
    max-height: 85vh; overflow-y: auto; padding: 48px; position: relative;
  }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--sage-light); border: none; border-radius: 50%;
    width: 36px; height: 36px; font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: var(--sage);
  }
  .modal-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 28px; color: white; margin-bottom: 20px;
  }
  .modal-name { font-family: var(--serif); font-size: 28px; color: var(--deep); margin-bottom: 4px; }
  .modal-role { font-size: 14px; color: var(--sage); font-weight: 500; margin-bottom: 24px; }
  .modal-section { margin-bottom: 20px; }
  .modal-section-title { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .modal-section p { font-size: 14px; color: var(--deep); line-height: 1.7; }
  .modal-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .modal-tag { background: var(--sage-light); color: var(--sage); font-size: 12px; border-radius: 50px; padding: 4px 12px; }
  .modal-avail { font-size: 13px; color: var(--muted); line-height: 1.8; white-space: pre-line; }

  .funding { background: var(--sage); padding: 100px 80px; }
  .funding-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
  }
  .funding-left h2 { color: white; }
  .funding-left .section-sub { color: rgba(255,255,255,0.7); }
  .funding-left .section-label { color: rgba(255,255,255,0.6); }
  .funding-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .pill {
    background: rgba(255,255,255,0.15); color: white;
    border-radius: 50px; padding: 8px 20px; font-size: 13px;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .funding-right {
    min-width: 320px; background: white; border-radius: 24px; padding: 40px;
  }
  .funding-right h3 { font-family: var(--serif); font-size: 22px; color: var(--deep); margin-bottom: 8px; }
  .funding-right p { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
  .input-group { margin-bottom: 16px; }
  .input-group label { font-size: 12px; font-weight: 500; color: var(--muted); display: block; margin-bottom: 6px; letter-spacing: 0.03em; }
  .input-group input, .input-group select {
    width: 100%; border: 1px solid rgba(74,124,111,0.2); border-radius: 10px;
    padding: 12px 16px; font-size: 14px; font-family: var(--sans);
    color: var(--deep); background: var(--cream); outline: none;
    transition: border-color 0.2s;
  }
  .input-group input:focus, .input-group select:focus { border-color: var(--sage); }

  .blog { background: var(--cream); }
  .blog-header {
    display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px;
  }
  .blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
  .blog-card { border-radius: var(--radius); overflow: hidden; background: white; border: 1px solid rgba(74,124,111,0.1); transition: transform 0.2s; cursor: pointer; }
  .blog-card:hover { transform: translateY(-3px); }
  .blog-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
  .blog-body { padding: 24px; }
  .blog-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
  .blog-title { font-family: var(--serif); font-size: 18px; color: var(--deep); line-height: 1.35; margin-bottom: 10px; }
  .blog-title-sm { font-family: var(--serif); font-size: 15px; color: var(--deep); line-height: 1.35; margin-bottom: 8px; }
  .blog-meta { font-size: 12px; color: var(--muted); }
  .blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 10px; }

  footer {
    background: var(--deep); color: rgba(255,255,255,0.7);
    padding: 80px 80px 40px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-logo { font-family: var(--serif); font-size: 22px; color: white; margin-bottom: 16px; }
  .footer-logo span { color: var(--sage-mid); font-style: italic; }
  .footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
  .footer-contact { font-size: 14px; }
  .footer-contact a { color: var(--sage-mid); text-decoration: none; }
  .footer-col h4 { color: white; font-size: 14px; font-weight: 500; margin-bottom: 20px; letter-spacing: 0.03em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--sage-mid); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 8px;
  }
  .footer-social-list { gap: 8px !important; }
  .footer-social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social-link:hover { color: var(--sage-mid) !important; }
  .footer-credit { color: rgba(255,255,255,0.45); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* ── Practice Gallery ── */
  .practice-gallery {
    padding: 100px 60px;
    background: var(--cream);
  }
  .gallery-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--deep);
    margin: 10px 0 16px;
    line-height: 1.2;
  }
  .gallery-header h2 em {
    font-style: italic;
    color: var(--sage);
  }
  .gallery-feature {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 40px rgba(44,62,53,0.14);
  }
  .gallery-feature img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  .gallery-feature-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(44,62,53,0.75) 0%, transparent 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .gallery-strip-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44,62,53,0.10);
    aspect-ratio: 4/3;
  }
  .gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .gallery-strip-item:hover img {
    transform: scale(1.04);
  }
  .gallery-strip-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px 12px;
    background: linear-gradient(to top, rgba(44,62,53,0.72) 0%, transparent 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gallery-strip-item:hover span {
    opacity: 1;
  }

  /* ── Locations section ─────────────────────── */
  .locations-section {
    padding: 100px 60px;
    background: var(--deep);
  }
  .locations-section .section-label { color: var(--sage-mid); }
  .locations-section h2 { color: white; margin-bottom: 12px; }
  .locations-section > p { color: rgba(255,255,255,0.65); margin-bottom: 56px; }
  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .location-detail-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  .location-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  .location-photo-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(74,124,111,0.4), rgba(44,62,53,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }
  .location-info {
    padding: 32px;
  }
  .location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
  }
  .location-address {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .location-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .location-hours-item h4 {
    color: var(--sage-mid);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
  }
  .location-hours-item p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.6;
  }
  .location-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .location-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .location-links .btn-loc-primary {
    background: var(--sage);
    color: white;
  }
  .location-links .btn-loc-primary:hover { background: #3d6b5e; }
  .location-links .btn-loc-ghost {
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
  }
  .location-links .btn-loc-ghost:hover { background: rgba(255,255,255,0.08); }
  .locations-maps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0 48px; }
  .map-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.07); }
  .map-label { padding: 14px 20px; font-weight: 500; font-size: 15px; color: white; background: rgba(255,255,255,0.08); }
  .map-directions { display: block; padding: 12px 20px; font-size: 13px; color: var(--sage-mid); text-decoration: none; background: rgba(255,255,255,0.05); transition: background 0.2s; }
  .map-directions:hover { background: rgba(255,255,255,0.1); color: white; }
  @media (max-width: 768px) { .locations-maps { grid-template-columns: 1fr; } }
  .telehealth-banner {
    margin-top: 24px;
    background: rgba(126,200,176,0.12);
    border: 1px solid rgba(126,200,176,0.25);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .telehealth-banner-text h4 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .telehealth-banner-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ── Process section photo ──────────────────── */
  .process-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    display: block;
  }

  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    .funding { padding: 60px 24px; }
    .hero-content { bottom: 40px; left: 24px; right: 24px; width: auto; max-width: none; }
    .hero-scroll { right: 24px; }
    .services-header { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-inner { grid-template-columns: 1fr; }
    .process-visual { display: none; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .funding-inner { flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    footer { padding: 60px 24px 32px; }
    .practice-gallery { padding: 60px 24px; }
    .gallery-feature img { height: 260px; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .locations-section { padding: 60px 24px; }
    .locations-grid { grid-template-columns: 1fr; }
    .location-hours-grid { grid-template-columns: 1fr; }
    .telehealth-banner { flex-direction: column; }
  }
