/* ============================================================
   ATHUMANESAR THEOLOGICAL SEMINARY — Main Stylesheet
   Design: Refined Editorial · Navy & Gold · Playfair + Source Sans
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Color Palette */
  --navy:         #0d1b2e;
  --navy-mid:     #152741;
  --navy-light:   #1e3a5f;
  --gold:         #c9a227;
  --gold-light:   #e4bb4a;
  --gold-dim:     #a0811e;
  --cream:        #faf7f0;
  --cream-dark:   #f0ebe0;
  --white:        #ffffff;
  --text-dark:    #0d1b2e;
  --text-body:    #2d3748;
  --text-muted:   #64748b;
  --border:       #e2d9c8;
  --border-light: #f0ebe0;
  --success:      #2e7d32;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Layout */
  --container:    1200px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-full:  9999px;

  /* Transitions */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --transition: 0.3s var(--ease);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(13,27,46,0.08), 0 1px 2px rgba(13,27,46,0.04);
  --shadow-md:  0 4px 16px rgba(13,27,46,0.10), 0 2px 6px rgba(13,27,46,0.06);
  --shadow-lg:  0 12px 40px rgba(13,27,46,0.14), 0 4px 12px rgba(13,27,46,0.08);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.25);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul, ol { list-style: none; }

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}

blockquote, cite { font-style: italic; }
cite { font-style: italic; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── 3. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-3xl);
}

.section--cream  { background-color: var(--cream); }
.section--navy   { background-color: var(--navy); }

.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-md        { margin-top: var(--space-md); }
.mt-lg        { margin-top: var(--space-xl); }

.section-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col--reversed > :first-child { order: 2; }
.two-col--reversed > :last-child  { order: 1; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-label--light { color: var(--gold-light); }

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-heading--light { color: var(--white); }

.section-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 56ch;
}

.section-body + .section-body { margin-top: var(--space-md); }
.section-body--light  { color: rgba(255,255,255,0.82); }
.section-body--centered { margin-inline: auto; }

.section-header { margin-bottom: var(--space-xl); }

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform 0.15s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--outline-gold {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background-color: var(--gold);
  color: var(--navy);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background-color: rgba(255,255,255,0.1);
}

.btn--navy-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--navy-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 0.9375rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.cta-btn-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ── 5. ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp 0.75s var(--ease) both;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s;  }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s;  }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--anim-delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 6. GLOBAL HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(13,27,46,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-block: 0.875rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.site-logo:hover .logo-icon { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Desktop Nav */
.site-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}

.nav-link:hover,
.nav-link--active {
  color: var(--white);
  background-color: rgba(255,255,255,0.07);
}

.nav-link--active {
  color: var(--gold);
  background-color: rgba(201,162,39,0.1);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.5625rem 1.25rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link--active { color: var(--gold); }

.mobile-enrol-btn {
  margin-top: var(--space-lg);
  align-self: flex-start;
}

/* ── 7. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(30,58,95,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(201,162,39,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0d1b2e 0%, #152741 50%, #0d1b2e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.035;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 4px 100% no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 100% 4px no-repeat;
  border-radius: var(--radius-sm);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: var(--space-3xl);
}

.hero-tag {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,162,39,0.3);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: var(--space-sm);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-scripture {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  max-width: 50ch;
}

.hero-scripture p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.975rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.hero-scripture cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.6));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── 8. PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background-color: var(--navy);
  padding-block: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(30,58,95,0.7) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }

.page-hero__heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  max-width: 22ch;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.page-hero__intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 62ch;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

/* ── 9. HOME — ABOUT SNAPSHOT ─────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-block: var(--space-md) var(--space-lg);
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2em;
}

/* Decorative Stats Card */
.decorative-card {
  display: flex;
  justify-content: center;
}

.decorative-card__inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  max-width: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.decorative-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decorative-cross-motif {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.04;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 3px 100% no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 100% 3px no-repeat;
}

/* ── 10. HOME — PROGRAMS OVERVIEW ─────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.program-card:hover::before { transform: scaleX(1); }

.program-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  display: inline-block;
  align-self: flex-start;
}

.program-card__code {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.program-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.program-card__duration {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.program-card__intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.program-card__fee {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.fee-amount {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
}

.fee-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.program-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dim);
  transition: color var(--transition), gap var(--transition);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.program-card__link:hover { color: var(--gold); gap: 0.625rem; }

/* ── 11. HOME — WHY ATS ───────────────────────────────────── */
.why-ats { padding-block: var(--space-3xl); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.55;
  transition: background-color var(--transition), border-color var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.3);
}

.why-item__icon {
  width: 32px;
  height: 32px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── 12. HOME — ENROL CTA ─────────────────────────────────── */
.cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.cta-card__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.cta-card__body {
  color: var(--text-body);
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.cta-scripture {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-md);
  max-width: 48ch;
}

.cta-scripture p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.cta-scripture cite {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dim);
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.cta-card__action-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── 13. MINI CTA (reused across pages) ───────────────────── */
.mini-cta .section-heading { max-width: 28ch; margin-inline: auto; }
.mini-cta .section-body { max-width: 52ch; margin-inline: auto; margin-top: var(--space-sm); }

/* ── 14. ABOUT PAGE ───────────────────────────────────────── */
.visual-block { display: flex; justify-content: center; }

.scripture-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 340px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.scripture-block__cross {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background:
    linear-gradient(var(--gold), var(--gold)) center / 3px 100% no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 100% 3px no-repeat;
  opacity: 0.7;
}

.scripture-block__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.scripture-block__sub {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Mission / Vision */
.mv-section { background: var(--white); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.mv-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-top: 3px solid var(--gold);
}

.mv-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.mv-card__heading {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.mv-card__statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Doctrine */
.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.doctrine-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: background-color var(--transition), border-color var(--transition);
}

.doctrine-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,162,39,0.3);
}

.doctrine-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,162,39,0.2);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.doctrine-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.625rem;
}

