/* ============================================================
   PCSGMCH — Clinical Clarity site styles (Laravel port)
   Tokens + all chrome/component styles consolidated.
   Ported verbatim from astro/src/{styles/tokens.css,components/*.astro}
   ============================================================ */

:root {
  --primary:   #0E5A6B;
  --primary-d: #0A4350;
  --accent:    #0E9AAE;
  --accent-l:  #3FBDCB;
  --surface:   #EAF4F6;
  --surface-2: #F4FAFB;
  --ink:       #0E2A30;
  --muted:     #4A6168;
  --line:      #D7E4E7;
  --white:     #FFFFFF;
  --emergency:   #D64545;
  --emergency-d: #B8392F;
  --head:   'Space Grotesk', sans-serif;
  --body:   'Inter', sans-serif;
  --maxw:   1400px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.1; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }

.eyebrow {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: 1.6px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn:focus-visible { outline: 3px solid var(--accent-l); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }

.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--primary); color: #fff;
  padding: 10px 20px; font-weight: 600; font-size: .95rem;
  z-index: 9999; border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- TOPBAR (utility bar) ---------- */
.utility { background: var(--primary-d); color: #cfe6ea; font-size: .8rem; }
.utility .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.utility a { color: #eaf6f8; }
.util-left { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.util-left .pin { opacity: .85; }
.util-right {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; justify-content: flex-end;
}
.util-emerg {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--emergency); color: #fff;
  padding: 5px 12px; border-radius: 30px; font-weight: 600;
}
.util-emerg .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 1.8s infinite;
}
.util-note { opacity: .75; font-size: .75rem; }
@media (max-width: 780px) { .util-note { display: none; } }
@media (prefers-reduced-motion: reduce) { .util-emerg .dot { animation: none; } }
@media (max-width: 640px) { .util-left .pin { display: none; } }

/* ---------- MASTHEAD ---------- */
.masthead { background: #fff; border-bottom: 1px solid var(--line); }
.masthead .wrap { display: flex; align-items: center; gap: 18px; min-height: 92px; }
.brand { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; text-decoration: none; }
.crest {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  background: var(--primary);
}
.brand-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.brand-name {
  font-family: var(--head); font-weight: 700; font-size: 1.12rem;
  letter-spacing: -.01em; color: var(--ink); line-height: 1.2;
}
.brand-sub { font-size: .76rem; color: var(--muted); font-weight: 500; }
.masthead-cta { display: flex; gap: 8px; align-items: center; }
.masthead-cta .btn { padding: 9px 16px; font-size: .82rem; border-radius: 8px; gap: 6px; }
.nav-toggle {
  display: none; background: none; border: 1.6px solid var(--line);
  border-radius: 9px; padding: 9px 11px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); margin: 4px 0; border-radius: 2px;
}
@media (max-width: 640px) {
  .masthead .wrap { min-height: 74px; }
  .masthead-cta .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- NAV ---------- */
.nav {
  background: var(--primary); position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 0 rgba(0,0,0,.04);
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(10,67,80,.28); }
.nav > .wrap { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; position: relative; }
.nav-link {
  color: #dff0f3; font-size: .92rem; font-weight: 500;
  padding: 15px 15px; position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: color .15s;
}
.nav-link .car { font-size: .62rem; opacity: .7; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 8px;
  height: 2px; background: var(--accent-l); border-radius: 2px;
}
.nav-link:focus-visible { outline: 2px solid var(--accent-l); outline-offset: -2px; }
.nav-item { position: relative; }
.has-drop .nav-link::after { display: none !important; }
.has-drop:hover .nav-link, .has-drop:focus-within .nav-link {
  color: #fff; background: rgba(255,255,255,.08);
}
.drop {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 18px 48px rgba(10,67,80,.18);
  min-width: 230px; padding: 8px 0; z-index: 50;
}
.drop-wide { min-width: 280px; columns: 2; column-gap: 0; }
.drop a {
  display: block; padding: 9px 18px; font-size: .88rem;
  color: var(--ink); font-weight: 500; white-space: nowrap;
  break-inside: avoid; transition: background .12s, color .12s;
}
.drop a:hover { background: var(--surface); color: var(--primary); }
.has-drop:hover .drop, .has-drop:focus-within .drop { display: block; }
.nav-spacer { flex: 1; }
@media (max-width: 640px) {
  .nav > .wrap { display: none; flex-direction: column; align-items: stretch; }
  .nav.open > .wrap { display: flex; }
  .nav-link { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-link::after { display: none !important; }
  .nav-spacer { display: none; }
  .nav-item { position: static; }
  .drop {
    display: block; position: static; box-shadow: none; border: none;
    border-radius: 0; background: rgba(0,0,0,.18); padding: 0; columns: 1;
  }
  .drop a {
    padding: 10px 32px; color: #cfe6ea; font-size: .86rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .drop a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .has-drop .nav-link { justify-content: space-between; }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--surface); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; overflow: hidden;
  min-height: 38px; position: relative;
}
.ticker-tag {
  background: var(--accent); color: #fff; font-size: .74rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 16px; flex-shrink: 0;
  display: flex; align-items: center; gap: 7px; align-self: stretch;
  position: relative; z-index: 2;
}
.ticker-track {
  display: flex; gap: 48px; white-space: nowrap;
  padding-left: 28px; animation: scroll-x 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { font-size: .86rem; color: var(--ink); font-weight: 500; padding: 9px 0; flex-shrink: 0; }
.ticker-track a b { color: var(--emergency); font-weight: 700; margin-right: 6px; }
.ticker-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; list-style: none;
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- EMERGENCY BAND ---------- */
.emerg-band { background: linear-gradient(120deg, var(--emergency), var(--emergency-d)); color: #fff; }
.emerg-band .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 34px 24px; flex-wrap: wrap;
}
.emerg-band h3 { font-size: 1.5rem; margin-bottom: 6px; }
.emerg-band p { margin: 0; opacity: .92; font-size: .92rem; }
.emerg-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.emerg-num { font-family: var(--head); font-size: 1.8rem; font-weight: 700; }
@media (max-width: 640px) { .emerg-right { align-items: flex-start; text-align: left; } }

/* ---------- FOOTER ---------- */
footer#footer { background: var(--ink); color: #bcd2d7; font-size: .88rem; }
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px; padding: 56px 24px 40px;
}
footer h4 { color: #fff; font-size: 1.04rem; margin-bottom: 16px; }
.fbrand { display: flex; gap: 13px; align-items: center; margin-bottom: 14px; }
.fbrand strong { color: #fff; font-family: var(--head); }
.fcrest {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; background: var(--primary); flex-shrink: 0;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 11px; }
footer ul li a:hover, footer .contact-li a:hover { color: var(--accent-l); }
.contact-li { margin-bottom: 12px; display: flex; gap: 9px; }
.contact-li a { color: inherit; }
.foot-compliance {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-top: 14px; font-size: .78rem;
}
.foot-compliance a { color: #8fb0b6; }
.foot-compliance a:hover { color: var(--accent-l); }
.foot-map {
  border: 0; width: 100%; height: 150px; border-radius: 12px;
  margin-top: 6px; filter: grayscale(.2);
}
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px; text-align: center; font-size: .82rem; color: #8fb0b6;
}
.foot-bottom a { color: var(--accent-l); font-weight: 600; }
@media (max-width: 980px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .foot-top { grid-template-columns: 1fr; } }

/* ---------- ANIMATIONS ---------- */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- PLACEHOLDER PAGE (temporary, replaces with real ports) ---------- */
.placeholder-hero {
  background: linear-gradient(120deg, var(--surface) 0%, var(--surface-2) 100%);
  padding: clamp(64px, 10vw, 120px) 0;
}
.placeholder-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--primary); margin-bottom: 12px; }
.placeholder-hero p { color: var(--muted); font-size: 1.1rem; max-width: 720px; }
.placeholder-content { padding: clamp(40px, 6vw, 72px) 0; }
.placeholder-content h2 { color: var(--primary); margin-bottom: 12px; }
.placeholder-content p { margin-bottom: 14px; color: var(--ink); }
.placeholder-note {
  background: #FEF7E7; border-left: 4px solid #E4A853;
  padding: 16px 20px; border-radius: 6px; margin: 24px 0; color: #6B4A0F;
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 88% -10%, rgba(14,154,174,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  padding: clamp(48px, 6vw, 86px) 24px;
  position: relative;
}
.hero h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 0;
}
.hero h2 .hl { color: var(--primary); white-space: nowrap; }
.hero p.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 540px;
  margin: 20px 0 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-mini { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-mini .m { display: flex; flex-direction: column; }
.hero-mini .m b { font-family: var(--head); font-size: 1.5rem; color: var(--primary); line-height: 1; }
.hero-mini .m span { font-size: .78rem; color: var(--muted); margin-top: 5px; font-weight: 500; }

.hero-panel { position: relative; }
.frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 30px 70px rgba(10,67,80,.30);
}

.hs-track { position: relative; width: 100%; height: 100%; }
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hs-slide.active { opacity: 1; }
.hs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s, opacity .2s;
  opacity: 0;
}
.frame:hover .hs-btn { opacity: 1; }
.hs-btn:hover { background: #fff; }
.hs-prev { left: 10px; }
.hs-next { right: 10px; }

.hs-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.hs-dot.active {
  background: #fff;
  transform: scale(1.35);
}

.tick {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  pointer-events: none;
}
.tick::before, .tick::after {
  content: '';
  position: absolute;
  background: var(--accent-l);
}
.tick::before { width: 100%; height: 2px; }
.tick::after  { width: 2px; height: 100%; }
.tl { top: 10px; left: 10px; }
.tr { top: 10px; right: 10px; transform: scaleX(-1); }
.bl { bottom: 10px; left: 10px; transform: scaleY(-1); }
.br { bottom: 10px; right: 10px; transform: scale(-1); }

.float-card {
  position: absolute;
  left: -26px;
  bottom: 26px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 18px 44px rgba(10,67,80,.22);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 280px;
  border: 1px solid var(--line);
}
.float-card .ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--surface); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.float-card b { font-family: var(--head); font-size: .96rem; display: block; color: var(--ink); }
.float-card span { font-size: .78rem; color: var(--muted); }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 38px; }
  .hero-panel { order: -1; }
}
@media (max-width: 640px) {
  .float-card { left: 12px; right: 12px; max-width: none; }
  .hs-btn { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-slide { transition: none; }
}

/* ---------- QUICK ACTIONS ---------- */
.quick {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.qcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 14px 40px rgba(10,67,80,.10);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.qcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(10,67,80,.16);
}
.qcard:focus-visible {
  outline: 3px solid var(--accent-l);
  outline-offset: 2px;
}
.qic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), var(--accent));
}
.qcard h3 {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.qcard p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 10px;
}
.qcard .lk {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}
@media (max-width: 980px) {
  .quick-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick { margin-top: 0; }
}

