/* =========================================================
   DOLCEZZA AFRICA ACCELERATOR — MAIN STYLESHEET
   Design tokens + full responsive layout
   ========================================================= */

:root {
  --navy: #08143c;
  --navy-tint: #07278c;
  --blue: #07278c;
  --gold: #be8c47;
  --gold-deep: #9c703a;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #5a6b85;
  --muted-on-navy: #a9bfd9;
  --hairline: #1c3b8a;
  --hairline-light: #e3eaf2;

  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--gold-deep);
  margin: 0 0 12px;
}

.eyebrow--on-navy { color: var(--gold); }
.eyebrow--pill {
  display: inline-block;
  background: rgba(190,140,71,0.12);
  color: var(--gold-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
}
.eyebrow--pill.eyebrow--on-navy { background: rgba(255,255,255,0.12); color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; line-height: 1.6; }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}

.section-heading--on-navy h2 { color: var(--white); }

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--on-navy p { color: var(--muted-on-navy); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 34px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn--primary { background: var(--gold); color: var(--navy); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--sm { padding: 13px 26px; font-size: 14.5px; }

/* =========================================================
   SKIP LINK / ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: var(--navy-tint);
  padding: 10px 0;
  text-align: center;
}
.announce-bar p {
  color: var(--muted-on-navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--white);
  padding: 16px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 0 var(--hairline-light);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-logo span { color: var(--gold); }
.site-logo-mark { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  margin-right: 28px; /* fallback for engines without flexbox gap support */
}
.main-nav a:hover { color: var(--gold-deep); }
.main-nav ul li:last-child a { margin-right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(8,20,60,0.08);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 16px;
  }
  .nav-toggle { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  background-size: cover;
  background-position: center;
  padding: 110px 0 96px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,20,60,0.82) 0%, rgba(7,39,140,0.86) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: #d7e3f2;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  max-width: 320px;
  line-height: 1.4;
}
.hero-tag--a { background: rgba(190,140,71,0.22); color: #f2ddb8; }
.hero-tag--b { background: rgba(255,255,255,0.12); color: var(--muted-on-navy); }

@media (max-width: 980px) {
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 38px; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 44px; }
  .hero h1 { font-size: 28px; }
  .hero-lead { font-size: 16px; }
}

/* =========================================================
   STAT RAIL
   ========================================================= */
.stat-rail {
  background: var(--navy-tint);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
}
.stat-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--muted-on-navy);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .stat-rail-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* =========================================================
   WHY CARDS
   ========================================================= */
.why-section { padding: 90px 0; background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: left;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(8,20,60,0.06);
}
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.why-card-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--hairline-light);
}
.why-card h3 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--muted); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   TRACK COMPARISON
   ========================================================= */
.tracks-section { padding: 90px 0; background: var(--paper); }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.tracks-grid--four { grid-template-columns: repeat(4, 1fr); }
.track-placeholder {
  aspect-ratio: 700/460;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-placeholder .dashicons {
  font-size: 44px;
  width: 44px;
  height: 44px;
  color: var(--gold);
}
@media (max-width: 1100px) {
  .tracks-grid--four { grid-template-columns: repeat(2, 1fr); }
}
.track-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,52,102,0.08);
}
.track-card img { width: 100%; aspect-ratio: 700/460; object-fit: cover; }
.track-body { padding: 24px 28px 28px; }
.track-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
  color: var(--gold-deep); display: block; margin-bottom: 6px;
}
.track-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); }
.track-card p.track-desc { color: var(--muted); font-size: 15px; margin-top: 10px; }
.track-skills { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.track-skills li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.track-skills li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.track-card .btn { margin-top: 22px; }

@media (max-width: 880px) {
  .tracks-section { padding: 56px 0; }
  .tracks-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   SCHOLARSHIP LEDGER (signature element)
   ========================================================= */
.ledger-section { padding: 90px 0; background: var(--white); }
.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ledger-ticket {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 26px;
}
.ledger-num {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--muted);
}
.ledger-ticket h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin: 8px 0 0;
}
.ledger-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
}
.ledger-stamp {
  font-size: 12.5px; font-weight: 800; letter-spacing: 1px;
  color: var(--gold-deep); margin-top: 14px; display: block;
}

