:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6C0;
    --black: #1A1A18;
    --charcoal: #2E2E2A;
    --warm-white: #FDFAF3;
    --cream: #F7F0E0;
    --text: #3A3832;
    --text-light: #7A7668;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    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.2rem 5%;
    background: rgba(253,250,243,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
  }
  .sun-icon {
    width: 38px; height: 38px;
  }
  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
  }
  .nav-logo-text span { color: var(--gold); font-style: italic; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light); text-decoration: none; font-weight: 500;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2rem;
    font-weight: 500 !important;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(253,250,243,0.82) 30%, rgba(247,240,224,0.45) 100%), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-rays {
    position: absolute; top: -10%; right: -5%;
    width: 55vw; height: 55vw;
    pointer-events: none; z-index: 0;
    opacity: 0.18;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 6rem 8%;
    z-index: 1;
  }
  .eyebrow {
    font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .eyebrow::before {
    content: ''; display: block; width: 2rem; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 1.5rem;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 300; line-height: 1.8;
    color: var(--text-light); max-width: 480px; margin-bottom: 2.5rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--black);
    padding: 0.9rem 2.2rem; border-radius: 3rem;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    text-decoration: none; text-transform: uppercase;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1.5px solid var(--gold); color: var(--gold);
    padding: 0.9rem 2.2rem; border-radius: 3rem;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    text-decoration: none; text-transform: uppercase;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: var(--gold-pale); }

  .hero-right {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 4rem 6% 4rem 0;
    z-index: 1;
  }
  .hero-image-wrap {
    position: relative; width: 420px; max-width: 90%;
  }
  .hero-image-wrap::before {
    content: ''; position: absolute;
    inset: -18px -12px -12px -18px;
    border: 1.5px solid rgba(201,168,76,0.35);
    border-radius: 1rem; z-index: -1;
  }
  .hero-image-wrap::after {
    content: ''; position: absolute;
    bottom: -28px; right: -28px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, transparent 70%);
    border-radius: 50%; z-index: -1;
  }
  .hero-img-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    overflow: hidden;
  }
  .hero-quote-card {
    position: absolute; bottom: -20px; left: -30px;
    background: var(--charcoal); color: white;
    padding: 1.2rem 1.5rem; border-radius: 0.75rem;
    max-width: 220px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  }
  .hero-quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-style: italic; line-height: 1.5;
    color: var(--gold-pale);
  }
  .hero-quote-card span { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }

  .hero-stat-card {
    position: absolute; top: 30px; right: -20px;
    background: white; padding: 1rem 1.4rem; border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; align-items: center;
    border-top: 3px solid var(--gold);
  }
  .hero-stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--gold);
  }
  .hero-stat-card .lbl {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light); text-align: center;
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--gold); overflow: hidden; padding: 0.9rem 0;
    display: flex; gap: 0;
    margin-top: 72px;
    position: relative; z-index: 99;
  }
  .marquee-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--black); font-weight: 500;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .marquee-dot { width: 4px; height: 4px; background: var(--black); border-radius: 50%; }
  .section-tag {
    font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600; line-height: 1.2; color: var(--charcoal);
    margin-bottom: 1.5rem;
  }
  .section-h2 em { color: var(--gold); font-style: italic; }
  .about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem; font-weight: 300; line-height: 1.9;
    color: var(--text-light); margin-bottom: 2rem;
  }
  .about-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .about-value {
    background: var(--cream); border-radius: 0.75rem;
    padding: 1.2rem; border-left: 3px solid var(--gold);
  }
  .about-value h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: var(--charcoal);
    margin-bottom: 0.3rem;
  }
  .about-value p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }
  .about-visual {
    position: relative;
  }
  .about-sunflower {
    width: 100%; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── SERVICES ── */
  .services {
    background: var(--charcoal);
    padding: 7rem 8%;
  }
  .services .section-tag::before { background: var(--gold); }
  .services .section-tag { color: var(--gold); }
  .services .section-h2 { color: white; }
  .services-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 300; color: rgba(255,255,255,0.5);
    max-width: 520px; line-height: 1.8; margin-bottom: 3.5rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
  }
  .service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 1rem; padding: 2rem;
    transition: all 0.35s; cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .service-card:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 44px; height: 44px; margin-bottom: 1.2rem;
    background: rgba(201,168,76,0.15); border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600; color: white;
    margin-bottom: 0.7rem;
  }
  .service-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ── THERAPISTS ── */
  .therapists { padding: 7rem 8%; }
  .therapists-header { margin-bottom: 4rem; }
  .therapists-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  }
  .therapist-card {
    background: white; border-radius: 1.2rem;
    box-shadow: 0 6px 40px rgba(0,0,0,0.07);
    overflow: hidden; transition: transform 0.3s;
  }
  .therapist-card:hover { transform: translateY(-6px); }
  .therapist-photo {
    aspect-ratio: 4/3; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .therapist-photo-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 2rem;
  }
  .therapist-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center;
    justify-content: center; font-size: 2.5rem;
    border: 4px solid white; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .therapist-body { padding: 2rem; }
  .therapist-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--charcoal);
    margin-bottom: 0.2rem;
  }
  .therapist-cred {
    font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold);
    text-transform: uppercase; font-weight: 500; margin-bottom: 1rem;
  }
  .therapist-services { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
  .tag {
    background: var(--gold-pale); color: var(--gold);
    padding: 0.3rem 0.8rem; border-radius: 2rem;
    font-size: 0.75rem; font-weight: 500;
  }
  .therapist-lang {
    font-size: 0.82rem; color: var(--text-light);
    display: flex; align-items: center; gap: 0.4rem;
  }
  .therapist-contact {
    border-top: 1px solid var(--cream); margin-top: 1.2rem; padding-top: 1.2rem;
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .contact-row {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.83rem; color: var(--text-light);
  }
  .contact-row svg { color: var(--gold); flex-shrink: 0; }

  /* ── APPROACH ── */
  .approach {
    background: var(--cream); padding: 7rem 8%;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center;
  }
  .approach-steps { display: flex; flex-direction: column; gap: 2rem; }
  .step {
    display: flex; gap: 1.5rem; align-items: flex-start;
  }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700; line-height: 1;
    color: rgba(201,168,76,0.25); flex-shrink: 0; width: 3rem; text-align: right;
  }
  .step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem;
  }
  .step-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

  /* ── CONTACT ── */
  .contact {
    padding: 7rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-form {
    background: white; border-radius: 1.2rem;
    padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  }
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1.5rem;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block; font-size: 0.78rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; font-weight: 500;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1.5px solid rgba(201,168,76,0.25); border-radius: 0.5rem;
    background: var(--warm-white); font-family: 'Jost', sans-serif;
    font-size: 0.9rem; color: var(--text); outline: none;
    transition: border-color 0.3s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit {
    width: 100%; background: var(--gold); color: var(--black);
    padding: 1rem; border: none; border-radius: 3rem; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 600; color: var(--charcoal);
    margin-bottom: 0.8rem;
  }
  .contact-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 300; color: var(--text-light);
    line-height: 1.8; margin-bottom: 2rem;
  }
  .info-blocks { display: flex; flex-direction: column; gap: 1.5rem; }
  .info-block {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .info-icon {
    width: 44px; height: 44px; background: var(--gold-pale); border-radius: 0.6rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .info-block-text h5 {
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); font-weight: 500; margin-bottom: 0.2rem;
  }
  .info-block-text a, .info-block-text p {
    font-size: 0.95rem; color: var(--charcoal); text-decoration: none; font-weight: 500;
    transition: color 0.3s;
  }
  .info-block-text a:hover { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    background: var(--black); padding: 4rem 8% 2rem;
    color: rgba(255,255,255,0.45);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }
  .footer-brand .nav-logo-text { color: white; font-size: 1.1rem; }
  .footer-brand p {
    font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 280px;
  }
  .footer-col h4 {
    font-family: 'Playfair Display', serif; color: white;
    font-size: 0.95rem; margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a {
    font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-bottom span { color: var(--gold); }

  /* SVG sun */
  .sun-svg-hero {
    width: 100%; height: 100%; opacity: 0.6;
  }

  /* ── SCROLL ANIMATIONS ── */