    :root {
      --bg: #FAF7F2;
      --primary: #8B7355;
      --primary-hover: #7A6548;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-800: #292524;
      --white: #ffffff;
      --green-50: #f0fdf4;
      --green-600: #16a34a;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--stone-800);
      -webkit-font-smoothing: antialiased;
    }
    .font-serif { font-family: 'Playfair Display', serif; }

    .top-bar {
      background: var(--white);
      border-bottom: 1px solid var(--stone-100);
    }
    .top-bar-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--stone-600);
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.2s;
    }
    .back-link:hover { color: var(--stone-800); }
    .logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
    .logo-wrap img { width: 2rem; height: 2rem; object-fit: contain; }
    .logo-text { color: var(--stone-800); font-size: 0.875rem; font-weight: 600; }
    @media (max-width: 640px) { .logo-text { display: none; } }

    .main-wrap {
      max-width: 80rem;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }
    @media (min-width: 1024px) {
      .main-wrap { padding: 5rem 2rem; }
      .grid-cols { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; }
    }

    .accent-line { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: nowrap; white-space: nowrap; }
    .accent-line span { width: 3rem; height: 1px; background: var(--primary); }
    .accent-label { color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500; }
    .title-hero { font-size: 1.875rem; line-height: 1.2; margin-bottom: 1rem; font-family: 'Playfair Display', serif; color: var(--stone-800); }
    .title-hero em { color: var(--primary); font-style: italic; }
    @media (min-width: 1024px) { .title-hero { font-size: 2.25rem; } }
    .intro-p { color: var(--stone-500); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 2rem; }
    .contact-list { margin-bottom: 2rem; }
    .contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .contact-icon {
      width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
      background: rgba(139, 115, 85, 0.08);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
    .contact-item a, .contact-item span { color: var(--stone-600); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
    .contact-item a:hover { color: var(--primary); }
    .insurance-card {
      padding: 1.25rem; border-radius: 1rem; background: var(--white);
      border: 1px solid var(--stone-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .insurance-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
    .insurance-title svg { width: 1rem; height: 1rem; color: var(--primary); }
    .insurance-title span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone-400); }
    .insurance-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .insurance-tag { padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--bg); font-size: 0.75rem; color: var(--stone-600); font-weight: 500; border: 1px solid var(--stone-100); }

    .form-card {
      background: var(--white); border-radius: 1.5rem; padding: 2rem;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); border: 1px solid var(--stone-100);
    }
    @media (min-width: 1024px) { .form-card { padding: 2.5rem; } }
    .form-title { font-size: 1.25rem; font-family: 'Playfair Display', serif; color: var(--stone-800); margin-bottom: 1.5rem; }
    .field-group { margin-bottom: 1.25rem; }
    .field-row { display: flex; flex-wrap: wrap; gap: 1rem; }
    .field-row .field-group { flex: 1; min-width: 0; }
    @media (min-width: 640px) { .field-row-2 .field-group { flex: 1; min-width: 12rem; } }
    label.field-label {
      display: block; color: var(--stone-600); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; font-weight: 500;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
      width: 100%; height: 3rem; padding: 0 0.75rem; border: 1px solid var(--stone-200); border-radius: 0.75rem;
      font-size: 0.875rem; font-family: inherit; background: transparent; transition: border-color 0.2s, box-shadow 0.2s;
    }
    input:focus, select:focus, textarea:focus {
      outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
    }
    textarea { height: auto; min-height: 6rem; padding: 0.75rem; resize: none; }
    select {
      cursor: pointer; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem;
    }
    .btn-submit {
      width: 100%; height: 3.5rem; margin-top: 0.5rem; background: var(--primary); color: var(--white); border: none;
      border-radius: 9999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
      cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: background 0.2s;
      box-shadow: 0 20px 25px -5px rgba(139, 115, 85, 0.2);
    }
    .btn-submit:hover:not(:disabled) { background: var(--primary-hover); }
    .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .btn-submit svg { width: 1rem; height: 1rem; flex-shrink: 0; }
    .btn-submit .spinner { animation: spin 0.8s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .form-note { text-align: center; color: var(--stone-400); font-size: 0.75rem; margin-top: 0.5rem; }

    .success-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: var(--bg); }
    .success-card {
      background: var(--white); border-radius: 1.5rem; padding: 2.5rem; max-width: 32rem; width: 100%; text-align: center;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); border: 1px solid var(--stone-100);
    }
    @media (min-width: 1024px) { .success-card { padding: 4rem; } }
    .success-icon-wrap {
      width: 4rem; height: 4rem; border-radius: 50%; background: var(--green-50);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    }
    .success-icon-wrap svg { width: 2rem; height: 2rem; color: var(--green-600); }
    .success-title { font-size: 1.5rem; font-family: 'Playfair Display', serif; color: var(--stone-800); margin-bottom: 0.75rem; }
    .success-msg { color: var(--stone-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 2rem; }
    .btn-home {
      display: inline-block; padding: 0 2rem; height: 3rem; line-height: 3rem; background: var(--primary); color: var(--white);
      border-radius: 9999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; transition: background 0.2s;
    }
    .btn-home:hover { background: var(--primary-hover); }

    #hiddenIframe { display: none; }
    .error-msg { color: #b91c1c; font-size: 0.875rem; margin-top: 0.5rem; display: none; }
    .error-msg.visible { display: block; }

    /* Page views: home vs book */
    #homePage { display: block; min-height: 100vh; background: var(--white); }
    #bookPage { display: none; }
    body.show-book #homePage { display: none; }
    body.show-book #bookPage { display: block; }
    body.show-success #homePage,
    body.show-success #bookPage { display: none !important; }
    body.show-success #successView { display: flex !important; }

    /* Home nav */
    .home-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s, box-shadow 0.3s; }
    .home-nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.06); border-bottom: 1px solid var(--stone-100); }
    .home-nav-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; height: 5rem; display: flex; align-items: center; justify-content: space-between; }
    .home-nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; border: none; background: none; font: inherit; color: inherit; padding: 0; }
    .home-nav-logo img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
    .home-nav-logo .brand-top { font-size: 0.875rem; font-weight: 600; }
    .home-nav-logo .brand-bottom { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; }
    .home-nav:not(.scrolled) .brand-top, .home-nav:not(.scrolled) .brand-bottom { color: var(--white); }
    .home-nav:not(.scrolled) .brand-bottom { opacity: 0.8; }
    .home-nav.scrolled .brand-top, .home-nav.scrolled .brand-bottom { color: var(--stone-800); }
    .home-nav.scrolled .brand-bottom { color: var(--primary); }
    .home-nav-desk { display: none; }
    @media (min-width: 1024px) { .home-nav-desk { display: flex; align-items: center; gap: 2rem; } }
    .home-nav-desk .nav-link { background: none; border: none; font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; padding: 0; color: var(--stone-600); transition: opacity 0.2s; }
    .home-nav-desk .nav-link:hover { opacity: 0.8; }
    .home-nav:not(.scrolled) .home-nav-desk .nav-link { color: rgba(255,255,255,0.9); }
    .home-nav .btn-book { display: inline-flex; align-items: center; background: var(--primary); color: var(--white); height: 2.5rem; padding: 0 1.5rem; border-radius: 9999px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; box-shadow: 0 10px 15px -3px rgba(139,115,85,0.2); }
    .home-nav .btn-book:hover { background: var(--primary-hover); color: var(--white); }
    .home-nav-mobile { display: flex; align-items: center; gap: 0.75rem; }
    @media (min-width: 1024px) { .home-nav-mobile { display: none; } }
    .menu-btn { padding: 0.5rem; background: none; border: none; cursor: pointer; color: inherit; }
    .home-nav:not(.scrolled) .menu-btn { color: var(--white); }
    .home-nav.scrolled .menu-btn { color: var(--stone-800); }
    .menu-btn svg { width: 1.5rem; height: 1.5rem; display: block; }
    .home-nav-dropdown { display: none; background: rgba(255,255,255,0.98); border-top: 1px solid var(--stone-100); padding: 1rem 1.5rem; }
    .home-nav-dropdown.open { display: block; }
    .home-nav-dropdown .nav-link { display: block; width: 100%; text-align: left; padding: 0.75rem 0; font-size: 0.875rem; color: var(--stone-700); background: none; border: none; border-bottom: 1px solid var(--stone-50); cursor: pointer; }
    .home-nav-dropdown .nav-link:last-child { border-bottom: 0; }

    /* Hero */
    #hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
    #hero .hero-bg { position: absolute; inset: 0; }
    #hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    #hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,25,23,0.8), rgba(28,25,23,0.6), rgba(28,25,23,0.4)); }
    #hero .hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,23,0.5), transparent 40%, rgba(28,25,23,0.3)); }
    #hero .hero-content { position: relative; z-index: 10; max-width: 80rem; margin: 0 auto; padding: 6rem 1.5rem 4rem; width: 100%; }
    #hero .hero-accent { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
    #hero .hero-accent span:first-child { width: 3rem; height: 1px; background: #A6926B; }
    #hero .hero-accent span:last-child { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500; color: #A6926B; }
    #hero h1 { font-size: clamp(2.25rem,5vw,4.375rem); font-family: 'Playfair Display', serif; color: var(--white); line-height: 1.1; margin: 0 0 1.5rem; }
    #hero h1 em { color: #C4A97D; font-style: italic; }
    #hero .hero-p { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.6; max-width: 36rem; margin-bottom: 2.5rem; font-weight: 300; }
    #hero .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
    #hero .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--white); padding: 0 2rem; height: 3.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; text-decoration: none; box-shadow: 0 25px 50px -12px rgba(139,115,85,0.3); }
    #hero .btn-primary:hover { background: var(--primary-hover); color: var(--white); }
    #hero .btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--white); padding: 0 2rem; height: 3.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; font: inherit; }
    #hero .btn-outline:hover { background: rgba(255,255,255,0.1); }
    #hero .hero-badges { margin-top: 4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
    #hero .hero-badges .label { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 0.25rem; }
    #hero .hero-badges .badge { padding: 0.375rem 1rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 0.75rem; }
    #hero .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; padding: 0.5rem; }
    #hero .scroll-indicator:hover { color: rgba(255,255,255,0.8); }
    #hero .scroll-indicator svg { width: 1.25rem; height: 1.25rem; }

    /* Section common */
    .sec { padding: 6rem 0; }
    @media (min-width: 1024px) { .sec { padding: 8rem 0; } }
    .sec-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
    @media (min-width: 1024px) { .sec-inner { padding: 0 2rem; } }
    .sec-accent { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; margin-bottom: 1rem; }
    .sec-accent span:first-child { width: 3rem; height: 1px; background: var(--primary); order: 2; margin-top: 0.75rem; }
    .sec-accent span:last-child { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500; color: var(--primary); }
    .sec-accent span:nth-child(2) { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500; color: var(--primary); order: 1; }
    .sec-accent span:nth-child(3) { display: none; }
    .sec-title { font-size: clamp(1.875rem,4vw,3rem); font-family: 'Playfair Display', serif; color: var(--stone-800); margin-bottom: 1rem; line-height: 1.2; }
    .sec-title em { color: var(--primary); font-style: italic; }
    .sec-p { color: var(--stone-500); font-size: 0.9375rem; line-height: 1.6; }

    /* About */
    #about { background: var(--white); position: relative; overflow: hidden; }
    #about .about-blob { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: rgba(245,239,230,0.5); border-radius: 50%; transform: translate(25%, -50%); }
    #about .about-grid { display: grid; gap: 4rem; }
    @media (min-width: 1024px) { #about .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; } }
    #about .about-img-wrap { position: relative; }
    #about .about-img-wrap::before { content: ''; position: absolute; inset: -1rem; background: linear-gradient(135deg, rgba(139,115,85,0.1), rgba(196,169,125,0.1)); border-radius: 1.5rem; transform: rotate(2deg); }
    #about .about-img-wrap img { position: relative; border-radius: 1rem; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2); }
    #about .about-float { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--white); border-radius: 1rem; padding: 1.25rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid var(--stone-100); }
    #about .about-float .num { font-size: 1.875rem; font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 700; }
    #about .about-float .num-cap { font-size: 0.75rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
    #about .about-text .sec-accent { align-items: flex-start; }
    #about .about-text p { color: var(--stone-600); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; }
    #about .about-text .quote { color: var(--stone-500); font-style: italic; margin-bottom: 2rem; }
    #about .cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    #about .cred-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 0.75rem; background: var(--bg); border: 1px solid #EDE5D8; }
    #about .cred-item .icon-wrap { width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; background: rgba(139,115,85,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    #about .cred-item .icon-wrap svg { width: 1rem; height: 1rem; color: var(--primary); }
    #about .cred-item span { font-size: 0.75rem; font-weight: 500; color: var(--stone-700); line-height: 1.3; }
    #about .about-pt-card {
      display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; padding: 1rem 1.25rem;
      background: var(--bg); border: 1px solid #EDE5D8; border-radius: 0.75rem;
      text-decoration: none; color: inherit; transition: border-color 0.2s, box-shadow 0.2s;
    }
    #about .about-pt-card:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(139,115,85,0.12); }
    #about .about-pt-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-400); }
    #about .about-pt-name { font-size: 0.9375rem; font-weight: 600; color: var(--stone-800); }
    #about .about-pt-cta { font-size: 0.8125rem; color: var(--primary); font-weight: 500; margin-left: auto; }
    #about .about-pt-card:hover .about-pt-cta { text-decoration: underline; }
    #about .about-pt-left { display: flex; flex-direction: column; gap: 0.125rem; }
    #about .about-pt-verified { font-size: 0.7rem; color: var(--stone-400); letter-spacing: 0.05em; }

    /* Services */
    #services { background: var(--white); }
    #services .sec-head { text-align: center; margin-bottom: 4rem; }
    #services .sec-head .sec-accent { justify-content: center; }
    #services .cards { display: grid; gap: 2rem; }
    @media (min-width: 768px) { #services .cards { grid-template-columns: repeat(3, 1fr); } }
    #services .card { background: var(--white); border-radius: 1rem; padding: 2rem; height: 100%; border: 1px solid var(--stone-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: box-shadow 0.3s, transform 0.3s; }
    #services .card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
    #services .card .card-line { height: 4px; border-radius: 4px 4px 0 0; margin: -2rem -2rem 1.5rem -2rem; }
    #services .card .card-line.g1 { background: linear-gradient(to right, #8B7355, #A6926B); }
    #services .card .card-line.g2 { background: linear-gradient(to right, #A6926B, #C4A97D); }
    #services .card .card-line.g3 { background: linear-gradient(to right, #C4A97D, #D4B896); }
    #services .card .icon-box { width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
    #services .card .icon-box.g1 { background: linear-gradient(135deg, #8B7355, #A6926B); }
    #services .card .icon-box.g2 { background: linear-gradient(135deg, #A6926B, #C4A97D); }
    #services .card .icon-box.g3 { background: linear-gradient(135deg, #C4A97D, #D4B896); }
    #services .card .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--white); }
    #services .card h3 { font-size: 1.25rem; font-family: 'Playfair Display', serif; color: var(--stone-800); margin-bottom: 0.75rem; }
    #services .card .card-p { color: var(--stone-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
    #services .card .formats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
    #services .card .formats span { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--bg); font-size: 0.75rem; color: var(--stone-600); font-weight: 500; }
    #services .card .card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-size: 0.875rem; font-weight: 500; text-decoration: none; }
    #services .card .card-link:hover { color: var(--primary-hover); }

    /* Specialties */
    #specialties { background: var(--bg); position: relative; overflow: hidden; }
    #specialties .specialties-blob { position: absolute; bottom: -8rem; left: -8rem; width: 24rem; height: 24rem; background: rgba(245,239,230,0.4); border-radius: 50%; filter: blur(80px); }
    #specialties .sec-head { text-align: center; margin-bottom: 4rem; }
    #specialties .tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
    #specialties .tags span { padding: 0.5rem 1.25rem; border-radius: 9999px; border: 1px solid var(--stone-200); background: var(--white); color: var(--stone-600); font-size: 0.875rem; font-weight: 500; transition: background 0.2s, color 0.2s, border-color 0.2s; }
    #specialties .tags span:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

    /* Modalities / Approach (id="approach" on home) */
    #modalities, #approach { background: var(--bg); }
    #modalities .sec-head, #approach .sec-head { text-align: center; margin-bottom: 4rem; }
    #modalities .mod-grid, #approach .mod-grid { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { #modalities .mod-grid, #approach .mod-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { #modalities .mod-grid, #approach .mod-grid { grid-template-columns: repeat(3, 1fr); } }
    #modalities .mod-card, #approach .mod-card { background: var(--white); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--stone-100); transition: box-shadow 0.3s; }
    #modalities .mod-card:hover, #approach .mod-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
    #modalities .mod-card .icon-wrap, #approach .mod-card .icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(139,115,85,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    #modalities .mod-card .icon-wrap svg, #approach .mod-card .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
    #modalities .mod-card h3, #approach .mod-card h3 { font-family: 'Playfair Display', serif; color: var(--stone-800); font-size: 1.125rem; margin-bottom: 0.5rem; }
    #modalities .mod-card p, #approach .mod-card p { color: var(--stone-500); font-size: 0.875rem; line-height: 1.6; margin: 0; }

    /* Testimonial */
    #testimonial { position: relative; padding: 6rem 0; min-height: 28rem; }
    @media (min-width: 1024px) { #testimonial { padding: 8rem 0; min-height: 32rem; } }
    #testimonial .test-bg { position: absolute; inset: 0; }
    #testimonial .test-bg img { width: 100%; height: 100%; object-fit: cover; }
    #testimonial .test-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0.85); }
    #testimonial .test-inner {
      position: relative; z-index: 10; max-width: 56rem; margin: 0 auto;
      padding: 4rem 1.5rem; text-align: center;
    }
    @media (min-width: 1024px) { #testimonial .test-inner { padding: 5rem 2rem; } }
    #testimonial .test-inner .quote-icon {
      width: 2.5rem; height: 2.5rem; color: rgba(196,169,125,0.5);
      display: block; margin: 0 auto 1.5rem;
    }
    #testimonial .test-inner blockquote {
      font-size: clamp(1.35rem, 2.5vw, 2.25rem); font-family: 'Playfair Display', serif;
      color: #fff; line-height: 1.65; font-style: italic; margin: 0 auto 1.5rem;
      max-width: 40rem;
    }
    #testimonial .test-inner .author {
      display: flex; align-items: center; justify-content: center; gap: 0.75rem;
      margin-bottom: 2.5rem;
    }
    #testimonial .test-inner .author span {
      width: 2rem; height: 1px; background: rgba(196,169,125,0.45);
    }
    #testimonial .test-inner .author strong {
      color: #C4A97D; font-size: 0.9375rem; font-weight: 500;
      letter-spacing: 0.05em;
    }
    #testimonial .test-inner .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      margin: 0 auto; background: var(--primary); color: var(--white);
      padding: 0 2rem; height: 3.5rem; border-radius: 9999px;
      font-size: 0.875rem; font-weight: 500; text-transform: uppercase;
      letter-spacing: 0.2em; text-decoration: none;
      box-shadow: 0 25px 50px -12px rgba(139, 115, 85, 0.35);
      transition: background 0.2s; border: none; cursor: pointer;
    }
    #testimonial .test-inner .btn-primary:hover {
      background: var(--primary-hover); color: var(--white);
    }

    /* FAQ */
    #faq { background: var(--white); }
    #faq .sec-head { text-align: center; margin-bottom: 4rem; }
    #faq .faq-box { background: var(--bg); border-radius: 1rem; padding: 1.5rem 2rem; border: 1px solid var(--stone-100); max-width: 56rem; margin: 0 auto; }
    #faq .faq-item { border-bottom: 1px solid var(--stone-100); }
    #faq .faq-item:last-child { border-bottom: 0; }
    #faq .faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; background: none; border: none; font-size: 0.9375rem; font-weight: 500; color: var(--stone-800); text-align: left; cursor: pointer; }
    #faq .faq-btn:hover { color: var(--primary); }
    #faq .faq-btn svg { width: 1.25rem; height: 1.25rem; color: var(--stone-400); flex-shrink: 0; transition: transform 0.3s; }
    #faq .faq-item.open .faq-btn svg { transform: rotate(180deg); color: var(--primary); }
    #faq .faq-answer { display: none; }
    #faq .faq-item.open .faq-answer { display: block; }
    #faq .faq-answer p { color: var(--stone-500); font-size: 0.875rem; line-height: 1.6; padding-bottom: 1.25rem; padding-right: 2rem; margin: 0; }

    /* Contact */
    #contact { background: var(--bg); }
    #contact .contact-cta .sec-accent { align-items: flex-start; }
    #contact .contact-grid { display: grid; gap: 4rem; }
    @media (min-width: 1024px) { #contact .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
    #contact .contact-cta .sec-p { margin-bottom: 2rem; }
    #contact .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--white); padding: 0 2rem; height: 3.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; text-decoration: none; box-shadow: 0 20px 25px -5px rgba(139,115,85,0.2); }
    #contact .btn-primary:hover { background: var(--primary-hover); color: var(--white); }
    #contact .ins-box { margin-top: 2rem; padding: 1rem; border-radius: 0.75rem; background: var(--white); border: 1px solid var(--stone-100); }
    #contact .ins-box .ins-label { font-size: 0.75rem; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
    #contact .ins-box .ins-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    #contact .ins-box .ins-tags span { padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--bg); font-size: 0.75rem; color: var(--stone-600); font-weight: 500; border: 1px solid var(--stone-100); }
    #contact .contact-cards { display: grid; gap: 1rem; }
    @media (min-width: 640px) { #contact .contact-cards { grid-template-columns: repeat(2, 1fr); } }
    #contact .contact-card { background: var(--white); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--stone-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: box-shadow 0.3s; }
    #contact .contact-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); }
    #contact .contact-card .icon-wrap { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(139,115,85,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    #contact .contact-card .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
    #contact .contact-card .clabel { font-size: 0.75rem; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
    #contact .contact-card a, #contact .contact-card .cvalue { font-size: 0.875rem; font-weight: 500; color: var(--stone-800); }
    #contact .contact-card a { text-decoration: none; }
    #contact .contact-card a:hover { color: var(--primary); }
    #contact .contact-card .cnote { font-size: 0.75rem; color: var(--stone-400); margin-top: 0.25rem; }

    /* Rates */
    #rates { background: var(--white); }

    /* Footer */
    .home-footer { background: #1c1917; color: var(--white); }
    .home-footer .footer-inner { max-width: 80rem; margin: 0 auto; padding: 4rem 1.5rem; }
    .home-footer .footer-grid { display: grid; gap: 3rem; }
    @media (min-width: 768px) { .home-footer .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .home-footer .footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .home-footer .footer-brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
    .home-footer .footer-brand .f-top { font-size: 0.875rem; font-weight: 600; }
    .home-footer .footer-brand .f-bottom { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: #C4A97D; }
    .home-footer .footer-left { display: flex; flex-direction: column; gap: 0; }
    .home-footer .footer-left .footer-brand { margin-bottom: 0.5rem; }
    .home-footer .footer-desc { color: var(--stone-400); font-size: 0.875rem; line-height: 1.6; max-width: 20rem; margin: 0; }
    .home-footer .footer-head { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone-500); margin-bottom: 1rem; }
    .home-footer .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .home-nav-desk a.nav-link, .home-nav-dropdown a.nav-link { text-decoration: none; }
    .home-footer .footer-links a { background: none; border: none; color: var(--stone-400); font-size: 0.875rem; text-align: left; padding: 0; cursor: pointer; text-decoration: none; }
    .home-footer .footer-links a:hover { color: var(--white); }
    .home-footer .footer-notice { color: var(--stone-500); font-size: 0.75rem; line-height: 1.6; margin: 0; }
    .home-footer .footer-right { max-width: 20rem; }
    .home-footer .footer-licensed { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #292524; }
    .home-footer .footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #292524; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
    .home-footer .footer-bottom p { color: var(--stone-500); font-size: 0.75rem; margin: 0; }
    .home-footer .footer-bottom .heart { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--stone-600); font-size: 0.75rem; }
    .home-footer .footer-bottom .heart svg { width: 0.75rem; height: 0.75rem; color: var(--primary); }

    /* Inner pages: offset below fixed nav */
    .inner-page-wrap { padding-top: 5rem; }
    a.home-nav-logo { text-decoration: none; color: inherit; }
