﻿/* ============================================================
   GROVE HERITAGE ACADEMY — STYLES v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --navy:        #14213D;
  --navy-dark:   #14213D;
  --navy-light:  #14213D;
  --cream:       #F8F9FA;
  --cream-dark:  #F8F9FA;
  --gold:        #D4A017;
  --gold-dark:   #b8891a;
  --gold-light:  #E8B84B;
  --crimson:      #D4A017;
  --crimson-dark: #b8891a;
  --crimson-light: #E8B84B;
  --green:       #2E5E4E;
  --sage:        #2E5E4E;
  --sage-light:  #3a7560;
  --charcoal:    #2D3436;
  --gray:        #6C7A89;
  --gray-light:  #9BA8B4;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --border-light: #F0F1F3;
  --border-gold: rgba(212,160,23,0.25);
  --shadow:      0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 64px rgba(0,0,0,0.15);
  --radius:      8px;
  --radius-sm:   8px;
  --radius-lg:   22px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Source Sans 3', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:   1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.85;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: var(--font-sans); font-size: 1rem; color: var(--charcoal); }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.18; color: var(--navy); letter-spacing: -0.5px; }
h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p  { font-size: 17px; color: var(--gray); line-height: 1.85; }
.lead { font-size: 1.125rem; font-weight: 300; line-height: 1.95; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-label::before,
.section-label::after { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .accent-line { margin: 0 auto 20px; }
.accent-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; display: block; }

.pull-quote { font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px); font-style: italic; color: var(--gold-dark); line-height: 1.5; margin: 28px 0; }
.text-white h2, .text-white h3, .text-white p { color: var(--white); }
.text-white .section-label { color: var(--gold-light); }
.text-white .section-label::before, .text-white .section-label::after { background: var(--gold-light); }

/* ── Buttons — TWO STYLES ONLY ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-sans);
  font-size: 0.9375rem; font-weight: 600;
  border-radius: 8px; transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  border: 2px solid transparent; letter-spacing: 0.3px;
}
/* Primary: gold background, navy text */
.btn-primary,
.btn-gold { background: #D4A017; color: #14213D; border-color: #D4A017; font-weight: 600; }
.btn-primary:hover,
.btn-gold:hover { background: #B8891A; border-color: #B8891A; box-shadow: 0 4px 16px rgba(212,160,23,0.28); }
/* Secondary: navy outline, navy text → fills navy on hover */
.btn-outline,
.btn-outline-gold,
.btn-outline-white,
.btn-outline-light { background: transparent; color: #14213D; border: 2px solid #14213D; }
.btn-outline:hover,
.btn-outline-gold:hover,
.btn-outline-white:hover,
.btn-outline-light:hover { background: #14213D; color: #FFFFFF; box-shadow: 0 4px 16px rgba(20,33,61,0.18); }
/* On dark backgrounds the outline should be white */
.cta-banner .btn-outline,
.cta-banner .btn-outline-white,
.cta-split .btn-outline,
.cta-split .btn-outline-white,
.scripture-banner .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.6); }
.cta-banner .btn-outline:hover,
.cta-banner .btn-outline-white:hover,
.cta-split .btn-outline:hover,
.cta-split .btn-outline-white:hover,
.scripture-banner .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #FFFFFF; color: #FFFFFF; }
/* Hero (light overlay) — outline-light uses navy on white */
.hero-home .btn-outline-light { color: var(--navy); border-color: var(--navy); }
.hero-home .btn-outline-light:hover { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 4px 16px rgba(20,33,61,0.18); }
.btn-sm { padding: 9px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes pageOpen {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ── Page Load Overlay ────────────────────────────────────── */
.page-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  animation: pageOpen 0.5s var(--ease) 0.1s forwards;
  pointer-events: none;
}

/* ── Seasonal Announcement Bar ────────────────────────────── */
.season-bar {
  background: var(--navy);
  padding: 10px 0;
  text-align: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
}
.navbar { margin-top: 0; }
body.has-season-bar .navbar { top: 40px; }
body.has-season-bar .hero-content-wrap { padding-top: 180px; }
.season-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.season-bar-text {
  font-size: 13px; color: rgba(255,255,255,0.88);
  font-family: var(--font-sans); letter-spacing: 0.3px;
}
.season-bar-link {
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px; transition: var(--transition);
  flex-shrink: 0;
}
.season-bar-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.season-bar-close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); font-size: 18px; line-height: 1;
  transition: var(--transition);
}
.season-bar-close:hover { color: var(--white); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  overflow: visible;
}
.navbar.scrolled {
  box-shadow: 0 2px 28px rgba(0,0,0,0.09);
  border-bottom-color: rgba(0,0,0,0.06);
}
.navbar.scrolled::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: 0.6;
}

/* Hero/transparent mode */
.navbar.hero-mode {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.navbar.hero-mode.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* Navbar inner — standard layout (left-logo, center-links, right-actions) */
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 160px; padding: 10px 0; gap: 16px;
  transition: height 0.3s var(--ease);
  overflow: visible;
}
.navbar.scrolled .navbar-inner { height: 160px; padding: 10px 0; }

