    /* ─────────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────────── */
    :root {
      --forest:       #1B3A2F;
      --forest-deep:  #112620;
      --forest-mid:   #2A5240;
      --sage:         #4A7C5F;
      --sage-light:   #7AAB8A;
      --cream:        #FAF6F0;
      --cream-warm:   #F4EAE0;
      --blush:        #EDE0D8;
      --gold:         #C9A96E;
      --gold-light:   #DBBE8A;
      --gold-pale:    #F2E8D4;
      --charcoal:     #252320;
      --text-mid:     #4A4845;
      --text-light:   #817D79;
      --white:        #FFFFFF;

      --ff-display:   'Cormorant Garamond', Georgia, serif;
      --ff-body:      'DM Sans', system-ui, sans-serif;

      --r-sm:  6px;
      --r-md:  14px;
      --r-lg:  22px;
      --r-xl:  36px;

      --sh-sm: 0 2px 14px rgba(27,58,47,.07);
      --sh-md: 0 8px 36px rgba(27,58,47,.12);
      --sh-lg: 0 24px 64px rgba(27,58,47,.18);

      --ease:  cubic-bezier(.4,0,.2,1);
      --ease-out: cubic-bezier(0,0,.2,1);
      --ease-spring: cubic-bezier(.34,1.56,.64,1);
    }

    /* ─────────────────────────────────────────
       RESET
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--ff-body);
      color: var(--charcoal);
      background: var(--cream);
      overflow-x: hidden;
      line-height: 1.6;
    }
    /* Subtle grain overlay */
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9998; opacity: .5;
    }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 14px 0;
      transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
    }
    .nav.scrolled {
      padding: 8px 0;
      background: rgba(250,246,240,.93);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(27,58,47,.07);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

    /* Logo */
    .logo { display: flex; align-items: center; }
    .logo-img {
      height: 90px;
      width: 90px;
      object-fit: cover;
      display: block;
      border-radius: 10px;
      flex-shrink: 0;
    }
    .logo-img-footer {
      height: 72px;
      width: 72px;
      object-fit: cover;
      border-radius: 10px;
    }
    .logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-name {
      font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500;
      color: var(--forest); letter-spacing: .01em;
    }
    .logo-title {
      font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-top: 1px;
    }
    .nav.hero-nav .logo-name { color: var(--cream); }
    .nav.hero-nav .logo-title { color: var(--gold-light); }
    .nav.hero-nav .logo-mark-forest { fill: var(--cream); }
    .nav.hero-nav .hamburger-line { background: var(--cream); }

    /* Nav links */
    .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
    .nav-links a {
      font-size: .82rem; letter-spacing: .06em; color: var(--text-mid);
      font-weight: 400; transition: color .25s var(--ease); position: relative;
    }
    .nav.hero-nav .nav-links a { color: rgba(250,246,240,.75); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
    }
    .nav-links a:hover { color: var(--forest); }
    .nav.hero-nav .nav-links a:hover { color: var(--cream); }
    .nav-links a:hover::after { width: 100%; }

    .btn-nav {
      padding: 10px 22px; background: var(--forest); color: var(--cream);
      border-radius: 50px; font-size: .82rem; font-weight: 500; letter-spacing: .03em;
      transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .btn-nav:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--sh-sm); }
    .nav.hero-nav .btn-nav { background: var(--gold); color: var(--forest-deep); }
    .nav.hero-nav .btn-nav:hover { background: var(--gold-light); }

    /* Hamburger */
    .nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
    .hamburger-line { width: 22px; height: 1.5px; background: var(--charcoal); transition: .3s var(--ease); }

    /* Drawer */
    .nav-drawer {
      display: block; position: fixed; top: 0; right: 0;
      width: min(310px, 100vw); height: 100vh;
      background: var(--cream); z-index: 2000;
      padding: 76px 40px 40px;
      transform: translateX(110%);
      transition: transform .45s var(--ease-out);
      box-shadow: var(--sh-lg);
    }
    .nav-drawer.open { transform: translateX(0); }
    .drawer-close {
      position: absolute; top: 22px; right: 24px;
      font-size: 1.25rem; color: var(--text-mid); cursor: pointer;
      width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: var(--blush); transition: background .2s;
    }
    .drawer-close:hover { background: var(--charcoal); color: var(--cream); }
    .drawer-links { list-style: none; display: flex; flex-direction: column; gap: 26px; }
    .drawer-links a {
      font-family: var(--ff-display); font-size: 1.9rem; font-weight: 400;
      color: var(--charcoal); transition: color .25s;
    }
    .drawer-links a:hover { color: var(--forest); }
    .drawer-cta { margin-top: 40px; }

    .nav-veil {
      display: none; position: fixed; inset: 0;
      background: rgba(27,58,47,.35); z-index: 1999;
      opacity: 0; transition: opacity .3s;
    }
    .nav-veil.on { opacity: 1; }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden;
      background: var(--forest-deep);
      padding: 130px 0 100px;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 90% 65% at 112% 28%, rgba(201,169,110,.11) 0%, transparent 55%),
        radial-gradient(ellipse 55% 75% at -8% 72%, rgba(74,124,95,.18) 0%, transparent 55%),
        linear-gradient(155deg, #112620 0%, #1B3A2F 45%, #1A3530 100%);
    }
    .hero-art {
      position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
      width: 560px; opacity: .055; z-index: 1; pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; max-width: 700px; }

    /* Staggered hero animations */
    .fade-up {
      opacity: 0; transform: translateY(32px);
      animation: fadeUp .9s var(--ease) forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .d1 { animation-delay: .1s; }
    .d2 { animation-delay: .28s; }
    .d3 { animation-delay: .44s; }
    .d4 { animation-delay: .60s; }
    .d5 { animation-delay: .76s; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 12px; margin-bottom: 30px;
    }
    .eyebrow-rule { width: 36px; height: 1px; background: var(--gold); }
    .eyebrow-text {
      color: var(--gold); font-size: .72rem; letter-spacing: .22em;
      text-transform: uppercase; font-weight: 500;
    }
    .hero-h1 {
      font-family: var(--ff-display); font-size: clamp(2.9rem, 6.2vw, 5.4rem);
      font-weight: 300; line-height: 1.06; letter-spacing: -.025em;
      color: var(--cream); margin-bottom: 26px;
    }
    .hero-h1 em { font-style: italic; color: var(--gold-light); }
    .hero-body {
      color: rgba(250,246,240,.65); font-size: 1.05rem; line-height: 1.72;
      max-width: 490px; margin-bottom: 48px; font-weight: 300;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 16px 36px; background: var(--gold); color: var(--forest-deep);
      border-radius: 50px; font-size: .88rem; font-weight: 500; letter-spacing: .03em;
      transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,169,110,.3); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 16px 36px; border: 1px solid rgba(250,246,240,.28); color: var(--cream);
      border-radius: 50px; font-size: .88rem; font-weight: 400; letter-spacing: .03em;
      transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
    }
    .btn-ghost:hover { border-color: rgba(250,246,240,.6); background: rgba(250,246,240,.06); transform: translateY(-2px); }

    .hero-credentials {
      display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
    }
    .cred-divider { width: 1px; height: 38px; background: rgba(201,169,110,.25); }
    .cred-item {}
    .cred-lbl { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
    .cred-val { font-family: var(--ff-display); font-style: italic; font-size: .85rem; color: rgba(250,246,240,.55); }

    /* Wave bottom of hero */
    .wave { display: block; width: 100%; line-height: 0; overflow: hidden; }
    .wave svg { display: block; width: 100%; }

    /* ─────────────────────────────────────────
       SECTION CHROME
    ───────────────────────────────────────── */
    .sec-label {
      display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .sec-rule { width: 28px; height: 1px; background: var(--gold); }
    .sec-tag {
      font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); font-weight: 500;
    }

    /* ─────────────────────────────────────────
       ABOUT
    ───────────────────────────────────────── */
    .about { background: var(--cream); padding: 110px 0; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start;
    }
    .about-bio h2 {
      font-family: var(--ff-display); font-size: clamp(2rem, 3.6vw, 3rem);
      font-weight: 400; color: var(--forest); line-height: 1.15;
      letter-spacing: -.01em; margin-bottom: 30px;
    }
    .about-bio p {
      font-size: .96rem; color: var(--text-mid); line-height: 1.8;
      font-weight: 300; margin-bottom: 18px;
    }
    .about-bio p:last-child { margin-bottom: 0; }

    /* Credentials card */
    .creds-card {
      background: var(--forest); border-radius: var(--r-lg); padding: 44px 40px;
      position: sticky; top: 108px;
    }
    .creds-card h3 {
      font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400;
      color: var(--cream); margin-bottom: 30px; padding-bottom: 22px;
      border-bottom: 1px solid rgba(201,169,110,.2);
    }
    .creds-list { display: flex; flex-direction: column; gap: 18px; }
    .cred-row { display: flex; gap: 14px; align-items: flex-start; }
    .cred-dot {
      width: 30px; height: 30px; flex-shrink: 0;
      background: rgba(201,169,110,.12); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: .72rem; margin-top: 1px;
    }
    .cred-row strong {
      display: block; font-size: .875rem; font-weight: 500; color: var(--cream); margin-bottom: 2px;
    }
    .cred-row span {
      font-family: var(--ff-display); font-style: italic; font-size: .78rem;
      color: rgba(250,246,240,.45);
    }

    /* Why section */
    .why { margin-top: 90px; padding-top: 80px; border-top: 1px solid var(--blush); }
    .why h2 {
      font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 400; color: var(--forest); text-align: center; margin-bottom: 52px;
    }
    .why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
    .why-card { text-align: center; padding: 28px 16px; }
    .why-ico {
      width: 50px; height: 50px; margin: 0 auto 18px;
      background: var(--gold-pale); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
    }
    .why-card h4 {
      font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500;
      color: var(--forest); margin-bottom: 9px;
    }
    .why-card p { font-size: .83rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

    /* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
    .services { background: var(--cream-warm); padding: 110px 0; position: relative; overflow: hidden; }
    .services::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .services-hdr { margin-bottom: 56px; }
    .services-hdr h2 {
      font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400; color: var(--forest); letter-spacing: -.01em; max-width: 540px;
    }
    .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

    .svc-card {
      background: var(--white); border-radius: var(--r-lg); padding: 34px 30px;
      border: 1px solid rgba(27,58,47,.06); position: relative; overflow: hidden;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    }
    .svc-card::after {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 0; background: var(--gold);
      transition: height .4s var(--ease); border-radius: 0 0 3px 3px;
    }
    .svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(27,58,47,.1); }
    .svc-card:hover::after { height: 100%; }

    .svc-name {
      font-family: var(--ff-display); font-size: 1.3rem; font-weight: 500;
      color: var(--forest); margin-bottom: 11px; line-height: 1.2;
    }
    .svc-desc { font-size: .86rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 22px; font-weight: 300; }
    .svc-meta { display: flex; gap: 9px; margin-bottom: 22px; }
    .badge {
      padding: 4px 13px; border-radius: 50px;
      font-size: .7rem; font-weight: 500; letter-spacing: .05em;
    }
    .badge-dur { background: var(--gold-pale); color: var(--forest); }
    .badge-price { background: var(--forest); color: var(--cream); }
    .svc-btn {
      width: 100%; padding: 11px; background: transparent;
      border: 1px solid rgba(27,58,47,.2); color: var(--forest);
      border-radius: var(--r-sm); font-size: .84rem; font-weight: 500; letter-spacing: .02em;
      transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    }
    .svc-btn:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

    /* ─────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────── */
    .how { background: var(--forest); padding: 110px 0; position: relative; overflow: hidden; }
    .how::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 65% 50% at 100% 0%, rgba(201,169,110,.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 65% at 0% 100%, rgba(74,124,95,.14) 0%, transparent 55%);
    }
    .how-inner { position: relative; z-index: 1; }
    .how h2 {
      font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300; color: var(--cream); letter-spacing: -.01em; margin-bottom: 68px;
    }
    .how h2 em { font-style: italic; color: var(--gold-light); }

    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px 0; position: relative; }
    .steps::before { display: none; }
    .step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
    .step-num {
      width: 54px; height: 54px; border-radius: 50%;
      border: 1px solid rgba(201,169,110,.35);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 26px;
      font-family: var(--ff-display); font-size: 1.35rem; color: var(--gold); font-weight: 300;
      background: var(--forest); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    }
    .step:hover .step-num { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
    .step-ico { font-size: 1.4rem; margin-bottom: 14px; }
    .step h4 {
      font-family: var(--ff-display); font-size: 1.12rem; font-weight: 500;
      color: var(--cream); margin-bottom: 10px;
    }
    .step p { font-size: .82rem; color: rgba(250,246,240,.5); line-height: 1.7; font-weight: 300; }

    /* ─────────────────────────────────────────
       PATIENT DASHBOARD
    ───────────────────────────────────────── */
    .dash-section {
      display: none; background: var(--cream);
      min-height: 100vh; padding: 120px 0 80px;
    }
    .dash-section.visible { display: block; }
    .main-content.hidden { display: none; }

    .dash-grid { display: grid; grid-template-columns: 230px 1fr; gap: 36px; align-items: start; }

    .dash-sidebar {
      background: var(--white); border-radius: var(--r-lg); padding: 30px 22px;
      border: 1px solid rgba(27,58,47,.06); position: sticky; top: 104px;
    }
    .dash-user { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--blush); }
    .dash-user-lbl { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .dash-user h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400; color: var(--forest); }
    .dash-nav { list-style: none; display: flex; flex-direction: column; gap: 3px; }
    .dash-nav li {
      padding: 10px 14px; border-radius: var(--r-sm);
      font-size: .85rem; color: var(--text-mid); cursor: pointer;
      transition: background .2s, color .2s; display: flex; align-items: center; gap: 10px;
    }
    .dash-nav li:hover { background: var(--cream-warm); color: var(--forest); }
    .dash-nav li.on { background: var(--forest); color: var(--cream); }
    .dash-nav .back-link { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--blush); }

    .dash-main { display: flex; flex-direction: column; gap: 26px; }
    .dash-card {
      background: var(--white); border-radius: var(--r-lg); padding: 34px 36px;
      border: 1px solid rgba(27,58,47,.06);
    }
    .dash-card h3 {
      font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; color: var(--forest); margin-bottom: 22px;
    }

    .upcoming-block {
      background: var(--forest); border-radius: var(--r-md); padding: 26px 28px;
      display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
    }
    .upcoming-info h4 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 5px; }
    .upcoming-info p { font-size: .82rem; color: rgba(250,246,240,.55); }
    .upcoming-info .dr-tag { margin-top: 6px; font-size: .72rem; color: rgba(250,246,240,.35); }
    .btn-join {
      padding: 12px 28px; background: var(--gold); color: var(--forest-deep);
      border-radius: 50px; font-size: .86rem; font-weight: 500;
      transition: background .25s var(--ease), transform .25s var(--ease); white-space: nowrap;
    }
    .btn-join:hover { background: var(--gold-light); transform: translateY(-2px); }

    .past-list { display: flex; flex-direction: column; gap: 14px; }
    .past-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 20px; background: var(--cream); border-radius: var(--r-md); gap: 14px; flex-wrap: wrap;
    }
    .past-row h5 { font-size: .88rem; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
    .past-row p { font-size: .76rem; color: var(--text-light); }
    .btn-summary {
      padding: 8px 20px; border: 1px solid rgba(27,58,47,.18); color: var(--forest);
      border-radius: 50px; font-size: .78rem; font-weight: 500; background: transparent;
      transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    }
    .btn-summary:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer { background: var(--charcoal); color: var(--cream); padding: 80px 0 44px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 56px;
      margin-bottom: 56px; padding-bottom: 56px;
      border-bottom: 1px solid rgba(250,246,240,.08);
    }
    .footer-brand .logo-name { color: var(--cream); }
    .footer-brand .logo-title { color: var(--gold-light); }
    .footer-brand .logo-mark-forest { fill: var(--cream); }
    .footer-tagline { margin-top: 16px; font-size: .84rem; color: rgba(250,246,240,.45); line-height: 1.65; font-weight: 300; }
    .footer-col h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 500; color: var(--gold); margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: .84rem; color: rgba(250,246,240,.48); transition: color .25s; }
    .footer-links a:hover { color: var(--cream); }
    .footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
    .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
    .fc-lbl { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; margin-top: 2px; }
    .fc-val { font-size: .84rem; color: rgba(250,246,240,.48); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
    .footer-disc {
      max-width: 580px; font-size: .7rem; color: rgba(250,246,240,.28); line-height: 1.7;
      padding: 14px 18px; border: 1px solid rgba(250,246,240,.07); border-radius: var(--r-sm);
    }
    .footer-copy { text-align: right; }
    .footer-copy .hpcsa-badge { color: var(--gold); font-size: .68rem; letter-spacing: .06em; }
    .footer-copy p { font-size: .72rem; color: rgba(250,246,240,.28); margin-top: 6px; }

    /* ─────────────────────────────────────────
       BOOKING MODAL
    ───────────────────────────────────────── */
    .overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(17,38,32,.65); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); z-index: 5000;
      align-items: center; justify-content: center; padding: 20px;
    }
    .overlay.on { display: flex; }

    .book-modal {
      background: var(--cream); border-radius: var(--r-xl); width: 100%;
      max-width: 570px; max-height: 92vh; overflow-y: auto; position: relative;
      animation: modalPop .4s var(--ease-spring);
    }
    @keyframes modalPop {
      from { opacity: 0; transform: scale(.92) translateY(18px); }
      to   { opacity: 1; transform: scale(1)   translateY(0); }
    }

    .modal-hdr {
      padding: 34px 40px 22px; border-bottom: 1px solid var(--blush);
      display: flex; justify-content: space-between; align-items: flex-start;
    }
    .modal-hdr h3 { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 400; color: var(--forest); }
    .modal-hdr p { font-size: .83rem; color: var(--text-light); margin-top: 3px; }
    .modal-x {
      width: 34px; height: 34px; border-radius: 50%; background: var(--blush);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--text-mid); flex-shrink: 0;
      transition: background .2s, color .2s;
    }
    .modal-x:hover { background: var(--charcoal); color: var(--cream); }

    .modal-prog { padding: 22px 40px 0; }
    .prog-track { height: 2.5px; background: var(--blush); border-radius: 2px; overflow: hidden; }
    .prog-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .5s var(--ease); }
    .prog-labels { display: flex; justify-content: space-between; margin-top: 7px; }
    .prog-lbl { font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-light); font-weight: 500; }
    .prog-lbl.on { color: var(--forest); }

    .modal-body { padding: 28px 40px; }
    .form-step { display: none; }
    .form-step.on { display: block; animation: stepSlide .3s var(--ease); }
    @keyframes stepSlide { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

    .f-group { margin-bottom: 20px; }
    .f-label { display: block; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--forest); font-weight: 500; margin-bottom: 7px; }
    .f-req { color: var(--gold); font-weight: 700; }
    .f-input, .f-select, .f-textarea {
      width: 100%; padding: 12px 15px;
      border: 1.5px solid rgba(27,58,47,.14); border-radius: var(--r-sm);
      font-family: var(--ff-body); font-size: .9rem; color: var(--charcoal);
      background: var(--white); transition: border-color .25s, box-shadow .25s; outline: none;
    }
    .f-input:focus, .f-select:focus, .f-textarea:focus {
      border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.14);
    }
    .f-input.err, .f-select.err, .f-textarea.err { border-color: #C0392B; }
    .f-textarea { resize: vertical; min-height: 95px; }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Service option grid */
    .svc-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    .svc-opt {
      padding: 15px 14px; border: 1.5px solid rgba(27,58,47,.11);
      border-radius: var(--r-md); cursor: pointer; background: var(--white);
      transition: border-color .25s, background .25s;
    }
    .svc-opt:hover { border-color: var(--gold); background: var(--gold-pale); }
    .svc-opt.sel { border-color: var(--forest); background: var(--forest); color: var(--cream); }
    .svc-opt-name { font-weight: 500; font-size: .86rem; margin-bottom: 4px; }
    .svc-opt-meta { font-size: .73rem; opacity: .55; }

    /* Time chips */
    .time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
    .t-chip {
      padding: 10px; text-align: center; border: 1.5px solid rgba(27,58,47,.11);
      border-radius: var(--r-sm); font-size: .84rem; cursor: pointer; background: var(--white);
      transition: border-color .25s, background .25s, color .25s;
    }
    .t-chip:hover { border-color: var(--gold); background: var(--gold-pale); }
    .t-chip.sel { background: var(--forest); border-color: var(--forest); color: var(--cream); }

    /* Patient type toggle */
    .toggle-row { display: flex; border: 1.5px solid rgba(27,58,47,.14); border-radius: var(--r-sm); overflow: hidden; }
    .t-opt {
      flex: 1; padding: 11px; text-align: center; cursor: pointer;
      font-size: .86rem; font-weight: 500; color: var(--text-mid);
      transition: background .25s, color .25s;
    }
    .t-opt.on { background: var(--forest); color: var(--cream); }

    .f-err { color: #C0392B; font-size: .78rem; margin-top: 6px; display: none; }

    .modal-ftr { padding: 20px 40px 34px; display: flex; justify-content: space-between; gap: 12px; }
    .btn-back {
      padding: 12px 26px; border: 1px solid rgba(27,58,47,.18); border-radius: 50px;
      color: var(--text-mid); font-size: .86rem; background: transparent;
      transition: border-color .25s, color .25s;
    }
    .btn-back:hover { border-color: var(--forest); color: var(--forest); }
    .btn-next {
      padding: 12px 34px; background: var(--forest); color: var(--cream);
      border-radius: 50px; font-size: .86rem; font-weight: 500; margin-left: auto;
      transition: background .25s, transform .25s;
    }
    .btn-next:hover { background: var(--forest-mid); transform: translateY(-1px); }

    /* Confirmation */
    .confirm-wrap { text-align: center; padding: 10px 0 6px; }
    .confirm-ico { width: 68px; height: 68px; background: var(--gold-pale); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; }
    .confirm-wrap h3 { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 400; color: var(--forest); margin-bottom: 8px; }
    .confirm-wrap > p { font-size: .88rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.65; }
    .ref-badge { display: inline-block; background: var(--forest); color: var(--cream); padding: 7px 20px; border-radius: 50px; font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .05em; margin-bottom: 22px; }
    .confirm-summary { background: var(--cream-warm); border-radius: var(--r-md); padding: 18px 20px; text-align: left; }
    .sum-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--blush); font-size: .86rem; }
    .sum-row:last-child { border-bottom: none; }
    .sum-lbl { color: var(--text-light); }
    .sum-val { font-weight: 500; color: var(--charcoal); }

    /* ─────────────────────────────────────────
       INFO MODALS (video + notes)
    ───────────────────────────────────────── */
    .info-modal {
      background: var(--cream); border-radius: var(--r-xl); width: 100%;
      max-width: 420px; padding: 44px 38px; text-align: center; position: relative;
      animation: modalPop .4s var(--ease-spring);
    }
    .info-modal h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400; color: var(--forest); margin-bottom: 14px; }
    .info-modal p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 26px; }
    .info-modal .modal-x { position: absolute; top: 18px; right: 18px; }

    .notes-modal {
      background: var(--cream); border-radius: var(--r-xl); width: 100%;
      max-width: 510px; padding: 40px; max-height: 88vh; overflow-y: auto;
      position: relative; animation: modalPop .4s var(--ease-spring);
    }
    .notes-modal h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 400; color: var(--forest); margin-bottom: 4px; }
    .notes-date { font-size: .78rem; color: var(--text-light); margin-bottom: 28px; }
    .notes-modal .modal-x { position: absolute; top: 18px; right: 18px; }
    .note-sec { margin-bottom: 22px; }
    .note-sec h4 { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 7px; }
    .note-sec p { font-size: .87rem; color: var(--text-mid); line-height: 1.72; }

    /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal.d1 { transition-delay: .1s; }
    .reveal.d2 { transition-delay: .2s; }
    .reveal.d3 { transition-delay: .3s; }
    .reveal.d4 { transition-delay: .4s; }
    .reveal.d5 { transition-delay: .5s; }

    /* ─────────────────────────────────────────
       BOOKING — PATIENT TYPE TOGGLE
    ───────────────────────────────────────── */
    .pt-toggle {
      display: flex; gap: 0; border-radius: var(--r-md); overflow: hidden;
      border: 1px solid rgba(27,58,47,.15); margin-bottom: 16px;
    }
    .pt-btn {
      flex: 1; padding: 10px 16px; font-size: .84rem; font-weight: 500;
      background: transparent; color: var(--text-mid); transition: background .2s, color .2s;
      border: none; cursor: pointer;
    }
    .pt-btn.on { background: var(--forest); color: var(--cream); }

    /* ─────────────────────────────────────────
       BOOKING — RETURNING PATIENT BANNER
    ───────────────────────────────────────── */
    .returning-banner {
      background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.3);
      border-radius: var(--r-md); padding: 14px 18px; margin-bottom: 16px;
      font-size: .88rem; color: var(--forest); line-height: 1.5;
    }

    /* ─────────────────────────────────────────
       BOOKING — PASSWORD SHOW/HIDE WRAP
    ───────────────────────────────────────── */
    .pass-wrap { position: relative; display: flex; align-items: center; }
    .pass-wrap .f-input { flex: 1; padding-right: 60px; }
    .pass-eye {
      position: absolute; right: 12px;
      font-size: .75rem; font-weight: 500; color: var(--forest);
      background: none; border: none; cursor: pointer; padding: 4px;
      letter-spacing: .04em; text-transform: uppercase;
    }

    /* ─────────────────────────────────────────
       BOOKING — WHATSAPP SAME-AS-CELL
    ───────────────────────────────────────── */
    .wa-same-label {
      font-size: .75rem; font-weight: 400; color: var(--text-light);
      display: flex; align-items: center; gap: 4px; cursor: pointer;
      text-transform: none; letter-spacing: 0;
    }
    .wa-same-label input[type="checkbox"] { accent-color: var(--forest); cursor: pointer; }

    /* ─────────────────────────────────────────
       DASHBOARD — APPOINTMENT CARDS
    ───────────────────────────────────────── */
    .dash-appt-card {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(27,58,47,.07);
    }
    .dash-appt-card:last-child { border-bottom: none; }
    .dash-appt-info h4 { font-size: 1rem; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
    .dash-appt-info p  { font-size: .82rem; color: var(--text-mid); margin-bottom: 2px; }
    .appt-price { color: var(--gold) !important; font-weight: 500; }
    .dash-appt-actions { flex-shrink: 0; }
    .dash-loading { font-size: .85rem; color: var(--text-light); padding: 8px 0; }
    .dash-empty   { font-size: .85rem; color: var(--text-light); padding: 8px 0; }

    /* ─────────────────────────────────────────
       FOUNDER QUOTE
    ───────────────────────────────────────── */
    .founder-quote {
      margin: 28px 0 0;
      padding: 20px 24px;
      border-left: 3px solid var(--gold);
      background: rgba(201,169,110,.07);
      border-radius: 0 8px 8px 0;
    }
    .founder-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.18rem;
      font-style: italic;
      line-height: 1.65;
      color: var(--forest);
      margin: 0 0 10px;
    }
    .founder-quote cite {
      display: block;
      font-size: .82rem;
      font-style: normal;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--gold);
      text-transform: uppercase;
    }

    /* ─────────────────────────────────────────
       CREDENTIALS CARD NOTES
    ───────────────────────────────────────── */
    .cred-note {
      display: block;
      font-size: .78rem;
      color: rgba(250,246,240,.5);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ─────────────────────────────────────────
       SERVICE EXCLUSION NOTE
    ───────────────────────────────────────── */
    .svc-excl {
      display: block;
      margin-top: 6px;
      font-size: .8rem;
      color: rgba(27,58,47,.55);
      font-style: italic;
    }

    /* ─────────────────────────────────────────
       SERVICE GROUP FOOTNOTE
    ───────────────────────────────────────── */
    .svc-group-note {
      margin-top: 24px;
      font-size: .85rem;
      color: rgba(27,58,47,.55);
      text-align: center;
    }

    /* ─────────────────────────────────────────
       LEGAL / POPIA / DISCLAIMER SECTION
    ───────────────────────────────────────── */
    .legal-section {
      background: var(--cream-warm);
      padding: 72px 0 56px;
    }
    .legal-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px 56px;
    }
    .legal-block {
      padding: 32px;
      background: #fff;
      border-radius: 12px;
      border: 1px solid rgba(201,169,110,.2);
    }
    .legal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--forest);
      margin: 0 0 14px;
    }
    .legal-block p {
      font-size: .88rem;
      line-height: 1.72;
      color: rgba(27,58,47,.75);
      margin: 0 0 12px;
    }
    .legal-block p:last-child { margin-bottom: 0; }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 1040px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .creds-card { position: static; }
      .why-grid { grid-template-columns: repeat(2,1fr); }
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .legal-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .nav-links, .btn-nav { display: none; }
      .nav-burger { display: flex; }
      .hero-art { display: none; }
      .hero-credentials { gap: 12px; }
      .steps { grid-template-columns: 1fr; gap: 36px; }
      .steps::before { top: 0; bottom: 0; left: 27px; right: auto; width: 1px; height: auto; }
      .step { text-align: left; padding-left: 68px; }
      .step-num { position: absolute; left: 0; top: 0; margin: 0; }
      .dash-grid { grid-template-columns: 1fr; }
      .dash-sidebar { position: static; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; }
      .footer-copy { text-align: left; }
      .modal-hdr, .modal-body, .modal-ftr, .modal-prog { padding-left: 22px; padding-right: 22px; }
      .svc-opts { grid-template-columns: 1fr; }
      .f-row { grid-template-columns: 1fr; }
      .time-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 520px) {
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; }
      .btn-primary, .btn-ghost { justify-content: center; }
      .upcoming-block { flex-direction: column; align-items: flex-start; }
    }

