
:root{
  --bg:#eef5f9;
  --ink:#102f55;
  --muted:#6c8194;
  --navy:#14325c;
  --gold:#c9a24f;
  --paper:#fffdf8;
  --white:#ffffff;
  --line:#dce6ef;
  --shadow:0 18px 44px rgba(16,47,85,.08);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:#1a2a36;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
p{line-height:1.65}
.wrap{width:min(1180px, calc(100% - 64px));margin:0 auto}
.site-header{
  background:#eef5f9;
  border-bottom:1px solid rgba(16,47,85,.10);
}
.header-inner{
  min-height:168px;
  display:flex;
  align-items:center;
}
.brand{
  display:flex;
  align-items:center;
  gap:28px;
}
.brand-logo{
  width:136px;
  height:136px;
  border-radius:34px;
  object-fit:cover;
  flex:0 0 auto;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brand-kicker{
  color:#8a96a3;
  font-size:1.35rem;
  letter-spacing:.38em;
  font-weight:500;
  margin-bottom:8px;
}
.brand-title{
  color:var(--navy);
  font-size:2.35rem;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
}
.moving-banner{
  overflow:hidden;
  background:var(--navy);
  color:white;
  border-top:4px solid var(--gold);
  border-bottom:4px solid var(--gold);
  white-space:nowrap;
}
.moving-track{
  display:inline-flex;
  align-items:center;
  gap:42px;
  padding:24px 0;
  animation:moveBanner 42s linear infinite;
}
.moving-banner:hover .moving-track{animation-play-state:paused}
.moving-track a{
  color:white;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:1.48rem;
}
.moving-track span{
  color:var(--gold);
  font-weight:900;
  font-size:1.55rem;
}
@keyframes moveBanner{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.hero{
  background:#eef5f9;
  padding:72px 0 52px;
}
.eyebrow,.kicker{
  display:inline-block;
  color:#7b8d9e;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:800;
  font-size:1.35rem;
}
.hero .eyebrow{
  background:#f8fafc;
  border:1px solid rgba(16,47,85,.10);
  box-shadow:0 2px 10px rgba(16,47,85,.05);
  padding:18px 34px;
  border-radius:999px;
  margin-bottom:42px;
}
h1,h2,h3{
  font-family:"Playfair Display",Georgia,serif;
  color:var(--ink);
  font-weight:600;
  letter-spacing:-.045em;
  margin:0 0 20px;
}
h1{
  font-size:clamp(5rem, 12vw, 11.5rem);
  line-height:.83;
  max-width:1180px;
}
h2{
  font-size:clamp(2.2rem, 4.6vw, 4.7rem);
  line-height:.94;
}
h3{
  font-size:1.65rem;
  letter-spacing:-.02em;
  line-height:1.1;
}
.lead{
  color:var(--muted);
  font-size:clamp(1.5rem, 3.4vw, 2.25rem);
  line-height:1.6;
  max-width:1120px;
  margin:0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:48px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:20px 38px;
  font-weight:900;
  font-size:1.28rem;
  border:1px solid rgba(16,47,85,.12);
  background:#fff;
  color:var(--navy);
  box-shadow:0 2px 8px rgba(16,47,85,.04);
}
.btn.primary{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.btn.blue{
  background:#4c95cf;
  color:#fff;
  border-color:#4c95cf;
}
.bridge{
  background:#eef5f9;
  padding:0 0 70px;
}
.bridge img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.section{padding:88px 0}
.below-bridge{
  background:linear-gradient(180deg,#eef5f9 0%, #fffdf8 100%);
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.pad{padding:32px}
.muted{color:#5c6c75}
.small{font-size:1rem}
.link-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  margin-top:32px;
}
.link-grid .card{
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.card-link{
  color:#9d7d45;
  font-weight:900;
  display:inline-block;
  margin-top:12px;
}
.news-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  margin-top:32px;
}
.zoom-card{
  background:linear-gradient(135deg,#14325c,#284d76);
  color:#fff;
}
.zoom-card h2,.zoom-card h3{color:#fff}
.zoom-card .muted{color:#dce7ec}
.vibrant-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:34px;
}
.community-card{
  overflow:hidden;
  display:block;
}
.community-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.community-card img[src*="hillcrest"]{
  object-position:center top;
}
.community-card .content{
  padding:22px;
}
.page-hero{
  background:#eef5f9;
  padding:70px 0 50px;
}
.page-hero h1{
  font-size:clamp(4rem,8vw,7.5rem);
}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.list-clean{list-style:none;padding:0;margin:0}
.list-clean li{padding:14px 0;border-bottom:1px solid var(--line)}
.table{width:100%;border-collapse:collapse;background:var(--paper);border-radius:22px;overflow:hidden}
.table th,.table td{text-align:left;padding:16px;border-bottom:1px solid var(--line);vertical-align:top}
.table th{background:#f4eadb;color:#9d7d45}
.board-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.member{overflow:hidden}
.member img{width:100%;aspect-ratio:4/4.3;object-fit:cover;background:#efe6d8}
.member .body{padding:18px}
.badge{display:inline-block;border:1px solid var(--line);border-radius:999px;padding:7px 11px;font-size:.78rem;font-weight:900;color:#9d7d45;background:#fff8ee;margin-bottom:8px}
.open-seat{display:flex;align-items:center;justify-content:center;aspect-ratio:4/4.3;background:linear-gradient(135deg,#f4eadb,#fffdf8);color:#9d7d45;font-weight:900;text-align:center;padding:20px}
.medical-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}
.medical-pair img{border-radius:18px;aspect-ratio:16/10;object-fit:cover}
.footer{
  background:#fffdf8;
  border-top:1px solid var(--line);
  padding:48px 0 64px;
  color:#5c6c75;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  font-weight:800;
}
@media(max-width:980px){
  .wrap{width:min(100% - 40px,1180px)}
  .header-inner{min-height:132px}
  .brand-logo{width:96px;height:96px;border-radius:26px}
  .brand-kicker{font-size:.95rem}
  .brand-title{font-size:1.6rem}
  .moving-track{padding:18px 0;gap:34px}
  .moving-track a{font-size:1.05rem}
  h1{font-size:clamp(4.2rem,16vw,7rem)}
  .lead{font-size:1.45rem}
  .link-grid,.news-grid,.vibrant-grid,.grid-2,.grid-3,.board-grid{grid-template-columns:1fr}
}
