:root {
  /* Main Green Shades */
  --green: #1a5c2a;
  --green-dark: #0f3d1c;
  
  /* Brand Gold Accents */
  --gold: #c8922a;
  --gold-hover: #b07d1e;
  
  /* Base Neutrals */
  --white: #ffffff;
  --offwhite: #f8f9f4;
  --ink: #1a1a1a;
  --ink2: #444;
  --muted: #888;
  --border: #e0e8e2;
  --red: #dc2626;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* BUTTONS */
.btn-green {
  background: var(--green);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  display: inline-block;
  transition: background .3s;
}
.btn-green:hover { background: var(--green-dark); }

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  display: inline-block;
  transition: background .3s;
}
.btn-gold:hover {
  background-color: var(--gold-hover);
}

.text-gold {
  color: var(--gold);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: .7rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  display: inline-block;
  transition: all .3s;
}
.btn-outline:hover { background: var(--white); color: var(--green); }

/* TOP BAR */
.top-bar {
  background: var(--green);
  padding: .5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  gap: 1rem;
}
.top-bar i { margin-right: .35rem; color: var(--gold); }
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--gold); }

/* NAV */
nav {
  background: var(--green-dark);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 0;
}
.nav-logo img { width: 52px; height: 52px; object-fit: contain; }
.nav-title strong { display: block; font-size: .9rem; font-weight: 800; color: var(--white); }
.nav-title small { font-size: .68rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  padding: 1.6rem 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--white); cursor: pointer; }

/* ANNOUNCE BAND */
.announce-band {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: .85rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announce-label {
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 3px;
  white-space: nowrap;
}
.announce-text { font-size: .85rem; color: var(--white); font-weight: 600; }
.announce-text a { color: var(--gold); text-decoration: underline; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d7a3f 100%);
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  top: -200px; right: -100px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: .3rem .8rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); flex-wrap: wrap; }
.stat-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-item span { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

.hero-img { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.hero-img img { width: 100%; height: 420px; object-fit: cover; object-position: center 20%; }
.hero-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); border-radius: 10px; padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.badge-icon { width: 40px; height: 40px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); }
.badge-text strong { display: block; font-size: .8rem; font-weight: 800; color: var(--ink); }
.badge-text span { font-size: .68rem; color: var(--muted); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 4rem 2.5rem;
  text-align: center;
}
.page-hero .sec-label { color: rgba(255,255,255,.6); }
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 800;
  margin-top: .5rem;
}

/* SECTIONS */
section { padding: 5rem 2.5rem; }
.sec-label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: .6rem; }
.sec-title { font-family: 'Manrope', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: .8rem; }
.sec-sub { font-size: .9rem; color: var(--ink2); max-width: 560px; line-height: 1.8; }

/* WELCOME */
.welcome { background: var(--offwhite); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.welcome-img { border-radius: 12px; overflow: hidden; position: relative; }
.welcome-img img { width: 100%; height: 480px; object-fit: cover; object-position: center 20%; }
.welcome-badge { position: absolute; bottom: 1.5rem; right: 1.5rem; background: var(--green); color: var(--white); border-radius: 10px; padding: 1rem 1.4rem; text-align: center; }
.welcome-badge strong { display: block; font-size: 1.8rem; font-weight: 800; }
.welcome-badge span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.welcome-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.value-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; }
.value-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* CONFESSION BAND */
.confession-band { background: var(--green); padding: 4rem 2.5rem; text-align: center; }
.confession-label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.confession-band blockquote { font-family: 'Manrope', sans-serif; font-size: clamp(1.1rem, 3vw, 1.5rem); font-style: italic; color: var(--white); line-height: 1.8; max-width: 800px; margin: 0 auto 2rem; }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
  background: var(--white);
}
.card:hover { border-color: var(--green); box-shadow: 0 12px 40px rgba(26,92,42,.1); transform: translateY(-4px); }
.card-icon { width: 52px; height: 52px; background: var(--offwhite); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--green); }
.card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.card p { font-size: .82rem; color: var(--muted); line-height: 1.75; }

