/* ============================================================
   ST. MARY'S SCHOOL — Professional Website Stylesheet
   Design: Deep navy + warm gold | Ubuntu + Merriweather
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Ubuntu:wght@300;400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:      #0B1F3A;
  --navy-mid:  #142d52;
  --navy-light:#1e3f70;
  --gold:      #C8952A;
  --gold-light:#f0b93a;
  --gold-pale: #FEF3DC;
  --cream:     #FAFAF7;
  --white:     #FFFFFF;
  --gray-100:  #F5F6F8;
  --gray-200:  #E8EAF0;
  --gray-400:  #9AA0B2;
  --gray-600:  #5A6075;
  --gray-800:  #2D3047;
  --green:     #1B5E20;
  --red:       #B71C1C;
  --shadow-sm: 0 2px 8px rgba(11,31,58,.08);
  --shadow-md: 0 4px 20px rgba(11,31,58,.12);
  --shadow-lg: 0 8px 40px rgba(11,31,58,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: all .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', sans-serif;
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width:100%; height:auto; display:block; }
a  { color: var(--gold); text-decoration:none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

h1,h2,h3,h4 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  line-height: 1.3;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight:900; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight:700; }
h3 { font-size: 1.15rem; font-weight:700; }

p  { color: var(--gray-600); margin-bottom: .5rem; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.section-sm{ padding: 3rem 0; }

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform:translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform:translateY(-2px); }
.btn-navy     { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform:translateY(-2px); box-shadow: var(--shadow-md); }

.tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tag-navy  { background: var(--navy); color: var(--white); }
.tag-gold  { background: var(--gold); color: var(--white); }
.tag-green { background: var(--green); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.divider {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

.grid-2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2rem; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-mid);
  padding: .45rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar-contact {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.topbar-contact li {
  font-size: .8rem;
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar-contact li svg { flex-shrink:0; }
.topbar-social {
  display: flex;
  gap: .75rem;
  list-style: none;
}
.topbar-social a {
  color: #a0aec0;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--white); border-color: var(--gold); background: var(--gold); }

/* ── NAV ── */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.nav-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.nav-badge-text {
  font-family: 'Merriweather', serif;
  font-size: .7rem;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  padding: 0 4px;
}
.nav-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name .school-name {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
}
.nav-brand-name .school-sub {
  font-size: .72rem;
  color: var(--gray-400);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .15rem;
  align-items: center;
}
.nav-links li a {
  display: block;
  padding: .55rem .8rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--navy);
  background: var(--gold-pale);
}
.nav-links .nav-admin a {
  background: var(--navy);
  color: var(--white) !important;
  padding: .55rem 1.1rem;
}
.nav-links .nav-admin a:hover {
  background: var(--navy-mid);
  color: var(--white) !important;
}
.burger {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 6px;
  padding: .35rem .6rem;
  transition: var(--transition);
}
.burger:hover { background: var(--gray-100); }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; margin-top: .5rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .82rem;
  list-style: none;
}
.breadcrumb li { color: rgba(255,255,255,.55); }
.breadcrumb li a { color: var(--gold-light); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: .5rem; }

/* ── HOME HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4d8c 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200,149,42,.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v2l-2-2h2zM0 40h2l-2 2v-2zm4 0h2L0 46v-2zm4 0h2L0 50v-2zm4 0h2L0 54v-2zm4 0h2L0 58v-2zm4 0h2L0 62v-2zm4 0h2L0 66v-2zm4 0h2L0 70v-2zm4 0h2L0 74v-2zm4 0h2L0 78v-2zm4 0h2l-6 6v-2zm4 0h2l-2 2v-2zM40 40h2l-2 2v-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,149,42,.2);
  border: 1px solid rgba(200,149,42,.4);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(200,149,42,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-emblem-inner {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 2px solid rgba(200,149,42,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.emblem-cross {
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}
.emblem-name {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.emblem-motto {
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .4rem;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  padding: 2rem 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(11,31,58,.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(11,31,58,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .3rem;
}

/* ── WHY US / FEATURE CARDS ── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gold); }
.feature-card h3 { margin-bottom: .5rem; }

/* ── NEWS CARDS ── */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform:translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
}
.news-card-body { padding: 1.25rem; flex:1; display:flex; flex-direction:column; }
.news-card-meta { font-size: .78rem; color: var(--gray-400); margin: .5rem 0 .25rem; }
.news-card-body h3 { margin-bottom: .5rem; font-size: 1rem; }
.news-card-body p { font-size: .875rem; flex:1; }
.news-card-link { margin-top: 1rem; font-weight: 700; font-size: .85rem; color: var(--navy); }
.news-card-link:hover { color: var(--gold); }

