/* ============================================================
   ST. MATIA MULUMBA CATHOLIC PARISH — STYLESHEET
   Design: Deep burgundy-gold liturgical palette,
   Playfair Display display / Source Sans 3 body
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --burgundy:       #6B1E2F;
  --burgundy-dark:  #4A1220;
  --burgundy-light: #8C2D42;
  --gold:           #C9933A;
  --gold-light:     #E2B46A;
  --cream:          #FAF7F2;
  --warm-white:     #FFFFFF;
  --charcoal:       #1C1C1C;
  --mid-gray:       #555555;
  --light-gray:     #E8E4DE;
  --off-black:      #111111;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  --max-width: 1200px;
  --section-pad: 5rem 0;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-hover: 0 8px 32px rgba(107,30,47,0.18);
  --transition: all 0.28s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--burgundy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

address { font-style: normal; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0.75rem auto 0;
  color: var(--mid-gray);
  font-size: 1.05rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--burgundy-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--burgundy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-text { color: rgba(255,255,255,0.75); }

.topbar-social { display: flex; gap: 0.75rem; }

.topbar-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.topbar-social a:hover { color: var(--gold-light); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-cross {
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1;
  font-weight: 400;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--burgundy);
}

.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  left: 0.7rem;
  right: 0.7rem;
  border-radius: 2px;
}

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--burgundy);
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  padding: 0.5rem 0;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  color: var(--charcoal);
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--burgundy);
}

.nav-donate {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.85rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, #8C3550 70%, #5A1A2A 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,147,58,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '✝';
  position: absolute;
  right: 8%;
  bottom: 10%;
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  pointer-events: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  color: ;
  background-image: url('img/parish.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,147,58,0.4);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ---------- WELCOME STRIP ---------- */
.welcome-strip {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 1.5rem 0;
  text-align: center;
}

.welcome-quote {
  font-family: var(--font-italic);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--burgundy-dark);
  font-style: italic;
  margin: 0;
}

/* ---------- QUICK INFO ---------- */
.quick-info {
  background: var(--warm-white);
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.info-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.info-card h3 {
  color: var(--burgundy-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.card-link:hover { color: var(--burgundy); }

/* ---------- ABOUT HOME ---------- */
.about-home { background: var(--cream); }

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-home-text h2 { margin-bottom: 1.25rem; }

.about-home-text p {
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}

.about-home-text .btn { margin-top: 0.5rem; }

.about-home-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-cross-box {
  background: var(--burgundy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.cross-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.cross-year { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.cross-year strong { color: var(--gold-light); display: block; font-size: 1.1rem; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1.1;
}

.stat-box span {
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---------- NEWS ---------- */
.news-home { background: var(--warm-white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.news-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  background: var(--warm-white);
}

.news-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}

.news-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news-tag {
  background: var(--burgundy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
}

.news-date {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.news-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

.news-card p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 1rem; }

/* ---------- GROUPS ---------- */
.groups-home { background: var(--cream); }

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.group-card {
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.group-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.group-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.group-card h4 { color: var(--burgundy-dark); font-size: 0.95rem; margin-bottom: 0.4rem; }
.group-card p { font-size: 0.82rem; color: var(--mid-gray); margin: 0; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-light));
  padding: 4rem 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-text p  { color: rgba(255,255,255,0.75); margin: 0; }

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '✝';
  position: absolute;
  right: 5%;
  bottom: -20%;
  font-size: 14rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-light); }

/* ---------- MASS TIMES TABLE ---------- */
.mass-table-wrap { overflow-x: auto; }

.mass-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.mass-table th {
  background: var(--burgundy);
  color: #fff;
  padding: 0.85rem 1.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.mass-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: top;
}

.mass-table tr:nth-child(even) td { background: var(--cream); }
.mass-table tr:hover td { background: rgba(107,30,47,0.04); }

.mass-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2rem;
  margin-left: 0.5rem;
}

/* ---------- SACRAMENTS ---------- */
.sacrament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sacrament-card {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-left: 5px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.sacrament-card:hover { box-shadow: var(--shadow); border-left-color: var(--gold); }

.sacrament-card .sac-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sacrament-card h3 { margin-bottom: 0.75rem; }
.sacrament-card p { font-size: 0.9rem; color: var(--mid-gray); }

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-placeholder {
  background: linear-gradient(135deg, var(--light-gray), var(--cream));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--mid-gray);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.gallery-placeholder span { font-size: 2.5rem; display: block; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--burgundy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 0.2rem; }
.contact-info-item p  { font-size: 0.9rem; color: var(--mid-gray); margin: 0; }

/* ---------- CONTACT FORM ---------- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,30,47,0.1);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  display: none;
}

/* ---------- MAP EMBED ---------- */
.map-section { background: var(--cream); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  height: 400px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.9rem;
  text-align: center;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 2rem;
}

.map-placeholder span { font-size: 3rem; display: block; }

/* ---------- TEAM CARDS ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.team-avatar {
  width: 90px;
  height: 90px;
  background: var(--burgundy);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  font-family: var(--font-display);
  border: 3px solid var(--gold);
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.85rem; color: var(--mid-gray); margin: 0; }

/* ---------- DONATE PAGE ---------- */
.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.donate-option {
  background: var(--cream);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.donate-option:hover,
.donate-option.selected {
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: var(--shadow);
}

.donate-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--burgundy);
  display: block;
  margin-bottom: 0.25rem;
}

.donate-label { font-size: 0.82rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- NEWS PAGE ---------- */
.news-list { display: flex; flex-direction: column; gap: 2rem; }

.news-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  align-items: start;
}

.news-list-item:hover { box-shadow: var(--shadow); border-color: var(--burgundy); }

.news-date-block {
  text-align: center;
  background: var(--burgundy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
}

.news-date-block .day { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; display: block; }
.news-date-block .month { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); display: block; }
.news-date-block .year { font-size: 0.75rem; color: rgba(255,255,255,0.6); display: block; }

.news-list-content h3 { margin-bottom: 0.5rem; }
.news-list-content p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 0.75rem; }

/* ---------- ACCORDION ---------- */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  background: var(--cream);
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--burgundy-dark);
  transition: var(--transition);
}

.accordion-header:hover { background: var(--light-gray); }

.accordion-header .acc-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.accordion-item.open .acc-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--mid-gray);
  border-top: 1px solid var(--light-gray);
}

