/* =============================================
   THABISO KHEO – LIFE COACHING CLINIC
   Main Theme Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cormorant+Garamond:wght@300;400;600&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3260;
  --gold:       #c9a84c;
  --gold-light: #f0c96a;
  --gold-pale:  #fdf3d7;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --text-muted: #8a9bb5;
  --red-accent: #b82424;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGATION ── */
#site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.site-branding .site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--white); letter-spacing: 1px;
  text-decoration: none;
}
.site-branding .site-title span { color: var(--gold); }

#primary-navigation ul {
  display: flex; gap: 0.25rem; list-style: none;
}
#primary-navigation ul li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 4px;
  transition: all 0.3s; display: block;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--gold); background: rgba(201,168,76,0.1);
}
#primary-navigation ul li.menu-item-cta > a {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
}
#primary-navigation ul li.menu-item-cta > a:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; display: block; }

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 70px; min-height: 100vh; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 1rem 2.5rem; border: none; border-radius: 4px;
  cursor: pointer; transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); color: var(--navy); }

.btn-outline {
  background: transparent; color: var(--gold); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.6);
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); color: var(--gold); }

.btn-white-outline {
  background: transparent; color: var(--white); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
  display: inline-block;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── SECTION HELPERS ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.section-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: rgba(255,255,255,0.65); line-height: 1.8;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line-center { margin: 1.5rem auto; }
.text-center { text-align: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── AWARDS STRIP ── */
.awards-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  padding: 1.2rem 2rem; text-align: center;
}
.awards-strip p {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy);
}

/* ── HERO ── */
.page-hero {
  min-height: calc(100vh - 70px);
  background:
    linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(17,34,64,0.92) 50%, rgba(10,22,40,0.97) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.02) 40px, rgba(201,168,76,0.02) 41px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 4rem 2rem;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease forwards;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900; line-height: 1; margin-bottom: 0.3rem;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-name .gold { color: var(--gold); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300; color: var(--gold-light);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-roles {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.3s ease both;
}
.role-pill {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50px;
}

.hero-desc {
  max-width: 600px; margin: 0 auto 3rem;
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,0.75);
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-buttons { animation: fadeUp 0.9s 0.5s ease both; }

.hero-stats {
  display: flex; justify-content: center; gap: 4rem;
  padding: 3rem 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 4rem;
  animation: fadeUp 0.9s 0.6s ease both;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ── HOME FEATURES ── */
.home-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.home-feat {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
}
.home-feat:last-child { border-right: none; }
.home-feat:hover { background: rgba(201,168,76,0.04); }
.home-feat .feat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.home-feat h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.75rem; }
.home-feat p { font-size: 0.92rem; line-height: 1.75; color: rgba(255,255,255,0.65); }

/* ── QUOTE BLOCK ── */
.quote-block {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  padding: 5rem 2rem; text-align: center;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: var(--white); max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.5;
}
.quote-text em { color: var(--gold); font-style: normal; font-weight: 700; }
.quote-attr { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #b82424 0%, #8b1a1a 100%);
  padding: 5rem 2rem; text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 1rem;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-book-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold-light); letter-spacing: 2px; margin-bottom: 1.5rem; display: block; }

