    /* =============================================
       HEALING VALLEY WELLNESS — FULL SITE
       ADA / WCAG 2.1 AA COMPLIANT
       ============================================= */

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

    :root {
      --teal:        #1C3B35;
      --teal-mid:    #2C4F40;
      --teal-dark:   #132B26;
      --gold:        #C9A43A;
      --gold-dark:   #A8852A;
      --cream:       #F5F0E8;
      --cream-dark:  #EDE7D9;
      --white:       #FFFFFF;
      --text-dark:   #1A1A1A;
      --text-mid:    #3A4A45;
      --teal-light:  #E4EEEA;
      --border:      #C5CEC9;
      --success:     #155724;
      --pending:     #7A5C00;
      --not-accept:  #6B2A2A;
      --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
      --shadow-md:   0 6px 20px rgba(0,0,0,0.12);
      --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
      --font-serif:  'Playfair Display', Georgia, serif;
      --font-sans:   'Inter', 'Segoe UI', system-ui, sans-serif;
      --max-width:   1160px;
      --radius:      10px;
      --radius-lg:   16px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      line-height: 1.75;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* === ADA: SKIP NAV === */
    .skip-link {
      position: absolute; top: -100%; left: 1rem;
      background: var(--gold); color: var(--teal);
      font-weight: 700; padding: 0.6rem 1.2rem;
      border-radius: 0 0 var(--radius) var(--radius);
      z-index: 10000; text-decoration: none; font-size: 1rem;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; outline: 3px solid var(--teal); outline-offset: 2px; }

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

    /* === TYPOGRAPHY === */
    h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--teal); }
    h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
    h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
    h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; margin-bottom: 0.5rem; }
    h4 { font-size: 1rem; font-weight: 600; }
    p  { margin-bottom: 1rem; }
    a  { color: var(--teal-mid); text-decoration: underline; }
    a:hover { color: var(--teal); }
    .sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }

    /* === LAYOUT === */
    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

    /* ================================================
       PARALLAX HERO HEADER (nature background)
       ================================================ */
    .parallax-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .parallax-bg {
      position: absolute;
      inset: -60px 0 0 0;   /* extra top for parallax travel */
      background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1920&q=85&auto=format&fit=crop');
      background-size: cover;
      background-position: center 40%;
      background-attachment: fixed;
      filter: brightness(0.38) saturate(0.7);
      z-index: 0;
      transform: translateZ(0);
      will-change: transform;
    }
    /* Gradient overlay for depth & text legibility */
    .parallax-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(18,40,34,0.72) 0%,
        rgba(28,59,53,0.55) 45%,
        rgba(40,74,60,0.65) 100%
      );
      z-index: 1;
    }
    /* Gold shimmer stripe at bottom of hero */
    .parallax-bottom-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 120px;
      background: linear-gradient(to top, var(--teal-dark) 0%, transparent 100%);
      z-index: 2;
    }

    /* === HEADER BAR (over parallax) === */
    .site-header {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(18,40,34,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,164,58,0.2);
      box-shadow: 0 2px 16px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    .header-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0.7rem 1.5rem;
      max-width: var(--max-width); margin: 0 auto;
      gap: 1rem; flex-wrap: wrap;
    }
    .logo-wrap {
      display: flex; align-items: center;
      gap: 0.8rem; text-decoration: none;
    }
    .logo-svg { width: 52px; height: 52px; flex-shrink: 0; }
    .logo-text .practice-name {
      font-family: var(--font-serif);
      font-size: clamp(0.82rem, 1.8vw, 1rem);
      color: var(--white); font-weight: 700; line-height: 1.2;
    }
    .logo-text .provider-name {
      font-size: 0.72rem; color: var(--gold);
      letter-spacing: 0.05em; font-weight: 500;
    }
    .header-phone {
      color: var(--gold); font-weight: 700;
      font-size: 1rem; text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;
      white-space: nowrap;
    }
    .header-phone:hover { color: var(--white); }

    /* Nav */
    .main-nav ul { list-style: none; display: flex; gap: 0; align-items: center; }
    .main-nav a {
      color: #B8D4CC; text-decoration: none;
      padding: 0.45rem 0.8rem; border-radius: 6px;
      font-size: 0.88rem; font-weight: 500;
      transition: background 0.2s, color 0.2s; display: block;
    }
    .main-nav a:hover, .main-nav a[aria-current="page"] {
      background: rgba(201,164,58,0.18); color: var(--gold);
    }
    .menu-toggle {
      display: none; background: transparent;
      border: 1.5px solid var(--gold); color: var(--gold);
      border-radius: 6px; padding: 0.35rem 0.65rem;
      cursor: pointer; font-size: 1.1rem;
      align-items: center; gap: 0.3rem;
    }
    @media (max-width: 900px) {
      .menu-toggle { display: flex; }
      .main-nav { display: none; width: 100%; order: 3; padding-bottom: 0.5rem; }
      .main-nav.open { display: block; }
      .main-nav ul { flex-direction: column; gap: 0.2rem; }
      .main-nav a { padding: 0.55rem 1rem; }
      .header-phone { display: none; }
    }

    /* === ACCEPTING BANNER === */
    .accepting-banner {
      background: var(--gold);
      color: var(--teal-dark);
      text-align: center;
      padding: 0.5rem 1rem;
      font-weight: 700; font-size: 0.9rem;
      letter-spacing: 0.02em;
      position: relative; z-index: 1001;
    }
    .accepting-banner a {
      color: var(--teal-dark); font-weight: 800;
      margin-left: 0.5rem; text-decoration: underline;
    }

    /* === HERO CONTENT (over parallax) === */
    .hero-content {
      position: relative; z-index: 3;
      flex: 1;
      display: flex; align-items: center;
      padding: 4rem 1.5rem 5rem;
      max-width: var(--max-width); margin: 0 auto; width: 100%;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 4rem; align-items: center; width: 100%;
    }
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
      .hero-photo-col { order: -1; max-width: 280px; margin: 0 auto; }
      .hero-cta-row { justify-content: center; }
      .hero-trust { justify-content: center; }
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(201,164,58,0.18);
      border: 1px solid rgba(201,164,58,0.45);
      color: var(--gold); border-radius: 50px;
      padding: 0.3rem 1rem; font-size: 0.8rem;
      font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .hero-eyebrow-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.5; transform: scale(0.85); }
    }

    .hero h1 { color: var(--white); margin-bottom: 0.5rem; }
    .hero-subtitle {
      color: #A8CFC5; font-size: 1.1rem;
      margin-bottom: 0.4rem; font-weight: 400;
    }
    .hero-tagline {
      font-family: var(--font-serif);
      color: var(--gold); font-style: italic;
      font-size: 1.05rem; margin-bottom: 2rem;
      letter-spacing: 0.02em;
    }

    .hero-cta-row {
      display: flex; gap: 1rem;
      flex-wrap: wrap; margin-bottom: 2.5rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.8rem 1.75rem; border-radius: var(--radius);
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      border: 2px solid transparent; cursor: pointer;
      transition: all 0.2s; line-height: 1.2;
      letter-spacing: 0.01em;
    }
    .btn:active { transform: scale(0.98); }
    .btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
    .btn-primary {
      background: var(--gold); color: var(--teal-dark);
      border-color: var(--gold);
      box-shadow: 0 4px 14px rgba(201,164,58,0.35);
    }
    .btn-primary:hover {
      background: var(--gold-dark); border-color: var(--gold-dark);
      box-shadow: 0 6px 20px rgba(201,164,58,0.45);
      color: var(--teal-dark);
    }
    .btn-outline {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,0.55);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.1); border-color: var(--white);
    }
    .btn-teal {
      background: var(--teal); color: var(--white);
      border-color: var(--teal);
    }
    .btn-teal:hover { background: var(--teal-mid); }
    .btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

    .hero-trust {
      display: flex; gap: 1.75rem; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.87rem; color: #8DC4B8;
    }
    .trust-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(201,164,58,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--gold);
      font-size: 0.65rem; font-weight: 900;
    }

    /* Hero photo */
    .hero-photo-col { position: relative; }
    .photo-frame {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 4px rgba(201,164,58,0.35);
    }
    .photo-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(28,59,53,0.5) 100%);
      z-index: 1;
    }
    .hero-photo {
      width: 100%; display: block;
      aspect-ratio: 3/4; object-fit: cover;
      object-position: top center;
    }
    .photo-badge {
      position: absolute; bottom: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--gold); color: var(--teal-dark);
      font-weight: 800; font-size: 0.82rem;
      padding: 0.45rem 1.25rem; border-radius: 50px;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(0,0,0,0.25);
      letter-spacing: 0.04em; text-transform: uppercase; z-index: 2;
    }

    /* Decorative corner accent */
    .photo-accent {
      position: absolute; top: -12px; left: -12px;
      width: 60px; height: 60px;
      border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);
      border-radius: 4px 0 0 0;
    }
    .photo-accent-br {
      position: absolute; bottom: -12px; right: -12px;
      width: 60px; height: 60px;
      border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
      border-radius: 0 0 4px 0;
    }

    /* ================================================
       SECTION STYLES
       ================================================ */
    .section { padding: 5rem 1.5rem; }
    .section--cream { background: var(--cream); }
    .section--teal  { background: var(--teal); }
    .section--teal h2, .section--teal h3 { color: var(--gold); }
    .section--teal p, .section--teal li { color: #D0E6DF; }
    .section--light { background: var(--teal-light); }

    .section-heading {
      text-align: center; margin-bottom: 3rem;
    }
    .section-heading h2 { margin-bottom: 0.6rem; }
    .section-heading p {
      font-size: 1.05rem; color: var(--text-mid);
      max-width: 600px; margin: 0 auto;
    }
    .gold-bar {
      display: block; width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold));
      margin: 1rem auto 0; border-radius: 4px;
    }

    /* === ABOUT === */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

    .credential-list { list-style: none; margin: 1rem 0; }
    .credential-list li {
      display: flex; align-items: flex-start; gap: 0.65rem;
      padding: 0.55rem 0; border-bottom: 1px solid var(--border);
      font-size: 0.94rem; color: var(--text-dark);
    }
    .credential-list li:last-child { border-bottom: none; }
    .cred-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--teal-light);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal-mid); flex-shrink: 0;
      font-size: 0.75rem; font-weight: 900;
    }

    .card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 1.75rem;
      box-shadow: var(--shadow-sm);
    }
    .card-gold-top { border-top: 4px solid var(--gold); }
    .card-teal { background: var(--teal); border: none; }
    .card-teal h3 { color: var(--gold); }
    .card-teal p, .card-teal span { color: #C8E0D8; }

    /* === PARALLAX DIVIDER (between sections) === */
    .parallax-divider {
      position: relative;
      height: 340px;
      overflow: hidden;
    }
    .parallax-divider-bg {
      position: absolute;
      inset: -80px 0;
      background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      filter: brightness(0.3) saturate(0.6);
    }
    .parallax-divider-overlay {
      position: absolute;
      inset: 0;
      background: rgba(18,40,34,0.75);
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 2rem;
    }
    .parallax-divider-text h2 {
      color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem);
      margin-bottom: 0.5rem;
    }
    .parallax-divider-text p {
      color: #A8CFC5; font-size: 1.05rem; margin-bottom: 1.5rem;
    }

    /* === SERVICES === */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      background: var(--white); border-radius: var(--radius);
      padding: 1.75rem; box-shadow: var(--shadow-sm);
      border-bottom: 3px solid var(--teal-light);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--teal-mid), var(--teal));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 50px; height: 50px; background: var(--teal-light);
      border-radius: 12px; display: flex;
      align-items: center; justify-content: center;
      color: var(--teal-mid); margin-bottom: 1.1rem;
    }
    .service-icon svg { width: 24px; height: 24px; }
    .service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
    .service-card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

    .not-offered-box {
      background: #FDF4F4; border: 1px solid #E0BBBB;
      border-left: 4px solid var(--not-accept);
      border-radius: var(--radius); padding: 1.5rem;
      margin-top: 2.5rem;
    }
    .not-offered-box h3 {
      color: var(--not-accept); font-size: 1rem;
      margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
    }
    .not-offered-box ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .not-offered-box li {
      background: #F2DADA; color: var(--not-accept);
      font-size: 0.87rem; font-weight: 600;
      padding: 0.3rem 0.85rem; border-radius: 50px;
    }
    .dot-note {
      margin-top: 0.75rem; font-size: 0.87rem;
      color: var(--pending); font-style: italic;
      display: flex; align-items: center; gap: 0.4rem;
    }

    /* === INSURANCE === */
    .insurance-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }
    @media (max-width: 768px) { .insurance-grid { grid-template-columns: 1fr; } }

    .ins-group h3 {
      font-size: 0.9rem; font-weight: 700;
      padding: 0.6rem 0.9rem;
      border-radius: var(--radius) var(--radius) 0 0;
      margin-bottom: 0;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .ins-group--accepted h3 { background: #D4EDDA; color: var(--success); border: 1px solid #A8D9B5; }
    .ins-group--pending  h3 { background: #FFF3CD; color: var(--pending);  border: 1px solid #EDD97A; }
    .ins-group--not      h3 { background: #F8D7DA; color: var(--not-accept); border: 1px solid #DDA5A5; }

    .ins-list {
      list-style: none; border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--radius) var(--radius);
      overflow: hidden;
    }
    .ins-group--accepted .ins-list { border-color: #A8D9B5; }
    .ins-group--pending  .ins-list { border-color: #EDD97A; }
    .ins-group--not      .ins-list { border-color: #DDA5A5; }

    .ins-list li {
      padding: 0.55rem 0.9rem; font-size: 0.91rem;
      border-bottom: 1px solid; display: flex; align-items: center;
      gap: 0.55rem; color: var(--text-dark);
    }
    .ins-list li:last-child { border-bottom: none; }
    .ins-group--accepted .ins-list li { background: #F0FAF4; border-color: #C3E6CB; }
    .ins-group--pending  .ins-list li { background: #FFFDF0; border-color: #F5E79A; }
    .ins-group--not      .ins-list li { background: #FDF4F4; border-color: #EBBCBC; }

    .ins-dot {
      width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    }
    .dot-green  { background: #1A7C3A; }
    .dot-amber  { background: #B07800; }
    .dot-red    { background: var(--not-accept); }

    .self-pay-box {
      margin-top: 2rem; background: var(--teal);
      border-radius: var(--radius-lg); padding: 2rem;
      display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
      box-shadow: var(--shadow-md);
    }
    .self-pay-icon {
      width: 56px; height: 56px; background: rgba(201,164,58,0.2);
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; color: var(--gold); flex-shrink: 0;
    }
    .self-pay-box h3 { color: var(--gold); margin-bottom: 0.25rem; font-size: 1.1rem; }
    .self-pay-box p { color: #C0DED6; margin: 0; font-size: 0.94rem; }

    /* === HOURS === */
    .hours-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
    }
    @media (max-width: 768px) { .hours-inner { grid-template-columns: 1fr; } }

    .hours-table {
      width: 100%; border-collapse: collapse;
      font-size: 0.93rem; border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow-sm);
    }
    .hours-table caption {
      font-family: var(--font-serif); font-weight: 700;
      font-size: 1rem; color: var(--teal);
      text-align: left; padding-bottom: 0.75rem;
    }
    .hours-table thead tr { background: var(--teal); }
    .hours-table th {
      text-align: left; padding: 0.7rem 1rem;
      color: var(--white); font-weight: 600;
      font-size: 0.85rem; letter-spacing: 0.05em;
    }
    .hours-table td {
      padding: 0.65rem 1rem; border-bottom: 1px solid var(--border);
      color: var(--text-dark);
    }
    .hours-table tr:last-child td { border-bottom: none; }
    .hours-table tr:nth-child(even) td { background: #EEE8DE; }
    .closed { color: var(--not-accept); font-weight: 600; }
    .open   { color: var(--success); font-weight: 600; }

    .lunch-note {
      margin-top: 0.75rem; font-size: 0.87rem;
      color: var(--text-mid); font-style: italic;
      display: flex; align-items: center; gap: 0.4rem;
    }

    .contact-card {
      background: var(--white); border-radius: var(--radius);
      padding: 1.75rem; box-shadow: var(--shadow-md);
      border-top: 4px solid var(--gold);
    }
    .contact-card h3 { color: var(--teal); font-size: 1.2rem; margin-bottom: 1.25rem; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 0.85rem;
      margin-bottom: 1rem; padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .ci-icon {
      width: 40px; height: 40px; background: var(--teal-light);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; color: var(--teal-mid); flex-shrink: 0;
    }
    .ci-icon svg { width: 18px; height: 18px; }
    .ci-label {
      font-size: 0.75rem; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--text-mid);
      font-weight: 600; margin-bottom: 0.15rem;
    }
    .ci-value { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
    .ci-value a { color: var(--teal-mid); text-decoration: none; font-weight: 700; }
    .ci-value a:hover { text-decoration: underline; color: var(--teal); }

    /* === LOCATION CTA === */
    .location-section { padding: var(--section-pad); }
    .location-section { padding: 5rem 1.5rem; }
    .location-inner { text-align: center; }
    .location-inner h2 { color: var(--gold); }
    .location-inner p { color: #C0DED6; max-width: 620px; margin: 0 auto 1.75rem; }
    .location-pills {
      display: flex; gap: 0.75rem;
      justify-content: center; flex-wrap: wrap; margin-bottom: 2rem;
    }
    .pill {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #C0DED6; padding: 0.4rem 1rem;
      border-radius: 50px; font-size: 0.87rem;
      display: flex; align-items: center; gap: 0.4rem;
    }
    .pill svg { color: var(--gold); }


    /* ================================================
       CONTACT / INTAKE FORM
       ================================================ */
    .contact-form-section { background: var(--cream); }

    .form-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 2.5rem;
    }
    @media (max-width: 768px) { .form-intro { grid-template-columns: 1fr; gap: 1.5rem; } }

    .form-intro-text h3 { color: var(--teal); margin-bottom: 0.75rem; }
    .form-intro-text p  { color: var(--text-mid); font-size: 0.95rem; }

    .form-quick-contact {
      background: var(--teal);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .form-quick-contact h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
    .fqc-item {
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 0.85rem; color: #C0DED6; font-size: 0.93rem;
    }
    .fqc-item:last-child { margin-bottom: 0; }
    .fqc-item svg { color: var(--gold); flex-shrink: 0; }
    .fqc-item a { color: #C0DED6; text-decoration: none; }
    .fqc-item a:hover { color: var(--gold); }

    /* Form card */
    .intake-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
      border-top: 5px solid var(--gold);
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem 1.5rem;
    }
    @media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
    .form-grid .full-width { grid-column: 1 / -1; }

    .form-field { display: flex; flex-direction: column; gap: 0.35rem; }
    .form-field label {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--teal);
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .form-field label .required-star {
      color: #C0392B;
      margin-left: 2px;
      font-size: 0.9rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 0.7rem 0.9rem;
      font-size: 0.95rem;
      font-family: var(--font-sans);
      color: var(--text-dark);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--teal-mid);
      box-shadow: 0 0 0 3px rgba(44,79,64,0.15);
      outline: none;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: #9AAEAA; }

    /* Custom select arrow */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '';
      position: absolute;
      right: 0.9rem; top: 50%; transform: translateY(-50%);
      width: 0; height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--teal-mid);
      pointer-events: none;
    }
    .select-wrap select { padding-right: 2.5rem; cursor: pointer; }

    .form-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

    /* HIPAA checkbox */
    .hipaa-row {
      display: flex; align-items: flex-start;
      gap: 0.75rem; grid-column: 1 / -1;
      background: var(--teal-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem 1.1rem;
    }
    .hipaa-row input[type="checkbox"] {
      width: 18px; height: 18px;
      min-width: 18px; margin-top: 2px;
      accent-color: var(--teal);
      cursor: pointer;
      border-radius: 3px;
    }
    .hipaa-label {
      font-size: 0.87rem;
      color: var(--text-mid);
      line-height: 1.5;
      cursor: pointer;
    }
    .hipaa-label strong { color: var(--teal); }

    /* Disclaimer */
    .form-disclaimer {
      grid-column: 1 / -1;
      background: #FFF8EC;
      border: 1px solid #E8D49A;
      border-left: 4px solid var(--gold);
      border-radius: 8px;
      padding: 0.9rem 1rem;
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.55;
    }
    .form-disclaimer strong { color: var(--teal); }

    /* Submit button area */
    .form-submit-row {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-top: 0.5rem;
    }
    .form-submit-row .btn { min-width: 200px; justify-content: center; font-size: 1rem; padding: 0.85rem 2rem; }
    .form-submit-note { font-size: 0.82rem; color: var(--text-mid); }
    .form-submit-note svg { color: var(--teal-mid); vertical-align: middle; }

    /* Success / error states */
    .form-message {
      display: none;
      border-radius: 8px;
      padding: 1rem 1.25rem;
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 1.25rem;
    }
    .form-message.success {
      background: #D4EDDA; border: 1px solid #A8D9B5; color: var(--success);
    }
    .form-message.error {
      background: #F8D7DA; border: 1px solid #DDA5A5; color: var(--not-accept);
    }
    .field-error {
      font-size: 0.79rem; color: #C0392B;
      display: none; margin-top: 2px;
    }
    .form-field.has-error input,
    .form-field.has-error select,
    .form-field.has-error textarea { border-color: #C0392B; }
    .form-field.has-error .field-error { display: block; }

    /* Section divider between form and location */
    .section-divider {
      height: 4px;
      background: linear-gradient(90deg, var(--teal-dark), var(--teal-mid), var(--gold), var(--teal-mid), var(--teal-dark));
    }

    /* === FOOTER === */
    .site-footer {
      background: #0E1E1A; color: #8ABDB3;
      padding: 3rem 1.5rem 1.5rem;
    }
    .footer-inner { max-width: var(--max-width); margin: 0 auto; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 2.5rem; margin-bottom: 2rem;
    }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
    .footer-brand .pname {
      font-family: var(--font-serif); font-size: 1.1rem;
      color: var(--white); font-weight: 700; margin-bottom: 0.2rem;
    }
    .footer-brand .pvname { color: var(--gold); font-size: 0.83rem; margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 320px; }
    .footer-tagline {
      font-family: var(--font-serif); font-style: italic;
      color: var(--gold); font-size: 0.95rem; margin-top: 0.75rem;
    }
    .footer-col h4 {
      color: var(--white); font-size: 0.82rem;
      letter-spacing: 0.07em; text-transform: uppercase;
      margin-bottom: 0.75rem; padding-bottom: 0.35rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col li { margin-bottom: 0.55rem; }
    .footer-col a {
      color: #C4DDD9; font-size: 0.92rem; text-decoration: none;
      display: inline-block; padding: 0.15rem 0;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    @media (max-width: 768px) {
      .footer-col h4 { font-size: 0.9rem; margin-bottom: 0.65rem; }
      .footer-col a { font-size: 1rem; padding: 0.3rem 0; }
      .footer-col li { margin-bottom: 0.65rem; }
    }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p { color: #8ABDB3; }
    .ada-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px; padding: 0.25rem 0.75rem;
      font-size: 0.74rem; color: #9ABFBA;
    }