.doctrine-card__body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Accreditation badges */
.accred-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.accred-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.accred-badge__icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.625rem;
}

.value-card__title {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 15. PROGRAMS PAGE ────────────────────────────────────── */
.program-nav-strip {
  padding-block: var(--space-lg);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
}

.prog-nav-tabs {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.prog-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
}

.prog-nav-tab:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}

.prog-nav-tab__code {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.prog-nav-tab__name {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.prog-nav-tab__dur {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dim);
}

/* Programme Section */
.programme-section { scroll-margin-top: 140px; }

.programme-header { margin-bottom: var(--space-xl); }

.programme-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.programme-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.programme-duration {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.programme-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.programme-code {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.programme-intro {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 70ch;
  line-height: 1.75;
}

.programme-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.programme-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.section--cream .programme-block { background: var(--white); }

.programme-block__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border-light);
}

.feature-list, .subject-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.feature-list__item svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15em; }

.subject-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.subject-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.programme-outcomes {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Fee Callout */
.programme-fee-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.fee-callout__main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fee-callout__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-right: 0.5rem;
}

.fee-callout__amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.fee-callout__period {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.fee-callout__graduation {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: var(--space-lg);
}

.fee-callout__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* Common Features */
.common-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.common-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.55;
  transition: background-color var(--transition);
}

.common-feature svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15em; }
.common-feature:hover { background: rgba(255,255,255,0.08); }

/* Scripture Banner */
.scripture-banner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}

.scripture-banner p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.scripture-banner cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── 16. ADMISSIONS PAGE ──────────────────────────────────── */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.eligibility-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}

.eligibility-card:hover { box-shadow: var(--shadow-md); }

.eligibility-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.eligibility-card__detail {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
  counter-reset: steps;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-xl);
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.1));
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(201,162,39,0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.75rem;
}

.step-title {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.step-contact-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.step-contact-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dim);
  transition: color var(--transition);
}
.step-contact-link:hover { color: var(--gold); }

.step-docs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.step-docs__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.step-docs__item svg { color: var(--gold-dim); flex-shrink: 0; margin-top: 0.15em; }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(201,162,39,0.3);
  background: rgba(255,255,255,0.07);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  gap: var(--space-md);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-light); }
.faq-item[open] .faq-question { color: var(--gold-light); }

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
}

.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
}

/* Contact Quick Links */
.contact-quick {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.contact-quick__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-dim);
  transition: color var(--transition);
}
.contact-quick__link:hover { color: var(--gold); }

