/* ═══════════════════════════════════════════════════════════════
   PRO DEO CRAIOVA — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --gold:        #e8b84b;
  --gold-dark:   #c9991e;
  --gold-light:  #f2d07a;
  --teal:        #e8b84b;
  --teal-dark:   #c9991e;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #252525;
  --body-bg:     #f8f6f0;
  --alt-bg:      #f0ede6;
  --white-bg:    #ffffff;
  --text:        #2c2c2c;
  --text-muted:  #777777;
  --divider:     #e0ddd5;
  --white:       #ffffff;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;

  --nav-h:   72px;
  --max-w:   1200px;
  --radius:  4px;
  --shadow:  0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography Utilities ───────────────────────────────────── */
.section-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em { font-style: normal; color: var(--gold-dark); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.see-all {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap 0.2s;
  padding-bottom: 4px;
}
.see-all:hover { gap: 13px; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.26s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,184,75,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--dark);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,184,75,0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 10px; }

/* ─── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Nav on inner pages (always solid) */
.site-nav.solid {
  background: var(--dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-item > a {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 8px 11px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-item > a .chevron {
  width: 10px; height: 10px;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.nav-item.has-dropdown:hover > a .chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--teal);
  padding: 6px 0;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: none;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  padding-left: 26px;
}

.nav-dropdown hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 4px 0;
}

/* Nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-donate {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 4px;
  transition: color 0.2s;
}
.nav-donate:hover { color: var(--teal-dark); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 8px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }

.nav-mobile-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile-item > a:hover { color: var(--teal); }

.nav-mobile-sub {
  background: rgba(255,255,255,0.03);
  display: none;
}
.nav-mobile-sub.open { display: block; }
.nav-mobile-sub a {
  display: block;
  padding: 11px 24px 11px 40px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.nav-mobile-sub a:hover { color: var(--white); }

.nav-mobile-actions {
  padding: 20px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-actions .btn { width: 100%; justify-content: center; }

/* ─── Inner Page Hero Banner ─────────────────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1008 50%, #100c00 100%);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 200px at 50% 100%, rgba(232,184,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.inner-hero .breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.inner-hero .breadcrumb a:hover { color: var(--teal); }
.inner-hero .breadcrumb span { color: rgba(255,255,255,0.55); }

.inner-hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.07;
  color: var(--white);
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.inner-hero-title em { font-style: normal; color: var(--gold); }

.inner-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── Pillars ────────────────────────────────────────────────── */
.pillars { background: var(--body-bg); padding: 80px 0; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--divider);
  transition: background 0.25s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(232,184,75,0.055); }

.pillar-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  padding: 8px;
  background: rgba(232,184,75,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.pillar:hover .pillar-icon { background: rgba(232,184,75,0.18); }

.pillar-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.pillar-link {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.pillar-link:hover { gap: 10px; }

/* ─── Welcome Section ────────────────────────────────────────── */
.welcome {
  padding: 100px 0;
  background: var(--body-bg);
  border-top: 1px solid var(--divider);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-text::before {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: var(--teal);
  margin-bottom: 18px;
}

.welcome-h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.09;
  color: var(--text);
  margin-bottom: 26px;
}
.welcome-h2 em { font-style: normal; color: var(--gold-dark); }

.welcome-body {
  font-size: 14.5px;
  color: #555;
  line-height: 1.82;
  margin-bottom: 14px;
}
.welcome-body + .btn { margin-top: 22px; }

.image-placeholder {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.image-placeholder.h-480 { height: 480px; }
.image-placeholder.h-360 { height: 360px; }
.image-placeholder.h-280 { height: 280px; }

.image-placeholder .bg-gradient-cool { background: linear-gradient(145deg, #0d1220 0%, #1a2035 50%, #0d1220 100%); }
.image-placeholder .bg-gradient-warm { background: linear-gradient(145deg, #1a1215 0%, #2d1a0e 100%); }
.image-placeholder .bg-gradient-mixed { background: linear-gradient(145deg, #1a1a2e 0%, #2a1a0d 100%); }

.img-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}
.img-placeholder-inner svg { display: block; margin: 0 auto 12px; }
.img-placeholder-inner span {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── Message Cards ──────────────────────────────────────────── */
.messages { padding: 96px 0; background: var(--white-bg); }

.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.message-card {
  background: var(--body-bg);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.message-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.message-thumb {
  position: relative;
  height: 198px;
  background: #0d1220;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.message-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.message-card:hover .message-thumb img { transform: scale(1.05); }
.message-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 100%);
}

.play-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  z-index: 1;
}
.message-card:hover .play-btn { transform: scale(1.1); background: var(--gold-dark); }
.play-btn svg { margin-left: 3px; }

.message-body { padding: 22px; }

.message-series {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 9px;
}

.message-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}

.message-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.message-meta::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: var(--divider);
}

/* ─── Event Items ────────────────────────────────────────────── */
.events { padding: 96px 0; background: var(--alt-bg); }

.events-list {
  border: 1px solid var(--divider);
  border-radius: 6px;
  background: var(--white-bg);
  overflow: hidden;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 76px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 36px;
  border-bottom: 1px solid var(--divider);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { background: rgba(232,184,75,0.035); }

.event-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.event-item:hover .event-thumb img { transform: scale(1.06); }

.event-date { text-align: center; flex-shrink: 0; }
.event-day {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal-dark);
}
.event-month {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.event-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.event-details {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.event-details span { display: flex; align-items: center; gap: 5px; }

.event-tag {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(232,184,75,0.12);
  color: var(--teal-dark);
  margin-top: 6px;
  display: inline-block;
}

.event-arrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s;
}
.event-item:hover .event-arrow { gap: 10px; }

/* ─── Gallery Tiles ──────────────────────────────────────────── */
.gallery { padding: 96px 0; background: var(--body-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-tile {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.gallery-tile:hover { transform: scale(1.012); }
.gallery-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(232,184,75,0);
  transition: background 0.3s;
}
.gallery-tile:hover::after { background: rgba(232,184,75,0.07); }

.gallery-tile:nth-child(1) { height: 250px; }
.gallery-tile:nth-child(2) { height: 370px; grid-row: span 2; }
.gallery-tile:nth-child(3) { height: 250px; }
.gallery-tile:nth-child(4) { height: 200px; }
.gallery-tile:nth-child(5) { height: 200px; }
.gallery-tile:nth-child(6) { height: 200px; }
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-tile:hover img { transform: scale(1.06); }

.gallery-placeholder {
  position: relative; z-index: 1;
  text-align: center;
  color: rgba(255,255,255,0.22);
}
.gallery-placeholder svg { margin: 0 auto 10px; display: block; }
.gallery-placeholder span {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

/* Album grid (gallery index) */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.album-card {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  background: var(--white-bg);
}
.album-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.album-thumb {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.album-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
  transition: background 0.3s;
}
.album-card:hover .album-thumb::after { background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.55) 100%); }
.album-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); z-index: 0; }
.album-card:hover .album-thumb img { transform: scale(1.05); }
.album-thumb .album-camera-icon { z-index: 1; }

.album-info { padding: 16px 18px 18px; }

.album-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.album-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Ministry Cards ─────────────────────────────────────────── */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ministry-card {
  background: var(--white-bg);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  cursor: pointer;
}
.ministry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ministry-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.ministry-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.ministry-card:hover .ministry-thumb img { transform: scale(1.05); }

.ministry-body { padding: 24px; }

.ministry-icon { margin-bottom: 16px; }

.ministry-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.ministry-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ─── Team Cards ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #1a1a2e, #0d1220);
  display: flex; align-items: center; justify-content: center;
}

.team-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.team-role {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Content / Rich Text ────────────────────────────────────── */
.content-section { padding: 96px 0; }

.content-prose {
  max-width: 740px;
}
.content-prose h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
}
.content-prose p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}
.content-prose ul {
  list-style: none;
  margin: 16px 0 24px;
}
.content-prose ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--divider);
  position: relative;
}
.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 2px;
  background: var(--teal);
}
.content-prose blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(232,184,75,0.05);
  border-radius: 0 4px 4px 0;
}
.content-prose blockquote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin: 0;
}