/* Split layout on hero mode (homepage) */
.navbar.hero-mode.split-nav .navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.navbar.hero-mode.split-nav .nav-group--left  { display: flex; justify-content: flex-end; align-items: center; }
.navbar.hero-mode.split-nav .nav-group--right { display: flex; justify-content: flex-start; align-items: center; }
.navbar.hero-mode.split-nav .nav-actions      { display: none; }

.navbar.scrolled.split-nav .navbar-inner {
  display: flex;
  justify-content: space-between;
}
.navbar.scrolled.split-nav .nav-group--left  { display: none; }
.navbar.scrolled.split-nav .nav-group--right { display: flex; align-items: center; flex: 1; justify-content: flex-end; }
.navbar.scrolled.split-nav .nav-actions      { display: flex; align-items: center; gap: 10px; }

/* Nav groups (used on homepage for split layout) */
.nav-group { display: flex; align-items: center; gap: 2px; }

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo-icon { width: 48px; height: 55px; flex-shrink: 0; }
.nav-logo-img { height: 140px; width: auto; display: block; flex-shrink: 0; object-fit: contain; max-width: 100%; }
.footer-logo-img { height: 240px; width: auto; display: block; object-fit: contain; max-width: 100%; }
.hero-logo-img { height: 300px; width: auto; display: block; object-fit: contain; max-width: 100%; }
.nav-logo-text {
  font-family: var(--font-serif); font-size: 17px; font-weight: 700;
  font-style: italic; color: var(--navy); line-height: 1.2; letter-spacing: 0.2px;
  transition: color 0.3s var(--ease);
}
.nav-logo-text span {
  display: block; font-size: 10px; font-style: normal; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 1px;
}
.navbar.hero-mode .nav-logo-text { color: var(--navy); }
.navbar.hero-mode .nav-logo-text span { color: var(--gold); }
.navbar.hero-mode.scrolled .nav-logo-text { color: var(--navy); }
.navbar.hero-mode.scrolled .nav-logo-text span { color: var(--gold); }
.navbar.hero-mode .nav-logo-icon path { fill: #14213D; stroke: #D4A017; }
.navbar.hero-mode .nav-logo-icon rect { fill: #D4A017; }
.navbar.hero-mode.scrolled .nav-logo-icon path { fill: #14213D; stroke: #D4A017; }
.navbar.hero-mode.scrolled .nav-logo-icon rect { fill: #D4A017; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--charcoal);
  padding: 8px 13px; border-radius: 6px; transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: rgba(20,33,61,0.05); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 2px; background: var(--crimson); border-radius: 2px;
}
.navbar.hero-mode .nav-links a { color: var(--charcoal); }
.navbar.hero-mode .nav-links a:hover { color: var(--navy); background: rgba(20,33,61,0.05); }
.navbar.hero-mode.scrolled .nav-links a { color: var(--charcoal); }
.navbar.hero-mode.scrolled .nav-links a:hover { color: var(--navy); background: rgba(20,33,61,0.05); }

/* ── Nav Dropdowns ────────────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-chevron {
  display: inline-block; width: 10px; height: 7px;
  vertical-align: middle; margin-left: 2px; flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
/* Invisible bridge fills the gap so hover isn't lost moving mouse to dropdown */
.has-dropdown::after {
  content: ''; position: absolute; bottom: -14px; left: 0; right: 0;
  height: 14px; background: transparent; pointer-events: auto;
  display: none;
}
.has-dropdown:hover::after { display: block; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); min-width: 190px;
  border-radius: var(--radius-sm); padding: 6px 0;
  box-shadow: 0 8px 36px rgba(0,0,0,0.16); border: 1px solid rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 9999;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: var(--white);
  border-left: 1px solid rgba(0,0,0,0.07); border-top: 1px solid rgba(0,0,0,0.07);
}
/* Bridge pseudo also triggers dropdown — covers the gap completely */
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block !important; padding: 10px 20px !important;
  font-size: 11.5px !important; letter-spacing: 1.2px !important;
  border-radius: 0 !important; background: transparent !important;
  color: var(--charcoal) !important; white-space: nowrap;
  text-transform: uppercase; font-weight: 600;
  pointer-events: auto !important; cursor: pointer !important;
}
.nav-dropdown li a:hover {
  color: var(--navy) !important; background: rgba(20,33,61,0.05) !important;
}
/* Extended mobile nav stagger for additional items */
.mobile-menu.open nav a:nth-child(9)  { transition-delay: 0.36s; }
.mobile-menu.open nav a:nth-child(10) { transition-delay: 0.40s; }
.mobile-menu.open nav a:nth-child(11) { transition-delay: 0.44s; }
.mobile-menu.open nav a:nth-child(12) { transition-delay: 0.48s; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-info-link {
  font-size: 0.875rem; font-weight: 500; color: var(--gray);
  padding: 8px 4px; border-bottom: 1px solid transparent; transition: var(--transition);
}
.nav-info-link:hover { color: var(--navy); border-bottom-color: var(--gold); }
.nav-apply-btn { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; }
.nav-apply-btn:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; height: 32px; justify-content: center; align-items: center;
  padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition); transform-origin: center;
}
.navbar.hero-mode .hamburger span { background: var(--navy); }
.navbar.hero-mode.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu nav {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin-bottom: 40px;
}
.mobile-menu nav a {
  font-family: var(--font-serif); font-size: clamp(26px, 6vw, 36px); font-weight: 600;
  color: var(--navy); padding: 10px 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), color 0.2s;
}
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu.open nav a:nth-child(1) { transition-delay: 0.04s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.16s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.20s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: 0.24s; }
.mobile-menu.open nav a:nth-child(7) { transition-delay: 0.28s; }
.mobile-menu.open nav a:nth-child(8) { transition-delay: 0.32s; }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-apply {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.35s var(--ease) 0.38s, transform 0.35s var(--ease) 0.38s;
}
.mobile-menu.open .mobile-menu-apply { opacity: 1; transform: none; }
.mobile-social {
  display: flex; gap: 18px; margin-top: 36px;
  opacity: 0; transition: opacity 0.35s var(--ease) 0.44s;
}
.mobile-menu.open .mobile-social { opacity: 1; }
.mobile-social a {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(20,33,61,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: var(--transition);
}
.mobile-social a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-social svg { width: 18px; height: 18px; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); border: 1.5px solid rgba(20,33,61,0.18);
  transition: var(--transition);
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-close svg { width: 20px; height: 20px; }

/* ── Homepage Hero ────────────────────────────────────────── */
.hero-home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.78)), url('./Hero image.jpeg') center/cover no-repeat;
}
.hero-overlay {
  display: none;
}
.hero-content-wrap {
  position: relative; z-index: 1;
  width: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 100vh; padding: 80px 40px 80px;
}
.hero-content { text-align: center; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px; padding: 10px 20px;
  border: 1px solid rgba(212,160,23,0.4); border-radius: 30px;
  background: rgba(212,160,23,0.08);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}
