/* ============================================================
   Assumption Academy of Monkayo — production stylesheet
   Single shared stylesheet for all pages. Edit design tokens
   below to retheme the whole site.
   ============================================================ */

:root {
  /* Brand colours (sampled from the school seal) */
  --blue-primary: #0A47BE;
  --blue-navy: #062E84;
  --blue-footer: #051F5C;
  --green: #2B9C3F;
  --green-dark: #1F7A30;
  --green-bright: #5BE07A;

  /* Text */
  --ink: #16213E;
  --text-muted: #41506E;
  --text-soft: #52617E;
  --text-softer: #6A7894;

  /* Surfaces */
  --bg-tint-blue: #EAF3FF;
  --bg-tint-green: #EAF6EC;
  --bg-soft: #F7F9FD;
  --border: #E8EEF8;
  --border-strong: #DCE5F3;
  --white: #ffffff;

  --maxw: 1240px;
  --pad-x: 28px;

  --radius-btn: 10px;
  --radius-card: 18px;
  --radius-img: 20px;

  --shadow-card: 0 2px 10px rgba(6, 46, 132, .04);
  --shadow-card-hover: 0 16px 36px rgba(6, 46, 132, .12);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  /* Contain the off-canvas mobile drawer so it never causes horizontal
     scrolling. `clip` (unlike `hidden`) does not break the sticky header. */
  overflow-x: clip;
}
::selection { background: var(--blue-primary); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--blue-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top .16s ease;
}
.skip-link:focus { top: 12px; }

/* Shared headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow--light { color: #9DC0FF; }
.eyebrow .rule { width: 26px; height: 1.5px; background: var(--green); display: inline-block; }

.h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  color: var(--blue-navy);
  margin: 12px 0 0;
}
.lead { font-size: 17px; color: var(--text-muted); }

.section { padding: 80px 0; }
.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid #EAF0FA;
  border-bottom: 1px solid #EAF0FA;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 15px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease,
              box-shadow .16s ease, transform .16s ease;
}
.btn-primary {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 71, 190, .3);
}
.btn-primary:hover { background: var(--blue-navy); }
.btn-outline {
  background: #fff;
  color: var(--blue-primary);
  border: 1.5px solid #C9D8F5;
}
.btn-outline:hover { border-color: var(--blue-primary); }
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(43, 156, 63, .4);
}
.btn-green:hover { background: var(--green-dark); }
.btn-ghost-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .22); }
.btn-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--blue-primary);
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
}
.btn-text:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-block { width: 100%; }

/* ---------- Announcement banner ---------- */
.announce {
  background: var(--blue-navy);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(91, 224, 122, .25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91, 224, 122, .25); }
  50% { box-shadow: 0 0 0 6px rgba(91, 224, 122, .12); }
}
.announce a { color: #9DC0FF; font-weight: 700; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E9F3;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Lora', serif; font-weight: 700; font-size: 17px;
  color: var(--blue-navy); letter-spacing: .005em;
}
.brand-sub {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  background: none; border: none; cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  font-size: 14.5px; font-weight: 600;
  padding: 9px;
  color: #3A4868;
  text-decoration: none;
  letter-spacing: .005em;
}
.nav-link:hover { color: var(--blue-primary); }
.nav-link.active { color: var(--blue-primary); }
.nav-link.active::after {
  content: "";
  position: absolute; left: 8px; right: 8px; bottom: -2px;
  height: 2.5px; border-radius: 2px; background: var(--green);
}
.nav .enroll {
  margin-left: 10px;
  background: var(--blue-primary); color: #fff;
  border: none; border-radius: 8px; padding: 10px 18px;
  font-family: 'Public Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(10, 71, 190, .28);
  transition: background-color .16s ease;
}
.nav .enroll:hover { background: var(--blue-navy); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 8px 10px; cursor: pointer;
  color: var(--blue-navy);
}
.nav-toggle svg { display: block; }

