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

    :root {
      --navy: #5c3d50;
      --navy-light: #7a5068;
      --slate: #a07a90;
      --slate-light: #c9a8bc;
      --cream: #fdf6f9;
      --white: #ffffff;
      --text: #3a2530;
      --text-muted: #7a5a6e;
      --border: #edd8e6;
      --gold: #c4a0b4;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.6;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 110px;
      backdrop-filter: blur(8px);
    }

    .nav-brand {
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      grid-column: 2;
    }

    .nav-links-left {
      display: flex;
      gap: 2rem;
      list-style: none;
      justify-content: flex-end;
    }

    .nav-links-right {
      display: flex;
      gap: 2rem;
      list-style: none;
      justify-content: flex-start;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a,
    .nav-links-left a,
    .nav-links-right a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links-left a:hover,
    .nav-links-right a:hover { color: var(--navy); }

    .nav-cta {
      background: var(--navy);
      color: var(--white) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 2px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--navy-light) !important; color: var(--white) !important; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(42,16,30,0.82) 0%, rgba(92,61,80,0.78) 50%, rgba(122,80,104,0.75) 100%), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(201,168,188,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      margin-bottom: 2rem;
    }

    .hero-badge::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.65rem;
    }

    #hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      letter-spacing: 0.01em;
    }

    #hero h1 em {
      font-style: italic;
      color: var(--slate-light);
    }

    #hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.7);
      max-width: 560px;
      margin: 0 auto 2.5rem;
      font-weight: 300;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--white);
      color: var(--navy);
      padding: 0.85rem 2rem;
      border: none;
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-primary:hover { background: var(--cream); transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: rgba(255,255,255,0.85);
      padding: 0.85rem 2rem;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

    .hero-trust {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      margin-top: 4rem;
      flex-wrap: wrap;
    }

    .trust-item {
      color: rgba(255,255,255,0.55);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .trust-item::before { content: '—'; color: var(--gold); }

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

    .container { max-width: 1080px; margin: 0 auto; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--slate);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .section-label::after {
      content: '';
      display: block;
      height: 1px;
      width: 40px;
      background: var(--slate-light);
    }

    .section-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .section-heading em { font-style: italic; color: var(--slate); }

    /* ─── ABOUT ─── */
    #about { background: var(--cream); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-image-placeholder {
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, var(--border) 0%, #e8ccd8 100%);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--slate);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      position: relative;
      overflow: hidden;
    }

    .about-image-placeholder::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 30%;
      background: linear-gradient(to top, rgba(26,58,92,0.15), transparent);
    }

    .about-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: 4px;
      display: block;
    }

    .about-text p {
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      line-height: 1.85;
      font-weight: 300;
      font-size: 1rem;
    }

    .about-text p strong { color: var(--text); font-weight: 500; }

    .philosophy-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .pillar {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.25rem;
      border-radius: 4px;
    }

    .pillar-icon {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .pillar h4 {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .pillar p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }

    /* ─── CREDENTIALS ─── */
    #credentials { background: var(--white); }

    .credentials-intro {
      max-width: 620px;
      margin-bottom: 3.5rem;
    }

    .credentials-intro p {
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.8;
    }

    .credentials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .credential-card {
      border: 1px solid var(--border);
      padding: 2rem 1.5rem;
      border-radius: 4px;
      position: relative;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .credential-card:hover {
      border-color: var(--slate-light);
      box-shadow: 0 4px 20px rgba(26,58,92,0.07);
    }

    .credential-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--slate-light));
      border-radius: 4px 4px 0 0;
    }

    .credential-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .credential-number sup {
      font-size: 1rem;
      vertical-align: super;
    }

    .credential-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--slate);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .credential-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.35rem;
    }

    .credential-body {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .qualifications-list {
      background: var(--cream);
      border-radius: 4px;
      padding: 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .qual-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .qual-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--navy);
      flex-shrink: 0;
      margin-top: 0.55rem;
    }

    .qual-item span {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .qual-item strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
    }

    /* ─── TREATMENTS ─── */
    #treatments { background: var(--cream); }

    .treatments-intro {
      max-width: 600px;
      margin-bottom: 3.5rem;
    }

    .treatments-intro p { color: var(--text-muted); font-weight: 300; line-height: 1.8; }

    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .treatment-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .treatment-card:hover {
      border-color: var(--slate-light);
      box-shadow: 0 6px 24px rgba(26,58,92,0.08);
    }

    .treatment-tag {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .treatment-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }

    .treatment-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.75;
      font-weight: 300;
    }

    .treatment-note {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
      font-size: 0.75rem;
      color: var(--slate);
      font-weight: 500;
    }

    .treatment-note::before { content: '→'; }

    .treatment-link {
      display: inline-block;
      margin-top: 1.1rem;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--slate-light);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }
    .treatment-link:hover { color: var(--slate); border-color: var(--slate); }

    /* ─── CONTACT ─── */
    #contact { background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 2.6rem);
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 1.25rem;
      line-height: 1.25;
    }

    .contact-info p {
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .contact-detail {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: var(--cream);
      border-radius: 4px;
    }

    .contact-detail-item .icon {
      width: 36px;
      height: 36px;
      background: var(--navy);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .contact-detail-item .info strong {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }

    .contact-detail-item .info span {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* Form */
    .contact-form {
      background: var(--cream);
      padding: 2.5rem;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .form-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 1.75rem;
    }

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

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--slate);
    }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-disclaimer {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      line-height: 1.6;
    }

    .btn-submit {
      width: 100%;
      background: var(--navy);
      color: var(--white);
      padding: 0.9rem;
      border: none;
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-submit:hover { background: var(--navy-light); }

    /* ─── FOOTER ─── */
    footer {
      background: #2a1a22;
      color: rgba(255,255,255,0.75);
      padding: 3rem 2rem;
      text-align: center;
    }

    .footer-inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: rgba(255,255,255,0.85);
      font-weight: 300;
      margin-bottom: 0.75rem;
    }

    .footer-reg {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.5rem;
      letter-spacing: 0.04em;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.95); }

    .footer-copy {
      font-size: 0.72rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
    }

    .footer-logo p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      margin-top: 0.5rem;
      line-height: 1.6;
    }

    .footer-links div {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }

    .footer-links strong {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-bottom: 0.3rem;
      font-weight: 500;
    }

    .footer-bottom {
      max-width: 800px;
      margin: 1.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
      font-size: 0.72rem;
      color: rgba(255,255,255,0.6);
      text-align: center;
      line-height: 1.6;
    }

    /* ─── SIGNATURE PROTOCOL ─── */
    #signature-protocol {
      background: linear-gradient(135deg, #3a2030 0%, #5c3d50 60%, #7a5068 100%);
      padding: 6rem 2rem;
    }

    #signature-protocol .section-label { color: rgba(255,255,255,0.5); }
    #signature-protocol .section-label::after { background: rgba(255,255,255,0.25); }

    #signature-protocol .section-heading { color: var(--white); }
    #signature-protocol .section-heading em { color: var(--slate-light); }

    .protocol-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-bottom: 3rem;
    }

    .protocol-intro-text p {
      color: rgba(255,255,255,0.7);
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 1.25rem;
      font-size: 1rem;
    }

    .protocol-intro-text p strong { color: rgba(255,255,255,0.95); font-weight: 500; }

    .protocol-intro-text .protocol-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--slate-light);
      line-height: 1.6;
      border-left: 2px solid var(--slate-light);
      padding-left: 1.25rem;
      margin-top: 1.75rem;
    }

    .protocol-details {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 4px;
      padding: 2rem;
    }

    .protocol-details-label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--slate-light);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .protocol-step-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

    .protocol-step-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .protocol-step-row:last-child { border-bottom: none; padding-bottom: 0; }

    .protocol-step-badge {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
      white-space: nowrap;
      font-weight: 600;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .protocol-step-info strong {
      display: block;
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .protocol-step-info span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
    }

    .protocol-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .protocol-price-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .protocol-price-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--white);
    }

    @media (max-width: 768px) {
      .protocol-intro { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ─── PRICING ─── */
    #pricing { background: var(--white); }

    .pricing-intro {
      max-width: 600px;
      margin-bottom: 3.5rem;
    }

    .pricing-intro p { color: var(--text-muted); font-weight: 300; line-height: 1.8; }

    .pricing-categories {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .pricing-category {
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }

    .pricing-category-header {
      background: var(--cream);
      padding: 1rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-bottom: 1px solid var(--border);
    }

    .pricing-category-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--navy);
    }

    .pricing-category-header .cat-tag {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--white);
      border: 1px solid var(--border);
      padding: 0.2rem 0.6rem;
      border-radius: 100px;
      font-weight: 600;
    }

    .pricing-rows { padding: 0.5rem 0; }

    .pricing-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.85rem 1.75rem;
      border-bottom: 1px solid var(--border);
      gap: 1rem;
    }

    .pricing-row:last-child { border-bottom: none; }

    .pricing-row-left { flex: 1; }

    .pricing-row-name {
      font-size: 0.92rem;
      color: var(--text);
      font-weight: 400;
    }

    .pricing-row-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
      font-weight: 300;
    }

    .pricing-row-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--navy);
      white-space: nowrap;
      text-align: right;
    }

    .pricing-row-price .save {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      color: var(--slate);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      margin-top: 0.15rem;
    }

    .pricing-protocol {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem 1.75rem;
      margin-top: 2.5rem;
    }

    .pricing-protocol-label {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--slate);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .pricing-protocol h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .pricing-protocol p {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .protocol-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .protocol-step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.25rem;
    }

    .protocol-step-timing {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--slate);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .protocol-step-name {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--navy);
    }

    .pricing-note {
      margin-top: 2rem;
      padding: 1.25rem 1.75rem;
      background: var(--cream);
      border-left: 3px solid var(--slate-light);
      border-radius: 0 4px 4px 0;
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ─── FLOATING BOOK BUTTON ─── */
    .floating-book {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      background: var(--navy);
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 1.75rem;
      border-radius: 2px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: 0 4px 20px rgba(92,61,80,0.35);
      transition: all 0.2s;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }

    .floating-book.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .floating-book:hover {
      background: var(--navy-light);
      box-shadow: 0 6px 28px rgba(92,61,80,0.45);
      transform: translateY(-2px);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .nav-links, .nav-links-left, .nav-links-right { display: none; }
      nav { grid-template-columns: 1fr; justify-items: center; height: 90px; }
      .about-grid,
      .credentials-grid,
      .contact-grid { grid-template-columns: 1fr; }
      .treatments-grid { grid-template-columns: 1fr; }
      .philosophy-pillars { grid-template-columns: 1fr; }
      .qualifications-list { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .credentials-grid { grid-template-columns: 1fr; }
      .hero-trust { gap: 1.25rem; }
      section { padding: 4rem 1.25rem; }
      .protocol-steps { grid-template-columns: 1fr; }
    }

    /* ─── PAGE HEADER (non-home pages) ─── */
    .page-header {
      background: linear-gradient(135deg, #3a2030 0%, #5c3d50 60%, #7a5068 100%);
      padding: 9rem 2rem 4rem;
      text-align: center;
      color: var(--white);
    }
    .page-header h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .page-header h1 em { font-style: italic; color: var(--slate-light); }
    .page-header p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      max-width: 540px;
      margin: 0 auto;
      font-weight: 300;
      line-height: 1.8;
    }

    /* ─── ACTIVE NAV LINK ─── */
    .nav-links-left a.active,
    .nav-links-right a.active { color: var(--navy); font-weight: 600; }

    /* ─── SECTION INTRO / SUB ─── */
    .section-intro {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-intro em { font-style: italic; color: var(--slate); }
    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 640px;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 3rem;
    }

    /* ─── TREATMENT PILLARS (home page) ─── */
    #treatment-pillars { background: var(--cream); }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .treatment-pillar {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
    }
    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--slate-light);
      margin-bottom: 0.5rem;
    }
    .treatment-pillar h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }
    .treatment-pillar p {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .pillar-treatments { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .pillar-tag {
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 0.2rem 0.5rem;
      border-radius: 100px;
      font-weight: 500;
    }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── MOBILE MENU ─── */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: fixed;
      top: 110px;
      left: 0; right: 0;
      z-index: 99;
      padding: 1rem 0;
      box-shadow: 0 8px 24px rgba(92,61,80,0.1);
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      transition: all 0.25s ease;
    }
    .mobile-menu.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-menu a {
      padding: 0.75rem 2rem;
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s, color 0.15s;
    }
    .mobile-menu a:hover { background: var(--cream); color: var(--navy); }
    .mobile-menu a.mobile-cta {
      margin: 0.75rem 2rem 0;
      background: var(--navy);
      color: var(--white) !important;
      text-align: center;
      border-radius: 2px;
      border: none;
      padding: 0.85rem;
    }

    /* ─── ACCORDION (aftercare) ─── */
    .aftercare-accordions { display: flex; flex-direction: column; gap: 0.75rem; }
    .accordion-trigger {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .accordion-trigger > button {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      text-align: left;
    }
    .accordion-tag {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 0.2rem 0.55rem;
      border-radius: 100px;
      font-weight: 600;
      white-space: nowrap;
    }
    .accordion-title { flex: 1; }
    .accordion-title h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--navy);
    }
    .accordion-icon {
      font-size: 1.25rem;
      color: var(--slate);
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    .accordion-body {
      display: none;
      padding: 0 1.5rem 1.5rem;
      border-top: 1px solid var(--border);
    }
    .accordion-body.open { display: block; }
    .accordion-body ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .accordion-body li {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.65;
      padding-left: 1.25rem;
      position: relative;
    }
    .accordion-body li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--slate-light);
      font-size: 0.8rem;
    }
    .aftercare-general {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
      margin-top: 2.5rem;
    }
    .aftercare-general h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .aftercare-general p {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ─── PRICING NOTE ─── */
    .pricing-note {
      margin-top: 2rem;
      padding: 1.25rem 1.75rem;
      background: var(--cream);
      border-left: 3px solid var(--slate-light);
      border-radius: 0 4px 4px 0;
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ─── CTA STRIP ─── */
    .cta-strip {
      background: var(--cream);
      border-top: 1px solid var(--border);
      padding: 5rem 2rem;
      text-align: center;
    }
    .cta-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.25;
    }
    .cta-strip h2 em { font-style: italic; color: var(--slate); }
    .cta-strip p {
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }
    .btn-navy {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      padding: 0.85rem 2.5rem;
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-navy:hover { background: var(--navy-light); }

    /* ─── RESPONSIVE ADDITIONS ─── */
    @media (max-width: 768px) {
      .nav-links-left, .nav-links-right { display: none; }
      nav { grid-template-columns: 1fr; justify-items: center; height: 90px; position: relative; }
      .hamburger { display: flex; }
      .pillars-grid { grid-template-columns: 1fr; }
      #hero { background: linear-gradient(135deg, rgba(42,16,30,0.88) 0%, rgba(92,61,80,0.85) 50%, rgba(122,80,104,0.82) 100%), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=800&q=80') center/cover no-repeat; }
    }

    /* ─── NAV CENTERING + MOBILE FIX (override) ─── */
    nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      position: fixed;
    }
    .nav-brand { grid-column: 2; grid-row: 1; }
    .nav-links-left { grid-column: 1; grid-row: 1; }
    .nav-links-right { grid-column: 3; grid-row: 1; }
    .hamburger { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); grid-column: unset; }

    @media (max-width: 768px) {
      nav {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: fixed !important;
        height: 90px !important;
      }
      .nav-links-left, .nav-links-right { display: none !important; }
      .hamburger {
        display: flex !important;
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
      }
      .mobile-menu { top: 90px; }
      section { padding: 3rem 1.25rem; }
      .about-grid, .credentials-grid, .contact-grid, .treatments-grid { grid-template-columns: 1fr !important; }
      .philosophy-pillars, .pillars-grid, .form-row, .protocol-intro { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
      .protocol-steps { grid-template-columns: 1fr !important; }
      .hero-trust { flex-direction: column; gap: 0.75rem; align-items: center; }
      .cta-strip { padding: 3rem 1.25rem; }
      .pricing-category-header { flex-wrap: wrap; }
    }

    /* ─── QUICK-NAV CARDS ─── */
    #quick-nav { background: var(--white); padding: 4rem 2rem; }
    .quick-nav-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .quick-nav-card {
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem 1.5rem;
      text-decoration: none;
      display: block;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      background: var(--white);
      position: relative;
    }
    .quick-nav-card:hover {
      border-color: var(--slate-light);
      box-shadow: 0 6px 24px rgba(92,61,80,0.1);
      transform: translateY(-3px);
    }
    .quick-nav-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--slate-light));
      border-radius: 4px 4px 0 0;
    }
    .quick-nav-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .quick-nav-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .quick-nav-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    .quick-nav-arrow {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--slate);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    @media (max-width: 768px) {
      .quick-nav-grid { grid-template-columns: 1fr 1fr !important; }
    }
    @media (max-width: 480px) {
      .quick-nav-grid { grid-template-columns: 1fr !important; }
    }

