




*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  
  --green-dark:  #1a4731;
  --green-mid:   #2d6a4f;
  --green-light: #40916c;
  --green-pale:  #d8f3dc;
  --gold:        #d4a017;
  --gold-bright: #f5c842;
  --white:       #ffffff;
  --cream:       #faf8f3;
  --gray-light:  #f2f0ea;
  --gray-mid:    #dedad1;
  --gray-text:   #6b6860;
  --text-dark:   #1c1c1a;
  --text-body:   #3d3d3b;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Outfit', sans-serif;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.11);
  --t:           0.25s ease;
}

html  { scroll-behavior: smooth; }


body  {
  
  font-family: var(--font-body);
  color: var(--text-body);
  
 
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  padding-top: 5rem;
}

img   { max-width: 100%; display: block; object-fit: cover; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }


.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}


.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-ghost:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--gray-mid);
}
.btn-ghost-dark:hover { border-color: var(--green-light); }
.btn-sm   { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; padding: 14px; }


.badge {
  display: inline-block;
  background: var(--gold-bright);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.section       { padding: 80px 0; }
.bg-forest     { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); color: var(--white); }
.bg-cream      { background: var(--cream); }


.sec-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sec-title.white { color: var(--white); }

.sec-sub {
  text-align: center;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto 52px;
  font-size: 15px;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



.navbar {
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #12513D;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--t), padding var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.site-logo {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; gap: 24px; flex: 1; justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px; font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  transition: color var(--t), background var(--t);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-bright);
  background: rgba(255,255,255,0.14);
}
.nav-cta { flex-shrink: 0; }


.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; margin-left: auto; padding: 8px;
  flex-direction: column; gap: 5px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  padding: 0 24px 16px;
  background: #12513D;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding var(--t);
}
.mobile-nav.open { display: flex; max-height: 400px; padding: 16px 24px 20px; }

.mobile-nav a {
  color: rgba(255,255,255,0.88); font-size: 15px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t);
}
.mobile-nav a:hover,

.mobile-nav a.active {
  color: var(--gold-bright);
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }



.hero {
  
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e5738 55%, #2d7a54 100%);
  padding: 100px 0 90px;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}


.hero-bg {
  position: absolute;
  inset: 0;
  
  background: url('images/parenting-tips.png') center/cover no-repeat;
}


.hero-provider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  
  background: url('images/Rectangle 7.png') center / contain no-repeat;
  background-color: rgba(0,0,0,0.12);
  border-radius: 0 0 10px 10px;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,38,20,0.9) 40%, rgba(10,38,20,0.58) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 3; text-align: center;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 64px);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-content h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 540px; margin: 0 auto 36px;
}

.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}



.stats-bar {
  
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 28px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.stats-bar-grid {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0;
}

.sbar-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 56px;
}

.sbar-num {
  font-family: var(--font-head);
  font-size: 36px; color: var(--green-mid);
  line-height: 1;
}

.sbar-lbl {
  font-size: 13px; color: var(--gray-text);
  font-weight: 500; margin-top: 4px;
}

.sbar-divider {
  width: 1px; height: 48px; background: var(--gray-mid);
}



.performers-grid {
  
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.perf-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}

.perf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.perf-card.featured {
  border: 2px solid var(--gold);
  background: #fffdf5;
}

.perf-img-wrap {
  position: relative; width: 80px; height: 80px; margin: 0 auto 14px;
}

.perf-img-wrap img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-pale);
}

.perf-rank {
  position: absolute; bottom: -4px; right: -6px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 10px; font-weight: 600;
  padding: 2px 6px;
  white-space: nowrap;
}

.perf-card h4 {
  font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px;
}
.perf-exam { font-size: 12px; color: var(--gray-text); margin-bottom: 10px; }

.perf-score {
  font-size: 14px; font-weight: 600; color: var(--green-mid);
  margin-bottom: 8px;
}

.score-bar {
  height: 5px; background: var(--gray-mid); border-radius: 50px;
  overflow: hidden; margin-bottom: 6px;
}