/* ---------- Interior page banner ---------- */
.page-banner {
  background: linear-gradient(160deg, var(--blue-navy), var(--blue-primary));
  padding: 70px 0 64px;
}
.page-banner h1 {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 46px; line-height: 1.1; color: #fff;
  margin: 14px 0 0; max-width: 760px;
}
.page-banner p { font-size: 16.5px; color: #C7D8F8; margin: 16px 0 0; max-width: 640px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  background: rgba(43, 156, 63, .22);
  border: 1px solid rgba(91, 224, 122, .5);
  border-radius: 30px; padding: 9px 18px;
  color: #DFF7E4; font-size: 14.5px; font-weight: 600;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #F4F8FF 0%, #EAF3FF 60%, #E7F4EA 100%);
  overflow: hidden;
}
.hero .glow {
  position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 156, 63, .14), transparent 70%);
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 74px var(--pad-x) 84px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px;
  align-items: center; position: relative;
}
.hero h1 {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 55px; line-height: 1.08; letter-spacing: -.01em;
  color: var(--blue-navy); margin: 18px 0 0;
}
.hero .hero-lead { font-size: 18.5px; color: var(--text-muted); margin: 22px 0 0; max-width: 520px; }
.cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.stat-row { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; align-items: stretch; }
.stat .num { font-family: 'Lora', serif; font-weight: 700; font-size: 26px; color: var(--blue-navy); }
.stat .label { font-size: 13px; color: var(--text-softer); font-weight: 600; letter-spacing: .04em; }
.stat-div { width: 1px; background: #D6E1F2; }

.hero-media { position: relative; }
.hero-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: #fff; border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 14px 34px rgba(6, 46, 132, .2);
  display: flex; align-items: center; gap: 14px; border: 1px solid #EAF0FA;
}
.hero-badge img { width: 54px; height: 54px; object-fit: contain; }
.hero-badge .t { font-family: 'Lora', serif; font-weight: 700; font-size: 16px; color: var(--blue-navy); }
.hero-badge .s { font-size: 12.5px; color: var(--text-softer); font-weight: 600; }

/* ---------- Photo slots (replace with real <img> in production) ---------- */
.photo-slot {
  width: 100%;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--bg-tint-blue), #E7F4EA);
  border: 1.5px dashed #BBD0F0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  color: #5E76A6; font-size: 14px; font-weight: 600;
}
.photo-slot.rounded { border-radius: var(--radius-img); }
.photo-slot.hero-frame { height: 440px; border-radius: 22px; box-shadow: 0 24px 60px rgba(6, 46, 132, .22); }
.photo-slot.circle { border-radius: 50%; width: 150px; height: 150px; margin: 0 auto; }
/* A real photo dropped in keeps these frame classes; just swap the element:
   <img class="photo rounded" src="assets/your-photo.jpg" alt="…"> */
.photo {
  width: 100%; object-fit: cover; border-radius: 14px;
}
.photo.rounded { border-radius: var(--radius-img); }
.photo.circle { border-radius: 50%; width: 150px; height: 150px; margin: 0 auto; object-fit: cover; }
.photo.hero-frame {
  height: 440px; border-radius: 22px; object-fit: cover;
  box-shadow: 0 24px 60px rgba(6, 46, 132, .22);
}
.photo.about-frame { height: 400px; border-radius: var(--radius-img); object-fit: cover; box-shadow: 0 20px 50px rgba(6, 46, 132, .16); }

/* Faculty directory grid (square 1:1 portraits with names printed on them) */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}
.faculty-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s ease, transform .18s ease;
}
.faculty-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.faculty-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

