/* =============================================================================
   Central Hospital — Website styles  (forks the UI-kit styles, extends for the
   full multi-page marketing site). Builds on ../tokens.css. Prefix: ch-
   ============================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.ch-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.ch-eyebrow { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--rose); margin: 0 0 16px; }
.ch-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Photo helper -----------------------------------------------------
   .ch-photo is a brand-tinted panel; the <img> sits on top. If the image fails
   (or while loading) the warm gradient + mark shows, so nothing ever looks broken.
   --------------------------------------------------------------------------- */
.ch-photo { position: relative; overflow: hidden; background:
  linear-gradient(150deg, var(--tint-rose) 0%, var(--pale-teal) 70%, #dcebe9 100%);
  isolation: isolate; }
.ch-photo::after { content: ""; position: absolute; inset: 0; background:
  url('logos/icon-white.png') no-repeat center / 42%; opacity: .14; z-index: 0; }
.ch-photo > img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; transition: opacity .6s var(--ease); }
.ch-photo > img:not([data-loaded]) { opacity: 0; }

/* ---- Buttons ---- */
.ch-btn { font-family: var(--font-display); font-size: 15px; font-weight: 600; border-radius: var(--radius-pill); padding: 13px 26px;
  border: 1px solid transparent; cursor: pointer; transition: all var(--dur) var(--ease);
  display: inline-flex; align-items: center; gap: 9px; line-height: 1; text-decoration: none; white-space: nowrap; }
.ch-btn:active { transform: translateY(0); }
.ch-btn--primary { background: var(--teal); color: #fff; }
.ch-btn--primary:hover { background: var(--teal-700); box-shadow: var(--shadow-md); }
.ch-btn--secondary { background: var(--burgundy); color: #fff; }
.ch-btn--secondary:hover { background: var(--burgundy-700); box-shadow: var(--shadow-md); }
.ch-btn--tonal { background: var(--tint-teal); color: var(--teal); }
.ch-btn--tonal:hover { background: #b9dedc; }
.ch-btn--ghost { background: transparent; color: var(--teal); border-color: var(--line); }
.ch-btn--ghost:hover { border-color: var(--teal); background: rgba(10,82,89,.05); }
.ch-btn--white { background:#fff; color: var(--teal); }
.ch-btn--white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ch-btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.ch-btn[disabled] { opacity: .45; cursor: not-allowed; }
.ch-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ---- Header ---- */
.ch-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.ch-header__bar { display: flex; align-items: center; gap: 30px; height: 78px; }
.ch-header__logo { height: 36px; cursor: pointer; }
.ch-nav { display: flex; gap: 28px; margin-left: 6px; }
.ch-nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); text-decoration: none; cursor: pointer;
  transition: color var(--dur) var(--ease); position: relative; }
.ch-nav a:hover, .ch-nav a.is-active { color: var(--teal); }
.ch-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -27px; height: 2px;
  background: var(--teal); border-radius: 2px; }
.ch-header__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.ch-header__phone { display: flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 700; font-size: 14px; color: var(--teal); text-decoration: none; }
.ch-header__phone small { display:block; font-family: var(--font-sans); font-size: 10.5px; font-weight: 600; color: var(--ink-3);
  letter-spacing:.06em; text-transform: uppercase; }
.ch-header__menu { display: none; width: 44px; height: 44px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: #fff; color: var(--ink); align-items: center; justify-content: center; cursor: pointer; }
@media (max-width: 940px){
  .ch-nav, .ch-header__phone { display: none; }
  .ch-header__menu { display: flex; }
  .ch-header__bar { height: 68px; gap: 14px; }
}

/* ---- Mobile drawer ---- */
.ch-drawer { position: fixed; inset: 0; z-index: 70; display: none; }
.ch-drawer.open { display: block; }
.ch-drawer__scrim { position: absolute; inset: 0; background: rgba(14,42,45,.4); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  animation: chfade var(--dur) var(--ease); }
.ch-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: #fff;
  box-shadow: var(--shadow-lg); padding: 22px; display: flex; flex-direction: column; gap: 6px;
  animation: chslide var(--dur) var(--ease); }
@keyframes chslide { from { transform: translateX(30px); opacity: .4; } }
.ch-drawer__top { display: flex; align-items: center; margin-bottom: 14px; }
.ch-drawer__top img { height: 32px; }
.ch-drawer__close { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ch-drawer a { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); text-decoration: none;
  padding: 14px 12px; border-radius: var(--radius-md); }
.ch-drawer a:hover { background: var(--canvas-cool); color: var(--teal); }
.ch-drawer__cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line-2); }