.hero-logo-mark {
  width: auto; max-width: 100%;
  margin: 0 auto 0; padding-bottom: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}
.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 6vw, 64px); font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 32px; letter-spacing: -0.5px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) 0.6s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 19px; font-weight: 400; line-height: 1.4;
  color: var(--charcoal); max-width: 600px; margin: 0 auto 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) 0.6s forwards;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) 0.9s forwards;
}
.hero-scroll { display: none; }
.hero-scroll-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(20,33,61,0.5); font-weight: 600;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
}
.hero-scroll svg {
  width: 14px; height: 14px; color: var(--gold);
  animation: scrollBounce 1.8s ease infinite;
}


/* ── Interior Page Banner (navy solid, no image) ──────────── */
.page-hero {
  background: #14213D !important;
  min-height: 200px;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { display: none !important; }
.page-hero-overlay { display: none !important; }
.page-hero-accent { display: none !important; }
.page-hero-content { position: relative; z-index: 1; padding-top: 0; }
.page-hero-label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #D4A017; margin-bottom: 12px; display: block;
}
.page-hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: #FFFFFF; line-height: 1.15; margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72); max-width: 580px; line-height: 1.7;
}
.page-breadcrumb { display: flex; gap: 6px; align-items: center; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.page-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .sep { color: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .page-hero { min-height: 150px; padding: 60px 0 40px; }
}

/* ── Scripture Banner ─────────────────────────────────────── */
.scripture-banner {
  background: var(--navy); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.scripture-bg-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.07) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(212,160,23,0.05) 0%, transparent 50%);
}
.scripture-flourish {
  display: flex; justify-content: center; margin-bottom: 20px;
}
.scripture-flourish svg { color: var(--gold); opacity: 0.7; }
.scripture-flourish path {
  stroke: var(--gold);
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  fill: none;
  transition: stroke-dashoffset 1.2s var(--ease);
}
.scripture-banner.visible .scripture-flourish path { stroke-dashoffset: 0; }
.scripture-banner blockquote {
  font-family: var(--font-serif); font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic; color: rgba(255,255,255,0.92);
  max-width: 820px; margin: 0 auto 16px; line-height: 1.65;
  font-weight: 400; position: relative; z-index: 1;
  opacity: 0; transition: opacity 0.8s var(--ease), letter-spacing 0.8s var(--ease);
  letter-spacing: 4px;
}
.scripture-banner.visible blockquote { opacity: 1; letter-spacing: 0; }
.scripture-banner cite {
  font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); position: relative; z-index: 1;
}

/* ── Why Choose Us — Staggered ───────────────────────────── */
.why-stagger {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: stretch;
}
.why-card {
  background: var(--white); border-radius: 12px;
  padding: 38px 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.why-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.10); }
.why-card--high { margin-top: 0; }
.why-card--low  { margin-top: 0; }
.why-card--gold-border::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.why-card--cream { background: var(--cream); }
.why-card--image-peek::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=200&q=70') center/cover;
  opacity: 0.12; border-radius: 0 0 14px 0;
}
.why-card-icon {
  width: 54px; height: 54px; background: rgba(212,160,23,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition);
}
.why-card:hover .why-card-icon { background: rgba(212,160,23,0.18); }
.why-card-icon svg { width: 26px; height: 26px; color: var(--gold); }
.why-card h3 { font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.why-card p { font-size: 15.5px; line-height: 1.8; }

/* ── Program Highlights — Horizontal Scroll ──────────────── */
.highlights-outer {
  position: relative;
}
.highlights-scroll-wrap { position: relative; }
.highlights-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 20px 40px 40px;
  max-width: var(--max-width); margin: 0 auto;
}
.highlights-scroll::-webkit-scrollbar { display: none; }
.highlight-card-h {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--navy); border-radius: var(--radius);
  padding: 40px 34px; position: relative; overflow: hidden;
  transition: var(--transition);
}
.highlight-card-h:hover { box-shadow: var(--shadow-md); }
.highlight-card-h::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,160,23,0.12) 0%, transparent 60%);
}
.highlight-num {
  font-family: var(--font-serif); font-size: 52px; font-weight: 800;
  color: rgba(212,160,23,0.22); line-height: 1; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.highlight-card-h h3 {
  font-size: 20px; color: var(--white); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.highlight-card-h p {
  font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.75;
  position: relative; z-index: 1;
}
.highlight-card-h .hl-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; position: relative; z-index: 1;
}
.scroll-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: var(--transition);
  color: var(--navy);
}
.scroll-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.scroll-arrow svg { width: 18px; height: 18px; }
.scroll-arrow--left  { left: 12px; }
.scroll-arrow--right { right: 12px; }

