:root {
  --primary: #0b7bbf;
  --primary-dark: #083f66;
  --secondary: #7aad39;
  --text: #183142;
  --muted: #5f7381;
  --line: #d9e3ea;
  --bg: #f6f9fb;
  --white: #ffffff;
  --dark: #0f2b3a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand img { width: 120px; height: auto; border-radius: 8px; }
.brand-name { display: block; font-size: 1.2rem; font-weight: 700; }
.brand-tag { display: block; color: var(--muted); font-size: .92rem; }
.main-nav { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }
.main-nav a { font-weight: 600; color: var(--primary-dark); }
.nav-toggle { display: none; border: 0; background: var(--primary); color: #fff; border-radius: 8px; padding: .65rem .85rem; }
.hero { position: relative; min-height: 74vh; display: grid; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-content { position: relative; color: #fff; padding: 6rem 0; max-width: 760px; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--secondary); }
.hero h1, .page-hero h1 { margin: .8rem 0 1rem; line-height: 1.1; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hero p, .page-hero p { font-size: 1.08rem; max-width: 64ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0; }
.hero-meta span { background: rgba(255,255,255,.14); padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .9rem 1.25rem; border-radius: 999px; font-weight: 700; }
.btn-primary { background: var(--secondary); color: #fff; }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.section { padding: 5rem 0; }
.alt-bg { background: var(--bg); }
.dark-band { background: linear-gradient(180deg, var(--primary-dark), #0f334b); color: #fff; }
.section-heading { margin-bottom: 2rem; max-width: 760px; }
.section-heading.between { display: flex; align-items: end; justify-content: space-between; gap: 1rem; max-width: none; }
.section-heading.light p { color: rgba(255,255,255,.8); }
.section h2 { margin: .4rem 0 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.card-grid { display: grid; gap: 1.25rem; }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card, .program-card, .news-card, .profile-card, .content-box, .schedule-block, .news-list-item {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(13, 38, 59, .06);
}
.link-card:hover { transform: translateY(-3px); transition: .2s ease; }
.two-col { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2rem; align-items: center; }
.align-start { align-items: start; }
.leaders-panel { background: #fff; border-radius: 28px; padding: 2rem; border: 1px solid var(--line); }
.leader-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.leader-row:last-child { border-bottom: 0; }
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.program-card ul { padding-left: 1rem; color: var(--muted); }
.program-card li { margin-bottom: .8rem; }
.program-card span { font-weight: 700; color: var(--primary-dark); }
.profile-card { text-align: center; }
.profile-card.light-card { text-align: left; }
.avatar {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 1.4rem;
  background: rgba(11,123,191,.12); color: var(--primary-dark);
}
.light-card .avatar { margin: 0 0 1rem; }
.news-date { display: inline-block; color: var(--primary); font-weight: 700; margin-bottom: .75rem; }
.text-link { font-weight: 700; color: var(--primary); }
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; }
.page-hero.compact .container { padding: 4rem 0; }
.stack-gap { display: grid; gap: 1.5rem; }
.schedule-head { margin-bottom: 1.4rem; }
.schedule-table { display: grid; gap: 1rem; }
.schedule-row { display: grid; grid-template-columns: 180px 1fr 180px; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.schedule-row:first-child { border-top: 0; padding-top: 0; }
.schedule-time, .schedule-location { font-weight: 700; color: var(--primary-dark); }
.content-shell { max-width: 820px; }
.content-box ul { padding-left: 1.1rem; }
.accent-box { background: linear-gradient(135deg, rgba(11,123,191,.08), rgba(122,173,57,.12)); }
.meeting-list { display: grid; gap: .8rem; }
.meeting-list a { display: block; padding: .9rem 1rem; background: #fff; border-radius: 16px; border: 1px solid var(--line); font-weight: 700; }
.site-footer { background: #0d2230; color: #d9e6ef; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 2rem; }
.footer-grid h3, .footer-grid h4 { color: #fff; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding: 1rem 0 2rem; color: rgba(255,255,255,.7); }
@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; left: 1rem; right: 1rem; top: 78px; background: #fff; border: 1px solid var(--line); padding: 1rem; border-radius: 16px; }
  .main-nav.open { display: grid; }
  .nav-toggle { display: inline-flex; }
  .four-up, .three-up, .program-grid, .two-col, .footer-grid, .schedule-row { grid-template-columns: 1fr; }
  .brand img { width: 88px; }
}
