/* ============================================================
   COEG SITE – Clean Light Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

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

:root {
  --red:         #b91c1c;
  --red-light:   #fee2e2;
  --red-hover:   #991b1b;
  --red-glow:    rgba(185,28,28,.18);
  --gold:        #b45309;
  --gold-light:  #fef3c7;
  --bg:          #f8f9fb;
  --bg-alt:      #f1f4f8;
  --white:       #ffffff;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --text-mid:    #475569;
  --muted:       #94a3b8;
  --radius:      14px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --transition:  .32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--red);
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  font-size: .8rem;
  font-weight: 500;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.top-bar .social-icons a {
  color: rgba(255,255,255,.8);
  margin-left: 16px;
  font-size: .95rem;
  transition: color var(--transition);
}
.top-bar .social-icons a:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 48px; width: auto; object-fit: contain; }
.site-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.site-logo span small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: var(--muted);
}

.main-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.main-nav li a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: .88rem;
  padding: 8px 13px;
  border-radius: 8px;
  transition: all var(--transition);
}
.main-nav li a:hover, .main-nav li a.active {
  color: var(--red);
  background: var(--red-light);
}
.main-nav li .btn-nav {
  background: var(--red);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav li .btn-nav:hover {
  background: var(--red-hover);
  box-shadow: 0 4px 14px var(--red-glow);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
}
.mobile-nav a:hover { color: var(--red); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* offset for fixed top-bar + header (~37px + 70px = 107px) */
  margin-top: 107px;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(30,41,59,.72) 0%,
    rgba(30,41,59,.45) 55%,
    rgba(30,41,59,.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 52px;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Quick Links Panel */
.quick-links-panel {
  flex: 0 0 210px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.quick-links-panel h4 {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  font-weight: 800;
}
.quick-links-panel ul { list-style: none; }
.quick-links-panel ul li { margin-bottom: 3px; }
.quick-links-panel ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  padding: 8px 10px;
  border-radius: 8px;
  transition: all var(--transition);
  font-weight: 500;
  border-left: 3px solid transparent;
}
.quick-links-panel ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
  border-left-color: rgba(255,255,255,.6);
  padding-left: 14px;
}

/* Hero Text */
.hero-text { flex: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text h1 span {
  background: linear-gradient(135deg, #fbbf24, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-hero {
  background: var(--red);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .93rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(185,28,28,.5);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-hero:hover { background: var(--red-hover); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 28px rgba(185,28,28,.5); }
.btn-outline-hero {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .93rem;
  transition: all var(--transition);
  background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-hero:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-indicator {
  width: 32px; height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 2px; cursor: pointer;
  transition: var(--transition);
}
.hero-indicator.active { background: #fff; width: 52px; }

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 32px; right: 40px;
  z-index: 3;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================================
   GENERIC SECTION HELPERS
   ============================================================ */
section { padding: 50px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: .7rem; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--red);
  font-weight: 800; margin-bottom: 10px;
  background: var(--red-light);
  padding: 4px 12px; border-radius: 999px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  color: var(--text-mid); font-size: .97rem;
  max-width: 580px; margin-bottom: 28px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem; color: var(--red);
}
.service-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-section { background: var(--bg); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #e2e8f0;
}
.news-card .thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .thumb img { transform: scale(1.05); }
.news-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 999px;
}
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  font-size: .77rem; color: var(--muted);
  margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap;
}
.news-meta i { color: var(--red); margin-right: 4px; }
.news-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-body p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-size: .87rem; font-weight: 700;
  transition: gap var(--transition); margin-top: auto;
}
.read-more:hover { gap: 10px; }

.all-news-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 40px; padding: 12px 28px;
  border-radius: 999px; border: 2px solid var(--red);
  color: var(--red); font-weight: 700; font-size: .88rem;
  transition: all var(--transition);
}
.all-news-link:hover { background: var(--red); color: #fff; }

/* Provost card */
.provost-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.provost-card::before {
  content: '"';
  position: absolute; top: -20px; left: 16px;
  font-size: 8rem; color: var(--red-light);
  font-family: 'Playfair Display', serif;
  line-height: 1; pointer-events: none;
}
.provost-card img {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid var(--red); margin-bottom: 18px;
  box-shadow: 0 0 0 6px var(--red-light);
}
.provost-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.provost-card .role { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-weight: 700; }
.provost-card p { font-size: .88rem; color: var(--text-mid); font-style: italic; line-height: 1.8; }

/* ============================================================
   SCHOOLS
   ============================================================ */
.schools-section { background: var(--bg-alt); }
.schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.school-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.school-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.school-card:hover img { transform: scale(1.07); }
.school-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,41,59,.88) 0%, rgba(30,41,59,.15) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; transition: var(--transition);
}
.school-card:hover .school-card-overlay {
  background: linear-gradient(0deg, rgba(185,28,28,.88) 0%, rgba(30,41,59,.25) 70%);
}
.school-card-overlay h4 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.school-card-overlay p {
  font-size: .82rem; color: rgba(255,255,255,.82);
  line-height: 1.5; max-height: 0;
  overflow: hidden; transition: max-height .5s ease;
}
.school-card:hover .school-card-overlay p { max-height: 100px; }

