/* ==========================================================================
   MALANKARA SYRIAN ORTHODOX CHURCH UK — DESIGN SYSTEM
   Color: Deep Maroon + Midnight Navy + Refined Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --maroon:         #6B1414;
  --maroon-dark:    #4A0D0D;
  --maroon-light:   #8B2020;
  --navy:           #0C1A2E;
  --navy-mid:       #152540;
  --navy-light:     #1E3A5F;
  --gold:           #C9973A;
  --gold-light:     #E2B55A;
  --gold-pale:      #F5E6C8;
  --cream:          #FAF8F3;
  --white:          #FFFFFF;
  --gray-50:        #F8F9FA;
  --gray-100:       #F1F3F5;
  --gray-200:       #E9ECEF;
  --gray-300:       #DEE2E6;
  --gray-400:       #CED4DA;
  --gray-600:       #6C757D;
  --gray-700:       #495057;
  --gray-800:       #343A40;
  --gray-900:       #212529;
  --text-main:      #1A1A2E;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --success:        #198754;
  --danger:         #DC3545;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 100;
}
.top-bar .container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.verse-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: #B8C5D6;
}
.verse-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 3px;
  white-space: nowrap;
}
.top-bar-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-bar-links a,
.top-bar-links button {
  color: #CBD5E1;
  background: transparent;
  border: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
  padding: 0;
}
.top-bar-links a:hover,
.top-bar-links button:hover { color: var(--gold-light); }

/* ========== HEADER / NAV ========== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--maroon);
  box-shadow: 0 2px 24px rgba(10,25,46,0.10);
}
.header-main .container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  min-height: 68px;
}
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--gold);
  background: var(--white);
  padding: 2px;
  box-shadow: 0 3px 12px rgba(107,20,20,0.18);
  flex-shrink: 0;
}
.brand-text {
  min-width: 0;
}
.brand-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--maroon);
  line-height: 1.22;
  margin: 0;
  white-space: nowrap;
}
.brand-text span {
  font-size: 0.70rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--maroon);
  background: rgba(107, 20, 20, 0.06);
}
.nav-link i { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--maroon);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 1000;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.83rem;
  color: var(--gray-700);
  transition: all var(--transition);
  font-weight: 500;
}
.dropdown-menu li a:hover {
  background: var(--gold-pale);
  color: var(--maroon);
  padding-left: 24px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
  padding: 8px;
  border-radius: var(--radius-sm);
}
.mobile-menu-toggle:hover { background: var(--gray-100); }

/* ========== FLOATING SIDE BADGES ========== */
.floating-badge-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  background: var(--navy);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.badge-item:hover { background: var(--maroon); transform: translateX(-4px); }
.badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.badge-text {
  display: none;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 12px 0 4px;
}
.badge-item:hover .badge-text { display: block; }

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider .slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12,26,46,0.82) 40%, rgba(107,20,20,0.52) 100%);
  z-index: 1;
}
.hero-section > .container { position: relative; z-index: 3; }
.hero-content { max-width: 640px; }
.hero-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.18);
  border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-title span {
  display: block;
  color: var(--gold-light);
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,20,20,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy-solid {
  background: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}
.btn-navy-solid:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12,26,46,0.4);
}
.hero-actions-pill .btn {
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 0.95rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.4);
}

/* ========== CARD LINK (shared by news/event/org cards) ========== */
.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 9px; }

/* ========== SECTION COMMON ========== */
.section-padding { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--maroon);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(201,151,58,0.3);
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
}

