/* ================================================
   Al-Ikhlas Training Academy — Shared Stylesheet
   Color palette: Navy, Grey, Silver, White, Black
   Inspired by UofD Jesuit clean institutional style
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* COLORS */
  --navy:        #1a2e4a;
  --navy-dark:   #0f1e33;
  --navy-mid:    #243b5a;
  --navy-light:  #e8ecf2;
  --grey:        #6b7280;
  --grey-mid:    #4b5563;
  --grey-light:  #f3f4f6;
  --silver:      #c0c7d0;
  --silver-light:#e8ecf0;
  --white:       #ffffff;
  --black:       #111827;
  --text:        #1f2937;
  --text-muted:  #4b5563;
  --text-light:  #6b7280;
  --border:      #d1d5db;
  --border-light:#e5e7eb;

  /* TYPOGRAPHY */
  --font-head: 'Open Sans', Calibri, Helvetica, sans-serif;
  --font-body: Calibri, Helvetica, Arial, sans-serif;

  /* LAYOUT */
  --nav-h:    68px;
  --radius:   6px;
  --radius-lg:12px;
  --shadow:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:0 4px 24px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========================
   NAVIGATION
   ======================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo-badge {
  width: 46px;
  height: 46px;
  background: var(--silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo-badge-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
}

.nav-logo-text .school-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text .school-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links > a,
.nav-dropdown > .nav-drop-trigger {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.nav-links > a:hover,
.nav-dropdown:hover > .nav-drop-trigger,
.nav-dropdown.is-open > .nav-drop-trigger {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}
.nav-links > a.active { color: #fff; }

.nav-drop-trigger::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.7;
}

.nav-dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  z-index: 300;
  padding: 6px 0;
}
/* Click-based dropdowns — toggled via JS */
.nav-dropdown.is-open .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 9px 18px;
  transition: background 0.15s;
}
.dropdown-menu a:hover {
  background: var(--navy-light);
  color: var(--navy);
  text-decoration: none;
}

.nav-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-dark); color: #fff; }

.btn-navy-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-navy-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--silver-light); color: var(--navy-dark); }

.btn-silver {
  background: var(--silver);
  color: var(--navy-dark);
}
.btn-silver:hover { background: #a8b2be; color: var(--navy-dark); }

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ========================
   HERO (full-page width with image)
   ======================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,30,0.85) 0%, rgba(26,46,74,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 2rem 64px;
}
.hero-badge {
  display: inline-block;
  background: rgba(192,199,208,0.2);
  border: 1px solid rgba(192,199,208,0.4);
  color: var(--silver);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 800px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  font-weight: 300;
  max-width: 600px;
}
.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* INNER HERO (for interior pages) */
.hero-inner {
  background: var(--navy);
  padding: 52px 2rem 44px;
  position: relative;
  overflow: hidden;
}
.hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--silver) 0%, var(--navy-mid) 100%);
}
.hero-inner-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-inner .hero-inner-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover { color: #fff; }

/* ========================
   SECTIONS
   ======================== */
.section { padding: 64px 2rem; }
.section-alt { background: var(--grey-light); }
.section-navy { background: var(--navy); color: #fff; }
.section-dark { background: var(--navy-dark); color: #fff; }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.section-navy .section-label,
.section-dark .section-label { color: var(--silver); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-navy .section-title,
.section-dark .section-title { color: #fff; }

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
}
.section-navy .section-body,
.section-dark .section-body { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-body { margin: 0 auto; }

/* ========================
   CARDS
   ======================== */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-light);
}
.card p, .card li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.card ul { padding-left: 18px; list-style: disc; }
.card li { margin-bottom: 6px; }

/* Feature card */
.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--navy);
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Quick-link card (navy background) */
.quick-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.quick-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.quick-card:hover {
  background: var(--navy-dark);
  transform: translateY(-4px);
  text-decoration: none;
  color: #fff;
}
.quick-card .icon { font-size: 28px; margin-bottom: 14px; display: block; }
.quick-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.quick-card p { font-size: 13.5px; opacity: 0.75; line-height: 1.5; color: rgba(255,255,255,0.75); }
.quick-card .arrow {
  position: absolute;
  bottom: 20px; right: 22px;
  font-size: 20px;
  opacity: 0.4;
}

/* ========================
   GRIDS
   ======================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; }
.grid-6050 { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.grid-5050 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ========================
   QUOTE BLOCK
   ======================== */
.quote-block {
  background: var(--navy-light);
  border-left: 5px solid var(--navy);
  padding: 40px 60px;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto 16px;
}
.quote-block cite {
  font-size: 13px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========================
   BANNER / PARTNER STRIP
   ======================== */
.banner-strip {
  background: var(--navy-dark);
  color: #fff;
  padding: 52px 2rem;
  text-align: center;
}
.banner-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
}
.banner-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.02rem;
}
.banner-strip img {
  max-width: 140px;
  margin: 0 auto 20px;
  opacity: 0.85;
}

/* ========================
   PHOTO SECTIONS
   ======================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.photo-banner {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.photo-side {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ========================
   FORMS
   ======================== */
.form-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========================
   NOTICE BOX
   ======================== */
.notice {
  background: var(--navy-light);
  border: 1px solid rgba(26,46,74,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.notice p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.notice strong { color: var(--navy); }

/* ========================
   STATS ROW
   ======================== */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--navy); }
.stat-item {
  background: var(--navy-mid);
  padding: 40px 24px;
  text-align: center;
}
.stat-item:nth-child(even) { background: var(--navy); }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--silver); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ========================
   MISSION BLOCK
   ======================== */