/* ── EVENTS ── */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--navy); }
.event-date-box {
  min-width: 54px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: .5rem;
}
.event-date-box .day   { display:block; font-size:1.5rem; font-weight:900; font-family:'Merriweather',serif; line-height:1; }
.event-date-box .month { display:block; font-size:.68rem; text-transform:uppercase; letter-spacing:.06em; color:var(--gold-light); margin-top:.2rem; }
.event-info h3 { font-size:.95rem; margin-bottom:.3rem; }
.event-info .event-location { font-size:.8rem; color: var(--gray-400); display:flex; align-items:center; gap:.3rem; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-size: 5rem;
  font-family: 'Merriweather', serif;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { display:flex; align-items:center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight:700; font-size:.9rem; color: var(--navy); }
.testimonial-role { font-size:.78rem; color: var(--gray-400); }

/* ── STAFF CARDS ── */
.staff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.staff-avatar-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 2rem 1rem 1rem;
}
.staff-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid var(--gold);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
}
.staff-body { padding: 1rem 1rem 1.5rem; }
.staff-body h3 { font-size:.95rem; margin-bottom:.25rem; }
.staff-role  { font-size:.82rem; color: var(--gold); font-weight:700; }
.staff-sub   { font-size:.78rem; color: var(--gray-400); margin-top:.2rem; }

/* ── SUBJECT PILLS ── */
.subject-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin: .25rem;
  transition: var(--transition);
}
.pill-navy  { background: var(--navy); color: var(--white); }
.pill-gray  { background: var(--gray-200); color: var(--gray-800); }
.pill-green { background: var(--green); color: var(--white); }
.subject-pill:hover { transform: scale(1.05); }

/* ── DEPT CARDS ── */
.dept-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.dept-card:hover { border-left-color: var(--gold); box-shadow: var(--shadow-md); }
.dept-card h3 { margin-bottom: .4rem; }

/* ── ADMISSIONS CARD ── */
.requirement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.requirement-card h3 { color: var(--gold); margin-bottom: .5rem; font-size:1rem; }

/* ── DOWNLOAD CARD ── */
.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.download-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.download-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.download-card h3 { font-size:.9rem; margin-bottom:.2rem; }
.download-card p  { font-size:.78rem; margin:0; }

/* ── ENQUIRY / CONTACT FORMS ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Ubuntu', sans-serif;
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size:.85rem; color: var(--gray-400); font-weight:600; text-transform:uppercase; letter-spacing:.05em; margin-bottom:.2rem; }
.contact-info-item p  { color: var(--navy); font-weight:500; margin:0; font-size:.95rem; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  width: 100%; height: 240px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction:column; align-items:center; justify-content:center;
  font-size: 2.5rem;
  color: var(--gray-400);
  margin-top: 1.5rem;
}
.map-placeholder p { font-size: .85rem; margin-top: .5rem; }

/* ── FAQ ACCORDION ── */
details.faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
details.faq[open] { border-color: var(--gold); }
details.faq summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  font-size: .95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
}
details.faq[open] summary::after { content: '−'; }
details.faq .faq-body { padding: 0 1.25rem 1.25rem; color: var(--gray-600); font-size: .9rem; }

/* ── ADMIN CTA STRIP ── */
.admin-strip {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  text-align: center;
  font-size: .78rem;
  padding: .5rem 0;
}
.admin-strip a { color: var(--gold-light); font-weight: 700; }

/* ── FOOTER ── */
.main-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand { display:flex; align-items:flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.footer-name { font-family:'Merriweather',serif; font-size:1rem; font-weight:900; color:var(--white); }
.footer-motto { font-size:.7rem; color: var(--gold-light); letter-spacing:.04em; text-transform:uppercase; }
.footer-desc { font-size:.85rem; line-height:1.8; margin-bottom:1.25rem; }

.footer-col h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: .3rem; }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-icon { margin-top: .1rem; flex-shrink:0; font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── ALERTS ── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }

/* ── CATEGORY FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
}
.filter-btn-active { background: var(--navy); color: var(--white); }
.filter-btn:not(.filter-btn-active) { background: var(--gray-200); color: var(--gray-800); }
.filter-btn:not(.filter-btn-active):hover { background: var(--gray-800); color: var(--white); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align:center; }
.section-header.center .divider { margin: 1rem auto 2rem; }

/* ── ABOUT MISSION CARDS ── */
.mission-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.mission-card.blue   { background: #EFF3FF; border-top: 4px solid #3B4FD9; }
.mission-card.gold   { background: var(--gold-pale); border-top: 4px solid var(--gold); }
.mission-card.green  { background: #E8F5E9; border-top: 4px solid #2E7D32; }
.mission-card h2 { font-size:1.2rem; margin-bottom:.75rem; }

/* ── LEADERSHIP ── */
.leadership-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.leadership-card:hover { box-shadow: var(--shadow-md); }
.leadership-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.leadership-card h3 { font-size:.95rem; }
.leadership-card .role { font-size:.82rem; color: var(--gold); font-weight:700; margin:.3rem 0; }
.leadership-card .dept { font-size:.78rem; color: var(--gray-400); }

/* ── SKIP LINK (a11y) ── */
.skip-link {
  position:absolute; top:-100px; left:1rem;
  background: var(--gold); color: var(--navy);
  padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight:700; z-index:9999;
  transition: top .2s;
}
.skip-link:focus { top:0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap:2rem; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .burger { display: flex; align-items:center; justify-content:center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: .75rem 1.5rem; border-radius: 0; }
  .nav-links .nav-admin a { margin: .5rem 1.5rem; border-radius: var(--radius); }
  .main-nav { position: sticky; top: 0; }

  .hero-inner { grid-template-columns: 1fr; text-align:center; gap:2rem; padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero { min-height: auto; }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(11,31,58,.15); flex: 1 1 50%; }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }

  .form-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
}
