﻿/* â•â• BASE STYLES â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* â•â• ANIMATIONS â•â• */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-left > * { animation: fadeUp .75s ease both; }

.hero-eyebrow { animation-delay: .1s; }

.hero-title   { animation-delay: .22s; }

.hero-intro   { animation-delay: .34s; }

.hero-ctas    { animation-delay: .46s; }

/* â•â• SEO UTILITY â•â•
   Visually hidden but readable by search engines and screen readers.
   Used for keyword-enriched text that doesn't disrupt visual design. */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* bundel.css*/
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KARISIMBI MONTESSORI SCHOOL â€” CSS BUNDLE
   Single file replaces 16 separate requests.
   Order: variables â†’ base â†’ layout â†’ components â†’ responsive
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â• GLOBAL VARIABLES â•â• */
:root {
  --navy:    #0D1B2A;
  --navy2:   #162535;
  --forest:  #1E3A2F;
  --forest2: #2E5E40;
  --gold:    #C9A84C;
  --gold-lt: #E8D49A;
  --parch:   #F0EBE0;
  --cream:   #FAFAF7;
  --mist:    #F5F0E6;
  --sand:    #D4C5A9;
  --ink:     #0a1520;
  --moon:    #8AADCC;
  --text-md: #3a4a3a;
}

/* â•â• BASE STYLES â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* â•â• ANIMATIONS â•â• */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-left > * { animation: fadeUp .75s ease both; }
.hero-eyebrow { animation-delay: .1s; }
.hero-title   { animation-delay: .22s; }
.hero-intro   { animation-delay: .34s; }
.hero-ctas    { animation-delay: .46s; }

/* â•â• SEO UTILITY â•â• */
.seo-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* â•â• NAVIGATION â•â• */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }

.nav-emblem {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.nav-emblem img { width: 100%; height: 100%; object-fit: cover; }

.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--parch); letter-spacing: .03em; }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 38px; height: 38px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  background: transparent; cursor: pointer; transition: all .25s; z-index: 201;
}
.nav-hamburger:hover { background: rgba(201,168,76,0.1); }
.nav-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--gold); transition: all .3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,235,224,0.55); text-decoration: none; transition: color .25s; }
.nav-links a:hover { color: var(--gold); }

.nav-apply { background: var(--gold); color: var(--navy); padding: .55rem 1.4rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity .2s; text-decoration: none; }
.nav-apply:hover { opacity: .85; }

@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; background: rgba(13,27,42,0.98);
    backdrop-filter: blur(16px); padding: 2rem; gap: 1.5rem;
    transform: translateX(-100%); transition: transform .35s ease;
    border-bottom: 1px solid rgba(201,168,76,0.15); z-index: 199;
  }
  .nav-links.active { transform: translateX(0) !important; display: flex !important; }
  .nav-links li { padding: .5rem 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: .9rem; }
  .nav-apply { display: none; }
}

/* â•â• FOOTER â•â• */
footer { background: var(--ink); padding: 4.5rem 5rem 2.5rem; position: relative; overflow: hidden; }
.footer-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.03; z-index: 0; }
.footer-top, .footer-bottom { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; }
.footer-emblem { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: .9rem; color: var(--gold); }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--parch); }
.footer-tagline { font-size: .82rem; line-height: 1.75; color: rgba(240,235,224,0.38); font-weight: 300; }
.footer-col h5 { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .84rem; color: rgba(240,235,224,0.45); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--parch); }
.footer-contact { font-size: .83rem; line-height: 1.85; color: rgba(240,235,224,0.4); font-weight: 300; font-style: normal; }
.footer-contact a { color: rgba(240,235,224,0.4); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--parch); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .74rem; color: rgba(240,235,224,0.22); }
.footer-mark { font-family: 'Cormorant Garamond', serif; font-size: .82rem; color: rgba(201,168,76,0.4); letter-spacing: .06em; }

/* â•â• SHARED â•â• */
.section-tag { display: inline-block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .9rem; }
/* .section-tag::before { content: 'âœ¦ '; } */
.divider-ornament { text-align: center; padding: 2rem 0; font-size: .75rem; letter-spacing: .5em; color: rgba(201,168,76,0.35); }
.gold-line { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: .2; }

/* â•â• HERO â•â• */
#welcome { min-height: 100vh; background: var(--navy); display: grid; grid-template-columns: 1fr; padding-top: 68px; position: relative; overflow: hidden; place-items: center; }
.hero-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.25; z-index: 0; }
#welcome::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 60%, rgba(30,58,47,0.7) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 100% 10%, rgba(201,168,76,0.15) 0%, transparent 60%); z-index: 1; }
.hero-left { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 5rem 2rem; position: relative; z-index: 1; }
.hero-eyebrow { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; display: flex; align-items: center; justify-content: center; gap: .7rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); font-weight: 300; line-height: 1.05; color: var(--parch); margin-bottom: 1.8rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-intro { font-size: .98rem; line-height: 1.85; font-weight: 300; color: rgba(240,235,224,0.68); max-width: 600px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; }
.btn-primary { background: var(--gold); color: var(--navy); padding: .82rem 2rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity .2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: .85; }
.btn-ghost { background: transparent; color: var(--gold-lt); padding: .82rem 2rem; border: 1px solid rgba(201,168,76,.35); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: border-color .2s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); }
.hero-right { position: relative; z-index: 1; display: none; flex-direction: column; justify-content: flex-end; padding: 3rem; }
.founder-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 2.2rem 2rem; backdrop-filter: blur(8px); margin-bottom: 1.5rem; }
.founder-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.founder-message { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; font-weight: 300; color: var(--parch); line-height: 1.7; }
.founder-sig { margin-top: 1.4rem; display: flex; align-items: center; gap: .9rem; }
.sig-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--forest); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--gold); flex-shrink: 0; overflow: hidden; }
.sig-circle img { width: 100%; height: 100%; object-fit: cover; }
.sig-name { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 600; color: var(--parch); }
.sig-role { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,168,76,0.7); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); border-radius: 3px; overflow: hidden; }
.stat-block { background: rgba(13,27,42,0.7); padding: 1.2rem 1rem; text-align: center; backdrop-filter: blur(8px); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); display: block; }
.stat-lbl { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,235,224,0.5); }

/* â•â• FOUNDER FULL â•â• */
#founder-full { background: var(--parch); display: grid; grid-template-columns: 1fr 1.1fr; }
.ff-aside { background: var(--forest); padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.ff-aside-bg { position: absolute; inset: 0; background-image: url('../assets/images/founder.webp'); background-size: cover; background-position: right; opacity: 0.50; z-index: 0; }
.ff-aside::after { content: '"'; position: absolute; right: -1rem; bottom: -3rem; font-family: 'Cormorant Garamond', serif; font-size: 20rem; font-weight: 600; color: rgba(255,255,255,0.04); line-height: 1; z-index: 1; }
.ff-aside blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; font-weight: 300; color: var(--parch); line-height: 1.55; position: relative; z-index: 2; margin-bottom: 1.5rem; }
.ff-aside blockquote em { color: var(--gold); font-style: normal; }
.ff-aside cite { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(201,168,76,0.7); position: relative; z-index: 2; }
.ff-main { padding: 5rem 4.5rem 5rem 4rem; }
.ff-main .section-tag { color: var(--forest2); }
.ff-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.12; color: var(--navy); margin-bottom: 1.8rem; }
.ff-title em { font-style: italic; color: var(--forest); }
.ff-body p { font-size: .95rem; line-height: 1.9; font-weight: 300; color: var(--text-md); margin-bottom: 1.1rem; }
.ff-body p:last-child { margin-bottom: 0; }
.ff-signature { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--sand); display: flex; align-items: center; gap: 1.2rem; }
.ff-sig-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); flex-shrink: 0; overflow: hidden; }
.ff-sig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ff-sig-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.ff-sig-title { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--forest2); margin-top: .1rem; }

/* â•â• PHILOSOPHY â•â• */
#philosophy { background: var(--navy); padding: 6rem 5rem; position: relative; overflow: hidden; }
.phil-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.05; z-index: 0; }
.phil-header, .phil-grid { position: relative; z-index: 1; }
.phil-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.phil-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--parch); line-height: 1.12; }
.phil-header h2 em { font-style: italic; color: var(--gold); }
.phil-header p { font-size: .93rem; line-height: 1.8; color: rgba(240,235,224,0.55); margin-top: 1rem; font-weight: 300; }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.phil-card { border-radius: 4px; overflow: hidden; border: 1px solid rgba(201,168,76,0.15); transition: border-color .3s; display: flex; flex-direction: column; }
.phil-card:hover { border-color: rgba(201,168,76,0.4); }
.phil-card-img { height: 160px; overflow: hidden; position: relative; }
.phil-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.phil-card:hover .phil-card-img img { transform: scale(1.08); }
.phil-card-header { padding: 1.6rem 1.8rem 1.4rem; position: relative; }
.pc-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.pc-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--parch); line-height: 1.2; }
.phil-card-body { padding: 1.4rem 1.8rem 2rem; background: rgba(255,255,255,0.03); }
.phil-card-body p { font-size: .875rem; line-height: 1.82; color: rgba(240,235,224,0.62); font-weight: 300; }
.phil-card.mission .phil-card-header { background: var(--forest); }
.phil-card.vision  .phil-card-header { background: var(--forest); }
.phil-card.values  .phil-card-header { background: linear-gradient(135deg, var(--forest) 0%, var(--navy2) 100%); }
.values-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.values-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; line-height: 1.6; color: rgba(240,235,224,0.62); font-weight: 300; }
.values-list li::before { content: ''; color: var(--gold); flex-shrink: 0; font-size: .6rem; margin-top: .3rem; }
.values-list li strong { color: var(--gold-lt); }

/* â•â• WHY â•â• */
#why { background: var(--mist); padding: 6rem 5rem; }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--navy); line-height: 1.1; }
.why-title em { font-style: italic; color: var(--forest); }
.why-pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-bottom: 3rem; background: var(--sand); border-radius: 4px; overflow: hidden; }
.pillar-panel { padding: 2.5rem 2rem; position: relative; overflow: hidden; z-index: 1; }
.pillar-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.1; z-index: -1; transition: opacity .4s, transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.pillar-panel:hover .pillar-bg-img { opacity: 0.18; transform: scale(1.08); }
.pillar-panel.heart  { background: var(--navy); }
.pillar-panel.mind   { background: var(--forest); }
.pillar-panel.body-p { background: var(--navy2); }
.pp-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1; color: rgba(255,255,255,0.07); margin-bottom: -.6rem; }
.pp-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.pp-label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.pp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--parch); font-weight: 400; margin-bottom: .8rem; }
.pp-body { font-size: .84rem; line-height: 1.82; color: rgba(240,235,224,0.68); font-weight: 300; }
.pp-statement { margin-top: 1.2rem; padding: .8rem 1rem; background: rgba(201,168,76,0.08); border-left: 2px solid var(--gold); font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: var(--gold-lt); }
.reasons-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--forest2); margin-bottom: 1.2rem; }
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.reason-tile { background: white; border-radius: 3px; padding: 1.6rem 1.4rem; border-top: 2px solid transparent; transition: border-color .3s, transform .25s, box-shadow .25s; position: relative; }
.reason-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,27,42,0.08); }
.reason-tile:nth-child(odd):hover  { border-color: var(--gold); }
.reason-tile:nth-child(even):hover { border-color: var(--forest2); }
.rt-n { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; line-height: 1; color: rgba(13,27,42,0.06); position: absolute; top: .8rem; right: 1rem; }
.rt-icon { font-size: 1.3rem; margin-bottom: .7rem; }
.rt-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; line-height: 1.25; }
.rt-body { font-size: .82rem; line-height: 1.72; color: #4a5540; font-weight: 300; }

/* â•â• SPORTS â•â• */
#sports { background: var(--forest); padding: 6rem 5rem; }
.sports-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4rem; align-items: center; }
.sports-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--parch); line-height: 1.1; }
.sports-title em { font-style: italic; color: var(--gold); }
.sports-badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35); padding: .6rem 1.2rem; border-radius: 100px; margin-top: 1.2rem; }
.sb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.sb-text { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.sports-intro { font-size: .93rem; line-height: 1.85; color: rgba(240,235,224,0.7); font-weight: 300; }
.sports-collab-box { background: rgba(13,27,42,0.35); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 1.8rem; margin-top: 1.5rem; }
.scb-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.scb-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--parch); line-height: 1.6; }
.sports-content-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sports-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: 1rem; }
.sports-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.sports-list li { font-size: .85rem; line-height: 1.65; color: rgba(240,235,224,0.72); display: flex; gap: .7rem; align-items: flex-start; }
.sports-list li::before { content: ''; color: var(--gold); flex-shrink: 0; font-size: .72rem; margin-top: .2rem; }
.sports-disciplines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.sport-card { background: rgba(13,27,42,0.35); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 0; text-align: center; transition: background .3s, border-color .3s; overflow: hidden; display: flex; flex-direction: column; }
.sport-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); }
.sport-card-img { height: 140px; overflow: hidden; }
.sport-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.sport-card:hover .sport-card-img img { transform: scale(1.1); }
.sport-card-content { padding: 1.6rem 1.4rem; }
.sport-icon { font-size: 2rem; margin-bottom: .7rem; }
.sport-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--parch); margin-bottom: .4rem; }
.sport-desc { font-size: .78rem; line-height: 1.6; color: rgba(240,235,224,0.55); }
.sports-event-bar { margin-top: 2rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 4px; padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.seb-icon { font-size: 1.5rem; flex-shrink: 0; }
.seb-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.seb-text { font-size: .9rem; color: rgba(240,235,224,0.78); line-height: 1.5; }
.msc-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.msc-card { background: rgba(13,27,42,0.3); border: 1px solid rgba(201,168,76,0.15); border-radius: 3px; padding: 1.4rem; }
.msc-icon { font-size: 1.2rem; margin-bottom: .5rem; }
.msc-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); margin-bottom: .4rem; }
.msc-text { font-size: .82rem; line-height: 1.65; color: rgba(240,235,224,0.65); }
.sports-partners { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; margin-bottom: 3.5rem; padding: 2rem; background: rgba(13,27,42,0.3); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; }
.sp-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(201,168,76,0.6); white-space: nowrap; text-align: center; }
.sp-logos { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 2.5rem; }
.sp-logo-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem; transition: opacity .3s; }
.sp-logo-card:hover { opacity: .85; }
.sp-logo-img { width: 120px; height: 120px; border-radius: 6px; background: #ffffff; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.sp-logo-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; filter: none; opacity: 1; transition: opacity .3s; }
.sp-logo-name { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 400; color: rgba(240,235,224,0.6); letter-spacing: .03em; text-align: center; }
.sp-divider { width: 1px; height: 80px; background: rgba(201,168,76,0.2); flex-shrink: 0; align-self: center; }

/* -- PROGRAMMES -- */
#programmes { background: var(--cream); padding: 6rem 5rem; }
.prog-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.prog-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.12; }
.prog-header h2 em { font-style: italic; color: var(--forest); }
.prog-header p { font-size: .9rem; line-height: 1.8; color: var(--text-md); margin-top: .9rem; font-weight: 300; }
.french-banner { display: flex; align-items: center; gap: 1.2rem; background: var(--navy); border-radius: 4px; padding: 1.2rem 2rem; margin-bottom: 2.5rem; }
.fb-flag { font-size: 1.5rem; flex-shrink: 0; }
.fb-text strong { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .2rem; }
.fb-text span { font-size: .87rem; color: rgba(240,235,224,0.65); font-weight: 300; line-height: 1.5; }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sand); border-radius: 6px; overflow: hidden; }
.prog-card { background: var(--cream); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.prog-card-header-img { height: 400px; overflow: hidden; position: relative; }
.prog-card-header-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.prog-card:hover .prog-card-header-img img { transform: scale(1.08); }
.prog-card-inner { padding: 2.8rem 2.5rem; height: 100%; display: flex; flex-direction: column; }
.prog-accent-bar { height: 4px; width: 100%; }
.prog-card:nth-child(1) .prog-accent-bar { background: linear-gradient(to right, var(--gold), var(--gold-lt)); }
.prog-card:nth-child(2) .prog-accent-bar { background: linear-gradient(to right, var(--forest2), var(--forest)); }
.prog-card:nth-child(3) .prog-accent-bar { background: linear-gradient(to right, var(--navy), var(--navy2)); }
.prog-card:nth-child(4) .prog-accent-bar { background: linear-gradient(to right, var(--forest), var(--navy)); }
.prog-age-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: 100px; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; margin-top: 1.8rem; }
.prog-card:nth-child(1) .prog-age-badge { background: rgba(201,168,76,0.1); color: #a07828; border: 1px solid rgba(201,168,76,0.3); }
.prog-card:nth-child(2) .prog-age-badge { background: rgba(46,94,64,0.1); color: var(--forest2); border: 1px solid rgba(46,94,64,0.25); }
.prog-card:nth-child(3) .prog-age-badge { background: rgba(13,27,42,0.07); color: var(--navy); border: 1px solid rgba(13,27,42,0.15); }
.prog-card:nth-child(4) .prog-age-badge { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }
.prog-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: .3rem; }
.prog-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--forest); margin-bottom: 1.2rem; }
.prog-desc { font-size: .875rem; line-height: 1.82; color: var(--text-md); font-weight: 300; flex: 1; }
.prog-focus { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--sand); }
.prog-focus-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--forest2); margin-bottom: .7rem; }
.prog-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.prog-tag { padding: .25rem .75rem; background: var(--mist); border-radius: 100px; font-size: .7rem; color: var(--text-md); }
.prog-tag.french { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }
.prog-bg-num { position: absolute; bottom: -1rem; right: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 600; line-height: 1; color: rgba(13,27,42,0.04); pointer-events: none; }

/* â•â• PROGRAMMES â•â• */
#programmes { background: var(--cream); padding: 6rem 5rem; }
.prog-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.prog-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.12; }
.prog-header h2 em { font-style: italic; color: var(--forest); }
.prog-header p { font-size: .9rem; line-height: 1.8; color: var(--text-md); margin-top: .9rem; font-weight: 300; }
.french-banner { display: flex; align-items: center; gap: 1.2rem; background: var(--navy); border-radius: 4px; padding: 1.2rem 2rem; margin-bottom: 2.5rem; }
.fb-flag { font-size: 1.5rem; flex-shrink: 0; }
.fb-text strong { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .2rem; }
.fb-text span { font-size: .87rem; color: rgba(240,235,224,0.65); font-weight: 300; line-height: 1.5; }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sand); border-radius: 6px; overflow: hidden; }
.prog-card { background: var(--cream); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.prog-card-header-img { height: 400px; overflow: hidden; position: relative; }
.prog-card-header-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.prog-card:hover .prog-card-header-img img { transform: scale(1.08); }
.prog-card-inner { padding: 2.8rem 2.5rem; height: 100%; display: flex; flex-direction: column; }
.prog-accent-bar { height: 4px; width: 100%; }
.prog-card:nth-child(1) .prog-accent-bar { background: linear-gradient(to right, var(--gold), var(--gold-lt)); }
.prog-card:nth-child(2) .prog-accent-bar { background: linear-gradient(to right, var(--forest2), var(--forest)); }
.prog-card:nth-child(3) .prog-accent-bar { background: linear-gradient(to right, var(--navy), var(--navy2)); }
.prog-card:nth-child(4) .prog-accent-bar { background: linear-gradient(to right, var(--forest), var(--navy)); }
.prog-age-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: 100px; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; margin-top: 1.8rem; }
.prog-card:nth-child(1) .prog-age-badge { background: rgba(201,168,76,0.1); color: #a07828; border: 1px solid rgba(201,168,76,0.3); }
.prog-card:nth-child(2) .prog-age-badge { background: rgba(46,94,64,0.1); color: var(--forest2); border: 1px solid rgba(46,94,64,0.25); }
.prog-card:nth-child(3) .prog-age-badge { background: rgba(13,27,42,0.07); color: var(--navy); border: 1px solid rgba(13,27,42,0.15); }
.prog-card:nth-child(4) .prog-age-badge { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }
.prog-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: .3rem; }
.prog-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--forest); margin-bottom: 1.2rem; }
.prog-desc { font-size: .875rem; line-height: 1.82; color: var(--text-md); font-weight: 300; flex: 1; }
.prog-focus { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--sand); }
.prog-focus-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--forest2); margin-bottom: .7rem; }
.prog-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.prog-tag { padding: .25rem .75rem; background: var(--mist); border-radius: 100px; font-size: .7rem; color: var(--text-md); }
.prog-tag.french { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }
.prog-bg-num { position: absolute; bottom: -1rem; right: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 600; line-height: 1; color: rgba(13,27,42,0.04); pointer-events: none; }

/* main.css*/
@import 'variables.css';
@import 'base.css';
@import 'layout/nav.css';
@import 'layout/footer.css';
@import 'components/shared.css';
@import 'components/hero.css';
@import 'components/founder.css';
@import 'components/philosophy.css';
@import 'components/why.css';
@import 'components/sports.css';
@import 'components/programmes.css';
@import 'components/testimonials.css';
@import 'components/team.css';
@import 'components/careers.css';
@import 'components/admissions.css';
@import 'responsive.css';

/* responsive.css*/
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” Mobile-first breakpoints
   1100px â†’ tablet landscape / small desktop
    768px â†’ tablet portrait
    480px â†’ phone
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   1100px â€” Tablet landscape
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {

  /* â”€â”€ Sections: reduce side padding â”€â”€ */
  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions,
  footer { padding-left: 2.5rem; padding-right: 2.5rem; }

  /* â”€â”€ Founder â”€â”€ */
  #founder-full { grid-template-columns: 1fr; }
  .ff-aside { min-height: 340px; padding: 3.5rem 2.5rem; }
  .ff-main  { padding: 3.5rem 2.5rem; }

  /* â”€â”€ Hero â”€â”€ */
  #welcome { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* â”€â”€ Philosophy â”€â”€ */
  .phil-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Why â”€â”€ */
  .why-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-pillars { grid-template-columns: 1fr; gap: 0; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Sports â”€â”€ */
  .sports-header { grid-template-columns: 1fr; gap: 2rem; }
  .sports-disciplines { grid-template-columns: 1fr 1fr; }
  .sports-content-cols { grid-template-columns: 1fr; }
  .msc-row { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Programmes â”€â”€ */
  .programme-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Testimonials â”€â”€ */
  .test-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Team â”€â”€ */
  .team-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-placeholder-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Admissions â”€â”€ */
  .adm-layout { grid-template-columns: 1fr; }
  .adm-info { position: static; }

  /* â”€â”€ Careers â”€â”€ */
  .careers-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .jobs-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Footer â”€â”€ */
  footer { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   768px â€” Tablet portrait
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {

  /* â”€â”€ Sections: tighter padding â”€â”€ */
  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions,
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }

  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions { padding-top: 4rem; padding-bottom: 4rem; }

  /* â”€â”€ Founder â”€â”€ */
  .ff-aside { min-height: 260px; padding: 2.5rem 1.5rem; }
  .ff-main  { padding: 2.5rem 1.5rem; }

  /* â”€â”€ Philosophy â”€â”€ */
  .phil-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Why â”€â”€ */
  .reasons-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Sports â”€â”€ */
  .sports-disciplines { grid-template-columns: 1fr 1fr; }
  .msc-row { grid-template-columns: 1fr; }
  .sports-partners { padding: 1.5rem; gap: 1rem; }
  .sp-logos { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
  .sp-divider { width: 1px; height: 60px; }

  /* â”€â”€ Testimonials â”€â”€ */
  .test-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Team â”€â”€ */
  .team-placeholder-grid { grid-template-columns: 1fr 1fr; }

  /* â”€â”€ Admissions â”€â”€ */

  /* â”€â”€ Footer â”€â”€ */
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   480px â€” Phone
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {

  /* â”€â”€ Sections â”€â”€ */
  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions { padding-left: 1.2rem; padding-right: 1.2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }

  /* â”€â”€ Nav â”€â”€ */
  nav { padding: .75rem 1.2rem; }
  .nav-emblem { width: 48px; height: 48px; }
  .nav-name { font-size: .82rem; }

  /* â”€â”€ Hero â”€â”€ */
  #welcome { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero-left { padding: 4rem 0 3rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-intro { font-size: .88rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: .75rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  /* â”€â”€ Founder â”€â”€ */
  .ff-aside { min-height: 220px; }
  .ff-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .ff-body { font-size: .88rem; }

  /* â”€â”€ Philosophy â”€â”€ */
  #philosophy { padding-left: 1.2rem; padding-right: 1.2rem; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-header h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* â”€â”€ Why â”€â”€ */
  #why { padding-left: 1.2rem; padding-right: 1.2rem; }
  .why-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .reasons-grid { grid-template-columns: 1fr; }
  .pillar-panel { padding: 2rem 1.4rem; }

  /* â”€â”€ Sports â”€â”€ */
  #sports { padding-left: 1.2rem; padding-right: 1.2rem; }
  .sports-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .sports-disciplines { grid-template-columns: 1fr; }
  .sports-partners { padding: 1.2rem; gap: .8rem; }
  .sp-logos { flex-direction: row; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
  .sp-logo-img { width: 90px; height: 90px; }
  .sp-logo-card { flex-direction: column; align-items: center; text-align: center; }
  .sp-divider { width: 40px; height: 1px; align-self: center; }
  .sports-event-bar { flex-direction: column; gap: .8rem; text-align: center; }
  .msc-row { grid-template-columns: 1fr; }

  /* â”€â”€ Programmes â”€â”€ */
  #programmes { padding-left: 1.2rem; padding-right: 1.2rem; }
  .programme-grid { grid-template-columns: 1fr; }
  .french-banner { flex-direction: column; gap: .8rem; text-align: center; }
  .prog-tags { justify-content: center; }

  /* â”€â”€ Testimonials â”€â”€ */
  #testimonials { padding-left: 1.2rem; padding-right: 1.2rem; }
  .test-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Team â”€â”€ */
  #team { padding-left: 1.2rem; padding-right: 1.2rem; }
  .team-placeholder-grid { grid-template-columns: 1fr; }
  .team-credentials { gap: 1.2rem; }

  /* â”€â”€ Admissions â”€â”€ */
  #admissions { padding-left: 1.2rem; padding-right: 1.2rem; }
  .adm-layout { grid-template-columns: 1fr; }
  .adm-info-body { padding: 1rem 1.2rem; }
  .adm-cta-block { padding: 1rem 1.2rem 1.5rem; }
  .info-row { flex-direction: column; align-items: flex-start; gap: .2rem; }

  /* â”€â”€ Careers â”€â”€ */
  #careers { padding-left: 1.2rem; padding-right: 1.2rem; }
  .jobs-grid { grid-template-columns: 1fr; }

  /* â”€â”€ Footer â”€â”€ */
  footer { padding: 3rem 1.2rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}

/* variables.css */
/* â•â• GLOBAL VARIABLES â•â• */
:root {
  --navy:    #0D1B2A;
  --navy2:   #162535;
  --forest:  #1E3A2F;
  --forest2: #2E5E40;
  --gold:    #C9A84C;
  --gold-lt: #E8D49A;
  --parch:   #F0EBE0;
  --cream:   #FAFAF7;
  --mist:    #F5F0E6;
  --sand:    #D4C5A9;
  --ink:     #0a1520;
  --moon:    #8AADCC;
  --text-md: #3a4a3a;
}

/*footer.css*/
/* â•â• FOOTER â•â• */
footer { background: var(--ink); padding: 4.5rem 5rem 2.5rem; position: relative; overflow: hidden; }

.footer-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.03; z-index: 0; }

.footer-top, .footer-bottom { position: relative; z-index: 1; }

.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; }

.footer-emblem { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: .9rem; color: var(--gold); }

.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--parch); }

.footer-tagline { font-size: .82rem; line-height: 1.75; color: rgba(240,235,224,0.38); font-weight: 300; }

.footer-col h5 { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

.footer-col ul a { font-size: .84rem; color: rgba(240,235,224,0.45); text-decoration: none; transition: color .2s; }

.footer-col ul a:hover { color: var(--parch); }

.footer-contact { font-size: .83rem; line-height: 1.85; color: rgba(240,235,224,0.4); font-weight: 300; font-style: normal; }

.footer-contact a { color: rgba(240,235,224,0.4); text-decoration: none; transition: color .2s; }

.footer-contact a:hover { color: var(--parch); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }

.footer-bottom p { font-size: .74rem; color: rgba(240,235,224,0.22); }

.footer-mark { font-family: 'Cormorant Garamond', serif; font-size: .82rem; color: rgba(201,168,76,0.4); letter-spacing: .06em; }

/* nav.css/
/* â•â• NAVIGATION â•â• */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }

.nav-emblem {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* This ensures the image stays inside the circle */
}

.nav-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This scales the logo to fill the circle without stretching */
}

.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--parch); letter-spacing: .03em; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
  z-index: 201;
}

.nav-hamburger:hover {
  background: rgba(201,168,76,0.1);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: all .3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-links { display: flex; gap: 1.6rem; list-style: none; }

.nav-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,235,224,0.55); text-decoration: none; transition: color .25s; }

.nav-links a:hover { color: var(--gold); }

.nav-apply { background: var(--gold); color: var(--navy); padding: .55rem 1.4rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity .2s; text-decoration: none; }

.nav-apply:hover { opacity: .85; }

/* â•â• RESPONSIVE NAVIGATION â•â• */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  
  .nav-hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform .35s ease;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 199;
  }
  
  .nav-links.active {
    transform: translateX(0) !important;
    display: flex !important;
  }
  
  .nav-links li {
    padding: .5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    font-size: .9rem;
  }
  
  .nav-apply {
    display: none;
  }
}

/* admission.css*/
/* â•â• ADMISSIONS â•â• */
#admissions { background: var(--parch); padding: 6rem 5rem; }

.adm-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.adm-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.12; }

.adm-header h2 em { font-style: italic; color: var(--forest); }

.adm-header p { font-size: .9rem; line-height: 1.8; color: var(--text-md); margin-top: .9rem; font-weight: 300; }

.adm-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }

.adm-steps { display: flex; flex-direction: column; gap: 0; }

.adm-step { display: grid; grid-template-columns: 52px 1fr; gap: 1.4rem; position: relative; }

.adm-step:not(:last-child)::before { content: ''; position: absolute; left: 25px; top: 54px; bottom: -20px; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); opacity: .25; }

.step-dot { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(201,168,76,0.3); background: var(--cream); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); flex-shrink: 0; transition: background .3s, border-color .3s; }

.adm-step:hover .step-dot { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.step-body { padding-bottom: 2.2rem; }

.step-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }

.step-body p { font-size: .87rem; line-height: 1.75; color: var(--text-md); font-weight: 300; }

.adm-info { background: var(--navy); border-radius: 4px; overflow: hidden; position: sticky; top: 88px; align-self: start; }

.adm-info-header { background: var(--forest); padding: 1.6rem 2rem; }

.adm-info-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--parch); font-weight: 400; }

.adm-info-body { padding: 1.4rem 2rem; }

.info-row { display: flex; justify-content: space-between; align-items: center; padding: .82rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

.info-row:last-of-type { border-bottom: none; }

.info-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,235,224,0.4); }

.info-val { font-size: .87rem; color: var(--parch); }

.adm-cta-block { padding: 1.4rem 2rem 2rem; border-top: 1px solid rgba(201,168,76,0.15); }

.adm-image-box { margin-top: 2rem; border-radius: 4px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; background: white; padding: .8rem; max-width: 160px; margin-left: auto; margin-right: auto; }

.adm-image-box img { width: 100%; height: auto; object-fit: contain; display: block; }

.btn-full { width: 100%; background: var(--gold); color: var(--navy); padding: .95rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity .2s; margin-bottom: .9rem; }

.btn-full:hover { opacity: .85; }

.btn-full.outline { background: transparent; color: rgba(240,235,224,0.7); border: 1px solid rgba(255,255,255,0.12); }

.btn-full.outline:hover { border-color: var(--gold); color: var(--gold); }

.adm-contact { text-align: center; margin-top: 1rem; font-size: .76rem; color: rgb(240, 235, 224); line-height: 1.7; font-style: normal; }

.adm-contact a { color: rgb(240, 235, 224); text-decoration: none; transition: opacity .2s; }

.adm-contact a:hover { opacity: .7; }

/* careers.css*/
/* â•â• CAREERS â•â• */
#careers { background: var(--navy); padding: 6rem 5rem; position: relative; overflow: hidden; }

.careers-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.05; z-index: 0; }

.careers-header, .jobs-grid, .careers-ethos { position: relative; z-index: 1; }

.careers-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 4rem; }

.careers-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--parch); line-height: 1.12; }

.careers-title em { font-style: italic; color: var(--gold); }

.careers-intro { font-size: .9rem; line-height: 1.85; color: rgba(240,235,224,0.58); font-weight: 300; }

.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.job-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 2rem; transition: background .3s, border-color .3s; }

.job-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.35); }

.job-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .3rem .9rem; border-radius: 100px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }

.job-badge.guide   { background: rgba(46,94,64,0.2); color: #7ecba0; border: 1px solid rgba(46,94,64,0.3); }

.job-badge.assist  { background: rgba(201,168,76,0.1); color: var(--gold-lt); border: 1px solid rgba(201,168,76,0.2); }

.job-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--parch); margin-bottom: .5rem; }

.job-age  { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.job-desc { font-size: .87rem; line-height: 1.78; color: rgba(240,235,224,0.6); font-weight: 300; margin-bottom: 1.4rem; }

.job-requirements { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }

.job-requirements li { font-size: .82rem; color: rgba(240,235,224,0.55); display: flex; gap: .6rem; align-items: flex-start; }

.job-requirements li::before { content: ''; color: var(--gold); flex-shrink: 0; font-size: .55rem; margin-top: .22rem; }

.job-apply-btn { display: inline-block; padding: .6rem 1.4rem; background: transparent; border: 1px solid rgba(201,168,76,0.35); border-radius: 2px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); cursor: pointer; transition: all .25s; text-decoration: none; }

.job-apply-btn:hover { background: var(--gold); color: var(--navy); }

.careers-ethos { margin-top: 3rem; background: rgba(30,58,47,0.3); border: 1px solid rgba(201,168,76,0.18); border-radius: 4px; padding: 2.2rem 2.5rem; text-align: center; }

.careers-ethos h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: .8rem; }

.careers-ethos p { font-size: .9rem; line-height: 1.8; color: rgba(240,235,224,0.6); font-weight: 300; max-width: 680px; margin: 0 auto; }

/* founder.css*/

/* â•â• FOUNDER FULL â•â• */
#founder-full { background: var(--parch); display: grid; grid-template-columns: 1fr 1.1fr; }

.ff-aside { background: var(--forest); padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }

.ff-aside-bg { position: absolute; inset: 0; background-image: url('../assets/images/founder.webp'); background-size: cover; background-position: right; opacity: 0.50; z-index: 0; }

.ff-aside::after { content: '"'; position: absolute; right: -1rem; bottom: -3rem; font-family: 'Cormorant Garamond', serif; font-size: 20rem; font-weight: 600; color: rgba(255,255,255,0.04); line-height: 1; z-index: 1; }

.ff-aside blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; font-weight: 300; color: var(--parch); line-height: 1.55; position: relative; z-index: 2; margin-bottom: 1.5rem; }

.ff-aside blockquote em { color: var(--gold); font-style: normal; }

.ff-aside cite { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(201,168,76,0.7); position: relative; z-index: 2; }

.ff-main { padding: 5rem 4.5rem 5rem 4rem; }

.ff-main .section-tag { color: var(--forest2); }

.ff-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.12; color: var(--navy); margin-bottom: 1.8rem; }

.ff-title em { font-style: italic; color: var(--forest); }

.ff-body p { font-size: .95rem; line-height: 1.9; font-weight: 300; color: var(--text-md); margin-bottom: 1.1rem; }

.ff-body p:last-child { margin-bottom: 0; }

.ff-signature { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--sand); display: flex; align-items: center; gap: 1.2rem; }

.ff-sig-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); flex-shrink: 0; overflow: hidden; }

.ff-sig-avatar img { width: 100%; height: 100%; object-fit: cover; }

.ff-sig-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); }

.ff-sig-title { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--forest2); margin-top: .1rem; }

/*hero.css*/

/* â•â• HERO â•â• */
#welcome {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr;
  padding-top: 68px; position: relative; overflow: hidden;
  place-items: center;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../assets/images/sample.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

#welcome::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 60%, rgba(30,58,47,0.7) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 100% 10%, rgba(201,168,76,0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 5rem 2rem; position: relative; z-index: 1; }

.hero-eyebrow { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; display: flex; align-items: center; justify-content: center; gap: .7rem; }

.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); font-weight: 300; line-height: 1.05; color: var(--parch); margin-bottom: 1.8rem; }

.hero-title em { font-style: italic; color: var(--gold); }

.hero-intro { font-size: .98rem; line-height: 1.85; font-weight: 300; color: rgba(240,235,224,0.68); max-width: 600px; margin-bottom: 2.5rem; }

.hero-ctas { display: flex; gap: 1rem; justify-content: center; }

.btn-primary { background: var(--gold); color: var(--navy); padding: .82rem 2rem; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: opacity .2s; text-decoration: none; display: inline-block; }

.btn-primary:hover { opacity: .85; }

.btn-ghost { background: transparent; color: var(--gold-lt); padding: .82rem 2rem; border: 1px solid rgba(201,168,76,.35); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: border-color .2s; text-decoration: none; display: inline-block; }

.btn-ghost:hover { border-color: var(--gold); }

.hero-right { position: relative; z-index: 1; display: none; flex-direction: column; justify-content: flex-end; padding: 3rem; }

.founder-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 2.2rem 2rem; backdrop-filter: blur(8px); margin-bottom: 1.5rem; }

.founder-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.founder-message { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; font-weight: 300; color: var(--parch); line-height: 1.7; }

.founder-sig { margin-top: 1.4rem; display: flex; align-items: center; gap: .9rem; }

.sig-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--forest); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--gold); flex-shrink: 0; overflow: hidden; }

.sig-circle img { width: 100%; height: 100%; object-fit: cover; }

.sig-name { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 600; color: var(--parch); }

.sig-role { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,168,76,0.7); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); border-radius: 3px; overflow: hidden; }

.stat-block { background: rgba(13,27,42,0.7); padding: 1.2rem 1rem; text-align: center; backdrop-filter: blur(8px); }

.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); display: block; }

.stat-lbl { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,235,224,0.5); }

/* philosophy.css*/

/* â•â• PHILOSOPHY â•â• */
#philosophy { background: var(--navy); padding: 6rem 5rem; position: relative; overflow: hidden; }

.phil-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.05; z-index: 0; }

.phil-header, .phil-grid { position: relative; z-index: 1; }

.phil-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }

.phil-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--parch); line-height: 1.12; }

.phil-header h2 em { font-style: italic; color: var(--gold); }

.phil-header p { font-size: .93rem; line-height: 1.8; color: rgba(240,235,224,0.55); margin-top: 1rem; font-weight: 300; }

.phil-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }

.phil-card { border-radius: 4px; overflow: hidden; border: 1px solid rgba(201,168,76,0.15); transition: border-color .3s; display: flex; flex-direction: column; }

.phil-card:hover { border-color: rgba(201,168,76,0.4); }

.phil-card-img { height: 160px; overflow: hidden; position: relative; }

.phil-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.phil-card:hover .phil-card-img img { transform: scale(1.08); }

.phil-card-header { padding: 1.6rem 1.8rem 1.4rem; position: relative; }

.pc-icon { font-size: 1.6rem; margin-bottom: .8rem; }

.pc-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }

.pc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--parch); line-height: 1.2; }

.phil-card-body { padding: 1.4rem 1.8rem 2rem; background: rgba(255,255,255,0.03); }

.phil-card-body p { font-size: .875rem; line-height: 1.82; color: rgba(240,235,224,0.62); font-weight: 300; }

.phil-card.mission .phil-card-header { background: var(--forest); }

.phil-card.vision  .phil-card-header { background: var(--forest); }

.phil-card.values  .phil-card-header { background: linear-gradient(135deg, var(--forest) 0%, var(--navy2) 100%); }

.values-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }

.values-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; line-height: 1.6; color: rgba(240,235,224,0.62); font-weight: 300; }

.values-list li::before { content: ''; color: var(--gold); flex-shrink: 0; font-size: .6rem; margin-top: .3rem; }

.values-list li strong { color: var(--gold-lt); }

/* programmes.css*/
/* â•â• PROGRAMMES â•â• */
#programmes { background: var(--cream); padding: 6rem 5rem; }

.prog-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }

.prog-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.12; }

.prog-header h2 em { font-style: italic; color: var(--forest); }

.prog-header p { font-size: .9rem; line-height: 1.8; color: var(--text-md); margin-top: .9rem; font-weight: 300; }

.french-banner { display: flex; align-items: center; gap: 1.2rem; background: var(--navy); border-radius: 4px; padding: 1.2rem 2rem; margin-bottom: 2.5rem; }

.fb-flag { font-size: 1.5rem; flex-shrink: 0; }

.fb-text strong { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .2rem; }

.fb-text span { font-size: .87rem; color: rgba(240,235,224,0.65); font-weight: 300; line-height: 1.5; }

.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sand); border-radius: 6px; overflow: hidden; }

.prog-card { background: var(--cream); position: relative; overflow: hidden; display: flex; flex-direction: column; }

.prog-card-header-img { height: 400px; overflow: hidden; position: relative; }

.prog-card-header-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1); }

.prog-card:hover .prog-card-header-img img { transform: scale(1.08); }

.prog-card-inner { padding: 2.8rem 2.5rem; height: 100%; display: flex; flex-direction: column; }

.prog-accent-bar { height: 4px; width: 100%; }

.prog-card:nth-child(1) .prog-accent-bar { background: linear-gradient(to right, var(--gold), var(--gold-lt)); }

.prog-card:nth-child(2) .prog-accent-bar { background: linear-gradient(to right, var(--forest2), var(--forest)); }

.prog-card:nth-child(3) .prog-accent-bar { background: linear-gradient(to right, var(--navy), var(--navy2)); }

.prog-card:nth-child(4) .prog-accent-bar { background: linear-gradient(to right, var(--forest), var(--navy)); }

.prog-age-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: 100px; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; margin-top: 1.8rem; }

.prog-card:nth-child(1) .prog-age-badge { background: rgba(201,168,76,0.1); color: #a07828; border: 1px solid rgba(201,168,76,0.3); }

.prog-card:nth-child(2) .prog-age-badge { background: rgba(46,94,64,0.1); color: var(--forest2); border: 1px solid rgba(46,94,64,0.25); }

.prog-card:nth-child(3) .prog-age-badge { background: rgba(13,27,42,0.07); color: var(--navy); border: 1px solid rgba(13,27,42,0.15); }

.prog-card:nth-child(4) .prog-age-badge { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }

.prog-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: .3rem; }

.prog-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--forest); margin-bottom: 1.2rem; }

.prog-desc { font-size: .875rem; line-height: 1.82; color: var(--text-md); font-weight: 300; flex: 1; }

.prog-focus { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--sand); }

.prog-focus-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--forest2); margin-bottom: .7rem; }

.prog-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.prog-tag { padding: .25rem .75rem; background: var(--mist); border-radius: 100px; font-size: .7rem; color: var(--text-md); }

.prog-tag.french { background: rgba(30,58,47,0.08); color: var(--forest); border: 1px solid rgba(30,58,47,0.2); }

.prog-bg-num { position: absolute; bottom: -1rem; right: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 600; line-height: 1; color: rgba(13,27,42,0.04); pointer-events: none; }

/* shared.css*/

/* â•â• SHARED â•â• */
.section-tag { display: inline-block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .9rem; }

/* .section-tag::before { content: 'âœ¦ '; } */

.divider-ornament { text-align: center; padding: 2rem 0; font-size: .75rem; letter-spacing: .5em; color: rgba(201,168,76,0.35); }

.gold-line { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: .2; }

/* sports.css8/
/* â•â• SPORTS â•â• */
#sports { background: var(--forest); padding: 6rem 5rem; }

.sports-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4rem; align-items: center; }

.sports-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--parch); line-height: 1.1; }

.sports-title em { font-style: italic; color: var(--gold); }

.sports-badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35); padding: .6rem 1.2rem; border-radius: 100px; margin-top: 1.2rem; }

.sb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.sb-text { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.sports-intro { font-size: .93rem; line-height: 1.85; color: rgba(240,235,224,0.7); font-weight: 300; }

.sports-collab-box { background: rgba(13,27,42,0.35); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 1.8rem; margin-top: 1.5rem; }

.scb-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }

.scb-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--parch); line-height: 1.6; }

.sports-content-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.sports-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: 1rem; }

.sports-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }

.sports-list li { font-size: .85rem; line-height: 1.65; color: rgba(240,235,224,0.72); display: flex; gap: .7rem; align-items: flex-start; }



.sports-disciplines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }

.sport-card { background: rgba(13,27,42,0.35); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 0; text-align: center; transition: background .3s, border-color .3s; overflow: hidden; display: flex; flex-direction: column; }

.sport-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); }

.sport-card-img { height: 140px; overflow: hidden; }

.sport-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.sport-card:hover .sport-card-img img { transform: scale(1.1); }

.sport-card-content { padding: 1.6rem 1.4rem; }

.sport-icon { font-size: 2rem; margin-bottom: .7rem; }

.sport-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--parch); margin-bottom: .4rem; }

.sport-desc { font-size: .78rem; line-height: 1.6; color: rgba(240,235,224,0.55); }

.sports-event-bar { margin-top: 2rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 4px; padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.5rem; }

.seb-icon { font-size: 1.5rem; flex-shrink: 0; }

.seb-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }

.seb-text { font-size: .9rem; color: rgba(240,235,224,0.78); line-height: 1.5; }

.msc-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }

.msc-card { background: rgba(13,27,42,0.3); border: 1px solid rgba(201,168,76,0.15); border-radius: 3px; padding: 1.4rem; }

.msc-icon { font-size: 1.2rem; margin-bottom: .5rem; }

.msc-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); margin-bottom: .4rem; }

.msc-text { font-size: .82rem; line-height: 1.65; color: rgba(240,235,224,0.65); }

/* â”€â”€ Sports Partners â”€â”€ */
.sports-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  padding: 2rem;
  background: rgba(13,27,42,0.3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
}

.sp-label {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  white-space: nowrap;
  text-align: center;
}

.sp-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.sp-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  transition: opacity .3s;
}

.sp-logo-card:hover { opacity: .85; }

.sp-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.sp-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  filter: none;
  opacity: 1;
  transition: opacity .3s;
}

.sp-logo-card:hover .sp-logo-img img { opacity: 1; }

.sp-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(240,235,224,0.6);
  letter-spacing: .03em;
  text-align: center;
}

.sp-divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
  align-self: center;
}


/* teams.css*/

/* â•â• TEAM â•â• */
#team { background: var(--parch); padding: 6rem 5rem; }

.team-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4rem; align-items: end; }

.team-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.12; }

.team-title em { font-style: italic; color: var(--forest); }

.team-intro { font-size: .9rem; line-height: 1.85; color: var(--text-md); font-weight: 300; }

.team-placeholder-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.team-card { background: white; border-radius: 4px; overflow: hidden; border: 1px solid var(--sand); transition: border-color .3s; box-shadow: 0 2px 12px rgba(13,27,42,0.05); }

.team-card:hover { border-color: var(--gold); }

.team-avatar { height: 220px; background: linear-gradient(135deg, var(--forest) 0%, var(--navy2) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.team-avatar img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity .4s; }

.team-card:hover .team-avatar img { transform: scale(1.08); opacity: 1; }

.team-avatar-icon { font-size: 2.5rem; opacity: .2; position: absolute; z-index: 1; }

.team-coming-soon { position: absolute; bottom: .7rem; left: 50%; transform: translateX(-50%); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); white-space: nowrap; z-index: 2; background: rgba(13,27,42,0.6); padding: .3rem .8rem; border-radius: 2px; backdrop-filter: blur(4px); }

.team-info { padding: 1.2rem 1.3rem 1.4rem; }

.team-name-ph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .3rem;
}

.team-name-ph:empty {
  height: 14px;
  background: var(--mist);
  border-radius: 2px;
  margin-bottom: .5rem;
  font-size: 0;
}

.team-role-ph {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0;
}

.team-role-ph:empty {
  height: 10px;
  width: 70%;
  background: rgba(46,94,64,0.1);
  border-radius: 2px;
  font-size: 0;
}

/* â”€â”€ Qualifications â”€â”€ */
.team-quals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.tq-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.45;
}

.tq-icon {
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .05rem;
  opacity: .75;
}

.tq-langs {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .3rem;
  padding-top: .55rem;
  border-top: 1px dashed rgba(46,94,64,0.15);
  flex-wrap: wrap;
}

.tq-lang-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest2);
  font-weight: 500;
}

.tq-lang-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}

.tq-lang-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  color: var(--forest);
  background: rgba(46,94,64,0.08);
  border: 1px solid rgba(46,94,64,0.18);
  border-radius: 2px;
  padding: .15rem .5rem;
  letter-spacing: .04em;
}

.team-note { margin-top: 3rem; text-align: center; padding: 2rem 2.5rem; background: var(--mist); border: 1px solid var(--sand); border-radius: 4px; max-width: 680px; margin-left: auto; margin-right: auto; }

.team-note h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .7rem; }

.team-note p { font-size: .87rem; line-height: 1.78; color: var(--text-md); font-weight: 300; }

.team-credentials { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }

.cred-item { text-align: center; }

.cred-icon { font-size: 1.4rem; margin-bottom: .3rem; }

.cred-text { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--forest2); line-height: 1.4; }

/* testimonials.css*/
/* â•â• TESTIMONIALS â•â• */
#testimonials { background: var(--navy); padding: 6rem 5rem; position: relative; overflow: hidden; }

.test-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/founder.webp'); background-size: cover; background-position: center; opacity: 0.15; z-index: 0; filter: grayscale(40%); }

.test-header, .test-grid, .test-note { position: relative; z-index: 1; }

.test-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }

.test-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--parch); line-height: 1.12; }

.test-header h2 em { font-style: italic; color: var(--gold); }

.test-header p { font-size: .9rem; line-height: 1.8; color: rgba(240,235,224,0.5); margin-top: .9rem; font-weight: 300; }

.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.test-card { background: rgba(13, 27, 42, 0.7); border: 1px solid rgba(201,168,76,0.25); border-radius: 4px; padding: 2.2rem 2rem; position: relative; transition: border-color .3s, transform .3s; backdrop-filter: blur(8px); }

.test-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-5px); }

.test-quote-icon { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: .5rem; }

.test-body { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; font-weight: 300; color: rgba(240,235,224,0.75); line-height: 1.7; min-height: 100px; display: flex; align-items: center; justify-content: center; }

.test-placeholder { text-align: center; color: rgba(231, 227, 227, 0.838); font-size: .82rem; letter-spacing: .05em; line-height: 1.6; font-style: normal; font-family: 'DM Sans', sans-serif; }

.test-divider { height: 1px; background: rgba(201,168,76,0.12); margin: 1.2rem 0; }

.test-author { display: flex; align-items: center; gap: .9rem; }

.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(201,168,76,0.4); flex-shrink: 0; overflow: hidden; }

.test-avatar img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

.test-card:hover .test-avatar img { opacity: 0.9; }

.test-name-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--parch);
  line-height: 1.3;
  margin-bottom: .25rem;
}

.test-name-placeholder:empty {
  height: 11px;
  width: 100px;
  background: rgba(121, 57, 8, 0.07);
  border-radius: 2px;
  margin-bottom: .35rem;
}

.test-role-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: rgba(201,168,76,0.7);
  letter-spacing: .04em;
  line-height: 1.3;
}

.test-role-placeholder:empty {
  height: 9px;
  width: 70px;
  background: rgba(201,168,76,0.08);
  border-radius: 2px;
}

.test-note { text-align: center; margin-top: 2.5rem; font-size: .82rem; color: rgba(240,235,224,0.3); font-style: italic; }

/*why.css*/
/* â•â• WHY â•â• */
#why { background: var(--mist); padding: 6rem 5rem; }

.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }

.why-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--navy); line-height: 1.1; }

.why-title em { font-style: italic; color: var(--forest); }

.why-pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-bottom: 3rem; background: var(--sand); border-radius: 4px; overflow: hidden; }

.pillar-panel { padding: 2.5rem 2rem; position: relative; overflow: hidden; z-index: 1; }

.pillar-bg-img { position: absolute; inset: 0; background-image: url('../assets/images/sample.webp'); background-size: cover; background-position: center; opacity: 0.1; z-index: -1; transition: opacity .4s, transform .6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.pillar-panel:hover .pillar-bg-img { opacity: 0.18; transform: scale(1.08); }

.pillar-panel.heart  { background: var(--navy); }

.pillar-panel.mind   { background: var(--forest); }

.pillar-panel.body-p { background: var(--navy2); }

.pp-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1; color: rgba(255,255,255,0.07); margin-bottom: -.6rem; }

.pp-icon { font-size: 1.4rem; margin-bottom: .6rem; }

.pp-label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }

.pp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--parch); font-weight: 400; margin-bottom: .8rem; }

.pp-body { font-size: .84rem; line-height: 1.82; color: rgba(240,235,224,0.68); font-weight: 300; }

.pp-statement { margin-top: 1.2rem; padding: .8rem 1rem; background: rgba(201,168,76,0.08); border-left: 2px solid var(--gold); font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: var(--gold-lt); }

.reasons-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--forest2); margin-bottom: 1.2rem; }

.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

.reason-tile { background: white; border-radius: 3px; padding: 1.6rem 1.4rem; border-top: 2px solid transparent; transition: border-color .3s, transform .25s, box-shadow .25s; position: relative; }

.reason-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,27,42,0.08); }

.reason-tile:nth-child(odd):hover  { border-color: var(--gold); }

.reason-tile:nth-child(even):hover { border-color: var(--forest2); }

.rt-n { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; line-height: 1; color: rgba(13,27,42,0.06); position: absolute; top: .8rem; right: 1rem; }

.rt-icon { font-size: 1.3rem; margin-bottom: .7rem; }

.rt-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; line-height: 1.25; }

.rt-body { font-size: .82rem; line-height: 1.72; color: #4a5540; font-weight: 300; }



/* ══════════════════════════════════════════
   RESPONSIVE — Mobile-first breakpoints
   1100px → tablet landscape / small desktop
    768px → tablet portrait
    480px → phone
══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1100px — Tablet landscape
───────────────────────────────────────── */
@media (max-width: 1100px) {

  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions,
  footer { padding-left: 2.5rem; padding-right: 2.5rem; }

  #founder-full { grid-template-columns: 1fr; }
  .ff-aside { min-height: 340px; padding: 3.5rem 2.5rem; }
  .ff-main  { padding: 3.5rem 2.5rem; }

  #welcome { padding-left: 1.5rem; padding-right: 1.5rem; }

  .phil-grid { grid-template-columns: 1fr 1fr; }

  .why-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-pillars { grid-template-columns: 1fr; gap: 0; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }

  .sports-header { grid-template-columns: 1fr; gap: 2rem; }
  .sports-disciplines { grid-template-columns: 1fr 1fr; }
  .sports-content-cols { grid-template-columns: 1fr; }
  .msc-row { grid-template-columns: 1fr 1fr; }

  .programme-grid { grid-template-columns: 1fr; }

  .test-grid { grid-template-columns: 1fr 1fr; }

  .team-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-placeholder-grid { grid-template-columns: 1fr 1fr; }

  .adm-layout { grid-template-columns: 1fr; }
  .adm-info { position: static; }

  .careers-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .jobs-grid { grid-template-columns: 1fr; }

  footer { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


/* ─────────────────────────────────────────
   768px — Tablet portrait
───────────────────────────────────────── */
@media (max-width: 768px) {

  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions,
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }

  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions { padding-top: 4rem; padding-bottom: 4rem; }

  .ff-aside { min-height: 260px; padding: 2.5rem 1.5rem; }
  .ff-main  { padding: 2.5rem 1.5rem; }

  .phil-grid { grid-template-columns: 1fr; }

  .reasons-grid { grid-template-columns: 1fr 1fr; }

  .sports-disciplines { grid-template-columns: 1fr 1fr; }
  .msc-row { grid-template-columns: 1fr; }
  .sports-partners { padding: 1.5rem; gap: 1rem; }
  .sp-logos { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
  .sp-divider { width: 1px; height: 60px; }

  .test-grid { grid-template-columns: 1fr; }

  .team-placeholder-grid { grid-template-columns: 1fr 1fr; }

  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}


/* ─────────────────────────────────────────
   480px — Phone
───────────────────────────────────────── */
@media (max-width: 480px) {

  #philosophy, #why, #sports, #programmes,
  #testimonials, #team, #careers, #admissions { padding-left: 1.2rem; padding-right: 1.2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }

  nav { padding: .75rem 1.2rem; }
  .nav-emblem { width: 48px; height: 48px; }
  .nav-name { font-size: .82rem; }

  #welcome { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero-left { padding: 4rem 0 3rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-intro { font-size: .88rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: .75rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  .ff-aside { min-height: 220px; }
  .ff-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .ff-body { font-size: .88rem; }

  #philosophy { padding-left: 1.2rem; padding-right: 1.2rem; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-header h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  #why { padding-left: 1.2rem; padding-right: 1.2rem; }
  .why-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .reasons-grid { grid-template-columns: 1fr; }
  .pillar-panel { padding: 2rem 1.4rem; }

  #sports { padding-left: 1.2rem; padding-right: 1.2rem; }
  .sports-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .sports-disciplines { grid-template-columns: 1fr; }
  .sports-partners { padding: 1.2rem; gap: .8rem; }
  .sp-logos { flex-direction: row; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
  .sp-logo-img { width: 90px; height: 90px; }
  .sp-logo-card { flex-direction: column; align-items: center; text-align: center; }
  .sp-divider { width: 40px; height: 1px; align-self: center; }
  .sports-event-bar { flex-direction: column; gap: .8rem; text-align: center; }
  .msc-row { grid-template-columns: 1fr; }

  #programmes { padding-left: 1.2rem; padding-right: 1.2rem; }
  .programme-grid { grid-template-columns: 1fr; }
  .french-banner { flex-direction: column; gap: .8rem; text-align: center; }
  .prog-tags { justify-content: center; }

  #testimonials { padding-left: 1.2rem; padding-right: 1.2rem; }
  .test-grid { grid-template-columns: 1fr; }

  #team { padding-left: 1.2rem; padding-right: 1.2rem; }
  .team-placeholder-grid { grid-template-columns: 1fr; }
  .team-credentials { gap: 1.2rem; }

  #admissions { padding-left: 1.2rem; padding-right: 1.2rem; }
  .adm-layout { grid-template-columns: 1fr; }
  .adm-info-body { padding: 1rem 1.2rem; }
  .adm-cta-block { padding: 1rem 1.2rem 1.5rem; }
  .info-row { flex-direction: column; align-items: flex-start; gap: .2rem; }

  #careers { padding-left: 1.2rem; padding-right: 1.2rem; }
  .jobs-grid { grid-template-columns: 1fr; }

  footer { padding: 3rem 1.2rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}