/* ── Testimonials — Single Rotating ──────────────────────── */
.testimonial-single-wrap {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: 60px 48px 48px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  position: relative;
}
.testimonial-deco-quote {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: 120px; font-weight: 800;
  line-height: 1; color: var(--gold); opacity: 0.13;
  user-select: none; pointer-events: none;
}
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-slides { position: relative; min-height: 120px; }
.testimonial-slide {
  opacity: 0; transform: scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  position: absolute; inset: 0;
}
.testimonial-slide.active {
  opacity: 1; transform: scale(1);
  position: relative;
}
.testimonial-quote-text {
  font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic; line-height: 1.7; color: var(--charcoal);
  margin-bottom: 30px; font-weight: 500;
}
.testimonial-reviewer { margin-top: 10px; }
.testimonial-reviewer strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }
.testimonial-reviewer span { font-size: 13px; color: var(--gray); letter-spacing: 0.5px; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 36px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(212,160,23,0.25); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.testimonial-dots .dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background: var(--navy); padding: 88px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(44px, 5vw, 58px); font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 10px; letter-spacing: -1px;
}
.stat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── CTA Split ────────────────────────────────────────────── */
.cta-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  overflow: hidden;
}
.cta-split-image {
  background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=900&q=80');
  background-size: cover; background-position: center;
  clip-path: polygon(0 0, 100% 0, calc(100% - 72px) 100%, 0 100%);
  position: relative;
}
.cta-split-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(248,249,250,0.15), rgba(248,249,250,0.4));
}
.cta-split-content {
  background: var(--navy); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-split-content::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(212,160,23,0.1) 0%, transparent 60%);
}
.cta-split-content > * { position: relative; z-index: 1; }
.cta-split-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-split-content p  { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 16px; }
.cta-split-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Quick Link Tiles ─────────────────────────────────────── */
.quick-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quick-tile {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit; transition: var(--transition);
  position: relative; overflow: hidden;
}
.quick-tile:hover { box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.quick-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); opacity: 0;
  transform: scaleX(0); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  transform-origin: left;
}
.quick-tile:hover::after { opacity: 1; transform: scaleX(1); }
.quick-tile-icon {
  width: 46px; height: 46px; background: rgba(20,33,61,0.06);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.quick-tile:hover .quick-tile-icon { background: rgba(212,160,23,0.14); }
.quick-tile-icon svg { width: 22px; height: 22px; color: var(--navy); transition: var(--transition); }
.quick-tile:hover .quick-tile-icon svg { color: var(--gold); }
.quick-tile-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--navy); }
.quick-tile-desc { font-size: 14.5px; color: var(--gray); line-height: 1.65; flex: 1; }
.quick-tile-arrow {
  font-size: 1.25rem; color: var(--gold); display: inline-block;
  transition: transform 0.25s var(--ease); align-self: flex-start; margin-top: 4px;
}
.quick-tile:hover .quick-tile-arrow { transform: translateX(6px); }

/* ── Footer — New Design ──────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-scripture-top {
  padding: 64px 40px 56px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.footer-scripture-top blockquote {
  font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic; color: var(--gold); line-height: 1.65;
  font-weight: 500; max-width: 680px; margin: 0 auto 12px;
}
.footer-scripture-top cite {
  font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-main { padding: 0; }
.footer-main .container { padding-top: 64px; padding-bottom: 48px; }
.footer-main .footer-inner { padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-serif); font-size: 16px; font-weight: 700;
  font-style: italic; color: var(--white); line-height: 1.2;
}
.footer-logo-text span {
  display: block; font-size: 9px; font-style: normal; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.footer-tagline {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5);
  margin-bottom: 22px; font-style: italic;
}
.footer-mission { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-heading {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-bottom: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.1); }
.footer-social svg { width: 15px; height: 15px; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm); padding: 10px 14px;
  color: var(--white); font-size: 14px; transition: var(--transition);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.11); }
.footer-newsletter button {
  padding: 10px 18px; background: var(--gold); color: var(--white);
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600;
  transition: var(--transition); flex-shrink: 0;
}
.footer-newsletter button:hover { background: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
}
.footer-gold-line {
  width: 100%; height: 1px; margin-bottom: 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.footer-bottom-inner > span { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }
/* Alternate footer-inner layout (used on some subpages) */
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max-width); margin: 0 auto; padding: 64px 40px 56px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-col h4 {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 3px; }
.footer-bottom-nav { display: flex; gap: 24px; }
.footer-bottom-nav a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-nav a:hover { color: rgba(255,255,255,0.65); }