@media (max-width: 980px) {
  .ledger-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ledger-section { padding: 56px 0; }
  .ledger-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TIMELINE / HOW IT WORKS (alternating, dotted vertical line)
   ========================================================= */
.timeline-section { padding: 90px 0; background: var(--white); }
.timeline-track { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-track::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, var(--gold) 0 6px, transparent 6px 14px);
  transform: translateX(-50%);
}
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 32px;
}
.timeline-row:last-child { margin-bottom: 0; }
.timeline-row--left .timeline-card { grid-column: 1; margin-left: auto; text-align: right; }
.timeline-row--right .timeline-card { grid-column: 3; margin-right: auto; text-align: left; }
.timeline-dot {
  grid-column: 2;
  justify-self: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-card {
  background: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(8,20,60,0.06);
}
.timeline-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-deep);
}
.timeline-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-top: 6px; }
.timeline-card p { font-size: 14px; color: var(--muted); margin-top: 6px; }

@media (max-width: 780px) {
  .timeline-track::before { left: 20px; }
  .timeline-row { grid-template-columns: 40px 1fr; }
  .timeline-row--left .timeline-card,
  .timeline-row--right .timeline-card {
    grid-column: 2; margin: 0; text-align: left;
  }
  .timeline-dot { grid-column: 1; }
}
@media (max-width: 560px) {
  .timeline-section { padding: 56px 0; }
}

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 90px 0; }
.closing-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta h2 { font-size: 32px; font-weight: 800; color: var(--white); }
.closing-cta p { color: var(--muted-on-navy); font-size: 16px; font-weight: 500; margin-top: 12px; }
.closing-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 28px 0 32px;
  text-align: left;
}
.closing-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.closing-check-item .dashicons { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.closing-cta .btn { background: var(--gold); color: var(--navy); }

@media (max-width: 780px) {
  .closing-cta { padding: 56px 0; }
  .closing-checklist { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); padding: 56px 0 28px; text-align: center; }
.footer-logo { display: inline-flex; margin-bottom: 24px; }
.footer-socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 18px;
  padding: 0;
}
.footer-socials a { color: var(--muted-on-navy); font-size: 13.5px; font-weight: 500; }
.footer-socials a:hover { color: var(--gold); }
.footer-quicklinks {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 28px;
  padding: 0;
}
.footer-quicklinks a { color: #d7e3f2; font-size: 13.5px; }
.footer-quicklinks a:hover { color: var(--gold); }
.footer-copyright {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  color: #6e8cb0;
  font-size: 13px;
}

@media (max-width: 560px) {
  .site-footer { padding: 44px 0 24px; }
}

/* =========================================================
   APPLICATION FORM (page-apply.php)
   ========================================================= */
.apply-hero {
  background: var(--navy);
  padding: 64px 0 48px;
  text-align: center;
}
.apply-hero h1 { font-size: 36px; font-weight: 700; color: var(--white); }
.apply-hero p { color: var(--muted-on-navy); margin-top: 12px; font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

.apply-section { background: var(--paper); padding: 56px 0 90px; }
.apply-form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,52,102,0.08);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}

.form-group { display: block; margin: 0; padding: 0; border: none; }
.form-group + .form-group { margin-top: 36px; }
.form-group legend,
.form-group .group-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  padding: 0;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.field .req { color: #d6453d; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,52,102,0.10);
}
.field-hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.radio-grid, .checkbox-grid {
  display: grid;
  gap: 10px;
}
.radio-option, .checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-option:hover, .checkbox-option:hover { border-color: var(--navy); background: var(--paper); }
.radio-option input, .checkbox-option input { margin-top: 2px; accent-color: var(--navy); }
.radio-option:has(input:checked), .checkbox-option:has(input:checked) {
  border-color: var(--gold-deep);
  background: rgba(190,140,71,0.08);
}

