/* =========================================================
   APKMN — Association of Papal Knights & Medalists of Nigeria
   Rebrand Stylesheet | Inspired by Spirixa Webflow aesthetic
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

:root {
  --primary: #BB8C00;         /* Papal Gold — from the APKMN logo */
  --primary-dark: #8A6700;
  --primary-soft: #F0D87A;    /* Light gold for hovers */
  --secondary: #006E31;       /* Nigerian Green — from the logo */
  --secondary-dark: #004D22;
  --accent: #006E31;          /* Alias of secondary, used for accents */
  --accent-light: #4FA077;
  --bg: #FAF6EF;              /* Ivory */
  --bg-alt: #F1E9DA;          /* Warm cream */
  --white: #ffffff;
  --text: #1B1410;            /* Warm black */
  --text-muted: #6B6259;
  --border: #E5DCC8;
  --shadow-sm: 0 2px 8px rgba(27, 20, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 20, 16, 0.10);
  --shadow-lg: 0 24px 60px rgba(27, 20, 16, 0.14);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1240px;
  --container-narrow: 980px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(187, 140, 0, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top Announcement Bar ---------- */
.announce-bar {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 10px 24px;
  letter-spacing: 0.04em;
}
.announce-bar a { color: var(--accent); font-weight: 500; }
.announce-bar a:hover { text-decoration: underline; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 17px; color: var(--text); }
.brand-text .tag { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
  line-height: 1.2;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(187, 140, 0, 0.08);
}
.nav-links a.active {
  color: var(--primary);
  background: rgba(187, 140, 0, 0.10);
  font-weight: 600;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 24px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--primary); padding-left: 8px; }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(187, 140, 0, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--primary); font-style: italic; }
.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 20, 16, 0.50) 100%);
  z-index: 2;
}
.hero-visual .caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--white);
  z-index: 3;
}
.hero-visual .caption .eyebrow { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px; }
.hero-visual .caption h3 { font-size: 22px; color: var(--white); font-weight: 500; }

.hero-decoration,
.hero-decoration-2 { display: none; }

.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats .stat .lbl { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Cards / Grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .image img { transform: scale(1.05); }
.card .image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 20, 16, 0.40) 100%);
}
.card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card .body h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.card .body p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; flex: 1; }
.card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-top: auto;
  transition: gap var(--transition);
}
.card .link:hover { gap: 12px; }

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-split .image-collage {
  position: relative;
  aspect-ratio: 1/1.1;
}
.about-split .image-collage .img-main {
  width: 78%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-split .image-collage .img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg);
  z-index: 3;
}
.about-split .image-collage .img-main img,
.about-split .image-collage .img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-split .image-collage .badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 4;
  text-align: center;
}
.about-split .image-collage .badge .num { font-family: 'Playfair Display', serif; font-size: 38px; line-height: 1; display: block; }
.about-split .image-collage .badge .lbl { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; margin-top: 4px; display: block; }

.about-split h2 { margin-bottom: 24px; }
.about-split p { color: var(--text-muted); margin-bottom: 18px; font-size: 16px; }
.about-split .signature { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.about-split .signature .name { font-family: 'Playfair Display', serif; font-size: 18px; }
.about-split .signature .role { font-size: 13px; color: var(--text-muted); }

/* ---------- Mission / Values ---------- */
.values {
  background: var(--secondary);
  color: var(--white);
}
.values .section-title { color: var(--white); }
.values .section-lead { color: rgba(255, 255, 255, 0.8); }
.values .section-eyebrow { color: var(--primary-soft); }
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 100%;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.value-card .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
}
.value-card h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.value-card p { color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.7; }