.mission-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.mission-block h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
}
.mission-block p { color: rgba(255,255,255,0.85); line-height: 1.8; font-size: 1.05rem; }
.mission-block p + p { margin-top: 14px; }

/* ========================
   CONTACT INFO STRIP
   ======================== */
.contact-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; margin-bottom: 52px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-item h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-item p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }

/* ========================
   STEPS
   ======================== */
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.step-content h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ========================
   CURRICULUM TABS
   ======================== */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  background: #fff;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.tab-panel .tab-intro { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; line-height: 1.7; }

.subject-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 12px; margin-top: 24px; }
.subject-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.subject-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.subject-pill span { font-size: 14px; font-weight: 500; color: var(--navy); }

/* ========================
   STUDENT LIFE CARDS
   ======================== */
.life-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.life-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.life-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.life-card-accent { height: 5px; background: var(--navy); }
.life-card-body { padding: 26px; }
.life-card-body h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.life-card-body p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ========================
   DONATION TIERS
   ======================== */
.donate-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  padding: 88px 2rem;
  text-align: center;
}
.donate-hero h1 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.donate-hero p { font-size: 1.1rem; opacity: 0.82; max-width: 600px; margin: 0 auto 32px; }

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin: 40px 0; }
.tier {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
  background: #fff;
}
.tier:hover { box-shadow: var(--shadow); }
.tier.featured { border-color: var(--navy); border-width: 2px; }
.tier .amount { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tier .label { font-size: 12px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.tier p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========================
   MAP PLACEHOLDER
   ======================== */
.map-placeholder {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================
   TAG / PILL
   ======================== */
.tag {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ========================
   DIVIDER
   ======================== */
.divider { height: 1px; background: var(--border-light); margin: 48px 0; }

/* ========================
   PROSE (rich text)
   ======================== */
.prose p { margin-bottom: 18px; font-size: 1.05rem; color: var(--text-muted); line-height: 1.82; }
.prose h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin: 30px 0 12px; }
.prose ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.prose li { font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.prose em { font-style: italic; }
.prose strong { color: var(--text); }

/* ========================
   FOOTER
   ======================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 60px 2rem 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand .brand-name { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.75; opacity: 0.65; margin-bottom: 22px; max-width: 300px; }
.footer-brand-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silver);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 7px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.38); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }

/* ========================
   UTILITIES
   ======================== */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-grey { color: var(--grey); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .grid-6050,
  .grid-5050 { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .site-nav { height: 60px; }
  .nav-inner { padding: 0 1rem; gap: 0.5rem; }
  .nav-hamburger { display: flex; }
  .nav-ctas { display: none; }
  /* Mobile nav panel drops down when .is-open is toggled by JS */
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    z-index: 199;
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .site-nav { position: sticky; }
  .nav-links > a,
  .nav-dropdown > .nav-drop-trigger {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 14px;
  }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
    border-radius: 0;
    padding: 4px 0;
    min-width: 100%;
  }
  .dropdown-menu a {
    color: rgba(255,255,255,0.72);
    padding: 10px 32px;
    font-size: 13.5px;
  }
  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  .hero { min-height: 420px; }
  .hero-content { padding: 60px 1.25rem 48px; }
  .section { padding: 48px 1.25rem; }
  .quote-block { padding: 28px 20px; }
  .schedule-highlight { grid-template-columns: repeat(2,1fr) !important; padding: 24px !important; }
  .quote-block blockquote { white-space: normal; font-size: 0.95rem; text-align: center; }
  .quote-block p { font-size: 0.95rem !important; }
  .form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-auto,
  .grid-auto-sm { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .mission-block { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
