/* ===================================================
   Whitbourne Pastoral Charge — Main Stylesheet
   =================================================== */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a3a5c;
  --blue:       #2c5f8a;
  --blue-mid:   #3a7ab5;
  --gold:       #b8922e;
  --gold-light: #d4a843;
  --cream:      #f9f6f1;
  --light:      #eef4f9;
  --border:     #dde6ef;
  --text:       #2d2d2d;
  --text-mid:   #555;
  --text-light: #7a8a99;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(26,58,92,.08);
  --shadow-md:  0 6px 24px rgba(26,58,92,.12);
  --shadow-lg:  0 16px 48px rgba(26,58,92,.16);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1.1rem; color: var(--text-mid); font-size: 1.02rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utilities ---- */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad      { padding: 80px 0; }
.section-pad-sm   { padding: 56px 0; }
.text-center      { text-align: center; }
.text-white       { color: var(--white) !important; }
.text-gold        { color: var(--gold) !important; }

.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 2.8rem;
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.6rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,146,46,.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,46,.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.site-nav a {
  display: inline-block;
  padding: 6px 11px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.03em;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px;
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold); }
.site-nav a:hover::after,
.site-nav a.active::after { left: 11px; right: 11px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.82) 0%, rgba(26,58,92,.55) 50%, rgba(26,58,92,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 60px 0;
  animation: fadeUp 0.9s ease both;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-text {
  font-size: 1.12rem;
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.7rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 580px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card-text { font-size: 0.94rem; color: var(--text-mid); }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- SPLIT LAYOUT ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 420px; object-fit: cover; }
.split-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* ---- STAT STRIP ---- */
.stat-strip {
  background: var(--navy);
  padding: 48px 0;
}
.stat-strip .grid-4 { gap: 16px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
}

/* ---- MISSION / VISION BLOCKS ---- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
  position: relative;
}
.mv-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.mv-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 2; }
.mv-card h3 { margin-bottom: 0.8rem; }
.mv-card p  { font-size: 1rem; color: var(--text-mid); }

/* ---- FEATURE LIST ---- */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list .icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2.2; }

/* ---- QUOTE / VERSE BLOCK ---- */
.verse-block {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}
.verse-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.22rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.verse-block cite {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; }
.contact-item-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item-value { font-size: 0.98rem; color: var(--text); font-weight: 500; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44,95,138,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- ACCORDION (FAQ) ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--light); color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.faq-chevron svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.faq-question.open .faq-chevron svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-mid); font-size: 0.97rem; line-height: 1.7; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 0.4rem; color: var(--navy); }
.timeline-item p  { font-size: 0.94rem; }

/* ---- PROGRAM CARDS ---- */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.program-card-img { height: 200px; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-card-img img { transform: scale(1.05); }
.program-card-body { padding: 24px 26px; }
.program-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}
.program-card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.program-card-body p  { font-size: 0.92rem; }

/* ---- EVENT ITEMS ---- */
.event-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.event-item:last-child { border-bottom: none; }
.event-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 8px;
}
.event-date .month {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.event-date .day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.event-info h4 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.event-info p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.4rem; }
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-meta svg { width: 13px; height: 13px; stroke: var(--text-light); fill: none; stroke-width: 2; }

/* ---- LEADERSHIP ---- */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  padding-bottom: 28px;
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.leader-card-img { height: 220px; overflow: hidden; }
.leader-card-img img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h4 { font-size: 1.1rem; margin: 20px 16px 4px; }
.leader-card .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 16px;
}
.leader-card p { font-size: 0.88rem; color: var(--text-mid); margin: 10px 20px 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: #0d1b2a;
  color: rgba(255,255,255,.72);
  padding: 0;
  font-size: 0.92rem;
}

/* Gold accent bar at top */
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

/* CTA strip above main footer */
.footer-cta {
  background: #152235;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,.75);
}
.footer-cta-inner strong { color: var(--white); }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0d1b2a;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.footer-cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.footer-cta-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; }

/* Main grid */
.footer-main { padding: 56px 0 48px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand column */
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-brand .logo-wrap img { border-radius: 6px; }
.footer-brand .logo-name { display: block; font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; color: var(--white); line-height: 1.2; }
.footer-brand .logo-sub { display: block; font-size: 0.78rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }
.footer-brand .reg-number {
  display: inline-block;
  font-size: 0.72rem;
  color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* Column headings */
.footer-col h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Links */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

/* Contact items */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; stroke: var(--gold-light); fill: none; stroke-width: 2; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,.58); line-height: 1.55; padding-top: 6px; }
.footer-contact-item a { color: rgba(255,255,255,.58); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ---- NOTICE BAR ---- */
.notice-bar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-bar svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; margin-top: 2px; }

/* ---- BG VARIANTS ---- */
.bg-light  { background: var(--light); }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS disabled show everything */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .split   { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 16px 0; z-index: 999; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; font-size: 0.92rem; width: 100%; }
  .site-nav a::after { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; }
  .hero { min-height: 75vh; margin-top: 64px; }
  .page-hero { margin-top: 64px; padding: 56px 0 48px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 56px 0; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .stat-strip .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mv-card { padding: 28px 24px; }
  .event-item { flex-direction: column; gap: 14px; }
}