/* ---------- Quote / Scripture ---------- */
.scripture {
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  padding: 100px 0;
}
.scripture::before, .scripture::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  color: var(--accent);
  opacity: 0.20;
  position: absolute;
  line-height: 1;
}
.scripture::before { top: 30px; left: 80px; }
.scripture::after { bottom: -40px; right: 80px; transform: rotate(180deg); }
.scripture blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--text);
  position: relative;
  z-index: 2;
}
.scripture .cite { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Orders ---------- */
.order-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height var(--transition);
}
.order-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.order-card:hover::before { height: 100%; }
.order-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
}
.order-card h3 { font-size: 24px; margin-bottom: 14px; }
.order-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- Provinces ---------- */
.province-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.province-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.province-card .top {
  background: var(--secondary);
  color: var(--white);
  padding: 32px 28px;
  position: relative;
}
.province-card .top::before { display: none; }
.province-card .top .id { font-size: 12px; letter-spacing: 0.18em; opacity: 0.7; margin-bottom: 6px; }
.province-card .top h3 { color: var(--white); font-size: 24px; font-weight: 500; position: relative; }
.province-card .body { padding: 28px; }
.province-card .body p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }
.province-card .body .meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); padding-top: 16px; border-top: 1px solid var(--border); }
.province-card .body .meta span { display: flex; align-items: center; gap: 6px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 20, 16, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery-item .caption .lbl { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; margin-bottom: 4px; }
.gallery-item .caption h4 { color: var(--white); font-size: 18px; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(27, 20, 16, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox .close:hover { background: rgba(255, 255, 255, 0.1); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--secondary);
  color: var(--white);
  padding: 140px 0 90px;
  position: relative;
  text-align: center;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.85;
}
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; margin-bottom: 20px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.7; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--text); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(187, 140, 0, 0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; font-family: inherit; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-item:hover { transform: translateX(4px); border-color: var(--accent); }
.contact-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(187, 140, 0, 0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-item .icon i { line-height: 1; }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-item p { font-size: 16px; color: var(--text); line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .brand img { width: 56px; height: 56px; }
.footer-brand .brand-text .name { color: var(--white); font-size: 19px; }
.footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h5 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.socials a:hover { background: var(--accent); color: var(--text); transform: translateY(-3px); }

/* ---------- Animations ---------- */
/* Only hide .reveal when JS is enabled — otherwise content is always visible. */
.js-on .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-on .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Team / Executive ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  font-weight: 500;
}
.team-card h3 { font-size: 19px; margin-bottom: 4px; font-weight: 500; }
.team-card .role { font-size: 13px; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.team-card .honor { font-size: 12px; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 14px; font-weight: 500; }
.team-card p { font-size: 14px; color: var(--text-muted); }

/* ---------- Activities / Events ---------- */
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition);
}
.event-row:hover { padding-left: 12px; }
.event-date {
  text-align: center;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.event-date .day { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--primary); line-height: 1; font-weight: 500; }
.event-date .month { font-size: 11px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }
.event-info h3 { font-size: 22px; margin-bottom: 6px; font-weight: 500; }
.event-info .meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 13px; flex-wrap: wrap; }
.event-info .meta span { display: flex; align-items: center; gap: 4px; }

/* ---------- CTA Section ---------- */
.cta-band {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.cta-band::before { display: none; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 600px; margin: 0 auto 32px; font-size: 17px; position: relative; }
.cta-band .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 90px 1fr; }
  .event-row > .btn { grid-column: 1 / -1; justify-self: start; }
  .about-split .image-collage { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: block; }
  section { padding: 70px 0; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero p.lead { font-size: 17px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 0; margin-top: 40px; }
  .hero-stats .stat .num { font-size: 32px; }
  .form-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .event-row { grid-template-columns: 80px 1fr; gap: 20px; }
  .event-date .day { font-size: 28px; }
  .event-info h3 { font-size: 18px; }
  .page-hero { padding: 110px 0 70px; }
  .scripture::before, .scripture::after { display: none; }
  .about-split .image-collage .badge { padding: 16px 20px; }
  .about-split .image-collage .badge .num { font-size: 28px; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .brand-text .name { font-size: 15px; }
  .brand-text .tag { font-size: 10px; }
}