/* ============================================================
   TETFUND BANNER
   ============================================================ */
.tetfund-banner {
  background: linear-gradient(135deg, #7f1d1d 0%, var(--red) 55%, #c2410c 100%);
  padding: 50px 0; text-align: center; position: relative; overflow: hidden;
}
.tetfund-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.tetfund-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff; font-weight: 800; margin-bottom: 14px; position: relative;
}
.tetfund-banner p {
  color: rgba(255,255,255,.82); font-size: 1rem;
  max-width: 580px; margin: 0 auto; position: relative; line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(185,28,28,.78);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: #fff; font-size: .95rem; font-weight: 700; text-align: center; padding: 16px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--text-mid); margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  transition: var(--transition);
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
  background: var(--white);
}
.form-group textarea { min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; background: var(--red); color: #fff;
  border: none; padding: 14px;
  border-radius: 10px; font-weight: 700;
  font-size: .93rem; cursor: pointer;
  transition: all var(--transition); margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 22px var(--red-glow); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { border-color: var(--red-light); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--red-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.contact-info-card h5 { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.contact-info-card p { font-size: .88rem; color: var(--text); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: #e2e8f0;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(.9); }
.footer-brand p { font-size: .86rem; color: #94a3b8; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: .88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer-col h5 {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: 2px; color: #fbbf24;
  font-weight: 700; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .86rem; color: #94a3b8; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: #64748b; flex-wrap: wrap; gap: 10px;
}
.footer-bottom strong { color: #fbbf24; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 260px;
  background: linear-gradient(135deg, var(--text) 0%, #1e3a5f 100%);
  display: flex; align-items: flex-end;
  padding: 50px 0 36px;
  margin-top: 107px;
  position: relative; overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/images/hero_campus.png') center/cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,.6); font-size: .8rem;
  margin-bottom: 12px; display: flex; gap: 8px; align-items: center;
}
.page-hero .breadcrumb a { color: #fca5a5; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff;
}
.page-hero .category-badge {
  display: inline-block; margin-bottom: 12px;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 999px;
}

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blogs-page { background: var(--bg); padding: 70px 0; }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 26px;
}

.blog-single { background: var(--bg); padding: 60px 0; }
.blog-article {
  max-width: 820px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.blog-article .cover { width: 100%; max-height: 440px; object-fit: cover; }
.blog-article-body { padding: 46px; }
.blog-meta-bar {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.blog-meta-bar .meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-mid);
}
.blog-meta-bar .meta-item i { color: var(--red); }
.blog-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 22px; line-height: 1.3;
}
.blog-article-body .content {
  font-size: .97rem; color: var(--text-mid); line-height: 1.9;
}
.blog-article-body .content p { margin-bottom: 18px; }
.blog-article-body .content img { border-radius: 10px; margin: 24px auto; }
.blog-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 36px;
  background: var(--red-light);
  border: 1px solid #fca5a5;
  color: var(--red); padding: 12px 24px;
  border-radius: 999px; font-weight: 700;
  font-size: .88rem; transition: all var(--transition);
}
.blog-back:hover { background: var(--red); color: #fff; border-color: var(--red); }
.blog-sidebar { max-width: 820px; margin: 36px auto 0; }
.blog-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--text);
  margin-bottom: 24px; font-weight: 800;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 30px; padding: 0 24px; }
  .quick-links-panel { flex: unset; width: 100%; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 620px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .schools-grid { grid-template-columns: 1fr 1fr; }
  .blog-article-body { padding: 24px; }
}
@media (max-width: 480px) {
  .schools-grid, .news-grid, .blogs-grid, .gallery-grid { grid-template-columns: 1fr; }
}