/* ========== FAITH SECTION ========== */
.faith-section {
  padding: 90px 0;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 50%, #1C1240 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.faith-section::before {
  content: '✝';
  position: absolute;
  font-size: 28rem;
  color: rgba(255,255,255,0.022);
  right: -60px;
  top: -60px;
  line-height: 1;
  font-family: serif;
}
.faith-header { text-align: center; margin-bottom: 52px; }
.faith-header .section-tag { background: rgba(201,151,58,0.18); border-color: rgba(201,151,58,0.35); color: var(--gold-light); }
.faith-header .section-title { color: var(--white); }
.faith-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  margin-bottom: 52px;
}
.faith-text-block { position: relative; z-index: 1; }
.faith-text-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.06rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
  line-height: 1.8;
}
.faith-text-block strong { color: var(--gold-light); font-weight: 600; }
.faith-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(201,151,58,0.3);
  max-height: 400px;
}
.faith-image-box img { width: 100%; height: 400px; object-fit: cover; }
.faith-upload-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Severus Quote */
.severus-quote-block {
  background: rgba(201,151,58,0.12);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 36px;
  position: relative;
  z-index: 1;
}
.severus-quote-block > i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}
.severus-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 12px;
}
.severus-quote-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== VICAR SECTION ========== */
.vicar-section {
  padding: 90px 0;
  background: var(--cream);
}
.vicar-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.vicar-card {
  text-align: center;
}
.vicar-img-wrap {
  width: 240px;
  height: 280px;
  margin: 0 auto 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-xl);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vicar-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.vicar-img-placeholder {
  width: 240px;
  height: 280px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-xl);
}
.vicar-img-placeholder i { font-size: 4rem; margin-bottom: 10px; }
.vicar-img-placeholder p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.vicar-badge-label { text-align: center; }
.vicar-badge-label h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.vicar-badge-label p { font-size: 0.82rem; color: var(--text-muted); }
.vicar-content > span { margin-bottom: 10px; display: inline-block; }
.vicar-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
}
.vicar-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--maroon);
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.vicar-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.vicar-youtube-embed {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
}
.vicar-youtube-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== MINISTRIES / ORGS GRID ========== */
.orgs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.org-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.org-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.org-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(12,26,46,0.22);
  border-color: var(--gold-pale);
}
.org-card:hover::before { transform: scaleX(1); }
.org-badge {
  position: absolute;
  top: 16px;
  right: 14px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.org-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold-light);
  margin: 0 auto 18px;
  border: 3px solid var(--gold-pale);
  box-shadow: 0 8px 20px rgba(12,26,46,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.org-card:hover .org-icon {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,151,58,0.16), 0 10px 24px rgba(12,26,46,0.25);
}
.org-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.org-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 4px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-img-wrap {
  height: 200px;
  overflow: hidden;
}
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-info {
  padding: 16px 18px;
}
.gallery-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.gallery-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== TEAMS SECTION ========== */
.teams-section {
  padding: 80px 0;
  background: var(--white);
}
.team-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.team-tab-btn {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  border-radius: 50px;
  transition: all var(--transition);
}
.team-tab-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.team-tab-btn.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-member-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.team-member-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--gold);
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.member-role {
  font-size: 0.78rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 4px;
}
.member-parish {
  font-size: 0.74rem;
  color: var(--text-light);
}

/* ========== NEWS & EVENTS SECTION ========== */
.updates-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.split-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.split-col-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.news-item-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.news-item-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.news-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  flex-shrink: 0;
}
.news-date-badge .day { font-size: 1.3rem; font-weight: 700; line-height: 1; }
.news-date-badge .month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; }
.news-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.35; }
.news-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* Events */
.event-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.event-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.event-date-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  width: 88px;
  min-height: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-date-box .date-range { font-size: 0.72rem; font-weight: 700; line-height: 1.25; }
.event-date-box .year { font-size: 0.65rem; opacity: 0.75; margin-top: 3px; }
.event-details h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.event-location { font-size: 0.78rem; color: var(--maroon); font-weight: 600; display: block; margin-bottom: 4px; }
.event-details p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* Daily Prayers Box */
.daily-prayers-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
}
.prayers-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.prayers-info p { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin-bottom: 12px; }
.zoom-details { display: flex; flex-wrap: wrap; gap: 8px; }
.zoom-detail-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

/* Scripture Banner */
.scripture-banner {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 0;
  text-align: center;
}
.scripture-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
}
.scripture-cite {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--maroon);
  font-weight: 700;
  text-transform: uppercase;
}

/* ========== FOOTER ========== */
.footer-main {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about h4 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-about p { font-size: 0.83rem; line-height: 1.75; }
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ========== MODALS ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,20,35,0.78);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  border-top: 5px solid var(--maroon);
}
.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.modal-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-header h3 i { color: var(--maroon); }
.modal-close {
  background: var(--gray-100);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--danger); color: var(--white); }
.modal-body { padding: 28px; }

/* ========== FORMS ========== */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(107,20,20,0.1);
}
textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
select.form-control { cursor: pointer; }
input[type="file"].form-control { padding: 8px 10px; cursor: pointer; }