/* ─────────────────────────────────────────
   AUTH NAV ELEMENTS
───────────────────────────────────────── */
.btn-signin-nav {
  padding: 9px 20px;
  border: 1px solid rgba(27,58,47,.2);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color .25s var(--ease), color .25s var(--ease);
  background: transparent;
}
.btn-signin-nav:hover { border-color: var(--forest); color: var(--forest); }
.nav.hero-nav .btn-signin-nav { border-color: rgba(250,246,240,.3); color: rgba(250,246,240,.75); }
.nav.hero-nav .btn-signin-nav:hover { border-color: rgba(250,246,240,.7); color: var(--cream); }

.nav-user-name {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
}
.nav.hero-nav .nav-user-name { color: var(--cream); }

.btn-signout-nav {
  font-size: .78rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
  background: none; border: none; padding: 0; cursor: pointer;
}
.btn-signout-nav:hover { color: var(--forest); }
.nav.hero-nav .btn-signout-nav { color: rgba(250,246,240,.5); }
.nav.hero-nav .btn-signout-nav:hover { color: var(--cream); }

.nav-user-name--link {
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity .25s var(--ease);
}
.nav-user-name--link:hover { opacity: .72; }

.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  font-size: .65rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .03em;
  transition: background .25s var(--ease);
}
.nav.hero-nav .nav-avatar { background: rgba(250,246,240,.25); }