/* GALLERY MOSAIC (homepage) */
.gallery-mosaic { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 260px 260px; gap: .4rem; }
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(15,61,28,.8) 0%, transparent 100%); color: var(--white); padding: 1.2rem .8rem .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transition: opacity .3s; }
.mosaic-item:hover .mosaic-overlay { opacity: 1; }

/* ADMISSIONS */
.admit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.admit-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
.class-list { list-style: none; margin: 1.5rem 0; }
.class-list li { display: flex; align-items: center; gap: .75rem; padding: .9rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; font-weight: 600; }
.class-list li:last-child { border-bottom: none; }
.class-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* TESTIMONIALS */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.test-card { background: var(--offwhite); border-radius: 12px; padding: 1.8rem; border-left: 4px solid var(--green); }
.test-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.test-card blockquote { font-size: .85rem; font-style: italic; line-height: 1.8; color: var(--ink2); margin-bottom: 1.2rem; }
.test-author { display: flex; align-items: center; gap: .75rem; }
.ta-av { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.ta-name { font-size: .82rem; font-weight: 700; color: var(--ink); }
.ta-role { font-size: .72rem; color: var(--muted); }

/* ANNOUNCEMENTS */
.ann-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.ann-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .3s; }
.ann-card:hover { box-shadow: 0 12px 40px rgba(26,92,42,.12); transform: translateY(-3px); }
.ann-body { padding: 1.8rem; }
.ann-tag { background: var(--green); color: var(--white); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 3px; display: inline-block; margin-bottom: .8rem; }
.ann-date { font-size: .72rem; color: var(--muted); margin-bottom: .5rem; }
.ann-body h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.ann-body p { font-size: .84rem; color: var(--ink2); line-height: 1.75; }

/* GALLERY PAGE */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 3rem; }
.g-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.07); }
.g-overlay { position: absolute; inset: 0; background: rgba(15,61,28,.5); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity .3s; }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.contact-icon { width: 44px; height: 44px; background: var(--offwhite); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1rem; flex-shrink: 0; }
.contact-card h3 { font-size: .88rem; font-weight: 800; margin-bottom: .3rem; }
.contact-card p, .contact-card a { font-size: .82rem; color: var(--ink2); display: block; }
.contact-card a:hover { color: var(--green); }
.form-field { width: 100%; padding: .9rem 1rem; border: 1px solid var(--border); border-radius: 6px; font-family: 'Manrope', sans-serif; font-size: .88rem; outline: none; transition: border .2s; margin-bottom: 1rem; color: var(--ink); }
.form-field:focus { border-color: var(--green); }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.03); top: -200px; right: -100px; }
.cta-section .sec-label { color: rgba(255,255,255,.5); }
.cta-section .sec-title { color: var(--white); text-align: center; max-width: 520px; margin: 0 auto 1rem; }
.cta-section .sec-sub { color: rgba(255,255,255,.7); text-align: center; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* FOOTER */
footer { background: var(--green-dark); padding: 4rem 2.5rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-wrap img { width: 52px; height: 52px; object-fit: contain; }
.footer-name { font-weight: 800; font-size: .95rem; color: var(--white); line-height: 1.3; }
.footer-name small { display: block; font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .08em; }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 1.5rem; max-width: 300px; }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; transition: all .2s; }
.footer-socials a:hover { background: var(--green); color: var(--white); }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { background: var(--green-dark); border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 2.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: rgba(255,255,255,.35); }

/* ANIMATE */
.r { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.r.v { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .ann-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
 
.hero { 
  grid-template-columns: 1fr; 
  padding: 3rem 1.5rem; 
  min-height: auto; 
}
.hero-img { 
  display: block; 
  width: 100%; 
  margin-top: 1.5rem; 
}
.hero-img img { 
  height: 280px; /* Adjust height to fit mobile screens nicely */ 
  object-fit: cover; 
}
@media (max-width: 768px) {
  /* ... existing mobile rules ... */

  /* Compact Badge on Mobile */
  .welcome-badge {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
  }

  .welcome-badge strong {
    font-size: 1.1rem;
    line-height: 1;
  }

  .welcome-badge span {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }
}
}
  .welcome { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item.tall { grid-row: span 1; }
  .admit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  section { padding: 3.5rem 1.5rem; }
  .top-bar { display: none; }
}