/* ── Floating Apply Button (mobile only) ─────────────────── */
.floating-apply {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--cream); padding: 14px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(100%); transition: transform 0.45s var(--ease);
  display: none;
}
.floating-apply.visible { transform: translateY(0); }
.floating-apply .btn { width: 100%; justify-content: center; }

/* ── Texture Overlay (for cream sections) ────────────────── */
.texture-cream {
  position: relative;
}
.texture-cream::before {
  display: none;
}
.texture-cream > * { position: relative; z-index: 1; }

/* ── Section Dividers (wave) ──────────────────────────────── */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; }

/* ── Background utilities ─────────────────────────────────── */
.bg-cream  { background: #F8F9FA; }
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--navy); }
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ── Scroll Animations ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.09s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.27s; }
.fade-up:nth-child(5) { transition-delay: 0.36s; }
.fade-left:nth-child(1) { transition-delay: 0s; }
.fade-right:nth-child(3) { transition-delay: 0s; }

/* ── About Page ───────────────────────────────────────────── */
.mission-statement {
  text-align: center; max-width: 840px; margin: 0 auto;
  font-family: var(--font-serif); font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic; color: var(--navy); line-height: 1.75; font-weight: 500;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-text p + p { margin-top: 16px; }
.two-col-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.value-card h3 svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.sof-box {
  background: var(--cream); border-radius: var(--radius);
  padding: 48px; border: 1px solid var(--border); border-left: 4px solid var(--gold);
  max-width: 800px; margin: 0 auto; width: 100%;
}
.sof-box p, .sof-box ul { text-align: left; }
.sof-box .sof-icon { color: var(--gold); margin-bottom: 20px; }
.sof-box p { font-size: 16.5px; line-height: 1.85; }

/* ── Academics Page ───────────────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.course-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.course-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.course-card-subject {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.course-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.course-card p { font-size: 14px; line-height: 1.7; }
.grad-table-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.grad-table { width: 100%; border-collapse: collapse; }
.grad-table thead th {
  background: var(--navy); color: var(--white);
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 24px; text-align: left;
}
.grad-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.grad-table tbody tr:nth-child(even) { background: rgba(248,249,250,0.5); }
.grad-table tbody tr:last-child { border-bottom: none; font-weight: 700; background: var(--cream-dark); }
.grad-table tbody tr:hover { background: rgba(212,160,23,0.05); }
.grad-table td { padding: 14px 24px; font-size: 15px; }
.grad-table td:last-child { font-weight: 600; color: var(--navy); }
.diploma-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.diploma-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  border: 2px solid var(--border); box-shadow: var(--shadow); position: relative;
  transition: var(--transition);
}
.diploma-card.featured { border-color: var(--gold); }
.diploma-card-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--gold); color: var(--white);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
}
.diploma-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.diploma-card .credits { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.diploma-card p { font-size: 14.5px; margin-top: 12px; }

/* ── Admissions Page ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  position: relative; transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-number {
  font-family: var(--font-serif); font-size: 48px; font-weight: 800;
  color: rgba(212,160,23,0.2); line-height: 1; margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.step-connector {
  position: absolute; top: 36px; right: -12px; z-index: 1;
  width: 24px; height: 24px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-connector svg { width: 12px; height: 12px; color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center;
  transition: var(--transition);
}
.pricing-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); transform: scale(1.03); }
.pricing-card:not(.featured):hover { box-shadow: var(--shadow-md); }
.pricing-card h3 { font-size: 19px; margin-bottom: 8px; }
.pricing-card .price { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1.1; margin: 16px 0 12px; }
.pricing-card.featured .price { color: var(--gold-light); }
.pricing-card .price-note { font-size: 13px; color: var(--gray); }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.6); }
.pricing-features { text-align: left; margin: 20px 0; display: flex; flex-direction: column; gap: 8px; }
.pricing-feature { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; color: var(--gray); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.72); }
.pricing-feature::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }

/* ── Forms ────────────────────────────────────────────────── */
.form-section { max-width: 800px; margin: 0 auto; width: 100%; }
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-card-wide { padding: 48px; }
.form-title { font-size: 26px; margin-bottom: 6px; }
.form-sub { margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.4px; }
.form-label .required, .req { color: var(--gold-dark); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm); font-size: 15.5px;
  color: var(--charcoal); transition: var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.14);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C7A89' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-checkbox-group { display: flex; align-items: flex-start; gap: 10px; max-width: 720px; }
