/* ═══════════════════════════════════════════════
   St. Joseph's High School Rubirizi — Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #111a14; background: #fff; line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; }

/* ── CSS Variables ──────────────────────────────── */
:root {
  --green-dk:  #0d2b1e;
  --green-dkr: #071812;
  --green-md:  #1a5c32;
  --green-lt:  #2e7d52;
  --green-bg:  #f0f7f2;
  --gold:      #c9952a;
  --gold-lt:   #e8b84b;
  --white:     #ffffff;
  --grey:      #f4f6f9;
  --text:      #111a14;
  --muted:     #5c6b61;
  --border:    #d8e5dc;
  --shadow-sm: 0 2px 8px rgba(13,43,30,.08);
  --shadow:    0 4px 20px rgba(13,43,30,.10);
  --shadow-lg: 0 12px 40px rgba(13,43,30,.14);
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     72px;
}

/* ── Typography ─────────────────────────────────── */
.playfair { font-family: 'Playfair Display', serif; }
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── Container ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  transition: all .2s ease; border: 2px solid transparent;
}
.btn-gold         { background: var(--gold);  color: #fff; border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,42,.3); }
.btn-ghost-white  { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-green { background: transparent; color: var(--green-md); border-color: var(--green-md); font-size: 13px; padding: 8px 18px; border-radius: 8px; font-weight: 600; display: inline-flex; align-items: center; transition: all .2s; }
.btn-outline-green:hover { background: var(--green-md); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── Section helpers ─────────────────────────────── */
.section      { padding: 88px 0; }
.section--grey { background: var(--grey); }

.section-eyebrow {
  display: inline-block;
  background: rgba(201,149,42,.12); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
  margin-bottom: 12px;
}
.section-title    { font-size: clamp(26px,3.5vw,40px); color: var(--green-dk); margin-bottom: 14px; }
.section-title-sm { font-size: clamp(22px,2.5vw,30px); color: var(--green-dk); margin-bottom: 10px; }
.section-sub      { color: var(--muted); font-size: 16px; max-width: 640px; margin: 0 auto; }
.section-head     { text-align: center; margin-bottom: 56px; }
.body-text        { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }

/* ── Badges ──────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.badge-green  { background: #e6f4ea; color: #1e6b30; }
.badge-blue   { background: #e3f0fd; color: #1a55a0; }
.badge-gold   { background: rgba(201,149,42,.12); color: #a07010; }
.badge-purple { background: #f3e5f5; color: #7b1fa2; }
.badge-grey   { background: #eef0f2; color: #4a5568; }

/* ══════════════════ NAVBAR ════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-box {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; display: block; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-name     { font-weight: 700; font-size: 15px; color: #fff; line-height: 1.2; transition: color .3s; }
.nav-location { font-size: 11px; color: rgba(255,255,255,.65); transition: color .3s; }
.navbar.scrolled .nav-name     { color: var(--green-dk); }
.navbar.scrolled .nav-location { color: var(--muted); }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.88);
  transition: all .18s;
}
.nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.navbar.scrolled .nav-link         { color: var(--text); }
.navbar.scrolled .nav-link:hover   { background: var(--grey); color: var(--green-dk); }
.nav-link--cta {
  background: var(--gold); color: #fff !important;
  border-radius: 8px; padding: 9px 20px; font-weight: 600;
}
.nav-link--cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .nav-burger span { background: var(--green-dk); }

/* ══════════════════ HERO ══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--green-dkr) 0%, var(--green-dk) 50%, #1a5c32 100%);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 75% 45%, rgba(46,125,82,.25) 0%, transparent 55%),
    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='%23ffffff' fill-opacity='0.02'%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/svg%3E");
}
.hero-inner {
  flex: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  padding-top: calc(var(--nav-h) + 48px); padding-bottom: 40px;
  position: relative; z-index: 1;
}
.hero-text { flex: 1; max-width: 580px; }
.hero-eyebrow {
  color: var(--gold-lt); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.1; color: #fff; margin-bottom: 22px;
}
.hero-motto { font-size: 17px; color: rgba(255,255,255,.72); font-style: italic; margin-bottom: 36px; }
.hero-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-emblem {
  flex-shrink: 0; width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.hero-crest {
  width: 240px; height: 240px; object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 24px 0; text-align: center;
}
.hstat { padding: 10px; border-right: 1px solid rgba(255,255,255,.1); }
.hstat:last-child { border-right: none; }
.hstat-num { display: block; font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ══════════════════ SLIDER ════════════════════════ */
.slider-section { background: var(--green-dkr); }
.slider {
  position: relative; height: 580px;
  overflow: hidden; background: var(--green-dkr);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.slide.active  { opacity: 1; transform: scale(1); pointer-events: all; }
.slide.exiting { opacity: 0; transform: scale(.96); }

.slide--1 { background: linear-gradient(135deg, #071812 0%, #0d2b1e 55%, #1a5c32 100%); }
.slide--2 { background: linear-gradient(135deg, #0d2b1e 0%, #155c32 55%, #2e7d52 100%); }
.slide--3 { background: linear-gradient(135deg, #071812 0%, #1a3a2e 55%, #0d2b1e 100%); }
.slide--4 { background: linear-gradient(135deg, #0a2416 0%, #0d2b1e 45%, #1a5c32 100%); }

.slide-bg { position: absolute; inset: 0; }
.slide-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(7,24,18,.88) 0%, rgba(7,24,18,.6) 55%, rgba(7,24,18,.2) 100%);
}
.slide-body {
  position: relative; z-index: 2; max-width: 600px;
}
.slide-tag {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 18px;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 46px);
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.slide-desc { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 26px; max-width: 480px; }

/* Slider controls */
.sl-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.22);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all .2s; backdrop-filter: blur(4px);
}
.sl-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.sl-btn svg { width: 20px; height: 20px; }
.sl-prev { left: 20px; }
.sl-next { right: 20px; }

.sl-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.sl-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.32); border: none; padding: 0; transition: all .25s; }
.sl-dot.active { background: var(--gold); width: 26px; border-radius: 5px; }
.sl-dot:hover  { background: rgba(255,255,255,.65); }

.sl-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.08); z-index: 10; }
.sl-progress-fill { height: 100%; background: var(--gold); width: 0; transition: width linear; }

/* ══════════════════ ABOUT ════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: center;
}
.snap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 24px;
}
.snap-card {
  border-radius: var(--radius); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.snap-card--dark  { background: var(--green-dk); color: #fff; }
.snap-card--gold  { background: var(--gold);      color: #fff; }
.snap-card--green { background: var(--green-md);  color: #fff; }

.snap-icon { display: block; }
.snap-icon svg { width: 28px; height: 28px; opacity: .85; stroke: #fff; }
.snap-val { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1; }
.snap-lbl { font-size: 13px; opacity: .8; font-weight: 500; }

.about-badge-strip {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.about-badge-strip span {
  background: var(--green-bg); color: var(--green-md);
  font-size: 12px; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; border: 1px solid rgba(26,92,50,.2);
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.val-card {
  background: var(--grey); border-radius: var(--radius);
  padding: 18px; border-left: 3px solid transparent; transition: border-color .2s;
}
.val-card:hover { border-left-color: var(--gold); }
.val-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.val-icon svg { width: 18px; height: 18px; }
.val-icon--green { background: rgba(26,92,50,.1); stroke: var(--green-md); }
.val-icon--green svg { stroke: var(--green-md); }
.val-icon--gold  { background: rgba(201,149,42,.1); }
.val-icon--gold  svg { stroke: var(--gold); }
.val-card h4 { font-size: 14px; font-weight: 700; color: var(--green-dk); margin-bottom: 4px; }
.val-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════ MISSION/VISION/MOTTO ══════════ */
.mvv-section {
  background: linear-gradient(135deg, var(--green-dkr) 0%, var(--green-dk) 60%, #1a5c32 100%);
  padding: 88px 0;
}
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-card {
  background: rgba(255,255,255,.06); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid rgba(255,255,255,.09);
  transition: background .2s;
}
.mvv-card:hover { background: rgba(255,255,255,.09); }
.mvv-card--accent { background: rgba(255,255,255,.11); border-color: rgba(201,149,42,.35); }
.mvv-icon { width: 48px; height: 48px; background: rgba(201,149,42,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mvv-icon svg { width: 24px; height: 24px; stroke: var(--gold-lt); }
.mvv-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 14px; }
.mvv-card p  { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.75; }
.motto-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: var(--gold-lt) !important; line-height: 1.5; }

/* ══════════════════ ACADEMICS ════════════════════ */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.prog-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s;
}
.prog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prog-card--featured {
  background: linear-gradient(160deg, var(--green-dk) 0%, var(--green-md) 100%);
  border-color: transparent; color: #fff;
}
.prog-card--featured h3 { color: #fff; }
.prog-card--featured .prog-sub  { color: rgba(255,255,255,.6); }
.prog-card--featured .prog-desc { color: rgba(255,255,255,.78); }
.prog-card--featured .subj-list li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.1); }
.prog-card--featured .subj-list h4 { color: var(--gold-lt); }

.prog-badge {
  display: inline-block; background: rgba(201,149,42,.12); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 4px 13px; border-radius: 50px; margin-bottom: 14px;
}
.prog-badge--gold  { background: var(--gold); color: #fff; }
.prog-badge--green { background: rgba(26,92,50,.12); color: var(--green-md); }

.prog-card h3    { font-size: 20px; color: var(--green-dk); margin-bottom: 4px; }
.prog-sub        { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.prog-desc       { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

.subj-list h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: 8px; }
.subj-list li { font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.subj-list li:last-child { border-bottom: none; }

/* Facilities */
.fac-section { text-align: center; }
.fac-title { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--green-dk); margin-bottom: 28px; }
.fac-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.fac-card  {
  background: #fff; border-radius: var(--radius); padding: 22px 14px;
  border: 1px solid var(--border); transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fac-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,149,42,.15); transform: translateY(-2px); }
.fac-icon { font-size: 28px; }
.fac-card span:last-child { font-size: 13px; font-weight: 600; color: var(--green-dk); text-align: center; }

/* ══════════════════ ADMISSIONS ═══════════════════ */
.adm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.adm-step { display: flex; gap: 18px; margin-bottom: 32px; }
.step-circle {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--green-dk); color: var(--gold-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.step-body h4 { font-size: 16px; color: var(--green-dk); margin-bottom: 5px; }
.step-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.adm-card {
  background: linear-gradient(160deg, var(--green-dkr) 0%, var(--green-dk) 55%, var(--green-md) 100%);
  border-radius: var(--radius-lg); padding: 40px 36px; color: #fff;
}
.adm-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.req-block   { margin-bottom: 26px; }
.req-block h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gold-lt); margin-bottom: 10px; }
.req-block li { font-size: 13.5px; color: rgba(255,255,255,.8); padding: 6px 0 6px 14px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; }
.req-block li::before { content: '›'; position: absolute; left: 0; color: var(--gold-lt); font-size: 16px; line-height: 1.4; }
.req-block li:last-child { border-bottom: none; }
.req-block li strong { color: #fff; }
.req-note { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 8px; }

/* ══════════════════ NEWS & EVENTS ════════════════ */
.ne-wrap  { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start; }
.ne-head  { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 12px; }
.ne-col--events { border-left: 1px solid var(--border); padding-left: 48px; }

.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card--featured { display: flex; }
.news-card--featured .news-img-band { width: 200px; flex-shrink: 0; min-height: 180px; height: auto; }
.news-img-band { height: 160px; }
.news-img--1 { background: linear-gradient(135deg, #0d2b1e, #1a5c32); }
.news-img--2 { background: linear-gradient(135deg, #1a5c32, #2e7d52); }
.news-img--3 { background: linear-gradient(135deg, #155c2f, #c9952a); }
.news-body { padding: 20px; flex: 1; }
.news-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--green-dk); margin: 8px 0; line-height: 1.35; }
.news-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.news-foot { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); padding-top: 10px; border-top: 1px solid var(--border); }
.read-more { color: var(--gold); font-weight: 600; transition: color .2s; }
.read-more:hover { color: var(--gold-lt); }

/* Events */
.events-list { display: flex; flex-direction: column; gap: 14px; }
.ev-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: var(--radius); padding: 16px 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.ev-item:hover { border-color: var(--gold); transform: translateX(4px); }
.ev-date {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--green-dk); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ev-day { font-size: 20px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.ev-mon { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; }
.ev-info { flex: 1; min-width: 0; }
.ev-info h4 { font-size: 14px; font-weight: 600; color: var(--green-dk); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-info p  { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════ CONTACT ══════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }

.cinfo-item { display: flex; gap: 16px; margin-bottom: 28px; }
.cinfo-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--green-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cinfo-icon svg { width: 20px; height: 20px; stroke: var(--green-md); }
.cinfo-item h4  { font-size: 14px; font-weight: 700; color: var(--green-dk); margin-bottom: 4px; }
.cinfo-item p   { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--green-dk); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--gold); transform: translateY(-2px); }
.social-btn svg { width: 17px; height: 17px; }

.contact-form-wrap {
  background: var(--grey); border-radius: var(--radius-lg); padding: 36px;
}
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-group { margin-bottom: 18px; }
.cform-group label { display: block; font-size: 13px; font-weight: 600; color: var(--green-dk); margin-bottom: 6px; }
.cform-group label span { color: var(--gold); }
.cform-group input,
.cform-group select,
.cform-group textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text); background: #fff;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,.1);
}
.cform-group textarea { resize: vertical; min-height: 110px; }
.cform-note { font-size: 12px; color: var(--muted); margin-top: 10px; }

.form-alert {
  border-radius: 10px; padding: 14px 18px;
  font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.form-alert--success { background: #e6f4ea; color: #1e6b30; border: 1px solid #a5d6a7; }
.form-alert--error   { background: #fef2f2; color: #c0392b; border: 1px solid #fecaca; }

/* ══════════════════ FOOTER ══════════════════════ */
.footer { background: var(--green-dkr); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }

.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-logo-img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; border-radius: 8px; background: #fff; padding: 2px; }
.footer-logo-row strong { display: block; color: #fff; font-size: 14px; }
.footer-logo-row span   { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-motto { font-style: italic; font-size: 14px; color: var(--gold-lt); margin-bottom: 10px; }
.footer-desc  { font-size: 13.5px; line-height: 1.65; }

.footer-links h4,
.footer-contact h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .03em; }
.footer-links li   { margin-bottom: 9px; }
.footer-links a    { font-size: 13.5px; color: rgba(255,255,255,.58); transition: color .18s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact p  { font-size: 13.5px; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a  { color: rgba(255,255,255,.58); transition: color .18s; }
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12.5px; color: rgba(255,255,255,.35);
}
.footer-admin-link { color: rgba(255,255,255,.25); font-size: 12px; transition: color .2s; }
.footer-admin-link:hover { color: rgba(255,255,255,.55); }

/* ══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .mvv-grid    { grid-template-columns: 1fr; gap: 16px; }
  .prog-grid   { grid-template-columns: 1fr; gap: 20px; }
  .fac-grid    { grid-template-columns: repeat(4,1fr); }
  .adm-grid    { grid-template-columns: 1fr; gap: 40px; }
  .ne-wrap     { grid-template-columns: 1fr; gap: 48px; }
  .ne-col--events { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stats   { grid-template-columns: repeat(2,1fr); }
  .hstat:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 60px 0; }

  /* Nav */
  .nav-menu {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 16px 20px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 4px; align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--text) !important; }
  .nav-link--cta { text-align: center; margin-top: 8px; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-inner  { flex-direction: column; text-align: center; gap: 32px; }
  .hero-emblem { width: 180px; height: 180px; }
  .hero-crest  { width: 160px; height: 160px; }
  .hero-btns   { justify-content: center; }
  .hero-stats  { grid-template-columns: repeat(2,1fr); }

  /* Slider */
  .slider { height: 460px; }
  .slide-overlay { background: rgba(7,24,18,.78); }

  /* Snap grid */
  .snap-grid { grid-template-columns: 1fr 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Programs */
  .news-card--featured { flex-direction: column; }
  .news-card--featured .news-img-band { width: 100%; height: 140px; }

  /* Admissions */
  .cform-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar  { flex-direction: column; gap: 8px; text-align: center; }

  /* Fac grid */
  .fac-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-btns  { flex-direction: column; }
  .btn        { width: 100%; justify-content: center; }
  .snap-grid  { grid-template-columns: 1fr; }
  .slider     { height: 400px; }
  .sl-btn     { width: 38px; height: 38px; }
  .fac-grid   { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════ SCROLL ANIMATIONS ════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