.score-fill {
  height: 100%; background: linear-gradient(90deg, var(--green-mid), var(--gold));
  border-radius: 50px; transition: width 1.2s ease;
}
.perf-pct { font-size: 12px; color: var(--gray-text); }



.milestones-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}

.milestone-list li {
  font-size: 15px; color: rgba(255,255,255,0.88);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.milestone-list li:last-child { border-bottom: none; }

.milestones-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.ms-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  backdrop-filter: blur(6px);
  transition: transform var(--t);
}
.ms-card:hover { transform: translateY(-3px); }

.ms-card.accent {
  background: var(--gold); border-color: var(--gold-bright);
  grid-column: 1 / -1;
}
.ms-card.accent .ms-num,
.ms-card.accent .ms-lbl { color: var(--text-dark); }

.ms-num {
  font-family: var(--font-head);
  font-size: 36px; color: var(--white); display: block;
}

.ms-lbl {
  font-size: 13px; color: rgba(255,255,255,0.75);
  font-weight: 500; margin-top: 6px; display: block;
}



.campus-grid {
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.campus-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.campus-card:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.campus-card img { width: 100%; height: 260px; object-fit: cover; }
.campus-card.large img { height: 300px; }

.campus-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  padding: 32px 18px 18px;
  display: flex; align-items: flex-end; gap: 12px;
  color: var(--white);
}
.campus-icon { font-size: 22px; flex-shrink: 0; }
.campus-label strong { font-size: 15px; font-weight: 600; display: block; margin-bottom: 4px; }
.campus-label p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }
.campus-label.small strong { font-size: 14px; }
.campus-label.small p { font-size: 12px; }



.events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-top: 48px;
}
.ev-img { border-radius: var(--radius); overflow: hidden; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-img:hover img { transform: scale(1.05); }
.ev-img.tall { grid-row: 1 / 3; }
.ev-img.wide { grid-column: 2 / 4; }



.learning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.learn-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
  min-height: 220px;
}
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.learn-card img { width: 100%; height: 220px; object-fit: cover; }

.learn-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,71,49,0.72) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 18px;
}

.learn-overlay span {
  color: var(--white); font-size: 15px; font-weight: 600;
}

.learn-card.highlight {
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}

.doubt-card-inner {
  padding: 28px 24px; text-align: center;
}
.doubt-icon { font-size: 36px; margin-bottom: 12px; }

.doubt-card-inner h4 {
  font-family: var(--font-head);
  font-size: 22px; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.25;
}

.doubt-card-inner p {
  font-size: 14px; color: rgba(28,28,26,0.72);
  margin-bottom: 18px;
}



.demo-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 20px; margin-bottom: 36px;
  flex-wrap: wrap;
}

.lectures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.lec-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}

.lec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.lec-thumb {
  height: 120px; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.play-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white);
  transition: background var(--t);
}
.lec-card:hover .play-btn { background: rgba(255,255,255,0.35); }

.lec-dur {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(0,0,0,0.55);
  color: var(--white); font-size: 11px; font-weight: 500;
  padding: 2px 8px; border-radius: 50px;
}
.lec-info { padding: 12px 14px; }

.lec-subject {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 50px; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.lec-subject.physics  { background: #e8f5e9; color: #2d6a4f; }
.lec-subject.chemistry{ background: #fce4ec; color: #c62828; }
.lec-subject.biology  { background: #e3f2fd; color: #1565c0; }
.lec-subject.maths    { background: #f3e5f5; color: #6a1b9a; }
.lec-info p { font-size: 13px; color: var(--text-body); margin: 0; }



.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #1c1c1a; border-radius: var(--radius);
  width: 90%; max-width: 640px; padding: 32px;
  position: relative;
}

.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 20px; cursor: pointer; transition: color var(--t);
}
.modal-close:hover { color: var(--white); }

.modal-video-placeholder {
  aspect-ratio: 16/9; background: #2a2a28;
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}

.modal-play-icon {
  font-size: 48px; color: rgba(255,255,255,0.25);
}
.modal-video-placeholder p { color: rgba(255,255,255,0.8); font-size: 15px; }


.tour-section { position: relative; padding: 100px 0; overflow: hidden; }
.tour-bg { position: absolute; inset: 0; }
.tour-bg img { width: 100%; height: 100%; object-fit: cover; }

.tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,71,49,0.9) 0%, rgba(26,71,49,0.7) 100%);
}