/* ========== TOAST ========== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  animation: slideInToast 0.35s ease, fadeOutToast 0.5s ease 3.5s forwards;
  max-width: 320px;
}
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOutToast {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(10px); }
}

/* ========== ADMIN BODY & LAYOUT ========== */
.admin-body {
  font-family: 'Inter', sans-serif;
  background: #F0F2F5;
  color: var(--text-main);
  min-height: 100vh;
}

/* Admin Header */
.admin-header-bar {
  background: var(--navy);
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  border-bottom: 3px solid var(--gold);
}
.admin-header-bar h2 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.admin-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--gold);
  background: var(--white);
  padding: 2px;
}

/* Admin Page Container */
.admin-page-container {
  padding: 28px;
  min-height: calc(100vh - 68px);
}

/* Admin Dashboard Main */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* Admin Sidebar */
.admin-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
}
.admin-sidebar-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 18px 20px;
  color: var(--white);
}
.admin-sidebar-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.admin-nav { padding: 8px 0; }
.admin-nav li { }
.admin-nav-btn {
  width: 100%;
  text-align: left;
  padding: 12px 20px;
  background: transparent;
  border: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
  cursor: pointer;
}
.admin-nav-btn i { font-size: 0.95rem; width: 18px; color: var(--gray-400); transition: color var(--transition); }
.admin-nav-btn:hover {
  background: var(--gold-pale);
  color: var(--maroon);
  border-left-color: var(--gold);
}
.admin-nav-btn:hover i { color: var(--maroon); }
.admin-nav-btn.active {
  background: rgba(107,20,20,0.06);
  color: var(--maroon);
  font-weight: 600;
  border-left-color: var(--maroon);
}
.admin-nav-btn.active i { color: var(--maroon); }

/* Admin Content */
.admin-content {
  min-width: 0;
}
.admin-tab-pane { display: none; }
.admin-tab-pane.active { display: block; }

/* Admin Section Card */
.admin-section-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  overflow: hidden;
}
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(90deg, rgba(107,20,20,0.03) 0%, transparent 100%);
}
.admin-section-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-section-header h4 i { color: var(--maroon); }
.admin-section-body { padding: 24px; }

/* Stat Cards Row */
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--maroon);
  text-align: center;
}
.admin-stat-card.gold { border-top-color: var(--gold); }
.admin-stat-card.navy { border-top-color: var(--navy); }
.admin-stat-card.green { border-top-color: var(--success); }
.admin-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Cinzel', serif;
  display: block;
}
.admin-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
}

