 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

    :root {
      --maroon: #a71930;
      --maroon-dark: #861326;
      --maroon-soft: #f9ebee;
      --navy: #123b66;
      --navy-dark: #082846;
      --navy-soft: #edf5fb;
      --gold: #d6a33c;
      --gold-light: #f2d89c;
      --ink: #243343;
      --muted: #667483;
      --line: #dfe7ed;
      --white: #ffffff;
      --cream: #fbfaf7;
      --shadow: 0 22px 60px rgba(9, 45, 80, .12);
      --shadow-small: 0 12px 32px rgba(9, 45, 80, .09);
      --radius: 24px;
      --container: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: 'DM Sans', Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    .container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 17px;
      color: var(--maroon);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--gold);
    }
    .about-hero .section-label {
      color: rgba(255,255,255,.88);
    }
    .about-hero .section-label::before {
      background: rgba(255,255,255,.85);
    }
    .section-title {
      margin: 0;
      color: var(--navy-dark);
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(36px, 4.2vw, 57px);
      line-height: 1.12;
      letter-spacing: -.025em;
    }
    .section-title span { color: var(--maroon); }
    .section-copy {
      max-width: 650px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }
    .icon {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .btn {
      min-height: 54px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible, .nav-toggle:focus-visible, .tab-button:focus-visible {
      outline: 3px solid rgba(214, 163, 60, .42);
      outline-offset: 3px;
    }
    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--maroon), #c52641);
      box-shadow: 0 13px 28px rgba(167, 25, 48, .22);
    }
    .btn-primary:hover { box-shadow: 0 17px 34px rgba(167, 25, 48, .28); }
    .btn-outline { color: var(--navy); border-color: rgba(18, 59, 102, .35); background: var(--white); }

    .topbar {
      min-height: 39px;
      display: flex;
      align-items: center;
      color: rgba(255,255,255,.88);
      background: var(--navy-dark);
      font-size: 12.5px;
    }
    .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .topbar-group { display: flex; align-items: center; gap: 24px; }
    .topbar-item { display: inline-flex; align-items: center; gap: 8px; }
    .topbar-item .icon { width: 15px; height: 15px; color: var(--gold-light); }
    .topbar a:hover { color: var(--white); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid rgba(18,59,102,.1);
      backdrop-filter: blur(14px);
    }
    .nav-shell { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
    .brand-mark { width: 74px; color: var(--navy); }
    .brand-name {
      color: var(--navy-dark);
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.08;
    }
    .brand-name small {
      display: block;
      margin-top: 4px;
      color: var(--maroon);
      font-family: 'DM Sans', Arial, sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .desktop-nav { display: flex; align-items: center; gap: 31px; }
    .desktop-nav a:not(.btn) {
      position: relative;
      padding: 31px 0 28px;
      color: #425466;
      font-size: 14px;
      font-weight: 600;
    }
    .desktop-nav a:not(.btn)::after {
      content: '';
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 22px;
      height: 2px;
      background: var(--maroon);
      transition: right .25s ease;
    }
    .desktop-nav a:not(.btn):hover, .desktop-nav a.active { color: var(--navy); }
    .desktop-nav a:not(.btn):hover::after, .desktop-nav a.active::after { right: 0; }
    .desktop-nav .btn { min-height: 46px; padding-inline: 19px; }
    .nav-toggle {
      width: 44px;
      height: 44px;
      display: none;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 9px;
      color: var(--navy);
      background: var(--white);
    }
    .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
      width: 20px;
      height: 2px;
      display: block;
      border-radius: 5px;
      background: currentColor;
      transition: .25s ease;
    }
    .nav-toggle span { position: relative; }
    .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
    .nav-toggle span::before { top: -6px; }
    .nav-toggle span::after { top: 6px; }
    .nav-toggle[aria-expanded="true"] span { background: transparent; }
    .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 123px 0 auto;
      z-index: 45;
      padding: 15px 24px 24px;
      background: var(--white);
      border-top: 1px solid var(--line);
      box-shadow: 0 22px 40px rgba(8,40,70,.15);
      transform: translateY(-125%);
      opacity: 0;
      transition: transform .3s ease, opacity .3s ease;
    }
    .mobile-nav.open { transform: translateY(0); opacity: 1; }
    .mobile-nav a:not(.btn) { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 600; }
    .mobile-nav .btn { width: 100%; margin-top: 16px; }

    .about-hero {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      display: flex;
      align-items: center;
      background: url('../Images/about-3.png') center/cover no-repeat;
    }
    .hero-dots {
      position: absolute;
      left: 2.2%;
      bottom: 60px;
      width: 96px;
      height: 58px;
      opacity: .35;
      background-image: radial-gradient(var(--gold) 1.6px, transparent 1.6px);
      background-size: 12px 12px;
    }
    .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; align-items: center; padding: 52px 0; }
    .breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; }
    .breadcrumb a { color: rgba(255,255,255,.95); }
    .breadcrumb span { color: rgba(255,255,255,.55); }
    .hero-content h1 {
      margin: 0;
      max-width: 650px;
      color: rgba(255,255,255,.92);
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(48px, 5.5vw, 76px);
      line-height: 1.05;
      letter-spacing: -.04em;
    }
    .hero-content h1 em { position: relative; color: var(--maroon); font-style: normal; white-space: nowrap; }
    .hero-content h1 em::after {
      content: '';
      position: absolute;
      left: 2px;
      right: 3px;
      bottom: -7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      clip-path: polygon(0 48%, 20% 25%, 48% 53%, 76% 22%, 100% 52%, 73% 70%, 43% 58%, 15% 76%);
    }
    .hero-content p { max-width: 600px; margin: 28px 0 31px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
    .hero-note { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; }
    .hero-note .icon { width: 18px; color: var(--gold-light); }
    .hero-art { position: relative; min-height: 490px; display: grid; place-items: center; }
    .art-orbit {
      position: absolute;
      width: 460px;
      height: 460px;
      border: 1px solid rgba(214,163,60,.45);
      border-radius: 50%;
    }
    .art-orbit::before, .art-orbit::after {
      content: '';
      position: absolute;
      border: 1px solid rgba(18,59,102,.13);
      border-radius: 50%;
    }
    .art-orbit::before { inset: 39px; }
    .art-orbit::after { inset: 84px; }
    .hospital-art {
      position: relative;
      z-index: 2;
      width: min(100%, 455px);
      padding: 33px 30px 25px;
      border: 1px solid rgba(255,255,255,.7);
      border-radius: 180px 180px 28px 28px;
      background: linear-gradient(145deg, #fff, #eef5fa);
      box-shadow: var(--shadow);
    }
    .hospital-art::after {
      content: '';
      position: absolute;
      right: -14px;
      bottom: 52px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--maroon);
      box-shadow: 0 12px 22px rgba(167,25,48,.24);
    }
    .art-label {
      position: absolute;
      left: -30px;
      bottom: 38px;
      z-index: 4;
      padding: 17px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-radius: 14px;
      color: var(--white);
      background: var(--navy);
      box-shadow: var(--shadow-small);
      font-size: 13px;
      font-weight: 700;
    }
    .art-label span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold-light); border-radius: 50%; background: rgba(255,255,255,.1); }
    .art-label .icon { width: 20px; }

    .trust-strip { position: relative; z-index: 5; margin-top: -33px; }
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
    .trust-item { min-height: 128px; padding: 25px 26px; display: flex; align-items: center; gap: 17px; border-right: 1px solid var(--line); }
    .trust-item:last-child { border-right: 0; }
    .trust-icon { width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center; color: var(--maroon); border-radius: 50%; background: var(--maroon-soft); }
    .trust-icon .icon { width: 25px; height: 25px; }
    .trust-item strong { display: block; color: var(--navy-dark); font-size: 15px; line-height: 1.3; }
    .trust-item small { display: block; margin-top: 5px; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

    .story-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 88px; align-items: center; }
    .story-visual { position: relative; min-height: 580px; }
    .story-frame {
      position: absolute;
      inset: 0 55px 45px 0;
      overflow: hidden;
      border-radius: 28px 170px 28px 28px;
      background: linear-gradient(155deg, #eef5fa, #d8e7f1);
      box-shadow: var(--shadow);
    }
    .story-frame svg, .story-frame img { width: 100%; height: 100%; object-fit: cover; }
    .story-accent {
      position: absolute;
      right: 6px;
      top: 84px;
      width: 102px;
      height: 102px;
      border-radius: 50%;
      background: var(--maroon);
      box-shadow: 0 18px 34px rgba(167,25,48,.2);
    }
    .story-card {
      position: absolute;
      right: 0;
      bottom: 0;
      width: min(86%, 390px);
      padding: 26px 28px;
      color: var(--white);
      border-radius: 16px;
      background: linear-gradient(135deg, var(--navy), #185082);
      border-bottom: 3px solid var(--gold);
      box-shadow: var(--shadow-small);
    }
    .story-card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 9px; }
    .story-card-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--gold-light); border-radius: 50%; background: rgba(255,255,255,.1); }
    .story-card h3 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
    .story-card p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; }
    .story-copy p { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.82; }
    .story-quote { margin-top: 31px; padding: 24px 26px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--cream); color: var(--navy); font-family: 'Playfair Display', Georgia, serif; font-size: 20px; line-height: 1.55; }
    .story-details { margin-top: 29px; display: grid; gap: 13px; }
    .story-detail { display: flex; align-items: flex-start; gap: 12px; color: #4d6072; font-size: 14px; }
    .story-detail .icon { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; color: var(--maroon); }

    .purpose { position: relative; overflow: hidden; background: var(--navy-dark); }
    .purpose::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: .12;
      background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px);
      background-size: 22px 22px;
      mask-image: linear-gradient(90deg, #000, transparent 42%, transparent 70%, #000);
    }
    .purpose-head { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
    .purpose .section-label { color: var(--gold-light); }
    .purpose .section-title { max-width: 650px; color: var(--white); }
    .purpose .section-copy { max-width: 480px; margin: 0; color: rgba(255,255,255,.68); }
    .purpose-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .purpose-card {
      min-height: 310px;
      padding: 34px 32px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(8px);
      transition: transform .3s ease, background .3s ease;
    }
    .purpose-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.1); }
    .purpose-number { color: var(--gold-light); font-family: 'Playfair Display', Georgia, serif; font-size: 16px; }
    .purpose-card h3 { margin: 34px 0 15px; color: var(--white); font-family: 'Playfair Display', Georgia, serif; font-size: 28px; }
    .purpose-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }
    .purpose-card .icon { width: 34px; height: 34px; margin-top: 29px; color: var(--gold-light); }

    .values-section { background: #fbfdff; }
    .center-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
    .center-head .section-label::before { display: none; }
    .center-head .section-copy { margin-inline: auto; }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .value-card {
      position: relative;
      overflow: hidden;
      min-height: 270px;
      padding: 31px 27px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 7px 24px rgba(11,52,85,.05);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-small); }
    .value-card::after { content: ''; position: absolute; right: -32px; bottom: -32px; width: 92px; height: 92px; border-radius: 50%; background: var(--navy-soft); }
    .value-icon { width: 60px; height: 60px; display: grid; place-items: center; color: var(--maroon); border-radius: 16px; background: var(--maroon-soft); }
    .value-icon .icon { width: 29px; height: 29px; }
    .value-card h3 { margin: 27px 0 11px; color: var(--navy-dark); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
    .value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

    .approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
    .approach-intro { position: sticky; top: 130px; }
    .approach-intro .section-copy { font-size: 17px; }
    .approach-action { margin-top: 28px; }
    .approach-list { position: relative; }
    .approach-list::before { content: ''; position: absolute; left: 34px; top: 34px; bottom: 34px; width: 1px; background: linear-gradient(var(--maroon), var(--gold), var(--navy)); }
    .approach-step { position: relative; display: grid; grid-template-columns: 69px 1fr; gap: 24px; padding-bottom: 31px; }
    .approach-step:last-child { padding-bottom: 0; }
    .step-number { position: relative; z-index: 2; width: 69px; height: 69px; display: grid; place-items: center; color: var(--white); border: 7px solid var(--white); border-radius: 50%; background: var(--maroon); box-shadow: 0 5px 16px rgba(167,25,48,.18); font-weight: 700; }
    .approach-step:nth-child(3) .step-number { color: var(--navy); background: var(--gold-light); }
    .approach-step:nth-child(4) .step-number { background: var(--navy); }
    .step-content { padding: 7px 0 28px; border-bottom: 1px solid var(--line); }
    .approach-step:last-child .step-content { border-bottom: 0; }
    .step-content h3 { margin: 0 0 8px; color: var(--navy-dark); font-family: 'Playfair Display', Georgia, serif; font-size: 24px; }
    .step-content p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

    .leadership { background: linear-gradient(180deg, #f8fbfd, #fff); }
    .leadership-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .leader-card {
      position: relative;
      display: flex;
      flex-direction: column;
      overflow: visible;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 18px 44px rgba(9, 45, 80, .08);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .leader-card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(9, 45, 80, .14); }

    .leader-portrait {
      position: relative;
      padding: 24px 24px 0;
    }
    .portrait-frame {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: 20px 20px 20px 72px;
      background: linear-gradient(160deg, var(--navy-soft), #d8e7f1);
      border: 1px solid rgba(18, 59, 102, .08);
    }
    .leader-card:nth-child(3n+2) .portrait-frame {
      background: linear-gradient(160deg, #fbf4e7, #ecd7aa);
      border-radius: 20px 20px 72px 20px;
    }
    .leader-card:nth-child(3n+3) .portrait-frame {
      background: linear-gradient(160deg, #fbf1f3, #f2d3da);
    }
    .portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
    .portrait-frame svg { position: relative; z-index: 2; width: 100%; height: 100%; }

    .portrait-index {
      position: absolute;
      top: 40px;
      right: 38px;
      z-index: 3;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 70px;
      font-weight: 700;
      line-height: 1;
      color: rgba(255,255,255,.55);
      text-shadow: 0 2px 12px rgba(0,0,0,.08);
    }
    .portrait-role {
      position: absolute;
      left: 38px;
      bottom: 14px;
      z-index: 4;
      padding: 8px 14px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), #c52641);
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: 0 10px 22px rgba(167, 25, 48, .24);
    }
    .portrait-accent {
      position: absolute;
      top: 38px;
      left: 38px;
      width: 58px;
      height: 58px;
      z-index: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold));
      opacity: .55;
      box-shadow: 0 10px 26px rgba(214, 163, 60, .35);
    }

    .leader-info {
      padding: 28px 30px 32px;
      display: flex;
      flex-direction: column;
    }
    .leader-divider {
      width: 48px;
      height: 3px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--maroon), var(--gold));
      margin-bottom: 18px;
    }
    .leader-info h3 {
      margin: 0 0 8px;
      color: var(--navy-dark);
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.15;
    }
    .leader-qual {
      margin-bottom: 12px;
      color: var(--navy);
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 16px;
      font-weight: 600;
      font-style: italic;
    }
    .leader-spec {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
    }
    .leader-at {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 12px 14px;
      border-radius: 12px;
      background: var(--cream);
      border: 1px dashed rgba(18, 59, 102, .12);
      color: #6f4b57;
      font-size: 12.5px;
      font-weight: 600;
    }
    .leader-at .icon { width: 16px; height: 16px; color: var(--maroon); }
    .leader-signature {
      margin-top: 20px;
      height: 28px;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 28'><path d='M4 20 C 18 8, 30 22, 44 14 C 58 6, 72 22, 90 14 C 108 6, 124 22, 140 14 C 150 10, 156 14, 158 14' fill='none' stroke='%23a71930' stroke-width='1.5' stroke-linecap='round' opacity='.35'/></svg>") left center / auto 100% no-repeat;
      opacity: .85;
    }

    .facilities-preview { position: relative; overflow: hidden; background: var(--cream); }
    .facilities-preview::after { content: ''; position: absolute; right: -110px; top: -110px; width: 300px; height: 300px; border: 1px solid rgba(214,163,60,.32); border-radius: 50%; box-shadow: 0 0 0 46px rgba(214,163,60,.05), 0 0 0 92px rgba(214,163,60,.035); }
    .facility-head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 44px; }
    .facility-head .section-copy { max-width: 520px; margin: 0; }
    .facility-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .facility-card { padding: 27px 24px; border-radius: 18px; background: var(--white); box-shadow: 0 8px 28px rgba(16,50,78,.07); }
    .facility-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
    .facility-card-icon { width: 53px; height: 53px; display: grid; place-items: center; color: var(--navy); border-radius: 14px; background: var(--navy-soft); }
    .facility-card-icon .icon { width: 27px; height: 27px; }
    .facility-card-index { color: #c8d1d9; font-family: 'Playfair Display', Georgia, serif; font-size: 20px; }
    .facility-card h3 { margin: 0 0 9px; color: var(--navy-dark); font-size: 17px; }
    .facility-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
    .facility-note { position: relative; z-index: 2; margin: 25px 0 0; color: #7b858e; font-size: 12px; text-align: center; }

    .network-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 75px; align-items: center; }
    .network-panel { position: relative; min-height: 470px; padding: 38px; overflow: hidden; border-radius: 26px; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--navy-dark)); box-shadow: var(--shadow); }
    .network-panel::before { content: ''; position: absolute; inset: -40% -20%; opacity: .24; background: repeating-radial-gradient(circle at center, transparent 0 34px, rgba(255,255,255,.16) 35px 36px); transform: rotate(-18deg); }
    .network-map { position: relative; height: 100%; min-height: 390px; }
    .map-line { position: absolute; left: 18%; right: 17%; top: 50%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold)); transform: rotate(-12deg); }
    .map-point { position: absolute; width: 18px; height: 18px; border: 5px solid var(--white); border-radius: 50%; background: var(--maroon); box-shadow: 0 0 0 7px rgba(255,255,255,.1); }
    .map-point::after { content: attr(data-label); position: absolute; width: max-content; max-width: 145px; top: 23px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.86); font-size: 12px; font-weight: 700; text-align: center; }
    .map-point.one { left: 17%; top: 54%; }
    .map-point.two { left: 48%; top: 41%; background: var(--gold); }
    .map-point.three { right: 16%; top: 31%; }
    .network-summary { position: absolute; left: 24px; right: 24px; bottom: 20px; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.08); backdrop-filter: blur(7px); }
    .network-summary strong { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; }
    .network-summary span { color: rgba(255,255,255,.67); font-size: 12px; }
    .network-copy .section-copy { font-size: 17px; }
    .network-note { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
    .network-facts { margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .network-fact { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdff; }
    .network-fact strong { display: block; color: var(--maroon); font-family: 'Playfair Display', Georgia, serif; font-size: 29px; }
    .network-fact span { color: var(--muted); font-size: 13px; font-weight: 600; }

    .visit-cta { position: relative; overflow: hidden; padding: 80px 0 130px; background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
    .visit-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 50%, rgba(255,255,255,.12), transparent 22%), radial-gradient(circle at 85% 10%, rgba(214,163,60,.2), transparent 28%); }
    .cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
    .cta-copy { max-width: 700px; color: var(--white); }
    .cta-copy small { display: block; margin-bottom: 11px; color: var(--gold-light); font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
    .cta-copy h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(35px, 4vw, 54px); line-height: 1.12; }
    .cta-copy p { margin: 16px 0 0; color: rgba(255,255,255,.77); }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }
    .cta-actions .btn-primary { color: var(--navy-dark); background: var(--white); box-shadow: none; }
    .cta-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.45); background: transparent; }

    .site-footer { position: relative; margin-top: -60px; padding: 0 0 26px; color: rgba(255,255,255,.73); background: var(--navy-dark); }
    .footer-card { position: relative; z-index: 3; padding: 47px 48px 30px; border-radius: 22px 22px 0 0; background: var(--navy); box-shadow: 0 -12px 34px rgba(5,29,50,.15); }
    .footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .9fr 1.1fr; gap: 45px; }
    .footer-brand .brand-name { color: var(--white); }
    .footer-brand p { max-width: 310px; margin: 19px 0; font-size: 13.5px; }
    .footer-contact { display: flex; flex-wrap: wrap; gap: 9px; }
    .footer-contact a { padding: 9px 12px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; color: var(--white); font-size: 12px; }
    .footer-contact .icon { width: 16px; }
    .footer-column h3 { margin: 8px 0 20px; color: var(--white); font-family: 'Playfair Display', Georgia, serif; font-size: 18px; }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a, .footer-address { font-size: 13px; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-address { display: grid; gap: 13px; }
    .footer-address span, .footer-address a { display: flex; align-items: flex-start; gap: 9px; }
    .footer-address .icon { width: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--gold-light); }
    .footer-bottom { margin-top: 38px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11.5px; }
    .footer-legal { display: flex; gap: 22px; }
    .mobile-actions { display: none; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1100px) {
      .desktop-nav { display: none; }
      .nav-toggle, .mobile-nav { display: grid; }
      .mobile-nav { display: block; }
      .hero-grid { gap: 35px; }
      .art-orbit { width: 390px; height: 390px; }
      .hospital-art { width: 390px; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .story-grid, .approach-grid, .network-grid { gap: 55px; }
      .values-grid, .facility-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1.3fr .7fr .9fr; }
      .footer-column:last-child { grid-column: 1 / -1; }
    }

    @media (max-width: 820px) {
      .container { width: min(100% - 34px, 680px); }
      .section { padding: 78px 0; }
      .topbar-group:first-child { display: none; }
      .topbar-inner { justify-content: center; }
      .nav-shell { min-height: 74px; }
      .brand-mark { width: 61px; }
      .brand-name { font-size: 15px; }
      .mobile-nav { inset: 113px 0 auto; }
      .about-hero { min-height: 0; }
      .about-hero::before { display: none; }
      .hero-grid { grid-template-columns: 1fr; padding: 60px 0 80px; text-align: center; }
      .breadcrumb, .hero-actions, .hero-note { justify-content: center; }
      .hero-content h1, .hero-content p { margin-inline: auto; }
      .hero-art { min-height: 400px; margin-top: 10px; }
      .art-orbit { width: 375px; height: 375px; }
      .hospital-art { width: min(100%, 410px); }
      .art-label { left: 0; }
      .story-grid, .approach-grid, .network-grid { grid-template-columns: 1fr; }
      .story-visual { min-height: 530px; }
      .purpose-head, .facility-head, .cta-inner { align-items: flex-start; flex-direction: column; }
      .purpose-grid { grid-template-columns: 1fr; }
      .purpose-card { min-height: 0; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .approach-intro { position: static; }
      .leadership-grid { grid-template-columns: 1fr; }
      .network-panel { order: 2; }
      .network-copy { order: 1; }
      .cta-actions { flex: 0 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-column:last-child { grid-column: auto; }
    }

    @media (max-width: 560px) {
      body { padding-bottom: 63px; }
      .container { width: calc(100% - 28px); }
      .section { padding: 64px 0; }
      .section-label { margin-bottom: 12px; font-size: 10px; }
      .section-title { font-size: 34px; }
      .section-copy { margin-top: 16px; font-size: 15.5px; line-height: 1.68; }
      .topbar { min-height: 34px; }
      .topbar-group { gap: 14px; }
      .topbar-item { font-size: 11px; }
      .topbar-item:last-child { display: none; }
      .brand-mark { width: 50px; }
      .brand-name { font-size: 13px; }
      .brand-name small { font-size: 7px; }
      .nav-shell { min-height: 68px; }
      .mobile-nav { inset: 102px 0 auto; padding-inline: 17px; }
      .hero-grid { padding: 45px 0 58px; }
      .breadcrumb { margin-bottom: 18px; font-size: 11px; }
      .hero-content h1 { font-size: 42px; }
      .hero-content p { margin: 24px auto; font-size: 15.5px; line-height: 1.66; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .hero-note { align-items: flex-start; font-size: 11.5px; text-align: left; }
      .hero-art { min-height: 315px; }
      .art-orbit { width: 288px; height: 288px; }
      .hospital-art { width: 300px; padding: 22px 18px 16px; border-radius: 120px 120px 20px 20px; }
      .art-label { left: 3px; bottom: 12px; padding: 12px 14px; font-size: 11px; }
      .hospital-art::after { right: -8px; bottom: 48px; width: 38px; height: 38px; }
      .trust-strip { margin-top: -20px; }
      .trust-grid { grid-template-columns: 1fr; border-radius: 14px; }
      .trust-item { min-height: 96px; padding: 18px; border-right: 0; border-bottom: 1px solid var(--line); }
      .trust-item:last-child { border-bottom: 0; }
      .trust-icon { width: 44px; height: 44px; flex-basis: 44px; }
      .story-visual { min-height: 405px; }
      .story-frame { inset: 0 25px 46px 0; border-radius: 20px 105px 20px 20px; }
      .story-accent { width: 64px; height: 64px; right: 0; top: 55px; }
      .story-card { width: 92%; padding: 18px; }
      .story-card h3 { font-size: 18px; }
      .story-copy p { font-size: 15px; }
      .story-quote { padding: 19px; font-size: 17px; }
      .purpose-head { margin-bottom: 34px; }
      .purpose-card { padding: 27px 24px; }
      .purpose-card h3 { margin-top: 25px; font-size: 24px; }
      .values-grid, .facility-grid { grid-template-columns: 1fr; }
      .value-card { min-height: 0; }
      .center-head { margin-bottom: 35px; }
      .approach-grid { gap: 38px; }
      .approach-list::before { left: 27px; }
      .approach-step { grid-template-columns: 55px 1fr; gap: 15px; padding-bottom: 22px; }
      .step-number { width: 55px; height: 55px; border-width: 6px; font-size: 12px; }
      .step-content { padding-top: 3px; }
      .step-content h3 { font-size: 20px; }
      .leader-card { min-height: 0; grid-template-columns: 120px 1fr; }
      .leader-visual svg { width: 110px; }
      .leader-content { padding: 27px 20px; }
      .leader-content h3 { font-size: 21px; }
      .role-tag { font-size: 8px; }
      .facility-head { margin-bottom: 30px; }
      .network-panel { min-height: 400px; padding: 20px; }
      .network-map { min-height: 360px; }
      .map-point::after { max-width: 105px; font-size: 10px; }
      .network-summary { left: 12px; right: 12px; bottom: 12px; padding: 13px; }
      .network-summary strong { font-size: 16px; }
      .network-facts { grid-template-columns: 1fr 1fr; }
      .visit-cta { padding: 65px 0 105px; }
      .cta-copy h2 { font-size: 34px; }
      .cta-actions { width: 100%; flex-direction: column; }
      .cta-actions .btn { width: 100%; }
      .site-footer { margin-top: -45px; padding-bottom: 0; }
      .footer-card { padding: 35px 22px 25px; border-radius: 18px 18px 0 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 29px; }
      .footer-brand, .footer-column:last-child { grid-column: auto; }
      .footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
      .mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        height: 63px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        color: var(--white);
        background: var(--navy-dark);
        box-shadow: 0 -8px 24px rgba(5,29,50,.18);
      }
      .mobile-actions a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-right: 1px solid rgba(255,255,255,.12); font-size: 10px; font-weight: 600; }
      .mobile-actions a:last-child { border-right: 0; background: var(--maroon); }
      .mobile-actions .icon { width: 19px; height: 19px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }