/* ==========================================================================
   P&C GLOBAL SCHOOL — DESIGN SYSTEM
   Palette derived from the official logo (gh.png):
     Navy  #004E7A / #00304C   Green #7CC565 / #99E17A   Grey #8B8D8F
   Type: Fraunces (display) + Public Sans (body/UI)
   ========================================================================== */

:root {
  --navy: #004E7A;
  --navy-dark: #00304C;
  --navy-tint: #E6EEF3;
  --green: #6FB758;
  --green-light: #99E17A;
  --grey: #6E7176;
  --green-dark: #3F7830;
  --grey-light: #D9DCDD;
  --ink: #1E2528;
  --ink-soft: #4B5459;
  --paper: #FFFFFF;
  --paper-soft: #F5F7F6;
  --paper-warm: #F7F6F2;
  --border: #E4E7E5;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,40,60,.08);
  --shadow-md: 0 8px 24px rgba(0,40,60,.10);
  --shadow-lg: 0 18px 48px rgba(0,40,60,.16);

  --container: 1180px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy-dark); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* ---- Eyebrow / labels ------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green-dark); display: inline-block; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede { font-size: 1.08rem; }

/* ---- 5-step admission process ---- */
.admission-steps-5 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 901px) {
  .admission-steps-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Fee tables ---- */
.fee-table-wrap { overflow-x: auto; }
.fee-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table th, .fee-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
.fee-table th { background: var(--green); color: #06280f; font-weight: 700; text-transform: uppercase; font-size: .78rem; letter-spacing: .04em; }
.fee-table-onetime th { background: var(--navy); color: #fff; }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:nth-child(even) { background: var(--paper-soft); }
.fee-table td:last-child, .fee-table th:last-child { font-weight: 700; color: var(--navy-dark); }

.fee-transport-banner {
  background: var(--paper-soft); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 24px; text-align: center; margin-top: 30px; font-size: 1rem; color: var(--navy-dark);
}
.fee-transport-banner strong { color: var(--green-dark); }
.fee-transport-banner span { display: block; font-size: .78rem; color: var(--grey); margin-top: 4px; font-style: italic; }

.fee-policy { max-width: 720px; margin: 34px auto 0; background: var(--navy-tint); border: 1px solid #C6DCE7; border-radius: var(--radius-md); padding: 26px 30px; }
.fee-policy h3 { font-size: 1.05rem; margin-bottom: 14px; }
.fee-policy ol { padding-left: 20px; list-style: decimal; }
.fee-policy ol li { margin-bottom: 10px; font-size: .92rem; color: var(--ink-soft); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 8px 10px; font-size: .95rem; width:stretch; border-radius: 10px;}
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--green); color: #06280f; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--green-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--navy-dark); }
.btn-block { width: 100%; }

/* ---- Header / Nav -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy-dark); }
.brand-tag { font-size: .68rem; color: var(--grey); letter-spacing: .04em; }

.main-nav ul { display: flex; align-items: center; gap: 0px; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: block; padding: 10px 14px; font-weight: 600; font-size: .93rem;
  color: var(--ink); border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.is-active { background: var(--navy-tint); color: var(--navy-dark); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease;
  border: 1px solid var(--border);
}
.dropdown a { border-radius: var(--radius-sm); padding: 10px 12px; }
.dropdown a:hover { background: var(--paper-soft); }

.header-cta { display: flex; align-items: center; gap: 6px; flex-direction: column-reverse; }
.header-call { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: .88rem; color: var(--navy); }
.header-call svg { color: var(--green-dark); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

.mobile-cta-bar { display: none; }
.mobile-nav-cta { display: none; }

/* ---- Hero ------------------------------------------------------------ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy) 60%, var(--green-dark));
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(153,225,122,.28), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(153,225,122,.16), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 76px 24px 88px; max-width: var(--container); margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-light); margin-bottom: 22px; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge-row .hero-eyebrow { margin-bottom: 0; }
.hero-eyebrow-accent { background: linear-gradient(135deg, var(--green-light), var(--green)); color: #06280f; border-color: transparent; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--green-light); }
.hero-meta span { font-size: .8rem; color: rgba(255,255,255,.75); }
.hero-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.2); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; }
.hero-badge { position: absolute; left: 18px; bottom: 18px; background: rgba(10,40,60,.72); backdrop-filter: blur(6px); color: #fff; padding: 10px 16px; border-radius: var(--radius-md); font-size: .78rem; font-weight: 600; border: 1px solid rgba(255,255,255,.2); }

/* ---- Trust strip ------------------------------------------------------ */
.trust-strip { background: var(--paper-warm); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-strip .container { display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .86rem; color: var(--navy-dark); }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }

/* ---- Sections --------------------------------------------------------- */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-soft); }
.section-navy { background: linear-gradient(160deg, var(--navy-dark), var(--navy)); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.82); }
.section-navy .eyebrow { color: var(--green-light); }
.section-navy .eyebrow::before { background: var(--green-light); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.quote-block { border-left: 3px solid var(--green); padding-left: 22px; margin: 26px 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--navy-dark); font-style: italic; }

/* ---- Stage / process progression --------------------------------------- */
.stage-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: stage; }
.stage-flow-5 { grid-template-columns: repeat(3, 1fr); }
.stage-flow-5::before { display: none; }
.stage-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.stage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stage-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--green-dark); font-weight: 700; margin-bottom: 10px; display: block; }
.stage-card h3 { margin-bottom: 4px; }
.stage-range { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--navy); background: var(--navy-tint); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.stage-card h4 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--grey); margin: 18px 0 8px; }
.stage-card ul li { position: relative; padding-left: 18px; margin-bottom: 6px; font-size: .92rem; color: var(--ink-soft); }
.stage-card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.stage-arrow { display: none; }

.site-header.nav-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (min-width: 900px) {
  .stage-flow { position: relative; }
  .stage-flow::before { content: ""; position: absolute; top: 46px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--grey-light) 0 10px, transparent 10px 18px); z-index: 0; }
}
@media (min-width: 901px) {
  .feature-grid.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
  .feature-grid.leadership-grid > .feature-card {
    flex: 0 1 calc(33.333% - 15px); /* ~3 per row, matches the 22px gap */
  }
}

/* Centers the avatar, name, and designation as a block; quote/bio stay left-aligned */
.leader-head { text-align: center; }
.leader-head .leader-avatar { margin: 0 auto 16px; }

/* ---- Feature grid / why-us -------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--navy); }
/* ---- Leadership avatar (initials badge, since real photos aren't yet supplied) ---- */
.leader-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  flex: none;
}
.feature-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--navy-dark); margin-bottom: 6px; }
.feature-card p { font-size: .9rem; margin-bottom: 0; }

/* ---- Facility / gallery cards ------------------------------------------ */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.facility-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--border); transition: box-shadow .2s ease, transform .2s ease; }
.facility-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.facility-media { aspect-ratio: 4/3; overflow: hidden; }
.facility-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.facility-card:hover .facility-media img { transform: scale(1.06); }
.facility-body { padding: 22px; }
.facility-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.facility-body p { font-size: .92rem; margin-bottom: 0; }
.demo-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,48,76,.82); color: #fff; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px); z-index: 2; }

/* ---- Safety pillars --------------------------------------------------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 30px 26px; }
.pillar-card .feature-icon { background: rgba(255,255,255,.14); color: var(--green-light); }
.pillar-card h3 { color: #fff; }
.pillar-card ul { margin-top: 14px; }
.pillar-card ul li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: .92rem; color: rgba(255,255,255,.85); }
.pillar-card ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-light); font-weight: 700; }

/* Desktop: same 3-column grid as before */
.feature-grid.promise-grid { grid-template-columns: repeat(3, 1fr); }

/* ---- Admissions steps --------------------------------------------------- */
.admission-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.step-index { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--navy-tint); -webkit-text-stroke: 2px var(--navy); position: absolute; top: 18px; right: 22px; }
.doc-checklist { background: var(--paper-soft); border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--border); }
.doc-checklist ol { counter-reset: doc; margin-top: 16px; }
.doc-checklist ol li { list-style: none; counter-increment: doc; position: relative; padding: 12px 0 12px 44px; border-bottom: 1px dashed var(--border); font-weight: 600; color: var(--navy-dark); }
.doc-checklist ol li:last-child { border-bottom: none; }
.doc-checklist ol li::before { content: counter(doc); position: absolute; left: 0; top: 9px; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #06280f; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .85rem; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #06280f; padding: 56px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #06280f; margin-bottom: 6px; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { color: #16311d; margin-bottom: 0; max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-accent { background: #06280f; color: #fff; }
.cta-band .btn-accent:hover { background: var(--navy-dark); }
.cta-band .btn-outline-light { border-color: #06280f; color: #06280f; }
.cta-band .btn-outline-light:hover { background: #06280f; color: #fff; }

/* ---- FAQ ----------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 6px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; font-weight: 700; color: var(--navy-dark); font-family: var(--font-display); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--green-dark); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 18px; }

/* ---- Forms ---------------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: .85rem; color: var(--navy-dark); }
.form-field .req { color: var(--green-dark); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--paper-soft);
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); background: #fff; outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--ink-soft); }
.consent-row input { margin-top: 4px; }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; margin-bottom: 22px; }
.form-alert.success { background: #E7F6E3; color: #205C1B; border: 1px solid #B6E3AB; }
.form-alert.error { background: #FBEAEA; color: #8A2020; border: 1px solid #F1BCBC; }

/* ---- Contact page -------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-card { background: var(--paper-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.contact-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-body); color: var(--grey); margin-bottom: 10px; }
.contact-card .value { font-weight: 700; color: var(--navy-dark); font-size: 1.05rem; margin-bottom: 24px; display: block; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { border-radius: 8px; margin-bottom: 14px; background: #fff; padding: 4px; }
.footer-name { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 2px; }
.footer-tag { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--green-light); }
.footer-contact address { font-style: normal; font-size: .9rem; margin-bottom: 14px; color: rgba(255,255,255,.72); }
.footer-contact p { margin-bottom: 10px; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---- Misc page furniture --------------------------------------------------- */
.page-hero { background: linear-gradient(155deg, var(--navy-dark), var(--navy)); color: #fff; padding: 68px 0 56px; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .breadcrumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; margin-bottom: 0; }

.stat-band { display: flex; gap: 40px; flex-wrap: wrap; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-band div strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-dark); display: block; }
.stat-band div span { font-size: .82rem; color: var(--grey); }

.gallery-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-tabs button { border: 1.5px solid var(--border); background: #fff; padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: .85rem; cursor: pointer; color: var(--ink-soft); transition: all .15s ease; }
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { margin: 0; position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(to top, rgba(0,20,32,.82), transparent); color: #fff; font-size: .82rem; font-weight: 600; }

.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 36px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; color: var(--ink-soft); }

.notice-box { background: var(--navy-tint); border: 1px solid #C6DCE7; border-radius: var(--radius-md); padding: 18px 22px; font-size: .9rem; color: var(--navy-dark); margin: 20px 0; }
.notice-box strong { color: var(--navy-dark); }

.placeholder-note { background: #FFF7E6; border: 1px solid #F3DFA8; color: #6B4E00; border-radius: var(--radius-md); padding: 16px 20px; font-size: .85rem; margin: 18px 0; }

/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; }
  .hero-visual { order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .stage-flow, .admission-steps, .pillar-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
      display: block;
      position: fixed;
      top: var(--header-h, 84px);
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      padding: 20px 24px;
      overflow-y: auto;
      z-index: 400;
    }
  .site-header.nav-open .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-header.nav-open .main-nav a { padding: 14px 10px; font-size: 1.02rem; }
  .site-header.nav-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 14px; display: none; }
  .site-header.nav-open .has-dropdown.open .dropdown { display: block; }
  .site-header.nav-open .mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav-cta .header-call { justify-content: center; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-cta-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 450;
    background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(0,0,0,.08);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }
  .mcta { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; font-size: .68rem; font-weight: 700; color: var(--navy); border-radius: 10px; }
  .mcta-primary { background: var(--green); color: #06280f; }
  body { padding-bottom: 74px; }
}
@media (max-width: 700px) {
  .trust-strip { padding: 20px 0; }
  .trust-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    justify-content: normal;
    text-align: left;
  }
  .trust-item { font-size: .82rem; gap: 7px; }
  .trust-item .dot { width: 7px; height: 7px; }
  .feature-grid, .facility-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .feature-grid.promise-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 24px 12px;
  }
  .feature-grid.promise-grid::-webkit-scrollbar { display: none; }
  .feature-grid.promise-grid { scrollbar-width: none; }
  .feature-grid.promise-grid .feature-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .feature-grid.leadership-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 24px 12px;
  }
  .feature-grid.leadership-grid::-webkit-scrollbar { display: none; }
  .feature-grid.leadership-grid { scrollbar-width: none; }
  .feature-grid.leadership-grid .feature-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
/* ---- Animations (subtle, reduced-motion aware) ------------------------------ */
.reveal { opacity: 1; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