/* ── INTRO CTA SECTION ── */
.intro-cta-section { padding: 6rem 2rem; text-align: center; }
.intro-cta-inner { max-width: 800px; margin: 0 auto; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 2rem 4rem; text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-header.navy-light-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.page-header .award-badge {
  display: inline-block;
  background: linear-gradient(135deg, #b82424, #8b1a1a);
  color: white; padding: 0.5rem 1.5rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-top: 1.5rem;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  padding: 5rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.about-bio p {
  font-size: 1.05rem; line-height: 1.9;
  color: rgba(255,255,255,0.8); margin-bottom: 1.5rem;
}
.about-bio p strong { color: var(--gold); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-card {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px; padding: 1.2rem;
}
.value-card h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.mission-block {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 3rem; border-radius: 12px; margin-top: 2rem;
}
.mission-block h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 1rem; }
.mission-block p { font-size: 1.05rem; line-height: 1.8; }

/* ── ACHIEVEMENTS ── */
.achievements-section {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.achievements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.achievement-card {
  text-align: center; padding: 2rem 1rem;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 8px;
  background: rgba(255,255,255,0.02); transition: all 0.3s;
}
.achievement-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); transform: translateY(-4px); }
.achievement-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.achievement-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.achievement-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── COURSES ── */
.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem; padding: 4rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.course-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; overflow: hidden;
  transition: all 0.4s; display: flex; flex-direction: column;
}
.course-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.1);
}
.course-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 1.5rem 2rem; position: relative;
}
.course-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(10,22,40,0.2);
  position: absolute; right: 1.5rem; top: 0.5rem; line-height: 1;
}
.course-header h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; color: var(--navy); position: relative; z-index: 1; }
.course-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,22,40,0.6); margin-bottom: 0.3rem; display: block; }
.course-body { padding: 2rem; flex: 1; }
.course-body .course-intro { font-size: 0.98rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.course-features { list-style: none; margin-bottom: 2rem; }
.course-features li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.course-features li:last-child { border-bottom: none; }
.course-features li .check { color: var(--gold); font-size: 0.85rem; margin-top: 0.15rem; flex-shrink: 0; }
.course-features li strong { color: var(--white); display: block; }
.course-price {
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.price-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.price-value { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; }

/* ── SERVICES ── */
.services-intro {
  max-width: 800px; margin: 3rem auto;
  padding: 0 2rem;
  font-size: 1.1rem; line-height: 1.9;
  color: rgba(255,255,255,0.75); text-align: center;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; padding: 2rem 2rem 5rem;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 2.5rem; transition: all 0.4s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 0.8rem; }
.service-card .service-intro { font-size: 0.97rem; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
.service-points { list-style: none; }
.service-points li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.service-points li:last-child { border-bottom: none; }
.service-points li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.4rem; }
.service-points li strong { color: var(--white); display: block; font-size: 0.9rem; }

/* ── WHO THIS IS FOR ── */
.who-section { background: var(--navy-mid); padding: 5rem 2rem; border-top: 1px solid rgba(201,168,76,0.1); }
.who-inner { max-width: 1200px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.who-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15); border-radius: 10px; padding: 2rem; transition: all 0.3s; }
.who-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.who-num { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); font-weight: 900; letter-spacing: 2px; margin-bottom: 0.5rem; opacity: 0.6; display: block; }
.who-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.75rem; }
.who-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.who-highlight { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); padding: 0.4rem 0.8rem; border-radius: 4px; font-weight: 700; font-size: 0.85rem; display: inline-block; margin-top: 0.75rem; }

/* ── REGISTRATION FORM ── */
.reg-form-wrap { max-width: 750px; margin: 0 auto; padding: 4rem 2rem; }
.form-card { background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.2); border-radius: 16px; padding: 3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px; padding: 0.9rem 1rem;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 2rem; }
.form-submit .btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 1.1rem 3rem; border: none; border-radius: 6px;
  cursor: pointer; transition: all 0.3s; width: 100%;
  font-family: 'Barlow', sans-serif;
}
.form-submit .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }
.form-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem; text-align: center;
}
.contact-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; max-width: 800px; margin: 1.5rem auto 0; }
.contact-item .ci-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; display: block; }
.contact-item .ci-value { font-size: 1rem; font-weight: 500; color: var(--white); }
.social-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }
.social-pill {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 0.5rem 1.2rem;
  border-radius: 50px; font-size: 0.8rem; letter-spacing: 1px;
  display: inline-block;
}

/* ── FOOTER ── */
#site-footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem 2rem; text-align: center;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 2rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; list-style: none; }
.footer-nav a { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; margin-top: 1.5rem; line-height: 2; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #primary-navigation { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-bottom: 1px solid rgba(201,168,76,0.2); z-index: 999; }
  #primary-navigation.open { display: block; }
  #primary-navigation ul { flex-direction: column; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .home-features { grid-template-columns: 1fr; }
  .home-feat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .form-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .achievements-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .form-card { padding: 2rem 1.5rem; }
  .courses-grid { grid-template-columns: 1fr; }
}
