/* ═══ LETTER ═══ */
    .letter {
      max-width: 680px;
      margin: 0 auto;
      position: relative
    }

    .letter-body p {
      font-size: 15.5px;
      color: var(--body);
      line-height: 1.85;
      margin-bottom: 22px
    }

    .letter-body p:first-child {
      font-size: 17px;
      color: var(--text);
      line-height: 1.8
    }

    .letter-body p em {
      font-style: italic;
      color: var(--blackberry)
    }

    .letter-body p strong {
      color: var(--text);
      font-weight: 600
    }

    /* Drop cap */
    .letter-body p:first-child::first-letter {
      font-family: var(--serif);
      font-size: 3.6em;
      float: left;
      line-height: 0.8;
      margin: 6px 12px 0 0;
      color: var(--blackberry);
      font-weight: 400
    }

    /* Pull quote — sits between paragraphs */
    .letter-pull {
      margin: 38px 0 38px -40px;
      padding: 0 0 0 28px;
      border-left: 3px solid var(--tea);
      font-family: var(--serif);
      font-size: 20px;
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      font-weight: 400;
      max-width: 560px
    }

    .letter-sign {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border)
    }

    .letter-sign-name {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 2px;
      font-style: italic
    }

    .letter-sign-title {
      font-size: 12px;
      color: var(--caption);
      letter-spacing: 0.06em
    }

    /* ═══ DIVIDER — decorative break between sections ═══ */
    .section-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 0;
      gap: 12px
    }

    .section-divider::before,
    .section-divider::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 1px;
      background: var(--border)
    }

    .section-divider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blackberry-tint-border)
    }

    /* ═══ CREDENTIALS ═══ */
    .cred-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start
    }

    .cred-left {}

    /* Timeline */
    .timeline {
      position: relative;
      padding-left: 28px;
      margin-bottom: 34px
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 5px;
      top: 6px;
      bottom: 6px;
      width: 1.5px;
      background: linear-gradient(180deg, var(--blackberry), var(--tea-tint-border))
    }

    .timeline-item {
      position: relative;
      margin-bottom: 20px
    }

    .timeline-item:last-child {
      margin-bottom: 0
    }

    .timeline-dot {
      position: absolute;
      left: -28px;
      top: 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid var(--blackberry);
      background: var(--bg)
    }

    .timeline-item:last-child .timeline-dot {
      background: var(--blackberry);
      border-color: var(--blackberry)
    }

    .timeline-label {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--tea-text);
      font-weight: 600;
      margin-bottom: 2px
    }

    .timeline-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 2px
    }

    .timeline-desc {
      font-size: 12.5px;
      color: var(--body);
      line-height: 1.55
    }

    /* Clinical interest tags */
    .cred-section-label {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--caption);
      font-weight: 600;
      margin-bottom: 12px
    }

    .interest-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 30px
    }

    .interest-tag {
      font-size: 12px;
      color: var(--blackberry);
      background: var(--blackberry-tint);
      border: 1px solid var(--blackberry-tint-border);
      padding: 7px 16px;
      border-radius: 22px;
      font-weight: 500;
      letter-spacing: 0.01em
    }

    /* Staying current block */
    .current-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 24px;
      position: relative;
      overflow: hidden
    }

    .current-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blackberry), var(--tea))
    }

    .current-block p {
      font-size: 13.5px;
      color: var(--body);
      line-height: 1.7
    }

    .current-block p strong {
      color: var(--text);
      font-weight: 600
    }

    /* Right column — photo + credential card */
    .cred-right {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .cred-photo {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--blackberry-tint);
      border: 1px solid var(--blackberry-tint-border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
    }

    .cred-photo::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blackberry), var(--tea))
    }

    .cred-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center
    }

    .cred-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 24px
    }

    .cred-card-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 10px 0;
      border-bottom: 1px solid var(--border-lt)
    }

    .cred-card-row:last-child {
      border-bottom: none;
      padding-bottom: 0
    }

    .cred-card-row:first-child {
      padding-top: 0
    }

    .cred-card-key {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--caption);
      font-weight: 500;
      flex-shrink: 0
    }

    .cred-card-val {
      font-size: 13.5px;
      color: var(--text);
      font-weight: 500;
      text-align: right
    }

    /* ═══ LEGACY ═══ */
    .legacy-wrap {
      position: relative;
      overflow: hidden
    }

    .legacy-arc {
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 2px solid var(--blackberry-tint-border);
      top: -90px;
      right: -70px;
      pointer-events: none;
      opacity: .35
    }

    .legacy-arc2 {
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 1.5px solid var(--tea-tint-border);
      bottom: -50px;
      left: -30px;
      pointer-events: none;
      opacity: .2
    }

    .legacy-content {
      max-width: 680px;
      position: relative
    }

    .legacy-content p {
      font-size: 15px;
      color: var(--body);
      line-height: 1.8;
      margin-bottom: 18px
    }

    .legacy-content p strong {
      color: var(--text);
      font-weight: 600
    }

    .legacy-content p em {
      font-style: italic;
      color: var(--blackberry)
    }

    .legacy-names {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 28px
    }

    .legacy-name {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 22px;
      flex: 1;
      min-width: 200px;
      position: relative;
      overflow: hidden
    }

    .legacy-name::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blackberry), var(--tea))
    }

    .legacy-name-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--tea-text);
      font-weight: 600;
      margin-bottom: 4px
    }

    .legacy-name-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px
    }

    .legacy-name-desc {
      font-size: 12px;
      color: var(--caption);
      line-height: 1.5
    }

    /* ═══ VALUES / PILLARS ═══ */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px
    }

    .value-card {
      padding: 28px 24px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .09);
      position: relative;
      overflow: hidden
    }

    .value-icon {
      font-size: 24px;
      line-height: 1;
      margin-bottom: 10px;
      opacity: .35
    }

    .value-num {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 300;
      color: rgba(255, 255, 255, .12);
      margin-bottom: 8px
    }

    .value-card h3 {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 10px
    }

    .value-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7
    }

    /* ═══ CTA BANNER ═══ */
    .cta-wrap {
      position: relative;
      overflow: hidden
    }

    .cta-arc {
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 2px solid var(--blackberry-tint-border);
      top: -80px;
      right: -60px;
      pointer-events: none;
      opacity: .3
    }

    .cta-arc2 {
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      border: 1.5px solid var(--tea-tint-border);
      bottom: -40px;
      left: -30px;
      pointer-events: none;
      opacity: .2
    }

    .cta-banner {
      text-align: center;
      padding: 70px var(--gutter);
      max-width: var(--max);
      margin: 0 auto;
      position: relative
    }

    .cta-banner h2 {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 400;
      color: var(--text);
      margin-bottom: 14px
    }

    .cta-banner p {
      font-size: 15px;
      color: var(--body);
      line-height: 1.75;
      max-width: 480px;
      margin: 0 auto 20px
    }

    .cta-sub {
      font-size: 12px;
      color: var(--faint);
      letter-spacing: 0.03em
    }

    /* ═══ RESPONSIVE ═══ */
    @media(max-width:1024px) {
      .values-grid {
        grid-template-columns: 1fr 1fr
      }
}

    @media(max-width:768px) {
.hero-photo-wrap {
        max-width: 280px
      }

      .hero-photo-wrap::before,
      .hero-photo-wrap::after {
        display: none
      }

      .cred-grid {
        grid-template-columns: 1fr;
        gap: 30px
      }

      .values-grid {
        grid-template-columns: 1fr
      }

      .letter-pull {
        margin-left: 0
      }
}
