/* ===== RESET & BASE ===== */
/* Fonts loaded via <link> in HTML <head> for faster rendering */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 80px; scroll-behavior: smooth; }

body {
  font-family: "Work Sans", sans-serif;
  color: #444;
  background: #fcfaf7;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Viga", sans-serif;
}
h4 { color: #c62828; }

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
a.btn:hover { color: inherit; }
a.btn.btn-primary, a.btn.btn-primary:hover { color: #fff; }

/* Text hyperlink style */
.text-link { color: #1a6dd4; text-decoration: underline; transition: color 0.2s; }
.text-link:hover { color: #124a8f; }

/* Arrow links — nudge arrow on hover */
.arrow-link { color: #1a6dd4; text-decoration: underline; display: inline-flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.arrow-link:hover { color: #124a8f; }
.arrow-link .arrow { display: inline-block; transition: transform 0.2s; }
.arrow-link:hover .arrow { transform: translateX(4px); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== PLACEHOLDER IMAGE ICON ===== */
[class*="-placeholder"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
[class*="-placeholder"]::after {
  content: "";
  display: block;
  width: 40%;
  max-width: 64px;
  aspect-ratio: 1;
  opacity: 0.35;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}
.avatar-placeholder::after,
.icon-placeholder::after,
.logo-placeholder::after {
  max-width: 24px;
  width: 60%;
}

/* ===== NAV ===== */
.site-nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}
.nav-logo { flex-shrink: 0; }
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-placeholder,
.logo-img {
  width: 120px;
  height: 36px;
  background: transparent;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}
.nav-logo .logo-img {
  height: 70px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-dropdown-toggle {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #444;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.nav-links > li > a:hover,
.nav-dropdown-toggle:hover { color: #111; }
.nav-links .nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  background: #c62828;
  color: #fff;
  border-color: #a52222;
  box-shadow: 0 3px 0 0 #8b1c1c;
}
.nav-links .nav-cta:hover {
  background: #b52424;
  color: #fff;
  box-shadow: 0 1px 0 0 #8b1c1c;
  transform: translateY(2px);
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.3rem;
  font-size: 0.75rem;
}

/* Dropdowns */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 160px;
  padding: 0.4rem 0;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: #444;
}
.dropdown li a:hover { background: #f5f5f5; color: #111; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  color: #444;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: #e8e8e8;
  color: #111;
}
.lang-toggle .lang-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 2rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open > li > a,
  .nav-links.open .nav-dropdown-toggle {
    padding: 0.75rem 0;
    width: 100%;
    text-align: left;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
  .nav-links.open .nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 0.75rem 0;
    text-align: center;
    width: 100%;
  }
}

/* ===== UTILITIES ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(2px);
}
.btn:active {
  transform: translateY(4px);
}
.btn-primary {
  background: #c62828;
  color: #fff;
  border-color: #a52222;
  box-shadow: 0 4px 0 0 #8b1c1c;
  font-weight: 700;
}
.btn-primary:hover {
  background: #b52424;
  box-shadow: 0 2px 0 0 #8b1c1c;
}
.btn-primary:active {
  box-shadow: none;
}
.btn-yellow {
  background: #ecc94b;
  color: #2d2a28;
  border-color: #d4b43e;
  box-shadow: 0 4px 0 0 #b89a32;
}
.btn-yellow:hover {
  background: #e0be3f;
  box-shadow: 0 2px 0 0 #b89a32;
}
.btn-secondary {
  background: #fff;
  color: #242221;
  border-color: #f2ede4;
  box-shadow: 0 4px 0 0 #e0d9ce;
}
.btn-secondary:hover {
  box-shadow: 0 2px 0 0 #e0d9ce;
}
.btn-secondary:active {
  box-shadow: none;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #222;
}

/* ===== WAVE BORDER SYSTEM =====
   Add .wave-top and/or .wave-bottom to any section.
   Combine with a color class to match the section's background:
     .wave-light    (#f5f5f5)
     .wave-eee      (#eeeeee)
     .wave-dark     (#444444)
     .wave-darker   (#333333)
     .wave-white    (#ffffff)
     .wave-hero     (#999999)
===== */

.wave-top,
.wave-bottom {
  position: relative;
}

.wave-top  { margin-top: 44px; }
.wave-bottom { margin-bottom: 44px; }

.wave-top::before {
  content: "";
  position: absolute;
  top: -43px;
  left: 0;
  width: 100%;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.wave-bottom::after {
  content: "";
  position: absolute;
  bottom: -43px;
  left: 0;
  width: 100%;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.wave-white.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.wave-white.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.wave-light.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23f2ede4'/%3E%3C/svg%3E");
}
.wave-light.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23f2ede4'/%3E%3C/svg%3E");
}

.wave-eee.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23eeeeee'/%3E%3C/svg%3E");
}
.wave-eee.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23eeeeee'/%3E%3C/svg%3E");
}

.wave-dark.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23444444'/%3E%3C/svg%3E");
}
.wave-dark.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23444444'/%3E%3C/svg%3E");
}

.wave-darker.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23242221'/%3E%3C/svg%3E");
}
.wave-darker.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23242221'/%3E%3C/svg%3E");
}