/* Set today's date label in admin section */
#adminDate::before { content: ''; }

/* ─────────────────────────────────────────
   SERVICE GROUPS
───────────────────────────────────────── */
.svc-group {}

.svc-group-hdr {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(27,58,47,.1);
}

.svc-group-hdr h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.svc-group-hdr p {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.55;
  max-width: 520px;
}

/* Styled select in booking modal */
.f-select optgroup {
  font-weight: 600;
  color: var(--forest);
}
.f-select option {
  font-weight: 400;
  color: var(--charcoal);
  padding: 4px 0;
}

/* ─────────────────────────────────────────
   DASHBOARD SIDEBAR PROFILE SUMMARY
───────────────────────────────────────── */
.dash-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  letter-spacing: .04em;
}
.dash-side-info {
  margin: 12px 0 20px;
  padding: 14px 16px;
  background: rgba(27,58,47,.05);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 9px;
}
.dash-side-row {
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: var(--charcoal); line-height: 1.4;
}
.dash-side-icon { font-size: .9rem; flex-shrink: 0; width: 18px; text-align: center; }

/* ─────────────────────────────────────────
   DEDICATED PATIENT PROFILE PAGE
───────────────────────────────────────── */
.pp-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--forest); font-size: .88rem; font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}
.pp-back:hover { opacity: .7; }