.form-checkbox { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-checkbox-label { font-size: 15px; color: var(--charcoal); line-height: 1.5; cursor: pointer; }
.form-section-heading {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px; grid-column: 1 / -1;
}
.form-submit { text-align: center; margin-top: 8px; grid-column: 1 / -1; }
.form-success {
  display: none; background: rgba(127,160,133,0.1);
  border: 1px solid rgba(127,160,133,0.3); border-radius: var(--radius-sm);
  padding: 16px 20px; color: var(--sage); font-weight: 500;
  margin-top: 16px; grid-column: 1 / -1; text-align: center;
}
.form-card-title { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 28px; }
.form-card label { font-size: 13px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.4px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 16px; background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius-sm);
  font-size: 15.5px; color: var(--charcoal); transition: var(--transition);
  font-family: var(--font-sans);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.14);
}
.form-card select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C7A89' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-card textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.char-counter { font-size: 12px; color: var(--gray-light); text-align: right; display: block; margin-top: 4px; }
.hidden { display: none !important; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 15px; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.form-card .form-success {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(127,160,133,0.1); border: 1px solid rgba(127,160,133,0.3);
  border-radius: var(--radius-sm); padding: 16px 20px;
  color: var(--sage); font-weight: 500; margin-top: 16px;
  font-size: 15.5px; line-height: 1.6;
}
.form-card .form-success svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ── Resources Page ───────────────────────────────────────── */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px; transition: var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); }
.resource-card h3 { font-size: 17px; color: var(--navy); }
.resource-card p { font-size: 14px; flex: 1; }
.resource-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.resource-card-icon svg { width: 22px; height: 22px; }
.resource-card-icon.navy { background: rgba(20,33,61,0.08); color: var(--navy); }
.resource-card-icon.gold { background: rgba(212,160,23,0.12); color: var(--gold-dark); }
.resource-card-icon.sage { background: rgba(127,160,133,0.12); color: var(--sage); }
.resource-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--gold-dark);
  margin-top: auto; transition: gap 0.2s;
}
.resource-link:hover { gap: 8px; }
.resource-link svg { width: 14px; height: 14px; }
.transcript-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.transcript-info h3 { font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border-radius: var(--radius); padding: 20px 22px; border: 1px solid var(--border); }
.info-card.gold-border { border-left: 3px solid var(--gold); }
.info-card-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.info-card-icon svg { width: 22px; height: 22px; }
.info-card strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.info-card p { font-size: 14px; margin: 0; }
.info-card a { color: var(--navy); font-weight: 600; }
.download-categories { display: flex; flex-direction: column; gap: 40px; }
.download-group-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 20px; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.download-group-title svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.download-list { display: flex; flex-direction: column; gap: 8px; }
.download-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; background: var(--cream); border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.download-item:hover { background: var(--white); box-shadow: var(--shadow); }
.download-item-info { display: flex; align-items: center; gap: 14px; }
.download-item-info > div strong { display: block; font-size: 15px; color: var(--navy); font-weight: 600; }
.download-item-info > div { display: flex; flex-direction: column; gap: 2px; }
.download-meta { font-size: 12.5px; color: var(--gray-light); }
.download-icon.pdf { width: 36px; height: 36px; background: rgba(212,160,23,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-dark); }
.download-icon.pdf svg { width: 18px; height: 18px; }
.download-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--navy); color: var(--white);
  border-radius: 99px; font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: var(--transition); text-decoration: none; flex-shrink: 0;
}
.download-btn:hover { background: #2a4080; }
.download-btn svg { width: 14px; height: 14px; }
.transcript-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 48px; color: var(--white);
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.transcript-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%); }
.transcript-hero h2 { color: var(--white); margin-bottom: 10px; position: relative; }
.transcript-hero p { color: rgba(255,255,255,0.75); font-size: 16.5px; max-width: 560px; position: relative; }
.transcript-hero .btn { margin-top: 24px; position: relative; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-title { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.contact-info-intro { font-size: 15.5px; margin-bottom: 28px; line-height: 1.85; }
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.contact-item:hover { box-shadow: var(--shadow); }
.contact-item-icon { width: 44px; height: 44px; background: rgba(212,160,23,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item-body { display: flex; flex-direction: column; gap: 3px; }
.contact-item-body strong { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-item-body a, .contact-item-body span, .contact-item-body address { font-size: 15px; color: var(--charcoal); line-height: 1.5; font-style: normal; text-decoration: none; }
.contact-item-body a:hover { color: var(--gold-dark); }
.contact-quick-links { background: var(--cream); border-radius: var(--radius); padding: 24px 26px; border: 1px solid var(--border); }
.contact-quick-links h3 { font-size: 16px; color: var(--navy); margin-bottom: 14px; }
.contact-quick-links ul { display: flex; flex-direction: column; gap: 10px; }
.contact-quick-links ul li a { font-size: 14.5px; color: var(--navy); font-weight: 500; display: flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
.contact-quick-links ul li a:hover { color: var(--gold-dark); gap: 10px; }
.contact-quick-links ul li a::after { content: '→'; font-size: 1em; }
.map-section { }
.map-placeholder { width: 100%; height: 320px; background: var(--cream-dark); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.map-placeholder-inner { text-align: center; color: var(--gray); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.map-placeholder-inner svg { width: 40px; height: 40px; color: var(--gray-light); }
.map-placeholder-inner p { font-weight: 600; color: var(--navy); font-size: 1rem; margin: 0; }
.map-placeholder-inner span { font-size: 14px; }
.inquiry-form-wrap { max-width: 900px; margin: 0 auto; }

/* ── FAQ Page ─────────────────────────────────────────────── */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-intro { color: var(--gray); margin-bottom: 48px; font-size: 1rem; }
.faq-intro a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-category { margin-bottom: 52px; }
.faq-category-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  padding-bottom: 14px; border-bottom: 1.5px solid var(--border); margin-bottom: 6px;
}
.faq-category-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 20px 4px; cursor: pointer;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--navy); gap: 16px; user-select: none;
  transition: color 0.2s; background: none; border: none;
}
.faq-question:hover { color: #2a4080; }
.faq-question::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--gold);
  flex-shrink: 0; width: 28px; text-align: center; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question::after { content: '×'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 15.5px; line-height: 1.85; color: var(--gray); }
.faq-still-questions {
  background: var(--cream-dark); border-radius: var(--radius-lg);
  padding: 48px; margin-top: 56px; text-align: center; border: 1px solid var(--border);
}
.still-questions-inner svg { width: 44px; height: 44px; color: var(--gold); margin: 0 auto 16px; }
.still-questions-inner h3 { font-size: 24px; color: var(--navy); margin-bottom: 10px; }
.still-questions-inner p { max-width: 440px; margin: 0 auto 24px; }

/* ── Calendar Page ────────────────────────────────────────── */
.calendar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.calendar-col { display: flex; flex-direction: column; gap: 24px; }
.calendar-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cal-month-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--navy); }
.cal-nav-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--navy); }
.cal-nav-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); }
.cal-nav-btn svg { width: 16px; height: 16px; }
#calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cal-day-header { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; padding: 12px 4px; }
.cal-day { background: var(--white); min-height: 80px; padding: 8px; cursor: default; transition: var(--transition); position: relative; }
.cal-day.has-event { cursor: pointer; }
.cal-day:not(.empty):hover { background: var(--cream); }
.cal-day.today .cal-day-num { background: var(--navy); color: var(--white); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.cal-day.empty { background: rgba(248,249,250,0.6); cursor: default; }
.cal-day-num { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; line-height: 1; }
.cal-events { display: flex; flex-direction: column; gap: 2px; }
.cal-event-dot { font-size: 9.5px; font-weight: 700; border-radius: 4px; padding: 2px 5px; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-event-dot.academic { background: rgba(20,33,61,0.1); color: var(--navy); }
.cal-event-dot.deadline { background: rgba(212,160,23,0.2); color: var(--gold-dark); }
.cal-event-dot.holiday { background: rgba(127,160,133,0.15); color: var(--sage); }
.cal-event-dot.graduation { background: rgba(212,160,23,0.2); color: var(--gold-dark); }
.upcoming-col { display: flex; flex-direction: column; gap: 24px; }
.upcoming-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; }
.upcoming-title { display: flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 18px 22px; font-family: var(--font-serif); font-size: 17px; margin: 0; }
.upcoming-title svg { width: 18px; height: 18px; color: rgba(212,160,23,0.8); flex-shrink: 0; }
.upcoming-list { padding: 6px 0; }
.upcoming-item { padding: 14px 20px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.upcoming-item:last-child { border-bottom: none; }
.upcoming-item:hover { background: var(--cream); }
.upcoming-date { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.upcoming-item-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.upcoming-footer { padding: 14px 20px; border-top: 1px solid var(--border); }
.upcoming-contact-link { font-size: 13px; color: var(--gray); display: block; text-align: center; }
.upcoming-contact-link:hover { color: var(--navy); }
.calendar-legend { background: var(--white); border-radius: var(--radius); padding: 20px 24px; border: 1px solid var(--border); }
.legend-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.legend-list { display: flex; flex-direction: column; gap: 10px; }
.legend-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray); }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.legend-dot.academic { background: rgba(20,33,61,0.45); }
.legend-dot.holiday { background: rgba(127,160,133,0.65); }
.legend-dot.deadline { background: rgba(212,160,23,0.75); }
.legend-dot.graduation { background: var(--gold); }
.key-dates-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; box-shadow: var(--shadow); }
.key-dates-title { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.key-dates-table { width: 100%; border-collapse: collapse; }
.key-dates-table tr { border-bottom: 1px solid var(--border); }
.key-dates-table tr:last-child { border-bottom: none; }
.key-dates-table td { padding: 10px 4px; font-size: 14px; line-height: 1.5; }
.key-dates-table td:first-child { color: var(--gray); }
.key-dates-table td:last-child { text-align: right; }
.key-dates-table strong { color: var(--navy); }
.event-popup { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.52); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.25s ease; }
.event-popup.open { opacity: 1; visibility: visible; }
.event-popup-inner { background: var(--white); border-radius: var(--radius-lg); padding: 36px 40px; max-width: 440px; width: 100%; box-shadow: var(--shadow-lg); position: relative; transform: scale(0.95); transition: transform 0.25s ease; }
.event-popup.open .event-popup-inner { transform: scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--gray); }
.popup-close:hover { background: var(--cream-dark); color: var(--navy); }
.popup-close svg { width: 16px; height: 16px; }
.popup-date { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.popup-title { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.popup-desc { font-size: 15px; color: var(--gray); line-height: 1.75; }

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.7); margin: 0; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input { padding: 13px 20px; border-radius: 99px; border: 1.5px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.1); color: var(--white); font-size: 15px; min-width: 240px; flex: 1; font-family: var(--font-sans); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.16); }