/* Admin Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.admin-table thead th {
  background: var(--navy);
  color: var(--gold-light);
  text-align: left;
  padding: 11px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-table thead th:first-child { border-radius: 0; }
.admin-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.admin-table tbody tr:hover { background: var(--gray-50); }
.admin-table td { padding: 12px 16px; color: var(--gray-800); vertical-align: middle; }

/* Admin Action Buttons */
.btn-action-sm {
  padding: 5px 12px;
  font-size: 0.76rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-action-sm:hover { transform: scale(1.04); }
.btn-danger { background: #FEE2E2; color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: var(--white); }
.btn-success { background: #D1FAE5; color: var(--success); }
.btn-success:hover { background: var(--success); color: var(--white); }
.btn-navy { background: rgba(12,26,46,0.08); color: var(--navy); }
.btn-navy:hover { background: var(--navy); color: var(--white); }
.admin-header-bar .btn-navy { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.admin-header-bar .btn-navy:hover { background: rgba(255,255,255,0.22); color: var(--white); }

/* Admin Form Row */
.admin-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.admin-form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* Category Badge */
.cat-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--maroon);
  border: 1px solid rgba(201,151,58,0.35);
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Photo Grid */
.photos-grid-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.photo-thumb-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.photo-thumb-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.photo-thumb-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.photo-thumb-info {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.photo-thumb-info span { font-size: 0.78rem; font-weight: 600; color: var(--gray-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Admin Login Card */
.admin-login-card {
  max-width: 440px;
  margin: 60px auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border-top: 5px solid var(--maroon);
}
.admin-login-card .login-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 0 auto 22px;
  box-shadow: 0 8px 28px rgba(107,20,20,0.3);
}
.admin-login-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.admin-login-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Pane Header */
.admin-pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.admin-pane-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
}

/* ==========================================================================
   ENHANCED COMPONENTS: LOGO, HERO, HIERARCHY, MAP, COUNCIL & PASSION WEEK
   ========================================================================== */

/* Brand Logo (Yellow / Gold Church Seal) */
.brand-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--navy);
  padding: 2px;
  box-shadow: 0 0 16px rgba(201, 151, 58, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.brand-logo-wrapper:hover .brand-logo-img {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 24px rgba(201, 151, 58, 0.7);
}

/* Clear, Non-Blurry Hero Slideshow */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 36%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  filter: none !important; /* Non-blurry, crystal clear landscape view */
}
.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,46,0.72) 0%, rgba(12,26,46,0.36) 48%, rgba(12,26,46,0.88) 100%),
              radial-gradient(circle at 65% 40%, transparent 40%, rgba(12,26,46,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-controls {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-ctrl-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(12,26,46,0.65);
  border: 1px solid rgba(201,151,58,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-ctrl-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
}

/* Homepage Hierarchy Teaser (docked under Hero) */
.home-hierarchy-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 15;
}
.home-hierarchy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.home-hierarchy-card {
  --stagger: 0px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(12,26,46,0.18);
  border-top: 4px solid var(--gold);
  text-decoration: none;
  color: inherit;
  display: block;
  transform: translateY(var(--stagger));
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow var(--transition), border-top-color var(--transition);
}
.home-hierarchy-grid a:nth-child(1) { --stagger: 18px; }
.home-hierarchy-grid a:nth-child(2) { --stagger: -14px; }
.home-hierarchy-grid a:nth-child(3) { --stagger: 18px; }
.home-hierarchy-card:hover {
  transform: translateY(calc(var(--stagger) - 10px)) perspective(900px) rotateX(6deg) scale(1.03);
  box-shadow: 0 28px 55px rgba(12,26,46,0.3);
  border-top-color: var(--maroon);
}
.home-hierarchy-photo-ring {
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--maroon) 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.home-hierarchy-grid a:nth-child(2) .home-hierarchy-photo-ring {
  width: 138px;
  height: 138px;
}
.home-hierarchy-photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--white);
  display: block;
}
.home-hierarchy-level {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.home-hierarchy-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.home-hierarchy-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Homepage Spiritual Organisations Boxes */
.home-orgs-wrapper .orgs-grid { margin-top: 8px; }

/* Hierarchy Section */
.hierarchy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.hierarchy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.hierarchy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.hierarchy-card-header {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
  padding: 30px 20px 20px;
  text-align: center;
}
.hierarchy-level-tag {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.hierarchy-avatar-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  overflow: hidden;
  background: var(--cream);
}
.hierarchy-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hierarchy-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hierarchy-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}
.hierarchy-body .hierarchy-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.hierarchy-body p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}
.hierarchy-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* History Section */
.history-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.history-pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 4px solid var(--maroon);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.history-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.history-pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold-pale);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.history-pillar-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.history-pillar-card p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* Holy Fathers Section */
.holy-fathers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.holy-father-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.holy-father-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.holy-father-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.holy-father-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.holy-father-card:hover .holy-father-img-wrap img {
  transform: scale(1.06);
}
.holy-father-feast-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(12,26,46,0.85);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.holy-father-info {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.holy-father-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}
.holy-father-info span {
  font-size: 0.78rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.holy-father-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

/* Parish Map & Zones */
.parish-map-section {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid var(--gray-200);
}
.map-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.map-zone-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-filter-chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.zone-filter-chip:hover,
.zone-filter-chip.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
#parishInteractiveMap {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-pale);
  z-index: 1;
}
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
  border-top: 4px solid var(--maroon) !important;
  padding: 4px !important;
}
.custom-map-popup h4 {
  font-family: 'Cinzel', serif;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.custom-map-popup p {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}
.custom-map-popup .popup-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 6px;
}
.custom-map-popup .popup-directions-btn:hover {
  background: var(--maroon);
  color: var(--white);
}