/* ---- Section scaffolding ---- */
.ch-sec { padding: 96px 0; }
.ch-sec--cool { background: var(--canvas-cool); }
.ch-sec--sand { background: var(--sand); }
.ch-sec--teal { background: var(--teal); }
.ch-sec__head { max-width: 660px; margin-bottom: 52px; }
.ch-sec__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.ch-sec h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: var(--lh-snug); letter-spacing: var(--tracking-tight);
  font-weight: 700; color: var(--ink); margin: 0 0 16px; text-wrap: balance; }
.ch-sec__head p { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); margin: 0; }
.ch-em { color: var(--burgundy); }
.ch-em-teal { color: var(--teal); }

/* =============================================================================
   HERO — shared
   ============================================================================= */
.ch-hero { padding: 76px 0 92px; position: relative; }
.ch-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 1.5rem + 3.2vw, 4rem);
  line-height: 1.04; letter-spacing: var(--tracking-tight); font-weight: 700; color: var(--teal);
  margin: 0 0 22px; text-wrap: balance; }
.ch-hero__lead { font-size: var(--fs-lead); line-height: 1.58; color: var(--ink-2); margin: 0 0 32px; max-width: 32em; }
.ch-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* avatar stack + caption */
.ch-avstack { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.ch-avstack__imgs { display: flex; }
.ch-avstack__imgs .a { width: 46px; height: 46px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -14px;
  overflow: hidden; background: var(--pale-teal); box-shadow: var(--shadow-xs); }
.ch-avstack__imgs .a:first-child { margin-left: 0; }
.ch-avstack__imgs .a img { width: 100%; height: 100%; object-fit: cover; }
.ch-avstack__cap .n { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.ch-avstack__cap .s { font-size: 13px; color: var(--ink-3); }

/* floating cards over a photo */
.ch-floatcard { position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 15px 18px; display: flex; align-items: center; gap: 13px;
  border: 1px solid rgba(255,255,255,.6); }
.ch-floatcard .ic { width: 42px; height: 42px; border-radius: 13px; background: var(--tint-teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.ch-floatcard.rose .ic { background: var(--tint-rose); color: var(--burgundy); }
.ch-floatcard .t { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.ch-floatcard .s { font-size: 12px; color: var(--ink-3); }

/* ---- Hero A : photo-led, warm white ---- */
.heroA__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.heroA__photo { aspect-ratio: 1/1; border-radius: 40px 40px 40px 120px; box-shadow: var(--shadow-lg); }
.heroA .fc-top { top: 30px; right: -18px; }
.heroA .fc-bot { left: -26px; bottom: 40px; }
@media (max-width: 940px){ .heroA__grid { grid-template-columns: 1fr; gap: 44px; } .heroA__visual { order: -1; } }

/* ---- Hero B : deep teal immersive ---- */
.heroB { background: var(--teal); color: #fff; overflow: hidden; }
.heroB::before { content:""; position:absolute; right:-120px; top:-120px; width: 460px; height: 460px;
  background: url('logos/icon-white.png') no-repeat center / contain; opacity: .07; }
.heroB__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.heroB h1 { color: #fff; }
.heroB .ch-eyebrow { color: var(--pale-teal); }
.heroB .ch-hero__lead { color: rgba(255,255,255,.84); }
.heroB__photo { aspect-ratio: 5/6; border-radius: var(--radius-xl); box-shadow: 0 30px 70px -28px rgba(0,0,0,.5); }
.heroB .fc-top { top: 28px; left: -22px; }
.heroB__stats { display: flex; gap: 30px; margin-top: 40px; }
.heroB__stat .n { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.heroB__stat .l { font-size: 13px; color: var(--pale-teal); margin-top: 2px; }
.heroB__sep { width: 1px; background: rgba(255,255,255,.22); }
@media (max-width: 940px){ .heroB__grid { grid-template-columns: 1fr; gap: 40px; } .heroB__visual { order: -1; } }

/* ---- Hero C : editorial split, cream ---- */
.heroC { background: var(--sand); }
.heroC__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.heroC h1 { font-size: clamp(2.6rem, 1.4rem + 4vw, 4.6rem); color: var(--ink); }
.heroC__collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 18px; }
.heroC__tall { grid-row: 1 / 3; aspect-ratio: 3/5; border-radius: 200px 200px 26px 26px; box-shadow: var(--shadow-lg); }
.heroC__small { aspect-ratio: 1/1; border-radius: 26px; box-shadow: var(--shadow-md); }
.heroC__stat { background: var(--burgundy); color: #fff; border-radius: 26px; padding: 22px; display: flex;
  flex-direction: column; justify-content: center; }
.heroC__stat .n { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.heroC__stat .l { font-size: 13.5px; color: rgba(255,255,255,.82); margin-top: 8px; line-height: 1.4; }
@media (max-width: 940px){ .heroC__grid { grid-template-columns: 1fr; gap: 40px; } }

/* =============================================================================
   HERO — A×C  (Style C's editorial collage in Style A's warm-white/teal palette)
     · background: warm white (--canvas)   was C's cream --sand
     · headline:   teal (--teal)            was C's soft black --ink
     · stat panel: teal (--teal)            was C's solid burgundy
   Burgundy is kept only as the emphasis word; rose for the eyebrow — A's rhythm.
   ============================================================================= */
.heroAC { background: var(--canvas); padding: 84px 0 96px; }
.heroAC__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.heroAC h1 { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 1.4rem + 4vw, 4.6rem); line-height: 1.02;
  letter-spacing: var(--tracking-tight); color: var(--teal); margin: 0 0 24px; text-wrap: balance; }
.heroAC h1 .ch-em { color: var(--burgundy); }
.heroAC__lead { font-size: var(--fs-lead); line-height: 1.58; color: var(--ink-2); margin: 0 0 34px; max-width: 30em; }
.heroAC__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.heroAC__collage { position: relative; display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 18px; min-width: 0; }
.heroAC__tall { grid-row: 1 / 3; aspect-ratio: 3/5; border-radius: 200px 200px 26px 26px; box-shadow: var(--shadow-lg); min-width: 0; }
.heroAC__small { aspect-ratio: 1/1; border-radius: 26px; box-shadow: var(--shadow-md); min-width: 0; }
.ch-logomark { position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--tint-teal) 0%, var(--pale-teal) 62%, #eaf4f3 100%); }
.ch-logomark__ring { position: absolute; width: 68%; aspect-ratio: 1/1; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(10,82,89,0) 0%, rgba(10,82,89,.08) 50%, rgba(10,82,89,.55) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  animation: chLogoRing 9s linear infinite; }
.ch-logomark__icon { width: 42%; position: relative; z-index: 1; animation: chLogoPulse 3.6s var(--ease) infinite; }
@keyframes chLogoRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes chLogoPulse { 0%, 100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.06); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .ch-logomark__ring, .ch-logomark__icon { animation: none; } }
.heroAC__stat { background: var(--teal); color: #fff; border-radius: 26px; padding: 24px;
  display: flex; flex-direction: column; justify-content: center; }
.heroAC__stat .n { font-family: var(--font-display); font-size: 46px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.heroAC__stat .l { font-size: 13.5px; color: var(--pale-teal); margin-top: 10px; line-height: 1.45; }
@media (max-width: 940px){
  .heroAC { padding: 56px 0 72px; }
  .heroAC__grid { grid-template-columns: 1fr; gap: 44px; }
}

/* =============================================================================
   TRUST STRIP
   ============================================================================= */
.ch-trust { background: var(--surface); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.ch-trust__row { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; flex-wrap: wrap; }
.ch-trust__item { display: flex; align-items: center; gap: 13px; }
.ch-trust__item .ic { color: var(--teal); display: flex; }
.ch-trust__item .t { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.ch-trust__item .s { font-size: 12.5px; color: var(--ink-3); }

/* =============================================================================
   DEPARTMENTS GRID
   ============================================================================= */
.ch-depts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ch-dept { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); cursor: pointer;
  text-align: left; text-decoration: none; font: inherit; color: inherit; }
.ch-dept:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ch-dept__ic { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; }
.ch-dept h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); margin: 0 0 9px; }
.ch-dept p { font-size: 14.5px; line-height: 1.58; color: var(--ink-2); margin: 0 0 18px; }
.ch-dept__link { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px; }
.ch-dept__link i { transition: transform var(--dur) var(--ease); }
.ch-dept:hover .ch-dept__link i { transform: translateX(3px); }
@media (max-width: 940px){ .ch-depts { grid-template-columns: 1fr; } }

/* =============================================================================
   WHY US
   ============================================================================= */
.ch-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.ch-why__item .ic { width: 50px; height: 50px; border-radius: 15px; background: var(--tint-rose); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ch-why__item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.ch-why__item p { font-size: 14.5px; line-height: 1.58; color: var(--ink-2); margin: 0; }
@media (max-width: 940px){ .ch-why { grid-template-columns: 1fr 1fr; gap: 30px 22px; } }

/* =============================================================================
   DOCTORS
   ============================================================================= */
.ch-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ch-docs--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px){ .ch-docs--two { grid-template-columns: 1fr; } }
.ch-doc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  display: flex; gap: 18px; align-items: center; }
.ch-doc__av { width: 72px; height: 72px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 23px; overflow: hidden; }
.ch-doc__av img { width: 100%; height: 100%; object-fit: cover; }
.ch-doc h4 { font-family: var(--font-display); font-size: 17.5px; font-weight: 600; margin: 0 0 3px; color: var(--ink); }
.ch-doc .sp { font-size: 13.5px; font-weight: 600; color: var(--rose); margin: 0 0 6px; }
.ch-doc .q { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.45; }
@media (max-width: 940px){ .ch-docs { grid-template-columns: 1fr; } }

/* =============================================================================
   CTA BAND
   ============================================================================= */
.ch-cta { background: var(--teal); border-radius: var(--radius-xl); padding: 60px; text-align: center;
  position: relative; overflow: hidden; }
.ch-cta h2 { font-family: var(--font-display); color: #fff; font-size: var(--fs-h2); margin: 0 0 12px;
  letter-spacing: var(--tracking-tight); }
.ch-cta p { color: rgba(255,255,255,.82); font-size: var(--fs-lead); margin: 0 0 30px; }
.ch-cta__mark { position: absolute; left: -50px; top: -50px; width: 240px; opacity: .12; }
.ch-cta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =============================================================================
   FOOTER
   ============================================================================= */
.ch-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 68px 0 34px; }
.ch-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.ch-footer__grid > * { min-width: 0; }
.ch-footer__logo { height: 34px; margin-bottom: 18px; }
.ch-footer p { font-size: 14px; line-height: 1.65; margin: 0 0 8px; }
.ch-footer h5 { color: #fff; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 16px; }
.ch-footer a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; display: block; margin-bottom: 10px;
  transition: color var(--dur) var(--ease); cursor: pointer; }
.ch-footer a:hover { color: #fff; }
.ch-footer__emerg { background: var(--burgundy); color: #fff; border-radius: var(--radius-md); padding: 14px 18px; margin-top: 6px; }
.ch-footer__emerg .l { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.ch-footer__emerg .n { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.ch-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 940px){ .ch-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 420px){ .ch-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* =============================================================================
   BOOKING MODAL
   ============================================================================= */
.ch-modal__scrim { position: fixed; inset: 0; background: rgba(14,42,45,.42); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; z-index: 80; padding: 20px; animation: chfade var(--dur) var(--ease); }
.ch-modal { background: var(--surface); border-radius: var(--radius-xl); width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg); overflow: hidden; animation: chrise var(--dur) var(--ease); }
@keyframes chrise { from { opacity: 0; transform: translateY(14px); } }
.ch-modal__head { padding: 24px 28px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 14px; }
.ch-modal__head h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin: 0; }
.ch-modal__head .sub { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.ch-modal__close { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ch-modal__close:hover { background: var(--canvas-cool); }
.ch-modal__body { padding: 26px 28px; }
.ch-steps { display: flex; gap: 8px; padding: 16px 28px 0; }
.ch-steps__dot { height: 4px; flex: 1; border-radius: 2px; background: var(--line); transition: background var(--dur) var(--ease); }
.ch-steps__dot.on { background: var(--teal); }
.ch-opt { width: 100%; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 15px 16px; margin-bottom: 11px; cursor: pointer; display: flex; align-items: center; gap: 13px;
  transition: all var(--dur) var(--ease); }
.ch-opt:hover { border-color: var(--teal); background: rgba(10,82,89,.03); }
.ch-opt.sel { border-color: var(--teal); background: var(--tint-teal); }
.ch-opt .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--tint-teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.ch-opt.sel .ic { background: #fff; }
.ch-opt .t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.ch-opt .s { font-size: 12.5px; color: var(--ink-3); }
.ch-opt .chk { margin-left: auto; color: var(--teal); opacity: 0; display: flex; }
.ch-opt.sel .chk { opacity: 1; }
.ch-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.ch-slot { padding: 12px 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; text-align: center;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all var(--dur) var(--ease); }
.ch-slot:hover { border-color: var(--teal); }
.ch-slot.sel { background: var(--teal); color: #fff; border-color: var(--teal); }
.ch-field { margin-bottom: 16px; }
.ch-field label { font-size: 13px; font-weight: 600; color: var(--ink-2); display: block; margin-bottom: 7px; }
.ch-input { width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px 14px; }
.ch-input:focus { outline: none; border-color: var(--teal); box-shadow: var(--shadow-focus); }
.ch-modal__foot { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 22px; }
.ch-confirm { text-align: center; padding: 14px 0 6px; }
.ch-confirm__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.ch-confirm h3 { font-family: var(--font-display); font-size: 21px; margin: 0 0 8px; color: var(--ink); }
.ch-confirm p { color: var(--ink-2); margin: 0 0 6px; font-size: 15px; }
.ch-summary { background: var(--canvas-cool); border-radius: var(--radius-md); padding: 16px 18px; margin: 18px 0; text-align: left; }
.ch-summary__row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.ch-summary__row .k { color: var(--ink-3); }
.ch-summary__row .v { color: var(--ink); font-weight: 600; }

/* reduce motion */
@media (prefers-reduced-motion: reduce){ * { animation: none !important; transition: none !important; } html{scroll-behavior:auto;} }
@keyframes chfade { from { opacity: 0; } }

/* =============================================================================
   PAGE HERO  (interior pages — About, Departments, etc.) — A×C palette
   ============================================================================= */
.ch-pagehero { background: var(--canvas); padding: 72px 0 56px; }
.ch-pagehero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.ch-pagehero.solo .ch-pagehero__grid { grid-template-columns: 1fr; max-width: 760px; }
.ch-pagehero h1 { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.8rem); line-height: 1.04; letter-spacing: var(--tracking-tight);
  color: var(--teal); margin: 0 0 22px; text-wrap: balance; }
.ch-pagehero h1 .ch-em { color: var(--burgundy); }
.ch-pagehero__lead { font-size: var(--fs-lead); line-height: 1.58; color: var(--ink-2); margin: 0; max-width: 34em; }
.ch-pagehero__photo { aspect-ratio: 4/3; border-radius: 32px 32px 32px 96px; box-shadow: var(--shadow-lg); }
@media (max-width: 940px){ .ch-pagehero__grid { grid-template-columns: 1fr; gap: 40px; } .ch-pagehero__visual { order: -1; } }

/* ---- Story split (text + collage) ---- */
.ch-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ch-split > * { min-width: 0; }
.ch-split.rev .ch-split__media { order: -1; }
.ch-split__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.ch-split__media .tall { grid-row: 1 / 3; aspect-ratio: 3/4; border-radius: 26px; box-shadow: var(--shadow-lg); }
.ch-split__media .sq { aspect-ratio: 1/1; border-radius: 26px; box-shadow: var(--shadow-md); }
.ch-split__media .panel { background: var(--tint-teal); color: var(--teal); border-radius: 26px; padding: 22px;
  display: flex; flex-direction: column; justify-content: center; }
.ch-split__media .panel .n { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; }
.ch-split__media .panel .l { font-size: 13px; margin-top: 8px; line-height: 1.4; color: var(--teal); }
.ch-pulsecard { position: relative; aspect-ratio: 16/10; border-radius: 26px; background: var(--tint-rose);
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ch-pulsecard__ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--rose); opacity: 0;
  animation: chPulseRing 3.6s var(--ease) infinite; }
.ch-pulsecard__ring.r1 { width: 90px; height: 90px; animation-delay: 0s; }
.ch-pulsecard__ring.r2 { width: 90px; height: 90px; animation-delay: 1.2s; }
.ch-pulsecard__ring.r3 { width: 90px; height: 90px; animation-delay: 2.4s; }
.ch-pulsecard__ic { position: relative; z-index: 1; width: 76px; height: 76px; border-radius: 50%;
  background: var(--surface); color: var(--burgundy); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); animation: chPulseIc 3.6s var(--ease) infinite; }
@keyframes chPulseRing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(3.1); opacity: 0; } }
@keyframes chPulseIc { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce){ .ch-pulsecard__ring, .ch-pulsecard__ic { animation: none; } }
.ch-cuddle { position: relative; aspect-ratio: 16/10; border-radius: 26px; background: var(--tint-rose);
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ch-cuddle__glow { position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(177,110,129,.28), rgba(177,110,129,0) 70%);
  animation: chCuddleGlow 4.5s var(--ease) infinite; }
.ch-cuddle__baby { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 50%;
  background: var(--surface); color: var(--burgundy); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); animation: chCuddleBaby 4.5s var(--ease) infinite; }
.ch-cuddle__hand { position: absolute; width: 110px; height: 46px; border-radius: var(--radius-pill);
  background: var(--rose); opacity: .85; }
.ch-cuddle__hand.left { transform: translateX(-85px) rotate(-6deg); }
.ch-cuddle__hand.right { transform: translateX(85px) rotate(6deg); }
.ch-prose h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight); font-weight: 700; color: var(--ink); margin: 0 0 18px; text-wrap: balance; }
.ch-prose p { font-size: var(--fs-lead); line-height: 1.62; color: var(--ink-2); margin: 0 0 16px; }
.ch-prose p:last-child { margin-bottom: 0; }
@media (max-width: 940px){ .ch-split { grid-template-columns: 1fr; gap: 40px; } .ch-split.rev .ch-split__media { order: 0; } }

/* ---- Values / facilities tiles ---- */
.ch-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ch-tiles.four { grid-template-columns: repeat(4, 1fr); }
.ch-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.ch-tile.photo { padding: 0; overflow: hidden; }
.ch-tile.photo .ch-tile__media { aspect-ratio: 16/10; border-radius: 0; }
.ch-tile.photo .ch-tile__body { padding: 24px 26px 28px; }
.ch-tile.photo .ch-tile__ic { margin-top: 0; }
.ch-tile__ic { width: 50px; height: 50px; border-radius: 15px; background: var(--tint-teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ch-tile.rose .ch-tile__ic { background: var(--tint-rose); color: var(--burgundy); }
.ch-tile h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.ch-tile p { font-size: 14.5px; line-height: 1.58; color: var(--ink-2); margin: 0; }
@media (max-width: 940px){ .ch-tiles, .ch-tiles.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .ch-tiles, .ch-tiles.four { grid-template-columns: 1fr; } }

/* ---- Stat band (on teal) ---- */
.ch-statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ch-statband__item { text-align: center; }
.ch-statband__item .n { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: #fff; line-height: 1;
  letter-spacing: -.02em; }
.ch-statband__item .l { font-size: 14px; color: var(--pale-teal); margin-top: 10px; }
.ch-sec--teal h2, .ch-sec--teal .ch-eyebrow { color: #fff; }
.ch-sec--teal .ch-eyebrow { color: var(--pale-teal); }
@media (max-width: 620px){ .ch-statband { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* =============================================================================
   DEPARTMENTS PAGE
   ============================================================================= */
/* sticky quick-nav pills */
.ch-deptnav { background: var(--surface); border-bottom: 1px solid var(--line-2); position: sticky; top: 78px; z-index: 30; }
.ch-deptnav__row { display: flex; gap: 10px; padding: 16px 0; flex-wrap: wrap; }
.ch-deptnav a { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink-2);
  text-decoration: none; padding: 9px 17px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: #fff; transition: all var(--dur) var(--ease); white-space: nowrap; }
.ch-deptnav a:hover { border-color: var(--teal); color: var(--teal); background: rgba(10,82,89,.04); }
@media (max-width: 940px){ .ch-deptnav { top: 68px; } .ch-deptnav__row { flex-wrap: nowrap; overflow-x: auto; } }

/* a department block — alternating photo / content split */
.ch-deptrow { scroll-margin-top: 150px; }
.ch-deptrow + .ch-deptrow { margin-top: 84px; }
.ch-deptrow__photo { aspect-ratio: 5/6; border-radius: 32px 32px 32px 110px; box-shadow: var(--shadow-lg); }
.ch-split.rev .ch-deptrow__photo { border-radius: 32px 32px 110px 32px; }

/* premium image-free department row */
.ch-deptrow--plain { display: grid; grid-template-columns: 120px 1fr; gap: 32px; padding: 56px 0;
  border-top: 1px solid var(--line); }
.ch-deptrow--plain:first-child { border-top: none; padding-top: 0; }
.ch-deptrow + .ch-deptrow.ch-deptrow--plain { margin-top: 0; }
.ch-deptrow__num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink-3);
  letter-spacing: .06em; padding-top: 6px; }
.ch-deptrow__body { max-width: 760px; min-width: 0; }
.ch-deptrow__head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.ch-deptrow--plain .ch-deptrow__ic { margin-bottom: 0; }
.ch-deptrow--plain h2 { margin: 0; }
@media (max-width: 640px){
  .ch-deptrow--plain { grid-template-columns: 1fr; gap: 12px; }
  .ch-deptrow__cta .ch-btn { white-space: normal; text-align: center; }
}
.ch-deptrow__ic { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; }
.ch-deptrow h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight); font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.ch-deptrow > .lead, .ch-deptrow p.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--ink-2); margin: 0 0 22px; }

/* services checklist */
.ch-svc { list-style: none; margin: 0 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.ch-svc li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: var(--ink); }
.ch-svc li .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--tint-teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.ch-deptrow__docs { font-size: 13.5px; color: var(--ink-3); margin: 0 0 22px; }
.ch-deptrow__docs b { color: var(--ink-2); font-weight: 600; }
.ch-deptrow__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 620px){ .ch-svc { grid-template-columns: 1fr; } }

/* =============================================================================
   CO-BRAND PARTNERSHIP LOCKUP  (Central Hospital × partner)
   ============================================================================= */
.ch-cobrand { display: inline-flex; align-items: center; gap: 26px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 30px; box-shadow: var(--shadow-sm); }
.ch-cobrand__logo { height: 42px; width: auto; }
.ch-cobrand__div { width: 1px; height: 48px; background: var(--line); }
.ch-cobrand__slot { width: 210px; height: 56px; }
.ch-cobrand__cap { font-size: 12.5px; color: var(--ink-3); margin: 14px 0 0; }
@media (max-width: 540px){
  .ch-cobrand { flex-direction: column; gap: 18px; padding: 24px; }
  .ch-cobrand__div { width: 80px; height: 1px; }
  .ch-cobrand__slot { width: 200px; }
}

/* feature panel for the partnership block */
.ch-partner { background: var(--tint-teal); border-radius: var(--radius-xl); padding: 56px; }
.ch-partner .ch-eyebrow { color: var(--burgundy); }
@media (max-width: 940px){ .ch-partner { padding: 36px 24px; } }
@media (max-width: 620px){ .ch-partner { padding: 28px 18px; } }