/* ---------- STAT BAND ---------- */
.stats {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(700px 300px at 80% 50%, #000, transparent);
  mask-image: radial-gradient(700px 300px at 80% 50%, #000, transparent);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  padding: 48px 24px;
}
.stat {
  text-align: center;
  padding: 6px 8px;
}
.stat .num {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1;
}
.stat .num small {
  font-size: 1.3rem;
}
.stat .lbl {
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .82;
  margin-top: 9px;
  font-weight: 600;
}
.stat + .stat {
  border-left: 1px solid rgba(255,255,255,.16);
}
@media (max-width: 980px) {
  .stats .wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .stat + .stat { border-left: none; }
}
@media (max-width: 640px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
}

/* ---------- ABOUT SECTION ---------- */
.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 24px 56px rgba(10,67,80,.22);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.about-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}
.facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.facts .f {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--primary);
}
.affil-line {
  font-size: .82rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin-top: 10px;
}
@media (max-width: 980px) {
  .about .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- LEADER GRID ---------- */
.leader-section { background: var(--surface-2); }
.leader-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 10px;
}
.vc-line {
  text-align: center;
  margin-bottom: 30px;
  font-size: .92rem;
  color: var(--muted);
}
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.lcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(10,67,80,.14);
}
.lcard .photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #cfe6ea, var(--surface));
  overflow: hidden;
}
.lcard .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.lbody { padding: 18px 20px 22px; }
.lcard .role {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.lcard h3 {
  font-size: 1.18rem;
  color: var(--ink);
  margin: 7px 0 6px;
}
.lcard p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 980px) {
  .lead-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lead-grid { grid-template-columns: 1fr; }
}