/* Parish Zones Accordion / Cards */
.zones-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.zone-accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.zone-accordion-header {
  padding: 18px 24px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  border-left: 5px solid var(--maroon);
}
.zone-accordion-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.08rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.zone-accordion-content {
  display: none;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.zone-accordion-item.active .zone-accordion-content {
  display: block;
}
.zone-parishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.zone-parish-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  border-left: 4px solid var(--gold);
}
.zone-parish-card h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.zone-parish-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Council President — single-column featured spotlight */
.council-president-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--gold);
}
.council-president-photo {
  width: 220px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 3px solid var(--gold);
}
.council-president-photo img { width: 100%; height: 100%; object-fit: cover; }
.council-president-info { flex: 1; min-width: 0; }
.council-president-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.council-president-info .president-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.council-president-info .president-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.council-president-info .president-contact a { color: var(--navy); text-decoration: underline; }
.council-president-info .president-bio {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.8;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-200);
}

/* Council & Executive Committee */
.council-exec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.council-officer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  border-top: 4px solid var(--maroon);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.council-officer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.officer-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--gold);
}
.officer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.council-officer-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.council-officer-card .officer-role {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.council-officer-card .officer-contact {
  margin-top: auto;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.council-officer-card .officer-contact a {
  color: var(--navy);
  text-decoration: underline;
  word-break: break-all;
}
/* Council: Wider Board of Trustees & Zonal Councillors */
.council-group { margin-top: 40px; }
.council-group:first-child { margin-top: 0; }
.council-group-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--maroon);
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}
.council-trustee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 210px));
  justify-content: center;
  gap: 14px;
}
.council-trustee-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  border-top: 3px solid var(--gold);
  position: relative;
  transition: all var(--transition);
}
.council-trustee-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-top-color: var(--maroon);
  transform: translateY(-4px);
}
.trustee-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border: 2px solid var(--gold);
  margin-bottom: 12px;
}
.trustee-avatar img { width: 100%; height: 100%; object-fit: cover; }
.council-trustee-card h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.council-trustee-card .trustee-role {
  font-size: 0.78rem;
  color: var(--maroon);
  font-weight: 600;
}
.council-trustee-card .trustee-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.trustee-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.council-meeting-note {
  margin-top: 44px;
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.75;
}
.council-meeting-note strong { color: var(--maroon); }

/* Media & Weekly News */
.media-news-spotlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  margin-top: 28px;
}
.media-news-video-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,151,58,0.4);
}
.media-news-video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.media-news-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-news-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}
.media-news-thumb:hover .media-news-play-btn {
  transform: scale(1.08);
  background: rgba(255, 0, 0, 1);
}
.media-news-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.media-news-info p {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Annual Events: Family Conference & Caroling */
.annual-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.annual-event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.annual-event-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.annual-event-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.annual-event-header {
  padding: 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}
.annual-event-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.annual-event-body {
  padding: 24px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.7;
  flex-grow: 1;
}

/* Passion Week & Easter Section */
.passion-week-section {
  background: linear-gradient(135deg, #2D0B0B 0%, #1A0505 100%);
  color: var(--white);
  padding: 70px 0;
}
.passion-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.passion-day-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  backdrop-filter: blur(6px);
  text-align: center;
  transition: all var(--transition);
}
.passion-day-card:hover {
  background: rgba(201,151,58,0.12);
  border-color: var(--gold-light);
  transform: translateY(-5px);
}
.passion-day-card .day-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,151,58,0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}
.passion-day-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.passion-day-card .syriac-name {
  font-size: 0.78rem;
  color: #E2E8F0;
  font-style: italic;
  margin-bottom: 8px;
}
.passion-day-card p {
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.5;
}

/* Enhanced Charity & Resources Footer */
.charity-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 12px 0 16px;
}
.footer-resources-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.footer-resources-list a {
  color: #CBD5E1;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-resources-list a:hover {
  color: var(--gold-light);
}