/* ── 17. FEES PAGE ────────────────────────────────────────── */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.fee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fee-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.fee-card__header {
  background: var(--navy);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.fee-card__code {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.fee-card__name {
  font-size: 1.0625rem;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
}

.fee-card__duration {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  padding: var(--space-md);
  flex: 1;
}

.fee-table th,
.fee-table td {
  padding: 0.75rem var(--space-md);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.fee-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  text-align: left;
}

.fee-amount-cell {
  font-weight: 600;
  color: var(--text-dark);
}

.fee-total-row {
  background: rgba(201,162,39,0.06);
}

.fee-total-row td {
  border-bottom: none;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  padding-block: var(--space-md);
}

.fee-total-row td:last-child {
  color: var(--navy);
  font-size: 1.125rem;
}

.fee-graduation-note {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding: var(--space-sm) var(--space-md);
  background: rgba(201,162,39,0.05);
  border-top: 1px solid rgba(201,162,39,0.15);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fee-graduation-note svg { color: var(--gold-dim); flex-shrink: 0; margin-top: 0.15em; }
.fee-grad-sub { font-style: italic; width: 100%; padding-left: 1.375rem; font-size: 0.8rem; }

.fee-apply-btn {
  margin: var(--space-md);
  align-self: flex-start;
}

/* Notes */
.notes-inner {
  max-width: 720px;
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.notes-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.notes-list__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
  display: none;
}

.notes-list__item p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Payment */
.payment-contacts {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-block: var(--space-lg);
}

.payment-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.payment-contact-item:hover { color: var(--gold-light); }

/* ── 18. FACULTY PAGE ─────────────────────────────────────── */
.leadership-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  max-width: 860px;
}

.leadership-card__icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.leadership-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.leadership-card__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 60ch;
}

/* Faculty Grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.faculty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.faculty-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faculty-card__avatar {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faculty-card__name {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.faculty-card__quals {
  font-size: 0.8125rem;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.faculty-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.faculty-meta-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faculty-meta-label {
  font-weight: 600;
  color: var(--text-dark);
  flex-shrink: 0;
}

.faculty-placeholder-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}
.faculty-placeholder-note svg { color: var(--gold-dim); flex-shrink: 0; }

/* ── 19. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-style: normal;
}

.contact-address__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.contact-address__text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.contact-address__text p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: box-shadow var(--transition);
}

.contact-channel:hover { box-shadow: var(--shadow-sm); }

.contact-channel__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.contact-channel__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-channel__text strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value-link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-value-link:hover { color: var(--gold-dim); }

.contact-channel__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.map-info {
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.map-info__heading {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.map-info__body,
.map-info__landmarks {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.map-link {
  margin-top: var(--space-md);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-heading {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.success-message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--success);
}

.success-message p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.inquiry-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required { color: #e53e3e; }

.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

.form-input::placeholder { color: #a0aec0; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23718096' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.8125rem;
  color: #e53e3e;
  min-height: 1.2em;
}

.form-input.is-invalid { border-color: #e53e3e; }

/* ── 20. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background-color: #080f1a;
  color: rgba(255,255,255,0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

/* Footer Identity */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer-seminary-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer-affiliation,
.footer-accred {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold);
  margin-top: var(--space-md);
  line-height: 1.5;
}

/* Footer Nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
  padding: 0.15rem 0;
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 0.375rem;
}

/* Footer Contact */
.footer-address {
  font-style: normal;
  margin-bottom: var(--space-md);
}

.footer-address p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contact-link:hover { color: var(--gold-light); }

/* Footer Scripture */
.footer-verse {
  border-left: 2px solid rgba(201,162,39,0.4);
  padding-left: var(--space-md);
}

.footer-verse p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.footer-verse cite {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer Bottom */
.footer-bottom {
  padding-block: var(--space-md);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-copyright,
.footer-accred-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ── 21. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-grid.two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .two-col--reversed > :first-child { order: 1; }
  .two-col--reversed > :last-child  { order: 2; }

  .programs-grid { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .fees-grid     { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-main   { grid-template-columns: 1fr 1fr; }
  .doctrine-grid { grid-template-columns: 1fr; }
  .programme-body { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  /* Header */
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-cross { display: none; }
  .hero-headline { font-size: clamp(1.875rem, 7vw, 2.5rem); }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .mv-grid       { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr 1fr; }
  .faculty-grid  { grid-template-columns: 1fr; }
  .cta-card      { grid-template-columns: 1fr; }
  .programme-body { grid-template-columns: 1fr; }
  .common-features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step-item { grid-template-columns: 56px 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Programme nav */
  .program-nav-strip { top: 60px; }
  .prog-nav-tabs { gap: var(--space-sm); }

  /* Fee callout */
  .programme-fee-callout { flex-direction: column; align-items: flex-start; }
  .fee-callout__graduation { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-sm); }
}

@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: var(--space-lg) var(--space-md); }
  .step-contact-detail { flex-direction: column; }
  .fees-grid { max-width: 100%; }
}

/* ── 22. PRINT ────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .btn, .hero-scroll-indicator { display: none !important; }
  body { color: #000; font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}