/* ---------- DEPT PREVIEW ---------- */
.dept { background: var(--surface-2); }
.dept-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.dept-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
}
.dept-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.dcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.dcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10,67,80,.12);
  border-color: var(--accent);
}
.dcard:focus-visible {
  outline: 3px solid var(--accent-l);
  outline-offset: 2px;
}
.dic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.dcard h4 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.dcard p {
  font-size: .83rem;
  color: var(--muted);
  margin: 0;
}
.dept-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  transition: all .14s ease;
  text-decoration: none;
}
.chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.chip:focus-visible {
  outline: 3px solid var(--accent-l);
  outline-offset: 2px;
}
@media (max-width: 980px) {
  .dept-feature { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .dept-feature { grid-template-columns: 1fr; }
}

/* ---------- FEATURES GRID ---------- */
.features-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 36px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fcard {
  text-align: center;
  padding: 34px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.fic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.fcard h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.fcard p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ---------- INFO HUB ---------- */
.hub { background: var(--surface-2); }
.hub-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 30px;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.phead .pic { font-size: 1.1rem; }
.phead h3 {
  font-size: 1.04rem;
  color: var(--ink);
}
.panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 14px;
  flex: 1;
}
.panel li {
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.panel li:last-child { border-bottom: none; }
.panel li .date {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 4px;
}
.panel li a {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 500;
}
.panel li a:hover { color: var(--primary); }
.panel li .new {
  font-size: .62rem;
  background: var(--emergency);
  color: #fff;
  border-radius: 4px;
  padding: 1px 6px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-left: 6px;
  vertical-align: middle;
}
.pfoot {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
}
.pfoot a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
}
.pfoot a:hover { color: var(--accent); }
@media (max-width: 980px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr; }
}