.tour-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
}
.tour-icon { font-size: 40px; margin-bottom: 16px; }

.tour-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 16px;
}

.tour-content p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  max-width: 500px; margin: 0 auto 32px;
}



.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card.featured { border: 2px solid var(--gold); background: #fffdf5; }
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }

.testi-card > p {
  font-size: 14px; color: var(--gray-text);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gray-mid);
  padding-top: 16px;
}

.testi-author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--green-pale);
}
.testi-author strong { font-size: 14px; font-weight: 600; color: var(--text-dark); display: block; }
.testi-author span { font-size: 12px; color: var(--gray-text); }



.contact-inner {
  
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start;
}

.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white); margin-bottom: 16px; line-height: 1.25;
}
.contact-left p { color: rgba(255,255,255,0.8); font-size: 15px; }

.contact-info {
  margin-top: 32px; display: flex; flex-direction: column; gap: 10px;
}
.contact-info p { font-size: 14px; color: rgba(255,255,255,0.88); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 5px;
}

.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}
.form-group input,
.form-group select,

.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px; color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,

.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.1);
}
.form-group textarea { resize: vertical; }
.err { font-size: 12px; color: #c0392b; min-height: 16px; }

.form-success {
  font-size: 14px; color: var(--green-mid); text-align: center;
  background: var(--green-pale); padding: 10px; border-radius: var(--radius-sm);
}



.footer-cta {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--gray-mid);
}

.footer-cta-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 32px; flex-wrap: wrap;
}

.footer-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--text-dark); margin-bottom: 8px;
}
.footer-cta p { color: var(--gray-text); font-size: 15px; }
.fcta-btns { display: flex; gap: 14px; flex-wrap: wrap; }



.footer {
  
  background: var(--text-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 48px;
}

.footer-logo {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.social-links {
  display: flex; gap: 12px; margin-top: 18px;
}

.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: all var(--t);
}
.social-links a:hover { background: var(--gold); color: var(--text-dark); }

.footer-col h4 {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li,

.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--t);
}
.footer-col ul a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; padding: 18px 0;
  font-size: 12px; color: rgba(255,255,255,0.4);
}



@media (max-width: 920px) {
  
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .milestones-inner { grid-template-columns: 1fr; gap: 40px; }
  .milestones-stats { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}



@media (max-width: 680px) {
  
  .section { padding: 56px 0; }

  .stats-bar-grid { gap: 8px; }
  .sbar-item { padding: 8px 20px; }
  .sbar-divider { height: 36px; }

  .performers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .milestones-stats { grid-template-columns: 1fr 1fr; }

  .campus-grid { grid-template-columns: 1fr; }
  .campus-card img, .campus-card.large img { height: 220px; }

  
  .events-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ev-img.tall  { grid-row: auto; }
  .ev-img.wide  { grid-column: 1 / -1; }
  .events-mosaic .ev-img { height: 160px; }

  .learning-grid { grid-template-columns: 1fr; }
  .learn-card img { height: 200px; }

  .lectures-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 18px; }

  .footer-grid { grid-template-columns: 1fr; }

  .fcta-btns { flex-direction: column; width: 100%; }
  .fcta-btns .btn { text-align: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
}



@media (max-width: 420px) {
  .performers-grid  { grid-template-columns: 1fr; }
  .lectures-grid    { grid-template-columns: 1fr; }
  .hero-btns .btn   { width: 100%; text-align: center; }
  .events-mosaic    { grid-template-columns: 1fr; }
  .ev-img.wide      { grid-column: auto; }
  .sbar-item        { padding: 8px 12px; }
}