/* ── CTA Banner (old-style fallback) ─────────────────────── */
.cta-banner { background: var(--navy); padding: 92px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { color: var(--white); max-width: 600px; margin: 0 auto 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 36px; font-size: 16.5px; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.7); max-width: 420px; }
.cta-actions { display: flex; gap: 12px; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-0  { margin-bottom: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.body-offset { padding-top: 168px; }

/* ── Responsive ───────────────────────────────────────────── */

/* 1200px — tablet landscape / split screen */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .nav-links a { font-size: 13px; padding: 7px 9px; }
  .hero-logo-img { height: 250px; }
  .highlights-scroll { padding: 20px 28px 40px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .calendar-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .transcript-layout { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .newsletter-wrap { flex-direction: column; gap: 24px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-image { min-height: 280px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%); }
  .cta-split-content { padding: 56px 48px; }
  .why-stagger { grid-template-columns: 1fr; gap: 20px; }
  .why-card--high, .why-card--low { margin-top: 0; }
}

/* 992px — small tablet / narrow split screen */
@media (max-width: 992px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  h2 { font-size: clamp(22px, 3vw, 36px); }
  h3 { font-size: clamp(18px, 2.2vw, 22px); }
  .hero-logo-img { height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .diploma-tracks { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-card, .value-card, .course-card { padding: 24px; }
  .nav-links, .nav-info-link, .nav-actions { display: none; }
  .nav-group { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { height: 100px; padding: 6px 0; }
  .navbar.scrolled .navbar-inner { height: 100px; padding: 6px 0; }
  .nav-logo-img { height: 86px; }
  .body-offset { padding-top: 110px; }
}

/* 768px — tablet portrait */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .hero-content-wrap { padding: 100px 20px 100px; }
  .hero-logo-img { height: 160px; }
  .nav-logo-img { height: 80px; }
  .navbar-inner { height: 90px; padding: 5px 0; }
  .navbar.scrolled .navbar-inner { height: 90px; padding: 5px 0; }
  .body-offset { padding-top: 95px; }
  .page-hero { min-height: 320px; }
  .page-hero-content { padding-top: 100px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-logo-img { height: 140px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .form-card-wide { padding: 24px 20px; }
  .courses-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-scripture-top { padding: 40px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .grad-table-wrap { overflow-x: auto; }
  .cal-event-dot { display: none; }
  .cal-day { min-height: 48px; }
  .calendar-layout { grid-template-columns: 1fr; }
  .transcript-hero { padding: 28px; }
  .sof-box { padding: 28px; }
  .resource-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .download-item { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 0; }
  .faq-still-questions { padding: 32px 20px; }
  .testimonial-single-wrap { padding: 40px 24px 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .floating-apply { display: block; }
  .scroll-arrow { display: none; }
  .highlights-scroll { padding: 12px 20px 28px; }
  .highlight-card-h { flex: 0 0 260px; }
}

/* 480px — mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 28px 0; }
  .hero-content-wrap { padding: 85px 16px 85px; }
  .hero-logo-img { height: 120px; }
  .nav-logo-img { height: 68px; }
  .navbar-inner { height: 80px; padding: 5px 0; }
  .navbar.scrolled .navbar-inner { height: 80px; padding: 5px 0; }
  .body-offset { padding-top: 85px; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  body, p { font-size: 16px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; min-height: 48px; }
  .btn { min-height: 48px; }
  .footer-logo-img { height: 110px; }
  .page-hero-content { padding-top: 90px; }
}

/* ── Uniform Card System ──────────────────────────────────── */
.why-card,
.highlight-card-h,
.value-card,
.course-card,
.diploma-card,
.pricing-card,
.step-card,
.quick-tile,
.info-card,
.news-card,
.team-card {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
  padding: 32px !important;
  border: 1px solid #E5E7EB !important;
  transition: box-shadow 0.2s ease !important;
}
.why-card:hover,
.highlight-card-h:hover,
.value-card:hover,
.course-card:hover,
.diploma-card:hover,
.pricing-card:hover,
.step-card:hover,
.quick-tile:hover,
.info-card:hover,
.news-card:hover,
.team-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10) !important;
}
/* Remove colored top/side borders on cards — keep featured diploma border */
.why-card--gold-border { border: 1px solid #E5E7EB !important; }
.why-card--gold-border::before { display: none; }
.diploma-card.featured { border-color: #D4A017 !important; }
/* highlight cards (dark navy) remain navy since they're on dark bg */
.highlight-card-h {
  background: #14213D !important;
  border-color: rgba(255,255,255,0.1) !important;
}
/* pricing featured card remains navy */
.pricing-card.featured {
  background: #14213D !important;
  border-color: #14213D !important;
}
/* quick-tile needs specific overrides */
.quick-tile {
  display: flex !important; flex-direction: column !important;
  gap: 10px !important; text-decoration: none !important;
  color: inherit !important; position: relative !important; overflow: hidden !important;
}

/* ── Universal Form Inputs ──────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="password"],
select,
textarea {
  background: #FFFFFF !important;
  border: 1px solid #D1D5DB !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-size: 16px !important;
  font-family: var(--font-sans) !important;
  color: #2D3436 !important;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #D4A017 !important;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15) !important;
}
label {
  font-weight: 600 !important;
  color: #2D3436 !important;
  margin-bottom: 6px !important;
  display: block;
  font-size: 15px;
}

/* ── Image border-radius ──────────────────────────────────── */
.two-col-img img { border-radius: 12px; }

/* ── Stagger offset reset ─────────────────────────────────── */
.why-card--high,
.why-card--low { margin-top: 0 !important; transform: none !important; }