/* ---------- QUICK LINKS ---------- */
.qlinks-section { background: var(--surface-2); }
.qlinks-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 34px;
}
.qlinks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.qlink {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform .16s ease, box-shadow .16s ease;
}
.qlink:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(10,67,80,.14);
}
.qlink:focus-visible {
  outline: 3px solid var(--accent-l);
  outline-offset: 2px;
}
.qlic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.qlink h4 {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.qlink p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 12px;
  min-height: 48px;
}
.visit {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
}
@media (max-width: 1200px) {
  .qlinks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .qlinks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .qlinks-grid { grid-template-columns: 1fr 1fr; }
  .qlink p { min-height: unset; }
}

/* ---------- GALLERY STRIP (carousel) ---------- */
.gallery-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
}
.gal-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gal-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 10px;
}
.gal-track::-webkit-scrollbar { display: none; }
.gal-item {
  flex: 0 0 auto;
  width: calc((100% - 3 * 14px) / 4);
  aspect-ratio: 4/3;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  display: block;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(10,67,80,.4));
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item:focus-visible {
  outline: 3px solid var(--accent-l);
  outline-offset: 2px;
}
.gal-btn {
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background .2s, transform .2s, opacity .2s;
}
.gal-btn:hover { background: var(--surface); transform: scale(1.06); }
.gal-btn:disabled { opacity: .35; cursor: default; transform: none; }
@media (max-width: 980px) {
  .gal-item {
    width: calc((100% - 1 * 14px) / 2.2);
  }
}
@media (max-width: 640px) {
  .gal-carousel { gap: 6px; }
  .gal-item {
    width: calc((100% - 1 * 10px) / 1.25);
  }
  .gal-btn { width: 36px; height: 36px; }
}

/* ---------- AFFILIATION STRIP ---------- */
.affil {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.affil .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 34px 24px;
}
.affil .a {
  background: var(--surface);
  border-radius: 12px;
  padding: 14px 22px;
  font-family: var(--head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary);
  letter-spacing: .02em;
}


/* ---------- COMMITTEE LAYOUT ---------- */
.cl-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: clamp(32px, 5vw, 56px) 0;
}
.cl-hero .eyebrow { color: rgba(255,255,255,.75); }
.cl-heading { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; letter-spacing: -.02em; }
.cl-body { background: var(--surface-2); }
.cl-layout { display: flex; flex-direction: column; gap: 32px; max-width: 860px; }
.cl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  overflow: hidden;
}
.cl-card-head {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
}
.cl-card-head h2 { font-size: 1.12rem; color: var(--ink); }
.cl-card-body { padding: 22px; }
.cl-card-body p { color: var(--muted); margin: 0 0 16px; line-height: 1.7; }
.cl-table-wrap { overflow-x: auto; }
.cl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.cl-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.cl-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
}
.cl-table td strong { color: var(--ink); }
.cl-table tr:nth-child(even) td { background: var(--surface-2); }
.cl-role {
  background: var(--surface);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.cl-complaint {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius, 14px);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cl-complaint-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 4px; }