.pp-hero {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(27,58,47,.1);
}
.pp-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--forest); color: #fff;
  font-family: var(--ff-display); font-size: 2rem; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .02em;
}
.pp-name {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--forest);
  margin: 0 0 6px;
}
.pp-meta {
  font-size: .88rem; color: var(--text-light); margin: 0;
}

.pp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .pp-cards { grid-template-columns: 1fr 1fr; }
  .pp-card-full { grid-column: 1 / -1; }
}
.pp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(27,58,47,.06);
}
.pp-card-hdr {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--forest); opacity: .7;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(27,58,47,.08);
}

/* Two-column grid inside Personal Details card */
.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
@media (max-width: 540px) { .pp-grid { grid-template-columns: 1fr; } }
.pp-field { display: flex; flex-direction: column; gap: 4px; }
.pp-field-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-light);
}
.pp-field-val { font-size: .95rem; color: var(--charcoal); line-height: 1.5; }

/* ─────────────────────────────────────────
   PATIENT PROFILE PANEL
───────────────────────────────────────── */
.profile-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27, 58, 47, .07);
}
.profile-row:last-child { border-bottom: none; }
.profile-val {
  font-size: .94rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   FOCUS VISIBLE — GLOBAL
───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.f-input:focus-visible, .f-select:focus-visible, .f-textarea:focus-visible {
  outline: none;
}

/* ─────────────────────────────────────────
   SERVICES CATEGORY TAB BAR
───────────────────────────────────────── */
.svc-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
  position: sticky; top: 80px; z-index: 100;
  background: var(--cream-warm);
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,58,47,.08);
}
.svc-tab {
  padding: 8px 22px;
  border: 1.5px solid rgba(27,58,47,.18);
  border-radius: 50px;
  font-size: .82rem; font-weight: 500;
  color: var(--forest); background: var(--white);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.svc-tab:hover { background: var(--gold-pale); border-color: var(--gold); }
.svc-tab.on { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ─────────────────────────────────────────
   BACK TO TOP BUTTON
───────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease);
  transform: translateY(8px);
  border: none; cursor: pointer;
  line-height: 1;
}
#backToTop.vis { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backToTop:hover { background: var(--forest-mid); transform: translateY(-2px) !important; }

