/* ============================================================
   ZENITH INTERNATIONAL COLLEGE — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:    #0a1628;
  --navy2:   #112244;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --cream:   #f7f3ec;
  --cream2:  #ede7d9;
  --white:   #ffffff;
  --slate:   #4a5568;
  --smoke:   #f0ece4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --nav-h: 80px;
  --bar-h: 36px;   /* announcement bar height */
  --radius: 4px;
  --shadow: 0 8px 40px rgba(10,22,40,.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.3);

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

section { padding: 100px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: var(--bar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,22,40,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.14);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom-color: rgba(201,168,76,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-emblem {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-emblem svg { width: 26px; height: 26px; fill: var(--navy); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 14px; height: 14px; transition: transform .3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: .5rem 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.dropdown a:hover { color: var(--gold); padding-left: 1.6rem; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(17,34,68,.8) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
  z-index: 1;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: calc(var(--bar-h) + var(--nav-h) + 3rem) 2rem 4rem;
  margin-left: max(2rem, calc((100vw - 1260px)/2 + 2rem));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .8s .45s ease both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .8s .6s ease both;
}
.hero-stat span {
  display: block;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--gold);
  color: var(--navy);
  padding: .55rem 2rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.4;
}
.announce-bar a { text-decoration: underline; color: var(--navy); }

/* ── About Strip ───────────────────────────────────────────── */
.about-strip {
  background: var(--navy);
  padding: 60px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,.15);
  transition: background var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(201,168,76,.05); }
.strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.strip-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--white);
}
.strip-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ── Programs ──────────────────────────────────────────────── */
.programs { background: var(--cream); }
.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,22,40,.14);
}
.program-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.program-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card-body h4 { margin-bottom: .5rem; }
.program-card-body p {
  font-size: .9rem;
  color: var(--slate);
  flex: 1;
  margin-bottom: 1.25rem;
}
.program-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .78rem;
  color: var(--slate);
  padding-top: 1rem;
  border-top: 1px solid var(--cream2);
}
.program-meta span { display: flex; align-items: center; gap: .35rem; }
.program-meta svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

/* ── Why Choose ────────────────────────────────────────────── */
.why { background: var(--white); }
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-img-main img { width: 100%; height: 480px; object-fit: cover; }
.why-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.why-img-accent img { width: 100%; height: 150px; object-fit: cover; }
.why-badge-float {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
  font-family: var(--ff-display);
}
.why-badge-float span { font-size: 2rem; display: block; line-height: 1; }
.why-badge-float small { font-size: .75rem; font-family: var(--ff-body); font-weight: 600; }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .2rem;
}
.why-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.why-item h5 { font-family: var(--ff-display); font-size: 1.1rem; margin-bottom: .25rem; }
.why-item p { font-size: .9rem; color: var(--slate); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 2rem; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--gold2); }
.stat-label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .75rem;
}
.stat-divider {
  width: 1px;
  background: rgba(201,168,76,.2);
  align-self: stretch;
}

/* ── Events ────────────────────────────────────────────────── */
.events { background: var(--cream); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.event-card {
  background: var(--white);
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(10,22,40,.05);
  transition: var(--transition);
  align-items: flex-start;
}
.event-card:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--gold), 0 2px 12px rgba(10,22,40,.1);
}
.event-date {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: .6rem 1rem;
  min-width: 56px;
  flex-shrink: 0;
}
.event-date .day {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.event-date .month {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.event-body h4 { font-size: 1rem; margin-bottom: .35rem; }
.event-body p  { font-size: .85rem; color: var(--slate); margin-bottom: .5rem; }
.event-meta   { font-size: .75rem; color: var(--gold); font-weight: 600; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--navy); padding: 100px 0; overflow: hidden; }
.testimonials-header { text-align: center; color: var(--white); margin-bottom: 3.5rem; }
.testimonials-header h2 { color: var(--white); }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 2rem;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: 380px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px;
  padding: 2.5rem;
  flex-shrink: 0;
}
.testi-quote {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author-info strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}
.testi-author-info span {
  font-size: .8rem;
  color: var(--gold);
}
.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: .5rem; }
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover { background: var(--gold); color: var(--navy); }
.testi-btn svg { width: 18px; height: 18px; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,22,40,.7));
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 460px; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.15);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── News ──────────────────────────────────────────────────── */
.news { background: var(--cream); }
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img {
  height: 200px;
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 1.5rem; }
.news-tag {
  display: inline-block;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.news-body h4 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.4; }
.news-body p  { font-size: .875rem; color: var(--slate); margin-bottom: 1rem; }
.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--slate);
  padding-top: 1rem;
  border-top: 1px solid var(--cream2);
}
.news-read {
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap .3s;
}
.news-card:hover .news-read { gap: .6rem; }

/* ── Partners ──────────────────────────────────────────────── */
.partners { background: var(--white); padding: 60px 0; }
.partners-label { text-align: center; font-size: .8rem; color: var(--slate); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2.5rem; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  opacity: .5;
  filter: grayscale(1);
}
.partner-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .9rem; margin: 1.25rem 0 1.5rem; max-width: 300px; line-height: 1.8; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h5 {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--gold); padding-left: .4rem; }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--bar-h) + var(--nav-h) + 3rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px; }

/* ── Accordion / FAQ ───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--cream2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color .3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s, background .35s;
  font-size: 1.2rem;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
  font-size: .95rem;
  color: var(--slate);
}
.faq-answer-inner { padding-bottom: 1.25rem; }

/* ── Contact Form ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .85rem 1.15rem;
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .3s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: calc(var(--bar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,.2);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { max-height: 90vh; overflow-y: auto; }
.mobile-menu-inner { padding: 1.5rem 2rem 2rem; }
.mobile-nav-link {
  display: block;
  padding: .9rem 0;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .3s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub a {
  display: block;
  padding: .6rem 0;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: color .3s;
}
.mobile-nav-sub a:hover { color: var(--gold); }
.mobile-cta { margin-top: 1.5rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-wrap { gap: 3rem; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 62px;
    --bar-h: 32px;
  }
  section { padding: 70px 0; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-image-wrap { display: none; }
  .hero-content { margin-left: 0; padding-inline: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; }
  .why-wrap { grid-template-columns: 1fr; }
  .why-img-accent, .why-badge-float { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 220px; height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .testi-card { min-width: 300px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,.15); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --bar-h: 40px; } /* wraps to 2 lines on tiny screens */
  .container { padding-inline: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}