.consent-line { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.consent-line a { color: var(--navy); text-decoration: underline; }

.apply-submit-row { margin-top: 32px; text-align: center; }
.apply-submit-row .btn { width: 100%; padding: 17px; font-size: 16px; }

.form-feedback {
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14.5px;
  margin-bottom: 28px;
}
.form-feedback--success { background: #e8f7ee; color: #0a4a24; border: 1px solid #4caf7d; }
.form-feedback--error { background: #fdecea; color: #9b2c25; border: 1px solid #e2998f; }
.form-feedback--error ul { margin: 8px 0 0; padding-left: 18px; }

@media (max-width: 600px) {
  .apply-form { padding: 24px 20px; }
  .apply-hero { padding: 48px 0 36px; }
  .apply-hero h1 { font-size: 26px; }
}

/* =========================================================
   SUCCESS MODAL (application submitted confirmation)
   ========================================================= */
.matalent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: matalent-fade-in 0.2s ease;
}
.matalent-modal {
  background: var(--white);
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 20, 40, 0.35);
  animation: matalent-pop-in 0.25s ease;
}
.matalent-modal-icon { margin-bottom: 18px; }
.matalent-modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.matalent-modal p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}
.matalent-modal .btn { width: 100%; }

@keyframes matalent-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes matalent-pop-in {
  from { opacity: 0; transform: scale(0.94) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
  .matalent-modal { padding: 32px 22px 24px; }
  .matalent-modal h2 { font-size: 19px; }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-program {
  background: var(--white);
  padding: 90px 0;
}
.about-program-inner {
  display: grid;
  grid-template-columns: 54% 42%;
  gap: 4%;
  align-items: start;
}
.about-program-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 10px 0 18px;
}
.about-program-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}
.about-fee-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-fee-item { text-align: center; flex: 1; min-width: 100px; }
.about-fee-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-fee-sublabel {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.about-fee-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.about-fee-value--full { color: var(--muted); text-decoration: line-through; }
.about-fee-value--cover { color: var(--navy); }
.about-fee-value--pay { color: var(--gold-deep); font-size: 28px; }
.about-fee-divider { color: var(--gold-deep); font-size: 20px; font-weight: 700; flex-shrink: 0; }

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.about-mini-stat {
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.about-mini-stat--mint { background: rgba(190,140,71,0.10); }
.about-mini-stat--peach { background: rgba(7,39,140,0.06); }
.about-mini-stat--gray { background: var(--paper); }
.about-mini-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}
.about-mini-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-photo-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tile .dashicons { font-size: 28px; width: 28px; height: 28px; color: var(--muted); opacity: 0.5; }
.about-photo-tile--brand {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

@media (max-width: 980px) {
  .about-program { padding: 64px 0; }
  .about-program-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-program-text h2 { font-size: 26px; }
  .about-fee-card { padding: 16px; }
}
@media (max-width: 560px) {
  .about-program { padding: 48px 0; }
  .about-fee-card { flex-direction: column; align-items: center; }
  .about-fee-divider { transform: rotate(90deg); }
  .about-mini-stats { grid-template-columns: 1fr; }
}

/* =========================================================
   PROGRAMME SCHEDULE
   ========================================================= */
.schedule-section { padding: 90px 0; background: var(--paper); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.schedule-item {
  background: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 24px;
}
.schedule-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.schedule-value { font-size: 15px; color: var(--navy); line-height: 1.55; }

@media (max-width: 980px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .schedule-section { padding: 56px 0; }
  .schedule-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 90px 0; background: var(--white); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 6px 22px;
}
.faq-item summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--gold-deep);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 14.5px; color: var(--muted); padding-bottom: 18px; line-height: 1.65; }

@media (max-width: 560px) {
  .faq-section { padding: 56px 0; }
}