/* Content two-col layout */
.content-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ─── Contact Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white-bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(232,184,75,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Contact Info Cards ─────────────────────────────────────── */
.info-card {
  background: var(--dark);
  border-radius: 6px;
  padding: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.info-card-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.info-card-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.info-card-value a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.info-card-value a:hover { color: var(--white); }

/* Map placeholder */
.map-placeholder {
  height: 300px;
  background: linear-gradient(145deg, #1a1a2e, #0d1220);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ─── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  padding: 96px 0;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 50%, rgba(232,184,75,0.045) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-strip-title em { font-style: normal; color: var(--gold); }

.cta-strip-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 44px;
  position: relative; z-index: 1;
}

.cta-strip-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative; z-index: 1;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.footer-wordmark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-address a { color: inherit; transition: color 0.2s; }
.footer-address a:hover { color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: width 0.2s, background 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 18px; background: var(--teal); }

.social-links { display: flex; flex-direction: column; gap: 12px; }

.social-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.social-link:hover { color: var(--white); }

.social-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover .social-icon { border-color: var(--teal); background: rgba(232,184,75,0.09); }

.contact-item { margin-bottom: 16px; }
.contact-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.contact-value { font-size: 13px; color: rgba(255,255,255,0.55); }
.contact-value a { color: inherit; transition: color 0.2s; }
.contact-value a:hover { color: var(--white); }

.footer-bar {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bar p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ─── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%  { transform: translateX(-50%) translateY(14px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

/* ─── Responsive: Tablet ≤1024px ─────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--divider); }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--divider); }

  .message-grid { grid-template-columns: repeat(2, 1fr); }
  .message-grid .message-card:last-child { display: none; }

  .ministry-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .content-cols { grid-template-columns: 1fr; gap: 40px; }
  .content-cols .content-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .album-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Responsive: Mobile ≤768px ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--divider); }
  .pillar:last-child { border-bottom: none; }

  .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
  .image-placeholder.h-480 { height: 280px; }

  .message-grid { grid-template-columns: 1fr; }
  .message-grid .message-card:last-child { display: block; }

  .ministry-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .event-item { grid-template-columns: 56px 52px 1fr; gap: 14px; padding: 16px 20px; }
  .event-thumb { width: 56px; height: 56px; }
  .event-arrow { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none !important;
  }
  .gallery-tile { height: 150px !important; grid-row: auto !important; }

  .album-grid { grid-template-columns: 1fr; }

  .cta-strip-actions { flex-direction: column; align-items: center; }
  .cta-strip-actions .btn { width: 100%; max-width: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .content-cols { grid-template-columns: 1fr; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