/* Responsive adjustments for new components */
@media (max-width: 1320px) {
  .nav-link {
    padding: 7px 7px;
    font-size: 0.77rem;
    gap: 3px;
  }
  .nav-extra-word {
    display: none;
  }
  .brand-text h1 {
    font-size: 0.96rem;
  }
  .brand-text span {
    font-size: 0.66rem;
  }
  .brand-logo-img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 1120px) {
  .nav-link {
    padding: 7px 5px;
    font-size: 0.74rem;
    gap: 2px;
  }
  .brand-text h1 {
    font-size: 0.88rem;
  }
  .brand-logo-img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    padding: 10px 0;
    z-index: 999;
    gap: 0;
    border-top: 1px solid var(--gray-200);
    max-height: 82vh;
    overflow-y: auto;
  }
  .nav-menu.active { display: flex; }
  .nav-item { width: 100%; }
  .nav-link {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.9rem;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-extra-word { display: inline; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: var(--gray-50);
    display: none;
    padding: 4px 0 8px 18px;
  }
  .nav-item.open .dropdown-menu,
  .nav-item:hover .dropdown-menu {
    display: block;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .home-hierarchy-grid { gap: 16px; }
  .hierarchy-grid { grid-template-columns: repeat(3, 1fr); }
  .holy-fathers-grid { grid-template-columns: repeat(2, 1fr); }
  .council-exec-grid { grid-template-columns: repeat(3, 1fr); }
  .passion-timeline { grid-template-columns: repeat(3, 1fr); }
  .media-news-spotlight { grid-template-columns: 1fr; }
  .orgs-grid { grid-template-columns: repeat(2, 1fr); }
  .faith-grid { grid-template-columns: 1fr; }
  .faith-image-box { max-height: 280px; }
  .faith-image-box img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .vicar-grid { grid-template-columns: 1fr; }
  .vicar-card { display: flex; align-items: center; gap: 24px; text-align: left; }
  .vicar-img-placeholder, .vicar-img-wrap { margin: 0; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; top: 0; }
  .admin-nav { display: flex; overflow-x: auto; padding: 8px; gap: 6px; }
  .admin-nav li { flex-shrink: 0; }
  .admin-nav-btn { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; border-radius: var(--radius-sm); }
  .admin-nav-btn.active { border-left: none; border-bottom-color: var(--maroon); }
}

@media (max-width: 768px) {
  .home-hierarchy-grid { grid-template-columns: 1fr; }
  .home-hierarchy-card, .home-hierarchy-grid a:nth-child(1), .home-hierarchy-grid a:nth-child(2), .home-hierarchy-grid a:nth-child(3) { --stagger: 0px; }
  .home-hierarchy-grid a:nth-child(2) .home-hierarchy-photo-ring { width: 118px; height: 118px; }
  .hierarchy-grid { grid-template-columns: 1fr; }
  .history-pillars-grid { grid-template-columns: 1fr; }
  .holy-fathers-grid { grid-template-columns: 1fr; }
  .council-exec-grid { grid-template-columns: repeat(2, 1fr); }
  .council-president-card { flex-direction: column; align-items: center; text-align: center; }
  .council-president-photo { width: 180px; }
  .council-president-info .president-bio { text-align: left; }
  .passion-timeline { grid-template-columns: 1fr; }
  .annual-events-grid { grid-template-columns: 1fr; }
  .zone-parishes-grid { grid-template-columns: 1fr; }
  #parishInteractiveMap { height: 380px; }
  .hero-controls { display: none; }
  .orgs-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-badge-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .verse-ticker span { display: none; }
  .faith-section::before { display: none; }
  .admin-form-grid-2, .admin-form-grid-3 { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .daily-prayers-box { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .hero-section { height: 70vh; }
  .brand-text h1 { font-size: 0.76rem; }
  .brand-logo-img { width: 40px; height: 40px; }
  .admin-page-container { padding: 16px; }
  .admin-header-bar { padding: 12px 16px; height: auto; }
}

@media (max-width: 480px) {
  .orgs-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .container { padding: 0 16px; }
  .admin-login-card { padding: 32px 22px; }
  .vicar-card { flex-direction: column; text-align: center; }
}

/* ========== DETAIL / ARTICLE PAGE ========== */
.detail-header-bar { background: var(--navy); padding: 14px 0; }
.detail-back-link {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.detail-back-link:hover { color: var(--white); }
.detail-article { max-width: 760px; margin: 0 auto; padding: 56px 0 80px; }
.detail-article img.detail-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.detail-article h1 {
  font-family: 'Cinzel', serif;
  color: var(--navy);
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  line-height: 1.3;
  margin: 14px 0 18px;
}
.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.detail-meta-row span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.detail-body { font-size: 1rem; line-height: 1.9; color: var(--text-main); white-space: pre-line; }
.detail-not-found { text-align: center; padding: 80px 0; }