/* Gallery images */
.gallery-img {
  width: 100%; object-fit: cover; border-radius: 14px; display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-grid a { display: block; overflow: hidden; border-radius: 14px; }
.gallery-grid a:hover .gallery-img { transform: scale(1.04); box-shadow: var(--shadow-card-hover); }

/* ---------- Two column split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

/* ---------- Quote card ---------- */
.quote-card {
  background: linear-gradient(150deg, var(--blue-navy), var(--blue-primary));
  border-radius: 22px; padding: 42px 40px; color: #fff;
  position: relative; overflow: hidden;
}
.quote-card .blob {
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(43, 156, 63, .3);
}
.quote-card .mark { font-family: 'Lora', serif; font-size: 60px; line-height: .6; color: #9DC0FF; }
.quote-card .verse {
  font-family: 'Lora', serif; font-style: italic; font-size: 23px;
  line-height: 1.45; margin: 6px 0 0; position: relative;
}
.quote-card .cite { margin-top: 22px; font-size: 13.5px; font-weight: 600; letter-spacing: .06em; color: #BFD4FF; position: relative; }

/* ---------- Cards & grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.mt-48 { margin-top: 48px; }
.mt-24 { margin-top: 24px; }

/* Mission / vision bulleted lists */
.mvc-list { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mvc-list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--text-soft); }
.mvc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.mvc-list--blue li::before { background: var(--blue-primary); }

.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s ease, transform .18s ease;
}
.card.hoverable:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 22px; color: var(--blue-navy); margin: 0; }
.card p { font-size: 15px; color: var(--text-soft); margin: 0; flex: 1; }
.card .tag { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--green); text-transform: uppercase; }

.dept-badge {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 700; font-size: 22px; color: #fff;
}

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
/* Centered wrapping layout for the 7 core values */
.values-wrap {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px 10px; margin-top: 48px;
}
.values-wrap .value { flex: 0 1 180px; }
.value { text-align: center; padding: 14px 12px; }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto; border-radius: 50%;
  background: var(--bg-tint-blue); border: 1.5px solid #D4E4FF;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.value h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 19px; color: var(--blue-navy); margin: 18px 0 8px; }