/* ─────────────────────────────────────────
   TIME CHIP — UNAVAILABLE STATE
───────────────────────────────────────── */
.t-chip.unavail {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   FOOTER CONTACT LINKS
───────────────────────────────────────── */
.fc-link {
  color: rgba(250,246,240,.48);
  transition: color .25s;
  text-decoration: none;
}
.fc-link:hover { color: var(--cream); }

/* ─────────────────────────────────────────
   DASHBOARD — SKELETON LOADER
───────────────────────────────────────── */
.dash-skeleton { padding: 16px 0; border-bottom: 1px solid rgba(27,58,47,.07); }
.skel-line {
  height: 11px; border-radius: 6px;
  background: linear-gradient(90deg, var(--blush) 25%, var(--cream-warm) 50%, var(--blush) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skel-w60 { width: 60%; }
.skel-w40 { width: 40%; margin-top: 8px; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─────────────────────────────────────────
   DASHBOARD — STYLED EMPTY STATES
───────────────────────────────────────── */
.dash-empty-state {
  text-align: center;
  padding: 52px 24px 40px;
}
.dash-empty-ico {
  width: 64px; height: 64px;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--forest);
}
.dash-empty-state h4 {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 400;
  color: var(--forest); margin-bottom: 10px;
}
.dash-empty-state p {
  font-size: .86rem; color: var(--text-light);
  line-height: 1.65; max-width: 320px; margin: 0 auto 22px;
}

/* ─────────────────────────────────────────
   RESPONSIVE — SERVICES TAB BAR
───────────────────────────────────────── */
@media (max-width: 768px) {
  .svc-tabs {
    top: 64px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .svc-tabs::-webkit-scrollbar { display: none; }
  .svc-tab { white-space: nowrap; flex-shrink: 0; }
}

/* ─────────────────────────────────────────
   MULTI-PAGE — NAV SPACER (non-hero pages)
───────────────────────────────────────── */
.page-nav-spacer { display: block; height: 80px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   MULTI-PAGE — WHY SECTION STANDALONE
   (home page, extracted from about section)
───────────────────────────────────────── */
.why-section { background: var(--cream); padding: 80px 0 40px; }
.why-section .why { margin-top: 0; padding-top: 0; border-top: none; }

/* ─────────────────────────────────────────
   MULTI-PAGE — SERVICES PREVIEW (home)
───────────────────────────────────────── */
.svc-preview { background: var(--cream); padding: 0 0 100px; }
.svc-preview-header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-preview-header .sec-label { justify-content: center; }
.svc-preview-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
  margin-top: 10px;
}
.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(27,58,47,.09);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.svc-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(201,169,110,.35);
}
.svc-preview-ico {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--forest);
  flex-shrink: 0;
}
.svc-preview-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--forest);
  margin-bottom: 10px;
}
.svc-preview-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.svc-preview-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 500;
  color: var(--forest);
  margin-top: 20px;
  transition: gap .2s var(--ease);
}
.svc-preview-card:hover .svc-preview-cta { gap: 10px; }
.svc-preview-all {
  text-align: center;
  margin-top: 52px;
}
@media (max-width: 900px) {
  .svc-preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-preview-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   MULTI-PAGE — SVC GROUP ANCHOR OFFSET
───────────────────────────────────────── */
.svc-group { scroll-margin-top: 148px; }

/* ─────────────────────────────────────────
   MULTI-PAGE — PAGE-SPECIFIC ABOUT SECTION
───────────────────────────────────────── */
.about-page .about { padding: 52px 0 110px; }