.cl-complaint-title { font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.cl-complaint-sub { font-size: .9rem; color: #bcd2d7; margin-bottom: 20px; }
.cl-complaint-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cl-contact-item { display: flex; flex-direction: column; gap: 2px; }
.cl-contact-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #8fb0b6; font-weight: 700; }
.cl-contact-val { color: var(--accent-l); font-weight: 600; font-size: .95rem; }
.cl-complaint-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .cl-complaint { flex-direction: column; }
}


/* ---------- LISTING LAYOUT ---------- */
.ll-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: clamp(32px, 5vw, 56px) 0;
}
.ll-hero .eyebrow { color: rgba(255,255,255,.75); }
.ll-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  letter-spacing: -.02em;
}
.ll-body { background: var(--surface-2); }
.ll-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ll-tab {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .14s ease;
}
.ll-tab:hover { border-color: var(--accent); color: var(--accent); }
.ll-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.ll-tab:focus-visible { outline: 3px solid var(--accent-l); outline-offset: 2px; }
.ll-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  overflow: hidden;
}
.ll-item {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.ll-item:last-child { border-bottom: none; }
.ll-item:hover { background: var(--surface-2); }
.ll-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ll-date {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ll-new {
  font-size: .62rem;
  background: var(--emergency);
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 700;
  letter-spacing: .06em;
}
.ll-cat {
  font-size: .72rem;
  background: var(--surface);
  color: var(--muted);
  border-radius: 20px;
  padding: 2px 9px;
  font-weight: 600;
}
.ll-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ll-title {
  font-size: .96rem;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.ll-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ll-dl, .ll-view {
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .14s ease;
  display: inline-block;
  text-decoration: none;
}
.ll-dl {
  background: var(--primary);
  color: #fff;
}
.ll-dl:hover { background: var(--primary-d); color: #fff; }
.ll-view { color: var(--primary); border: 1.5px solid var(--primary); }
.ll-view:hover { background: var(--primary); color: #fff; }
.ll-empty { color: var(--muted); padding: 32px; text-align: center; }


/* ---------- DISCLOSURE LAYOUT ---------- */
.dl-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: clamp(32px, 5vw, 56px) 0;
}
.dl-hero .eyebrow { color: rgba(255,255,255,.75); }
.dl-heading { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; letter-spacing: -.02em; }
.dl-updated { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 8px; }
.dl-body { background: var(--surface-2); }
.dl-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 40px;
  align-items: start;
}
.dl-sidenav-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  position: sticky;
  top: 72px;
}
.dl-sidenav-title {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.dl-sidenav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.dl-sidenav li { border-bottom: 1px solid var(--line); }
.dl-sidenav li:last-child { border-bottom: none; }
.dl-sidenav a {
  display: block;
  padding: 11px 16px;
  font-size: .86rem;
  color: var(--ink);
  font-weight: 500;
  transition: background .12s, color .12s;
  line-height: 1.3;
  text-decoration: none;
}
.dl-sidenav a:hover {
  background: var(--surface);
  color: var(--primary);
}
.dl-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.dl-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.dl-section-head {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dl-section-head h2 {
  font-size: 1.12rem;
  color: var(--ink);
}
.dl-section-body {
  padding: 22px;
}
.dl-section-body p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 14px;
}
.dl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-top: 8px;
}
.dl-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.dl-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
}
.dl-table tr:nth-child(even) td { background: var(--surface-2); }
.dl-pdf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.dl-pdf-row:last-child { border-bottom: none; }
.dl-pdf-row .dl-pdf-label {
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.dl-pdf-row .dl-pdf-year {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}
.dl-pdf-btn {
  font-size: .82rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .14s;
  text-decoration: none;
  display: inline-block;
}
.dl-pdf-btn:hover { background: var(--primary-d); color: #fff; }
.dl-pdf-pending {
  opacity: .55;
  cursor: default;
  pointer-events: none;
  border: 1.5px dashed currentColor;
  background: transparent;
  color: var(--muted);
}
@media (max-width: 800px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-sidenav-inner { position: static; }
  .dl-sidenav { order: -1; }
}
