
    /* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --navy:       #1A2A4A;
      --navy-deep:  #0f1a30;
      --navy-mid:   #243558;
      --gold:       #B8922A;
      --gold-light: #d4aa4a;
      --gold-pale:  #f5e9c8;
      --cream:      #F8F5F0;
      --ivory:      #FFFFFF;
      --charcoal:   #1C1C1E;
      --slate:      #5A6472;
      --teal:       #3D7A8A;
      --teal-dark:  #2d5f6e;
      --crimson:    #8B2635;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;

      --radius-sm: 4px;
      --radius-md: 10px;
      --radius-lg: 20px;

      --shadow-card: 0 2px 24px rgba(26,42,74,0.08);
      --shadow-heavy: 0 8px 48px rgba(26,42,74,0.18);

      --max-w: 1180px;
      --section-pad: clamp(64px, 8vw, 112px);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--charcoal);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ─── UTILITY ────────────────────────────────────────────────── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
    .section-label {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 14px;
    }
    .section-heading {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3.5vw, 44px);
      line-height: 1.18;
      color: var(--navy);
    }
    .section-copy {
      font-size: clamp(15px, 1.5vw, 17px);
      color: var(--slate);
      max-width: 580px;
      margin-top: 14px;
      line-height: 1.75;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: all 0.22s ease;
      border: none;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--ivory);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,146,42,0.35); }
    .btn-secondary {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }
    .btn-secondary:hover { background: var(--navy); color: var(--ivory); }
    .btn-ghost {
      background: transparent;
      color: var(--teal);
      border: 1.5px solid var(--teal);
      padding: 12px 24px;
    }
    .btn-ghost:hover { background: var(--teal); color: var(--ivory); }

    /* ─── SCROLL REVEAL ─────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── NAVIGATION ─────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(26,42,74,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184,146,42,0.2);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-brand {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .nav-brand-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 16px;
      color: var(--ivory);
      letter-spacing: 0.01em;
    }
    .nav-brand-tag {
      font-size: 10px;
      color: var(--gold);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(16px, 2vw, 32px);
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      font-weight: 700 !important;
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      font-size: 13px !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

    .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: transparent; border: none; outline: none; padding: 4px; -webkit-appearance: none; appearance: none; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ivory); border-radius: 2px; transition: all 0.3s; }

    /* ─── HERO ──────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: var(--navy-deep);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    /* Subtle geometric texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 70% 50%, rgba(184,146,42,0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(61,122,138,0.08) 0%, transparent 50%);
    }
    /* EKG line decoration */
    .hero-ekg {
      position: absolute;
      bottom: 80px;
      left: 0;
      right: 0;
      height: 60px;
      opacity: 0.12;
      overflow: hidden;
    }
    .hero-ekg svg { width: 100%; height: 100%; }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding-top: 68px;
      min-height: 100vh;
    }
    .hero-content { padding: clamp(48px, 8vh, 96px) 0; }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 60px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--ivory);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-lead {
      font-size: clamp(15px, 1.6vw, 18px);
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.55s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }
    .hero-actions .btn-primary { font-size: 15px; padding: 16px 32px; }
    .hero-actions .btn-secondary {
      color: var(--ivory);
      border-color: rgba(255,255,255,0.35);
    }
    .hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--ivory); }

    /* Hero image panel */
    .hero-image-panel {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      opacity: 0;
      animation: fadeIn 1.2s ease 0.5s forwards;
    }
    .hero-photo-wrap {
      position: relative;
      width: 100%;
      max-width: 420px;
      height: 85vh;
    }
    .hero-photo-wrap::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 90%;
      height: 90%;
      background: linear-gradient(135deg, rgba(184,146,42,0.15), rgba(61,122,138,0.1));
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      border: 1px solid rgba(184,146,42,0.2);
    }
    .hero-photo {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 88%;
      height: 88%;
      object-fit: cover;
      object-position: top center;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      filter: brightness(0.95) contrast(1.05);
    }
    /* Credential badge on photo */
    .hero-badge {
      position: absolute;
      top: 60px;
      right: -20px;
      background: var(--gold);
      color: var(--navy);
      padding: 16px 20px;
      border-radius: var(--radius-md);
      text-align: center;
      box-shadow: var(--shadow-heavy);
      z-index: 3;
    }
    .hero-badge-num {
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 700;
      line-height: 1;
    }
    .hero-badge-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-top: 4px;
      line-height: 1.3;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ─── TRUST STRIP ────────────────────────────────────────────── */
    .trust-strip {
      background: var(--navy);
      border-top: 3px solid var(--gold);
    }
    .trust-strip-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      divide-x: 1px solid rgba(255,255,255,0.1);
    }
    .trust-item {
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .trust-item:last-child { border-right: none; }
    .trust-icon {
      width: 38px;
      height: 38px;
      background: rgba(184,146,42,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-icon svg { width: 18px; height: 18px; color: var(--gold); }
    .trust-text-main {
      font-weight: 700;
      font-size: 15px;
      color: var(--ivory);
      line-height: 1.2;
    }
    .trust-text-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.04em;
      margin-top: 2px;
    }

    /* ─── ABOUT ──────────────────────────────────────────────────── */
    .about { padding: var(--section-pad) 0; background: var(--cream); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .about-text p {
      color: var(--slate);
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .about-text p:last-of-type { margin-bottom: 32px; }
    .about-pull {
      border-left: 3px solid var(--gold);
      padding: 20px 24px;
      background: var(--gold-pale);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin: 28px 0 32px;
    }
    .about-pull blockquote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 17px;
      color: var(--navy);
      line-height: 1.55;
    }
    .about-pull cite {
      display: block;
      margin-top: 10px;
      font-family: var(--font-body);
      font-size: 12px;
      font-style: normal;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    /* Stats cards on right */
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stat-card {
      background: var(--ivory);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      border: 1px solid rgba(26,42,74,0.07);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }
    .stat-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .stat-card:hover::after { transform: scaleX(1); }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .stat-num sup { font-size: 0.45em; vertical-align: super; }
    .stat-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--slate);
      margin-top: 8px;
      line-height: 1.4;
      letter-spacing: 0.02em;
    }

    /* ─── EXPERTISE ──────────────────────────────────────────────── */
    .expertise {
      padding: var(--section-pad) 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .expertise::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .expertise-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .expertise-header .section-heading { color: var(--ivory); }
    .expertise-header .section-label { color: var(--gold); }
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .expertise-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      transition: all 0.28s ease;
      cursor: default;
    }
    .expertise-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(184,146,42,0.4);
      transform: translateY(-4px);
    }
    .expertise-card-icon {
      width: 44px;
      height: 44px;
      background: rgba(184,146,42,0.12);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .expertise-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
    .expertise-card-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--ivory);
      margin-bottom: 10px;
    }
    .expertise-card-copy {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }

    /* ─── LEGACY / TIMELINE ──────────────────────────────────────── */
    .legacy { padding: var(--section-pad) 0; background: var(--cream); }
    .legacy-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: start;
    }
    .legacy-intro .section-copy { max-width: 100%; }
    .timeline { position: relative; padding-left: 32px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 8px;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), var(--teal), transparent);
    }
    .timeline-item {
      position: relative;
      padding-bottom: 32px;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -29px;
      top: 6px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--ivory);
      border: 3px solid var(--gold);
      box-shadow: 0 0 0 3px rgba(184,146,42,0.15);
      transition: all 0.25s ease;
    }
    .timeline-item:hover .timeline-dot {
      background: var(--gold);
      transform: scale(1.25);
    }
    .timeline-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 5px;
    }
    .timeline-text {
      font-size: clamp(14px, 1.4vw, 16px);
      color: var(--charcoal);
      line-height: 1.6;
      font-weight: 400;
    }

    /* ─── INSTITUTION LOGOS ──────────────────────────────────────── */
    .inst-strip {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      border: 1px solid rgba(26,42,74,0.07);
    }
    .inst-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      align-items: start;
    }
    .inst-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      padding: 16px 8px;
      border-radius: var(--radius-md);
      transition: background 0.22s ease, transform 0.22s ease;
      cursor: default;
    }
    .inst-card:hover {
      background: rgba(26,42,74,0.04);
      transform: translateY(-4px);
    }
    .inst-logo-wrap {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      overflow: visible;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .inst-svg { width: 100%; height: 100%; }
    .inst-name {
      font-size: 11px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.35;
      letter-spacing: 0.01em;
    }
    .inst-detail {
      font-size: 10px;
      color: var(--slate);
      letter-spacing: 0.04em;
    }
    .inst-creds {
      font-size: 10px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.05em;
      line-height: 1.4;
    }

    /* ─── CREDENTIALS ────────────────────────────────────────────── */
    .credentials { padding: var(--section-pad) 0; background: var(--ivory); }
    .credentials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 56px;
    }
    .cred-card {
      border-radius: var(--radius-md);
      padding: 40px 36px;
      border: 1px solid rgba(26,42,74,0.08);
      box-shadow: var(--shadow-card);
    }
    .cred-card-left {
      background: var(--navy);
    }
    .cred-card-left .section-label { color: var(--gold); }
    .cred-card-left h3 { color: var(--ivory); }
    .cred-card-right {
      background: var(--cream);
    }
    .cred-card h3 {
      font-family: var(--font-display);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      margin-bottom: 28px;
      line-height: 1.25;
    }
    .cred-list { list-style: none; }
    .cred-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 15px;
      line-height: 1.55;
    }
    .cred-card-right .cred-list li { border-bottom-color: rgba(26,42,74,0.07); }
    .cred-card-left .cred-list li { color: rgba(255,255,255,0.85); }
    .cred-card-right .cred-list li { color: var(--slate); }
    .cred-list li:last-child { border-bottom: none; }
    .cred-bullet {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 8px;
    }

    /* ─── AWARDS ─────────────────────────────────────────────────── */
    .awards { padding: var(--section-pad) 0; background: var(--cream); }
    .awards-header { text-align: center; margin-bottom: 56px; }
    .awards-header .section-copy { margin: 14px auto 0; }
    .awards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .award-card {
      background: var(--ivory);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      text-align: center;
      border: 1px solid rgba(26,42,74,0.07);
      box-shadow: var(--shadow-card);
      transition: all 0.28s ease;
    }
    .award-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-heavy);
      border-color: rgba(184,146,42,0.3);
    }
    .award-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--gold-pale), rgba(184,146,42,0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 1px solid rgba(184,146,42,0.2);
    }
    .award-icon svg { width: 26px; height: 26px; color: var(--gold); }
    .award-title {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .award-detail {
      font-size: 12px;
      color: var(--slate);
      line-height: 1.6;
    }

    /* ─── MEDIA ──────────────────────────────────────────────────── */
    .media { padding: var(--section-pad) 0; background: var(--navy); }
    .media-header { text-align: center; margin-bottom: 56px; }
    .media-header .section-heading { color: var(--ivory); }
    .media-header .section-copy { color: rgba(255,255,255,0.6); margin: 14px auto 0; }
    .media-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .video-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .video-card:hover { transform: translateY(-4px); border-color: rgba(184,146,42,0.4); }
    /* ─── VIDEO THUMBNAIL FACADE (lazy-load YouTube) ────────────── */
    .video-facade {
      position: relative;
      aspect-ratio: 16/9;
      background: #000;
      cursor: pointer;
      overflow: hidden;
    }
    .video-facade-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s;
      display: block;
    }
    .video-facade:hover .video-facade-thumb { opacity: 0.82; }
    .video-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .video-play-btn svg {
      width: 68px;
      height: 68px;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7));
      transition: transform 0.2s ease;
    }
    .video-facade:hover .video-play-btn svg { transform: scale(1.12); }
    .video-channel-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0,0,0,0.72);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      pointer-events: none;
    }
    .video-facade iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      background: var(--navy-deep);
      overflow: hidden;
    }
    .video-thumb iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .video-info { padding: 24px 24px 28px; }
    .video-channel {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .video-show {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--ivory);
      margin-bottom: 10px;
    }
    .video-caption {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }
    .video-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      transition: gap 0.2s;
    }
    .video-link:hover { gap: 10px; }
    .video-link svg { width: 14px; height: 14px; }

    /* ─── REVIEWS ────────────────────────────────────────────────── */
    .reviews { padding: var(--section-pad) 0; background: var(--cream); }
    .reviews-header { margin-bottom: 56px; }
    .google-rating {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ivory);
      border: 1px solid rgba(26,42,74,0.08);
      border-radius: 40px;
      padding: 8px 20px 8px 14px;
      margin-bottom: 20px;
      box-shadow: var(--shadow-card);
    }
    .google-rating-stars { color: #F4B400; font-size: 16px; letter-spacing: 2px; }
    .google-rating-text { font-size: 13px; font-weight: 600; color: var(--navy); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .review-card {
      background: var(--ivory);
      border-radius: var(--radius-md);
      padding: 28px 28px 24px;
      border: 1px solid rgba(26,42,74,0.07);
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
    }
    .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-heavy); }
    .review-stars { color: #F4B400; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
    .review-quote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(14px, 1.4vw, 16px);
      color: var(--charcoal);
      line-height: 1.7;
      flex: 1;
    }
    .review-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
    .review-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; margin-left:  2px; }
    .review-author {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(26,42,74,0.06);
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    /* ─── LOCATIONS ──────────────────────────────────────────────── */
    .locations { padding: var(--section-pad) 0; background: var(--ivory); }
    .locations-header { text-align: center; margin-bottom: 56px; }
    .locations-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .location-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(26,42,74,0.08);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
    }
    .location-card-header {
      padding: 6px 24px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .location-card-hospital .location-card-header { background: var(--navy); color: var(--gold); }
    .location-card-private .location-card-header { background: var(--gold); color: var(--navy); }
    .location-card-body {
      padding: 32px 32px 28px;
      flex: 1;
      background: var(--ivory);
    }
    .location-card-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .location-card-designation {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .location-card-copy {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .location-detail {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--charcoal);
      margin-bottom: 10px;
    }
    .location-detail svg { width: 16px; height: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .location-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(26,42,74,0.06);
    }

    /* ─── FINAL CTA ──────────────────────────────────────────────── */
    .final-cta {
      padding: clamp(72px, 10vw, 120px) 0;
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(184,146,42,0.08) 0%, transparent 65%);
    }
    .final-cta-inner { position: relative; z-index: 2; }
    .final-cta .section-label { justify-content: center; display: flex; }
    .final-cta-heading {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 700;
      color: var(--ivory);
      margin: 12px 0 18px;
      line-height: 1.2;
    }
    .final-cta-copy {
      font-size: clamp(14px, 1.5vw, 17px);
      color: rgba(255,255,255,0.65);
      max-width: 520px;
      margin: 0 auto 44px;
      line-height: 1.75;
    }
    .final-cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .final-cta-actions .btn {
      font-size: 15px;
      padding: 15px 30px;
    }
    .btn-white {
      background: var(--ivory);
      color: var(--navy);
      font-weight: 700;
    }
    .btn-white:hover { background: var(--gold-pale); transform: translateY(-1px); }
    .btn-outline-white {
      background: transparent;
      color: var(--ivory);
      border: 1.5px solid rgba(255,255,255,0.35);
    }
    .btn-outline-white:hover { border-color: var(--ivory); background: rgba(255,255,255,0.08); }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .footer {
      background: var(--navy-deep);
      padding: 48px 0 32px;
      border-top: 1px solid rgba(184,146,42,0.2);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      color: var(--ivory);
      margin-bottom: 4px;
    }
    .footer-brand-tag {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      max-width: 280px;
    }
    /* EKG line logo mark */
    .footer-ekg {
      margin-top: 20px;
      width: 120px;
      height: 24px;
    }
    .footer-ekg svg { width: 100%; height: 100%; }
    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      line-height: 1.5;
    }
    .footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-disclaimer {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      line-height: 1.6;
      max-width: 600px;
    }

    /* ─── MOBILE ─────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; padding-top: 100px; }
      .hero-image-panel { height: 50vw; min-height: 300px; }
      .hero-photo-wrap { max-width: 280px; height: 100%; }
      .hero-badge { right: 0; top: 10px; }
      .trust-strip-inner { grid-template-columns: 1fr 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .trust-item:nth-child(2n) { border-right: none; }
      .about-inner { grid-template-columns: 1fr; }
      .inst-grid { grid-template-columns: repeat(3, 1fr); }
      .expertise-grid { grid-template-columns: 1fr 1fr; }
      .legacy-inner { grid-template-columns: 1fr; }
      .credentials-grid { grid-template-columns: 1fr; }
      .awards-grid { grid-template-columns: 1fr 1fr; }
      .media-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .locations-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .nav-links { display: none; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-deep); padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .nav-hamburger { display: flex; }
    }
    @media (max-width: 560px) {
      .expertise-grid { grid-template-columns: 1fr; }
      .awards-grid { grid-template-columns: 1fr 1fr; }
      .trust-strip-inner { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
    }
  
/* ─── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero { padding: 120px 0 72px; background: var(--navy-deep); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(184,146,42,0.07) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--ivory); line-height: 1.15; margin-bottom: 20px; }
.page-hero p { font-size: clamp(15px,1.6vw,18px); color: rgba(255,255,255,0.68); max-width: 600px; line-height: 1.75; }
.page-hero-ekg { position: absolute; bottom: 0; left: 0; right: 0; height: 48px; opacity: 0.1; pointer-events: none; }

/* ─── GENERIC CARD (inner pages) ──────────────────────────────────────────── */
.card { background: var(--ivory); border-radius: var(--radius-md); border: 1px solid rgba(26,42,74,0.07); box-shadow: var(--shadow-card); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }

/* ─── PULL QUOTE (inner pages) ────────────────────────────────────────────── */
.pull-quote { border-left: 3px solid var(--gold); padding: 20px 24px; background: var(--gold-pale); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.pull-quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--navy); line-height: 1.55; }
.pull-quote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-size: 12px; font-style: normal; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── CRED LIST DARK (inner pages) ────────────────────────────────────────── */
.cred-list-dark li { color: rgba(255,255,255,0.85) !important; border-bottom-color: rgba(255,255,255,0.08) !important; }