.wave-hero.wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23999999'/%3E%3C/svg%3E");
}
.wave-hero.wave-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23999999'/%3E%3C/svg%3E");
}

section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade"] {
  transform: none;
}
[data-animate="slide-left"] {
  transform: translateX(-40px);
}
[data-animate="slide-left"].is-visible {
  transform: translateX(0);
}
[data-animate="slide-right"] {
  transform: translateX(40px);
}
[data-animate="slide-right"].is-visible {
  transform: translateX(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  max-width: 100%;
  padding: 0;
  height: 560px;
  overflow: hidden;
}
.hero-img-placeholder,
.hero-img {
  width: 100%;
  height: 100%;
  background: #bbb;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 2rem;
}
.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.hero-content > * {
  max-width: 600px;
}
.hero-overlay h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 1;
  margin-bottom: 1.5rem;
}
.hero-overlay p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero-buttons .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 0 0 rgba(255,255,255,0.3);
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  box-shadow: 0 2px 0 0 rgba(255,255,255,0.3);
}

/* ===== CLASSES (2-column fork) ===== */
.classes { text-align: left; }
.section-intro {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.classes h2,
.classes .section-intro { text-align: left; }
.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.class-card {
  display: block;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
}
.class-card:hover {
  border-color: #888;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.card-img-placeholder,
.card-img {
  width: 100%;
  height: 200px;
  background: #ccc;
  object-fit: cover;
}
.class-card h3 {
  padding: 1.25rem 1.25rem 0.25rem;
  font-size: 1.25rem;
}
.class-card p {
  padding: 0 1.25rem;
  color: #444;
  font-size: 0.95rem;
}
.class-card .btn {
  margin: 1rem 1.25rem 1.25rem;
}

/* ===== WHY LEARN ===== */
.why-learn {
  text-align: center;
  /* background: #eef4fb; */
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  /* margin-top: 32px;
  margin-bottom: 32px; */
}
/* .why-learn::before,
.why-learn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.why-learn::before {
  top: -31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V36c-160-12-280-36-480-36S560 36 400 36 200 12 0 12z' fill='%23eef4fb'/%3E%3C/svg%3E");
}
.why-learn::after {
  bottom: -31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v12c-160 12-280 36-480 36S560 12 400 12 200 36 0 36z' fill='%23eef4fb'/%3E%3C/svg%3E");
} */
.why-learn h2 { margin-bottom: 2rem; }
.why-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.why-item {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1.5rem;
}
.icon-placeholder {
  width: 56px;
  height: 56px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: #c62828;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.why-item p {
  color: #444;
  font-size: 0.9rem;
}

/* ===== OUR SCHOOL ===== */
.school-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.school-img-wrap {
  position: relative;
}
.school-img-placeholder,
.school-img {
  width: 100%;
  height: 320px;
  background: #ccc;
  border-radius: 8px;
  object-fit: cover;
}
.school-img-overlay-placeholder {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  background-color: #bbb;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: rotate(-4deg);
}
.school-img-overlay-placeholder[style*="background-image"] {
  background-color: transparent;
}
.school-text p {
  color: #444;
  margin-bottom: 1.25rem;
}
.school-link {
  display: block;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.school-link:hover {
  color: #222;
}
.stats {
  display: flex;
  gap: 2rem;
}
.stats li {
  font-size: 0.95rem;
  color: #444;
}
.stats strong {
  display: block;
  font-size: 1.5rem;
  color: #222;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  text-align: center;
  /* background: #eef8ee; */
  max-width: 100%;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  /* margin-top: 32px; */
  margin-bottom: 0;
}
/* .testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.testimonials::before {
  top: -31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V28c-100-8-240-28-400-28S780 28 600 20 320 0 200 0 60 20 0 20z' fill='%23eef8ee'/%3E%3C/svg%3E");
}
.testimonials::after {
  display: none;
} */
.testimonials h2 { margin-bottom: 0.5rem; }
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.slider-track { position: relative; min-height: 160px; }
.testimonial-card {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: left;
}
.testimonial-card.active { display: block; }
.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar-placeholder {
  width: 40px;
  height: 40px;
  background: #bbb;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: #555;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  color: #333;
}
.slider-btn:hover { background: #bbb; }
.slider-prev { left: -52px; }
.slider-next { right: -52px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.slider-dots button.active { background: #666; }

/* Language toggle */
.testimonial-lang {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.lang-toggle {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f5f5f5;
  color: #888;
  cursor: pointer;
  font-family: inherit;
}
.lang-toggle.active {
  background: #555;
  color: #fff;
  border-color: #444;
}
.lang-toggle:hover:not(.active) { background: #e0e0e0; }

/* ===== SPONSORS (thin scrolling strip) ===== */
.sponsors {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  max-width: 100%;
  background: #eee;
}
.sponsors-inner {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.sponsors-track {
  display: flex;
  gap: 3rem;
  animation: scroll-sponsors 30s linear infinite;
  width: max-content;
}
.sponsor-logo-placeholder,
.sponsor-logo {
  width: 140px;
  height: 64px;
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: contain;
  padding: 0.35rem;
}
@keyframes scroll-sponsors {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sponsors-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #444;
  text-decoration: underline;
}
.sponsors-link:hover { color: #222; }

/* ===== FAQ ===== */
.faq { max-width: 720px; }
.faq-list { margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}
.faq-item summary:hover { color: #000; }
.faq-item p {
  margin-top: 0.5rem;
  color: #444;
  font-size: 0.95rem;
}
.faq-more {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #444;
  text-decoration: underline;
}
.faq-more:hover { color: #222; }

/* ===== ENROLL CTA ===== */
.enroll-cta {
  text-align: center;
  background: #444444;
  color: #fff;
  max-width: 100%;
  padding: 4rem 2rem;
}
.enroll-cta h2 { color: #fff; margin-bottom: 0.5rem; }
.enroll-cta p { margin-bottom: 1.5rem; opacity: 0.85; }
.enroll-cta .btn-primary { background: #c62828; color: #fff; border-color: #a52222; box-shadow: 0 4px 0 0 #8b1c1c; }
.enroll-cta .btn-primary:hover { box-shadow: 0 2px 0 0 #8b1c1c; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid #ddd;
  max-width: 100%;
}
.contact-cta a {
  font-weight: 600;
  text-decoration: underline;
  color: #444;
}
.contact-cta a:hover { color: #111; }

/* ===== FOOTER ===== */
.site-footer {
  background: #242221;
  color: #ccc;
  padding: 0;
  max-width: 100%;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col ul li a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-tagline {
  color: #999;
  font-size: 0.88rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.footer-col .logo-placeholder,
.footer-col .logo-img {
  background: transparent;
  width: 180px;
  height: auto;
  max-height: 80px;
}
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.82rem;
  color: #666;
}

/* ===== DECORATIVE MARGIN ICONS ===== */
.deco-icon {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.deco-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #242221;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.deco-icon-left {
  left: -60px;
}
.deco-icon-right {
  right: -55px;
}
section:has(.deco-icon) {
  position: relative;
  overflow: visible;
}
@media (max-width: 1300px) {
  .deco-icon { display: none; }
}

/* ===== PAYPAL FAMILY DIALOG ===== */
.paypal-family-dialog {
  max-width: 440px;
  width: calc(100% - 2rem);
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  inset: 0;
  margin: auto;
}
.paypal-family-dialog::backdrop {
  background: rgba(36, 34, 33, 0.6);
}
.paypal-family-dialog-inner {
  padding: 2rem;
  text-align: center;
  position: relative;
}
.paypal-family-dialog h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #242221;
}
.paypal-family-dialog p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.paypal-family-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.paypal-family-dialog-close:hover { color: #242221; background: #f2ede4; }
.paypal-family-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.paypal-family-actions .btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}

/* ===== REGISTRATION BANNER ===== */
.registration-banner {
  background: #f9a825;
  color: #3e2c00;
  text-align: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.registration-banner p {
  margin: 0;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  background: #2e2b29;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 100%;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/svgs/leave-red-bigger.svg');
  background-repeat: repeat;
  background-size: 150px;
  opacity: 0.05;
  pointer-events: none;
}
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 0.75rem; color: #fff; }
.page-hero p { max-width: 700px; margin: 0 auto; opacity: 0.9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .classes-grid { grid-template-columns: 1fr; }
  .school-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 0.75rem; }
  .hero { height: 400px; }
  .hero-overlay h1 { font-size: 1.75rem; }
  .hero-content { padding: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sponsors { padding-left: 0; padding-right: 0; }
  .sponsors-inner { max-width: 100%; }
  .page-hero::before { display: none; }
}

/* ===== DECORATIVE MARGIN ICONS (site-wide) ===== */
.deco-icon {
  position: absolute;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.deco-icon-left  { left: -55px; }
.deco-icon-right { right: -55px; }
.deco-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c62828;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Dark sections — use a lighter stroke so icons remain visible */
.enroll-cta .deco-icon svg,
.final-cta .deco-icon svg,
.assessment .deco-icon svg,
.page-hero .deco-icon svg,
.heritage-banner .deco-icon svg,
.highlight-strip .deco-icon svg {
  stroke: #fcfaf7;
}
.enroll-cta .deco-icon,
.final-cta .deco-icon,
.assessment .deco-icon,
.page-hero .deco-icon,
.heritage-banner .deco-icon,
.highlight-strip .deco-icon {
  opacity: 0.18;
}
/* On narrower viewports, tuck icons inside section edges */
@media (max-width: 1300px) {
  .deco-icon-left  { left: 0.75rem; }
  .deco-icon-right { right: 0.75rem; }
  .deco-icon { opacity: 0.1; }
}
@media (max-width: 600px) {
  .deco-icon { opacity: 0.07; }
  .deco-icon-left  { left: 0.25rem; }
  .deco-icon-right { right: 0.25rem; }
}

/* Footer Donate button */
.footer-donate-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

/* Footer social links */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #aaa;
  font-size: 0.75rem;
  transition: color 0.2s;
}
.footer-social-item:hover {
  color: #fff;
}
.footer-social-item svg {
  width: 22px;
  height: 22px;
}
.footer-socials a {
  color: #aaa;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: #fff;
}

/* Footer brand column standout */
.footer-brand {
  border: 1px solid #c62828;
  border-radius: 8px;
  padding: 1.25rem;
}
.footer-brand .footer-tagline {
  color: #eee;
  font-size: 1rem;
  font-weight: 500;
}
.footer-brand .footer-donate-btn {
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  background: #c62828;
  border-color: #a52222;
  box-shadow: 0 0 12px rgba(198, 40, 40, 0.4);
  transition: box-shadow 0.3s, transform 0.2s;
}
.footer-brand .footer-donate-btn:hover {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  transform: translateY(-1px);
}

/* ===== NON-DISCRIMINATION MODAL ===== */
.nondiscrim-link {
  background: none;
  border: none;
  color: #ccc;
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 0.75rem;
  transition: color 0.2s;
}
.nondiscrim-link:hover { color: #fff; }

.nondiscrim-dialog {
  max-width: 560px;
  width: calc(100% - 2rem);
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #fcfaf7;
  color: #2d2a28;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.nondiscrim-dialog::backdrop {
  background: rgba(36, 34, 33, 0.6);
}
.nondiscrim-dialog-inner {
  padding: 2rem;
}
.nondiscrim-dialog h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #242221;
  padding-right: 2rem;
}
.nondiscrim-dialog p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d2a28;
  margin-bottom: 1rem;
}
.nondiscrim-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}
.nondiscrim-dialog-close:hover { color: #242221; background: #f2ede4; }

/* ===== TESTIMONIAL ICONS ===== */
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  opacity: 0.25;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c62828'%3E%3Cpath d='M3 21c3 0 7-1 7-8V5c0-1.25-.76-2-2-2H4c-1.25 0-2 .75-2 2v3c0 1.25.75 2 2 2h2v1c0 3-1 4-3 4zM15 21c3 0 7-1 7-8V5c0-1.25-.76-2-2-2h-4c-1.25 0-2 .75-2 2v3c0 1.25.75 2 2 2h2v1c0 3-1 4-3 4z'/%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonial-card .avatar-placeholder {
  background: #f2ede4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card .avatar-placeholder::after {
  content: "";
  width: 60%;
  height: 60%;
  opacity: 0.55;
  max-width: none;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* ===== TESTIMONIAL BACKGROUND ICONS ===== */
/* (removed — too large) */

/* Footer site credit */
.site-credit {
  margin-left: 0.75rem;
  color: #888;
  font-size: 0.82rem;
}
.site-credit a {
  color: #ccc;
  text-decoration: underline;
  transition: color 0.2s;
}
.site-credit a:hover { color: #fff; }