.accordion-item.open .accordion-body { max-height: 500px; }

/* ---------- MARTYR PAGE ---------- */
.martyr-quote {
  background: var(--burgundy);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.martyr-quote blockquote {
  font-family: var(--font-italic);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.martyr-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--off-black);
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-cross { font-size: 2rem; color: var(--gold); }
.footer-brand .logo-name  { color: #fff; font-size: 1.05rem; }
.footer-brand .logo-sub   { color: rgba(255,255,255,0.4); }

.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover { background: var(--gold); color: #fff !important; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.87rem; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-col address p { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-inner a { color: var(--gold-light); }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-burg   { color: var(--burgundy); }
.bg-cream    { background: var(--cream); }
.bg-burg     { background: var(--burgundy); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 3rem 0;
}

.divider-gold {
  border: none;
  border-top: 2px solid var(--gold);
  width: 60px;
  margin: 1.25rem auto;
}

/* ---------- RESPONSIVE ---------- */
.message-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--burgundy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
}

.message-photo {
  text-align: center;
}

.message-photo-placeholder,
.message-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--burgundy);
  overflow: hidden;
  object-fit: cover;
}

.message-body p {
  margin-top: 0.5rem;
  color: var(--mid-gray);
  font-style: italic;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-home-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--light-gray);
    box-shadow: var(--shadow);
    padding: 1rem 0;
  }

  .site-nav.open { display: block; }
  .site-header { position: sticky; top: 0; }

  .nav-list { flex-direction: column; align-items: stretch; padding: 0 1.5rem; gap: 0; }
  .nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--light-gray); }
  .has-dropdown .dropdown { display: block; position: static; box-shadow: none; border: none; border-top: none; padding-left: 1rem; }
  .nav-donate { margin-top: 0.75rem; display: inline-block; }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .news-list-item { grid-template-columns: 1fr; }
  .news-date-block { display: flex; gap: 0.5rem; align-items: center; justify-content: flex-start; padding: 0.75rem 1rem; }
  .news-date-block .day { font-size: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar-inner { justify-content: center; }
  .topbar-text { text-align: center; font-size: 0.7rem; }

  .message-card { grid-template-columns: 1fr !important; text-align: center; }
  .message-card .message-body { text-align: left; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem 0; }
  .hero { min-height: 80vh; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- PRINT ---------- */
@media print {
  .topbar, .site-header, .site-footer, .hero-scroll-hint, .cta-strip { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  body { color: #000; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