.value p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--blue-navy), var(--blue-primary) 70%); }
.cta-band .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 64px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { font-family: 'Lora', serif; font-weight: 700; font-size: 34px; color: #fff; margin: 0; }
.cta-band p { font-size: 17px; color: #C7D8F8; margin: 12px 0 0; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Academics ---------- */
.panel {
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 22px; padding: 42px 44px;
}
.panel--green {
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, var(--bg-tint-green), #F2FAF3);
  border-color: #CDE9D2;
}
.dept-tile {
  width: 96px; height: 96px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 700; font-size: 34px; color: #fff;
  background: linear-gradient(150deg, var(--blue-primary), var(--blue-navy));
}
.dept-tile--white { background: #fff; border: 1px solid #CDE9D2; color: var(--green); }
.chip {
  display: inline-flex; align-self: flex-start; padding: 5px 12px;
  border-radius: 8px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.chip--green-solid { background: var(--green); color: #fff; }
.h2-green { color: var(--green-dark); }

.strand-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.strand-card:hover { border-color: var(--green); box-shadow: 0 12px 28px rgba(6, 46, 132, .1); }
.strand-card h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 19px; color: var(--blue-navy); margin: 6px 0 0; }
.strand-card p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- Admissions ---------- */
.step {
  position: relative; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 24px;
}
.step .num { font-family: 'Lora', serif; font-weight: 700; font-size: 40px; color: #D4E4FF; line-height: 1; }
.step h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 18px; color: var(--blue-navy); margin: 10px 0 8px; }
.step p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

.req-list { display: flex; flex-direction: column; gap: 14px; }
.req { display: flex; gap: 12px; align-items: flex-start; }
.req .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-tint-green); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-top: 1px;
}
.req span:last-child { font-size: 15.5px; color: var(--text-muted); }

.apply-card {
  background: linear-gradient(150deg, var(--blue-navy), var(--blue-primary));
  border-radius: 20px; padding: 42px 38px; color: #fff;
}
.contact-tile {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px; padding: 15px 18px; transition: background-color .16s ease;
}
.contact-tile:hover { background: rgba(255, 255, 255, .18); }
.contact-tile .k { display: block; font-size: 12px; color: #9DC0FF; font-weight: 600; letter-spacing: .05em; }
.contact-tile .v { font-size: 15px; font-weight: 600; color: #fff; }

.note { font-size: 13.5px; color: #94A0B8; font-style: italic; }

/* ---------- Faculty ---------- */
.leader { text-align: center; }
.leader h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 19px; color: var(--blue-navy); margin: 18px 0 4px; }
.leader .role { font-size: 14px; font-weight: 600; color: var(--green); margin: 0; letter-spacing: .02em; }
.pill {
  background: #fff; border: 1px solid #D4E4FF; border-radius: 30px;
  padding: 9px 20px; font-size: 14.5px; font-weight: 600; color: var(--blue-primary);
}
.pill-row { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 30px 28px; box-shadow: var(--shadow-card);
}
.contact-card .icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--bg-tint-blue);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-card h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 18px; color: var(--blue-navy); margin: 18px 0 6px; }
.contact-card p { font-size: 15px; color: var(--text-muted); margin: 0; word-break: break-word; }
.contact-card a { color: inherit; text-decoration: none; }
.contact-card a:hover { color: var(--blue-primary); }

.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); margin-top: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row .field { margin-top: 0; }
.field input, .field textarea {
  font-family: 'Public Sans', sans-serif; font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--border-strong);
  border-radius: 10px; outline: none; transition: border-color .16s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--blue-primary); }
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.error { color: #C0392B; }
.form-status.ok { color: var(--green-dark); }

.info-card {
  background: linear-gradient(150deg, var(--bg-tint-green), #F2FAF3);
  border: 1px solid #CDE9D2; border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px 24px; min-height: 200px;
}
.info-card h4 { font-family: 'Lora', serif; font-weight: 700; font-size: 20px; color: var(--green-dark); margin: 12px 0 4px; }
.info-card p { font-size: 15px; color: #3E5847; margin: 0; }
.hours-card { background: var(--blue-navy); border-radius: 20px; padding: 30px 28px; color: #fff; }
.hours-card h4 { font-family: 'Lora', serif; font-weight: 700; font-size: 20px; color: #fff; margin: 0 0 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: #C7D8F8; }
.hours-row .val { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-footer); color: #B9C9E8; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 64px var(--pad-x) 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; background: #fff; padding: 2px; }
.footer-brand span { font-family: 'Lora', serif; font-weight: 700; font-size: 18px; color: #fff; line-height: 1.2; }
.footer-col p { font-size: 14.5px; margin: 20px 0 0; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7FA0D6; margin: 0 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-links a, .footer-links span { color: #B9C9E8; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bar .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad-x);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #7B92BE;
}
.footer-bar .motto { font-style: italic; font-family: 'Lora', serif; }

/* ---------- Utilities ---------- */
.hidden-mobile-only { }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero h1 { font-size: 46px; }
  .grid-4, .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Mobile nav */
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 78px 22px 28px;
    box-shadow: -16px 0 40px rgba(6, 46, 132, .14);
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { padding: 12px 10px; font-size: 16px; border-radius: 8px; }
  .nav-link:hover { background: var(--bg-soft); }
  .nav-link.active::after { left: 10px; right: auto; width: 22px; bottom: 6px; }
  .nav .enroll { margin: 12px 0 0; text-align: center; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(6, 46, 132, .35);
    opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 40;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-media { margin-bottom: 26px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .contact-cards, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .panel { grid-template-columns: 1fr; gap: 24px; padding: 32px 28px; }
  .panel--green { grid-template-columns: 1fr; }
  .panel .dept-tile, .panel--green .dept-tile { }
  .page-banner h1 { font-size: 38px; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .hero h1 { font-size: 36px; }
  .h2, .cta-band h2 { font-size: 28px; }
  .page-banner h1 { font-size: 30px; }
  .grid-2, .grid-3, .grid-4, .values-grid, .contact-cards, .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stat-row { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bar .inner { flex-direction: column; }
  .btn { width: 100%; }
  .cta-row .btn, .cta-band .btn { width: auto; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}
