    :root {
      --bg:         rgb(238, 231, 226);
      --text:       rgb(33, 37, 41);
      --gold:       rgb(210, 171, 106);
      --cta1-bg:    #193c43;
      --cta1-text:  #fff;
      --cta2-bg:    rgb(193, 211, 215);
      --cta2-text:  rgb(33, 37, 41);
      --rule:       rgba(33, 37, 41, 0.18);
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans:  'Jost', sans-serif;
    }
 
    *, *::before, *::after { box-sizing: border-box; }
 
    html, body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-weight: 300;
      min-height: 100%;
    }
 
    .share-experience {
        padding-top:100px;
        a {
            &:hover {
                text-decoration: none !important;
            }
        }
    }
    /* ── PAGE WRAPPER ─────────────────────────────────────────── */
    .page-wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem;
    }
 
    .card-wrap {
      width: 100%;
      max-width: 580px;
    }
 
    /* ── TOP NAME ─────────────────────────────────────────────── */
    .doctor-name {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.1rem, 3vw, 1.35rem);
      letter-spacing: 0.04em;
      color: var(--text);
      text-align: center;
      margin-bottom: 0.25rem;
    }
    .doctor-name span { color: var(--gold); }
 
    .name-rule {
      display: block;
      width: 30px;
      height: 1px;
      background: var(--rule);
      margin: 0.6rem auto 1.6rem;
    }
 
    /* ── EYEBROW ──────────────────────────────────────────────── */
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 1.4rem;
    }
    .eyebrow::before,
    .eyebrow::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--rule);
    }
    .eyebrow-text {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text);
    }
 
    /* ── HEADING ──────────────────────────────────────────────── */
    .section-heading {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 7vw, 3rem);
      font-weight: 400;
      line-height: 1.1;
      text-align: center;
      margin-bottom: 1rem;
      color: var(--text);
    }
    .section-heading em {
      font-style: italic;
      color: var(--gold);
    }
 
    /* ── BODY COPY ────────────────────────────────────────────── */
    .lead-copy {
      text-align: center;
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text);
      opacity: 0.85;
      max-width: 600px;
      margin: 0 auto 2.4rem;
      padding:40px 0;
    }
 
    /* ── CTA CARDS ────────────────────────────────────────────── */
    .cta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.4rem;
      border-radius: 6px;
      text-decoration: none;
      margin-bottom: 0.85rem;
      transition: filter 0.18s ease, transform 0.18s ease;
    }
    .cta-card:hover {
      filter: brightness(0.96);
      transform: translateX(3px);
      text-decoration:none !important;
    }
 
    /* Primary CTA */
    .cta-card--primary {
      background-color: var(--cta1-bg);
      color: var(--cta1-text);
    }
    .cta-card--primary .cta-label { color: var(--cta1-text); }
    .cta-card--primary .cta-sub   { color: rgba(255,255,255,0.65); }
    .cta-card--primary .cta-arrow { color: var(--gold); }
 
    /* Secondary CTA */
    .cta-card--secondary {
      background-color: var(--cta2-bg);
      color: var(--cta2-text);
    }
    .cta-card--secondary .cta-label { color: var(--cta2-text); }
    .cta-card--secondary .cta-sub   { color: rgba(33,37,41,0.6); }
    .cta-card--secondary .cta-arrow { color: var(--cta2-text); opacity: 0.6; }
 
    .cta-inner {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
 
    .cta-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cta-card--primary .cta-icon {
      background: rgba(255,255,255,0.12);
    }
    .cta-card--secondary .cta-icon {
      background: rgba(33,37,41,0.1);
    }
 
    .cta-label {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 0.97rem;
      letter-spacing: 0.01em;
      line-height: 1.2;
      display: block;
    }
    .cta-sub {
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.02em;
      display: block;
      margin-top: 0.15rem;
    }
 
    .cta-arrow {
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform 0.18s ease;
    }
    .cta-card:hover .cta-arrow {
      transform: translateX(4px);
    }
 
    /* ── DIVIDER ──────────────────────────────────────────────── */
    .section-divider {
      border: none;
      border-top: 1px solid var(--rule);
      margin: 2rem 0 1.5rem;
    }
 
    /* ── PRIVATE NOTE ─────────────────────────────────────────── */
    .private-note {
      text-align: center;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--text);
      opacity: 0.7;
    }
    .private-note a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(210,171,106,0.35);
      transition: border-color 0.15s;
    }
    .private-note a:hover { border-color: var(--gold); }
 
    /* ── SIGN-OFF ─────────────────────────────────────────────── */
    .sign-off {
      text-align: center;
      margin-top: 2rem;
    }
    .sign-off .thanks {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 0.92rem;
      opacity: 0.7;
    }
    .sign-off .dr-name {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 1.05rem;
      margin-top: 0.35rem;
      letter-spacing: 0.02em;
    }
    .sign-off .credentials {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.6;
      margin-top: 0.2rem;
    }
 
    /* ── FOOTER INFO ──────────────────────────────────────────── */
    .footer-info {
      text-align: center;
      margin-top: 2rem;
    }
    .footer-info .clinic-name {
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      opacity: 0.65;
      margin-bottom: 0.3rem;
    }
    .footer-info a {
      color: var(--gold);
      text-decoration: none;
      font-size: 0.82rem;
      border-bottom: 1px solid rgba(210,171,106,0.3);
      transition: border-color 0.15s;
    }
    .footer-info a:hover { border-color: var(--gold); }
 
    .insurer-row {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      opacity: 0.45;
      margin-top: 0.6rem;
      line-break: auto;
    }
    .insurer-row span { 
        margin: 0 0.3rem; 
        line-break: auto;
    }
