﻿:root {
        --primary: #0e5aa7;
        --primary-dark: #0a4680;
        --secondary: #00a6a6;
        --accent: #41b883;
        --bg: #ffffff;
        --section-bg: #f7fafc;
        --soft-blue: #edf6ff;
        --soft-green: #f2fbf8;
        --text: #203047;
        --text-soft: #5c6b84;
        --emergency: #e53935;
        --line: #e2e9f2;
        --radius: 14px;
        --serif: "Fraunces", serif;
        --sans: "Inter", sans-serif;
        --mono: "IBM Plex Mono", monospace;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        color: var(--text);
        background: var(--bg);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }
      img {
        max-width: 100%;
        display: block;
        object-fit: cover;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      ul {
        list-style: none;
      }
      .wrap {
        max-width: 1480px;
        margin: 0 auto;
        padding: 0 32px;
      }
      .eyebrow {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--secondary);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--secondary);
        display: inline-block;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--serif);
        font-weight: 600;
        color: var(--text);
        letter-spacing: -0.01em;
      }
      h2 {
        font-size: clamp(28px, 3.4vw, 42px);
        font-weight: 500;
        line-height: 1.15;
      }
      .section-head {
        max-width: 640px;
        margin-bottom: 48px;
      }
      .section-head p {
        margin-top: 14px;
        color: var(--text-soft);
        font-size: 16.5px;
        max-width: 560px;
      }
      section {
        padding: 96px 0;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        border: 1.5px solid transparent;
        transition:
          transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1),
          box-shadow 0.28s ease,
          background 0.25s ease,
          color 0.25s ease,
          border-color 0.25s ease;
        white-space: nowrap;
      }
      .btn-primary {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 1px 2px rgba(14, 90, 167, 0.15);
      }
      .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(14, 90, 167, 0.28);
      }
      .btn-outline {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(6px);
      }
      .btn-outline:hover {
        background: #fff;
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(6, 20, 40, 0.22);
      }
      .btn-emergency {
        background: var(--emergency);
        color: #fff;
        box-shadow: 0 1px 2px rgba(229, 57, 53, 0.2);
      }
      .btn-emergency:hover {
        background: #c62828;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(229, 57, 53, 0.3);
      }
      .btn-ghost {
        background: transparent;
        color: var(--primary);
        border-color: var(--primary);
      }
      .btn-ghost:hover {
        background: var(--soft-blue);
        transform: translateY(-2px);
      }
      .btn:active {
        transform: translateY(0);
      }
      .btn:focus-visible {
        outline: 2px solid var(--secondary);
        outline-offset: 3px;
      }

      /* ---------- Reveal ---------- */
      .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition:
          opacity 0.9s cubic-bezier(0.16, 0.8, 0.24, 1),
          transform 0.9s cubic-bezier(0.16, 0.8, 0.24, 1);
        will-change: opacity, transform;
      }
      .reveal.in {
        opacity: 1;
        transform: none;
      }
      section {
        scroll-margin-top: 96px;
      }
      header.site {
        transition: box-shadow 0.3s ease;
      }
      header.site.scrolled {
        box-shadow: 0 6px 24px rgba(20, 40, 70, 0.08);
      }

      /* ---------- Vitals line signature motif ---------- */
      .vitals-line {
        width: 100%;
        height: 34px;
        display: block;
        overflow: visible;
      }
      .vitals-line path {
        fill: none;
        stroke-width: 1.6;
        stroke-dasharray: 600;
        stroke-dashoffset: 600;
        animation: draw 2.6s ease-out forwards;
        animation-play-state: paused;
      }
      .in .vitals-line path,
      .in.vitals-line path {
        animation-play-state: running;
      }
      @keyframes draw {
        to {
          stroke-dashoffset: 0;
        }
      }
      .divider-pulse {
        display: flex;
        align-items: center;
        gap: 18px;
        margin: 0 0 40px;
      }
      .divider-pulse .line-l,
      .divider-pulse .line-r {
        flex: 1;
        height: 1px;
        background: var(--line);
        transform: scaleX(0);
        transition: transform 1s cubic-bezier(0.16, 0.8, 0.24, 1) 0.3s;
      }
      .divider-pulse.in .line-l {
        transform: scaleX(1);
        transform-origin: left;
      }
      .divider-pulse.in .line-r {
        transform: scaleX(1);
        transform-origin: right;
      }
      .divider-pulse svg {
        flex-shrink: 0;
        width: 64px;
        height: 20px;
      }
      .divider-pulse svg path {
        stroke-dasharray: 140;
        stroke-dashoffset: 140;
        animation: draw 1.1s ease-out 0.4s forwards;
        animation-play-state: paused;
      }
      .divider-pulse.in svg path {
        animation-play-state: running;
      }

      /* ---------- Top bar ---------- */
      .topbar {
        background: var(--primary-dark);
        color: #fff;
        font-size: 13px;
        padding: 13px 0;
      }
      .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
      }
      .topbar .items {
        display: flex;
        gap: 26px;
        align-items: center;
        flex-wrap: wrap;
      }
      .topbar .items span {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #dcebfa;
      }
      .topbar .emergency-num {
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.02em;
      }
      .topbar .emergency-num svg {
        stroke: #ff8a80;
      }
      .topbar .pulse-dot {
        position: relative;
        display: inline-flex;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ff8a80;
        flex-shrink: 0;
      }
      .topbar .pulse-dot::after {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 1.5px solid #ff8a80;
        animation: pulse-ring 2.4s ease-out infinite;
      }
      @keyframes pulse-ring {
        0% {
          transform: scale(0.5);
          opacity: 0.9;
        }
        100% {
          transform: scale(1.9);
          opacity: 0;
        }
      }

      /* ---------- Header ---------- */
      header.site {
        position: sticky;
        top: 0;
        z-index: 50;
        background: #fff;
        border-bottom: 1px solid var(--line);
      }
      header.site .wrap.header-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 18px;
        min-height: 92px;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .header-brand {
        flex-shrink: 0;
      }
      .header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        position: relative;
      }
      .nav-panel {
        display: flex;
        justify-content: center;
        min-width: 0;
        width: 100%;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 11px;
      }
      .logo .mark {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
      }
      .logo .name {
        font-family: var(--serif);
        font-size: 21px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.1;
      }
      .logo .tag {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--secondary);
      }
      .logo img.brand {
        height: 52px;
        width: auto;
        display: block;
      }
      .logo.footer-logo img.brand {
        height: 56px;
        background: #fff;
        padding: 8px 14px;
        border-radius: 10px;
      }
      nav.main {
        width: 100%;
      }
      nav.main .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
      }
      nav.main .main-nav > li {
        position: relative;
      }
      nav.main .main-nav > li > a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text);
        position: relative;
        padding: 10px 11px;
        white-space: nowrap;
        transition: color 0.25s ease;
      }
      nav.main .main-nav > li > a::after {
        content: "";
        position: absolute;
        left: 11px;
        right: 11px;
        bottom: 4px;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
      }
      nav.main .main-nav > li > a:hover::after,
      nav.main .main-nav > li > a.active::after,
      nav.main .main-nav > li.current-menu-item > a::after,
      nav.main .main-nav > li.current-menu-ancestor > a::after {
        transform: scaleX(1);
      }
      nav.main .main-nav > li > a.active,
      nav.main .main-nav > li.current-menu-item > a,
      nav.main .main-nav > li.current-menu-ancestor > a {
        color: var(--primary);
      }
      nav.main .dropdown-caret {
        flex-shrink: 0;
        opacity: 0.7;
        transition: transform 0.25s ease;
      }
      nav.main .has-dropdown:hover > a .dropdown-caret,
      nav.main .has-dropdown:focus-within > a .dropdown-caret {
        transform: rotate(180deg);
      }
      nav.main .sub-menu {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        min-width: 260px;
        max-width: 320px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: 0 18px 40px rgba(20, 40, 70, 0.14);
        list-style: none;
        margin: 0;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
          opacity 0.25s ease,
          transform 0.25s ease,
          visibility 0.25s ease;
        z-index: 80;
      }
      nav.main .has-dropdown:hover > .sub-menu,
      nav.main .has-dropdown:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      nav.main .sub-menu li a {
        display: block;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        line-height: 1.45;
        transition: background 0.2s ease, color 0.2s ease;
      }
      nav.main .sub-menu li a:hover,
      nav.main .sub-menu li.current-menu-item > a {
        background: var(--soft-blue);
        color: var(--primary);
      }
      .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0;
      }
      .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text);
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .header-cta {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-shrink: 0;
      }
      .header-cta .btn {
        padding: 11px 18px;
        font-size: 13px;
      }

      /* ---------- Hero ---------- */
      .hero {
        position: relative;
        min-height: 88vh;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        color: #fff;
      }
      .hero .bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero .bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.08);
        animation: hero-settle 2.2s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
      }
      @keyframes hero-settle {
        to {
          transform: scale(1);
        }
      }
      .hero .bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(10, 30, 55, 0.15) 0%,
          rgba(9, 26, 49, 0.35) 55%,
          rgba(6, 18, 36, 0.88) 100%
        );
      }

      /* ---------- Back to top ---------- */
      .to-top {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(14, 90, 167, 0.32);
        cursor: pointer;
        z-index: 60;
        border: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
        transition:
          opacity 0.3s ease,
          transform 0.3s ease,
          background 0.25s ease;
      }
      .to-top.show {
        opacity: 1;
        pointer-events: auto;
        transform: none;
      }
      .to-top:hover {
        background: var(--primary-dark);
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-bottom: 64px;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 56px;
        align-items: end;
      }
      .hero .eyebrow {
        color: #bee3f5;
      }
      .hero .eyebrow::before {
        background: #bee3f5;
      }
      .hero h1 {
        font-size: clamp(38px, 5vw, 60px);
        line-height: 1.06;
        margin: 18px 0 20px;
        color: #fff;
        font-weight: 500;
        max-width: 640px;
      }
      .hero p.sub {
        font-size: 17.5px;
        color: #dce9f6;
        max-width: 520px;
        margin-bottom: 32px;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 30px;
      }
      .hero-strip {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
        font-size: 13.5px;
        color: #cfe1f1;
      }
      .hero-strip span {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .hero-strip strong {
        color: #fff;
        font-weight: 600;
      }

      /* Quick appointment card */
      .appt-card {
        background: #fff;
        color: var(--text);
        border-radius: 16px;
        padding: 30px 28px;
        box-shadow: 0 24px 60px rgba(6, 20, 40, 0.35);
      }
      .appt-card h3 {
        font-size: 19px;
        margin-bottom: 4px;
      }
      .appt-card p.small {
        font-size: 13.5px;
        color: var(--text-soft);
        margin-bottom: 20px;
      }
      .appt-card form {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .appt-card input,
      .appt-card select {
        width: 100%;
        padding: 12px 14px;
        border: 1.4px solid var(--line);
        border-radius: 8px;
        font-family: var(--sans);
        font-size: 14px;
        color: var(--text);
        background: var(--section-bg);
      }
      .appt-card input:focus,
      .appt-card select:focus {
        outline: none;
        border-color: var(--secondary);
        background: #fff;
      }
      .appt-card .row2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .appt-card button {
        margin-top: 4px;
      }

      /* ---------- Stats ---------- */
      .stats-band {
        background: var(--primary);
        color: #fff;
        padding: 56px 0;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
      }
      .stats-grid .stat {
        text-align: center;
        padding: 0 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
      }
      .stats-grid .stat:last-child {
        border-right: none;
      }
      .stats-grid .num {
        font-family: var(--serif);
        font-size: clamp(26px, 2.6vw, 38px);
        font-weight: 600;
      }
      .stats-grid .num .plus {
        color: var(--accent);
      }
      .stats-grid .label {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #bee3f5;
        margin-top: 8px;
      }
      .accred-row {
        display: flex;
        gap: 36px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.06em;
        color: #bee3f5;
      }

      /* ---------- About ---------- */
      .about {
        background: var(--bg);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 64px;
        align-items: center;
      }
      .about-media {
        position: relative;
      }
      .about-media img {
        border-radius: var(--radius);
        width: 100%;
        height: 520px;
        object-fit: cover;
      }
      .about-media .float-card {
        position: absolute;
        bottom: -28px;
        left: -28px;
        background: #fff;
        border-radius: 12px;
        padding: 20px 24px;
        box-shadow: 0 18px 40px rgba(20, 40, 70, 0.14);
        display: flex;
        gap: 14px;
        align-items: center;
        max-width: 270px;
      }
      .about-media .float-card .yrs {
        font-family: var(--serif);
        font-size: 30px;
        color: var(--primary);
        font-weight: 600;
      }
      .about-media .float-card p {
        font-size: 12.5px;
        color: var(--text-soft);
        line-height: 1.4;
      }
      .about-copy h2 {
        margin-bottom: 6px;
      }
      .about-copy p.lead {
        color: var(--text-soft);
        font-size: 16px;
        margin: 18px 0 28px;
      }
      .values-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 26px;
        margin-bottom: 32px;
      }
      .values-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .values-list .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        margin-top: 7px;
        flex-shrink: 0;
      }
      .values-list b {
        font-size: 14.5px;
        display: block;
        margin-bottom: 2px;
      }
      .values-list span {
        font-size: 13px;
        color: var(--text-soft);
      }
      .chairman-quote {
        background: var(--soft-blue);
        border-left: 3px solid var(--primary);
        border-radius: 0 10px 10px 0;
        padding: 22px 26px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .chairman-quote img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .chairman-quote p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 15.5px;
        color: var(--text);
        margin-bottom: 8px;
      }
      .chairman-quote .name {
        font-family: var(--sans);
        font-style: normal;
        font-size: 13px;
        color: var(--text-soft);
        font-weight: 600;
      }

      /* ---------- Specialities ---------- */
      .specialities {
        background: var(--section-bg);
      }
      .spec-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
      }
      .spec-card {
        background: #fff;
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--line);
        transition:
          box-shadow 0.3s ease,
          transform 0.3s ease;
      }
      .spec-card:hover {
        box-shadow: 0 20px 44px rgba(20, 40, 70, 0.12);
        transform: translateY(-4px);
      }
      .spec-card .img {
        height: 200px;
        overflow: hidden;
      }
      .spec-card .img img {
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
      }
      .spec-card:hover .img img {
        transform: scale(1.06);
      }
      .spec-card .body {
        padding: 24px 24px 26px;
      }
      .spec-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
      }
      .spec-card p {
        font-size: 13.8px;
        color: var(--text-soft);
        margin-bottom: 14px;
      }
      .spec-card .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 18px;
      }
      .spec-card .tags span {
        font-family: var(--mono);
        font-size: 10.5px;
        background: var(--soft-green);
        color: #1e7a5c;
        padding: 4px 9px;
        border-radius: 5px;
        letter-spacing: 0.02em;
      }
      .spec-card .links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--line);
        padding-top: 16px;
      }
      .spec-card .links a {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--primary);
      }
      .spec-card .links a.book {
        color: var(--accent);
      }

      /* ---------- Doctors ---------- */
      .doctors {
        background: var(--bg);
      }
      .doc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .doc-card {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        background: #fff;
        transition: box-shadow 0.3s ease;
      }
      .doc-card:hover {
        box-shadow: 0 18px 36px rgba(20, 40, 70, 0.1);
      }
      .doc-card .img {
        height: 250px;
        position: relative;
        overflow: hidden;
      }
      .doc-card .img img {
        width: 100%;
        height: 100%;
      }
      .doc-card .avail {
        position: absolute;
        top: 14px;
        right: 14px;
        background: rgba(65, 184, 131, 0.95);
        color: #fff;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.05em;
        padding: 5px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .doc-card .avail::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #fff;
      }
      .doc-card .info {
        padding: 18px 20px 20px;
      }
      .doc-card h4 {
        font-size: 16.5px;
        margin-bottom: 3px;
      }
      .doc-card .spec {
        font-size: 12.5px;
        color: var(--secondary);
        font-weight: 600;
        margin-bottom: 8px;
      }
      .doc-card .meta {
        font-size: 12.5px;
        color: var(--text-soft);
        margin-bottom: 14px;
        line-height: 1.5;
      }
      .doc-card .btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
      }

      /* ---------- Facilities ---------- */
      .facilities {
        background: var(--soft-blue);
      }
      .fac-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .fac-card {
        background: #fff;
        border-radius: 12px;
        padding: 26px 22px;
        text-align: left;
        border: 1px solid var(--line);
        transition:
          transform 0.25s ease,
          border-color 0.25s ease;
      }
      .fac-card:hover {
        transform: translateY(-3px);
        border-color: var(--secondary);
      }
      .fac-card .icon {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
      }
      .fac-card h4 {
        font-size: 15.5px;
        margin-bottom: 5px;
      }
      .fac-card p {
        font-size: 12.5px;
        color: var(--text-soft);
      }

      /* ---------- Journey ---------- */
      .journey {
        background: var(--bg);
      }
      .journey-track {
        position: relative;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0;
        margin-top: 10px;
      }
      .journey-track::before {
        content: "";
        position: absolute;
        top: 19px;
        left: 0;
        right: 0;
        height: 2px;
        background: repeating-linear-gradient(
          90deg,
          var(--line) 0 8px,
          transparent 8px 14px
        );
      }
      .journey-step {
        position: relative;
        padding-right: 14px;
      }
      .journey-step .node {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--mono);
        font-size: 13px;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
      }
      .journey-step:nth-child(odd) .node {
        border-color: var(--accent);
        color: var(--accent);
      }
      .journey-step h4 {
        font-size: 14.5px;
        margin-bottom: 6px;
      }
      .journey-step p {
        font-size: 12px;
        color: var(--text-soft);
        line-height: 1.5;
      }

      /* ---------- Trust ---------- */
      .trust {
        background: var(--soft-green);
      }
      .trust-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 60px;
        align-items: start;
      }
      .testi-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 30px 32px;
        border: 1px solid var(--line);
        margin-bottom: 20px;
      }
      .testi-card .stars {
        color: #f5a623;
        font-size: 14px;
        margin-bottom: 14px;
        letter-spacing: 2px;
      }
      .testi-card p.quote {
        font-family: var(--serif);
        font-size: 17px;
        font-style: italic;
        color: var(--text);
        margin-bottom: 18px;
        line-height: 1.5;
      }
      .testi-card .who {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testi-card .who img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
      }
      .testi-card .who b {
        font-size: 13.5px;
        display: block;
      }
      .testi-card .who span {
        font-size: 12px;
        color: var(--text-soft);
      }
      .trust-side {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .badge-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .badge {
        background: #fff;
        border-radius: 12px;
        padding: 22px;
        text-align: center;
        border: 1px solid var(--line);
      }
      .badge .g {
        font-family: var(--serif);
        font-size: 26px;
        color: var(--primary);
        font-weight: 600;
      }
      .badge .l {
        font-family: var(--mono);
        font-size: 10.5px;
        color: var(--text-soft);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 4px;
      }
      .insurance-box {
        background: #fff;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid var(--line);
      }
      .insurance-box h4 {
        font-size: 14px;
        margin-bottom: 14px;
      }
      .insurance-box .logos {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .insurance-box .logos span {
        font-family: var(--mono);
        font-size: 11px;
        background: var(--section-bg);
        padding: 8px 12px;
        border-radius: 6px;
        color: var(--text-soft);
      }

      /* ---------- CTA ---------- */
      .cta-band {
        background: linear-gradient(
          120deg,
          var(--primary-dark),
          var(--primary)
        );
        color: #fff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      .cta-band .wrap {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }
      .cta-band h2 {
        color: #fff;
        max-width: 520px;
      }
      .cta-band .eyebrow {
        color: #9fd4e8;
      }
      .cta-band .eyebrow::before {
        background: #9fd4e8;
      }
      .cta-band .actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .cta-band .vitals-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0.18;
        animation: drift 14s ease-in-out infinite alternate;
      }
      @keyframes drift {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-24px);
        }
      }

      /* ---------- Contact ---------- */
      .contact {
        background: var(--section-bg);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
      }
      .contact-info .item {
        display: flex;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
      }
      .contact-info .item:last-child {
        border-bottom: none;
      }
      .contact-info .ic {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--soft-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .contact-info .item.em .ic {
        background: #fdecea;
      }
      .contact-info h4 {
        font-size: 14.5px;
        margin-bottom: 3px;
      }
      .contact-info p {
        font-size: 13.5px;
        color: var(--text-soft);
      }
      .contact-info .item.em p {
        color: var(--emergency);
        font-weight: 700;
        font-size: 15px;
      }
      .map-box {
        border-radius: var(--radius);
        overflow: hidden;
        height: 230px;
        margin-top: 26px;
        border: 1px solid var(--line);
      }
      .contact-form {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 34px;
      }
      .contact-form h3 {
        font-size: 20px;
        margin-bottom: 6px;
      }
      .contact-form p.small {
        font-size: 13.5px;
        color: var(--text-soft);
        margin-bottom: 22px;
      }
      .contact-form .row2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
      }
      .contact-form input,
      .contact-form select,
      .contact-form textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1.4px solid var(--line);
        border-radius: 8px;
        font-family: var(--sans);
        font-size: 14px;
        margin-bottom: 14px;
        background: var(--section-bg);
        color: var(--text);
      }
      .contact-form textarea {
        resize: vertical;
        min-height: 90px;
      }
      .contact-form input:focus,
      .contact-form select:focus,
      .contact-form textarea:focus {
        outline: none;
        border-color: var(--secondary);
        background: #fff;
      }

      /* ---------- Footer ---------- */
      footer {
        background: #0b2a4a;
        color: #b9cce0;
        padding: 64px 0 26px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
      }
      footer .logo .name {
        color: #fff;
      }
      footer .fdesc {
        font-size: 13.5px;
        margin-top: 14px;
        line-height: 1.7;
        max-width: 280px;
        color: #9cb4ce;
      }
      footer h5 {
        font-family: var(--mono);
        color: #fff;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 18px;
      }
      footer ul li {
        margin-bottom: 11px;
        font-size: 13.5px;
      }
      footer ul li a:hover {
        color: #fff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        font-size: 12.5px;
        color: #7e97b3;
        flex-wrap: wrap;
        gap: 10px;
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
          scroll-behavior: auto !important;
        }
      }

      /* ---------- Responsive ---------- */
      @media (max-width: 1080px) {
        .hero-grid {
          grid-template-columns: 1fr;
        }
        .appt-card {
          max-width: 440px;
        }
        .stats-grid {
          grid-template-columns: repeat(3, 1fr);
          row-gap: 28px;
        }
        .stats-grid .stat:nth-child(3) {
          border-right: none;
        }
        .about-grid,
        .trust-grid,
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .spec-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .doc-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .fac-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .journey-track {
          grid-template-columns: repeat(4, 1fr);
          row-gap: 30px;
        }
        .journey-track::before {
          display: none;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 1280px) {
        nav.main .main-nav > li > a {
          font-size: 12.5px;
          padding: 10px 8px;
        }
        .header-cta .btn {
          padding: 10px 14px;
          font-size: 12px;
        }
      }
      @media (max-width: 1080px) {
        header.site .wrap.header-wrap {
          grid-template-columns: auto 1fr auto;
        }
        .header-nav {
          justify-content: flex-end;
        }
        .nav-toggle {
          display: inline-flex;
          margin-left: auto;
        }
        .nav-panel {
          position: fixed;
          inset: 0;
          top: 0;
          background: rgba(6, 18, 36, 0.45);
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transition: opacity 0.25s ease, visibility 0.25s ease;
          z-index: 120;
          justify-content: flex-end;
        }
        .nav-panel.is-open {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
        }
        nav.main {
          width: min(360px, 88vw);
          height: 100%;
          background: #fff;
          border-left: 1px solid var(--line);
          overflow-y: auto;
          transform: translateX(100%);
          transition: transform 0.3s ease;
        }
        .nav-panel.is-open nav.main {
          transform: translateX(0);
        }
        nav.main .main-nav {
          flex-direction: column;
          align-items: stretch;
          gap: 0;
          padding: 88px 0 24px;
        }
        nav.main .main-nav > li > a {
          white-space: normal;
          padding: 14px 22px;
          justify-content: space-between;
        }
        nav.main .main-nav > li > a::after {
          display: none;
        }
        nav.main .sub-menu {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          border: none;
          border-radius: 0;
          max-width: none;
          min-width: 0;
          padding: 0 0 8px;
          display: none;
          background: var(--section-bg);
        }
        nav.main .has-dropdown.is-open > .sub-menu {
          display: block;
        }
        nav.main .sub-menu li a {
          padding: 10px 22px 10px 34px;
        }
      }
      @media (max-width: 640px) {
        .wrap {
          padding: 0 20px;
        }
        section {
          padding: 64px 0;
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .spec-grid,
        .doc-grid,
        .fac-grid {
          grid-template-columns: 1fr;
        }
        .journey-track {
          grid-template-columns: repeat(2, 1fr);
        }
        .about-media .float-card {
          position: static;
          margin-top: -40px;
          margin-left: 16px;
          margin-right: 16px;
        }
        .cta-band .wrap {
          flex-direction: column;
          align-items: flex-start;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .header-cta .btn:first-child {
          display: none;
        }
      }
