:root {
  --red: #C8102E;
  --red-dark: #9B0B22;
  --red-light: #E8354F;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --gray-light: #F2F0ED;
  --gray-mid: #9A9A9A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 48px; width: auto; }

nav { display: flex; gap: 2px; align-items: center; }
nav > a, nav > .dropdown {
  text-decoration: none; color: var(--black); font-size: 12.5px; font-weight: 500;
  padding: 8px 13px; border-radius: 4px; transition: all 0.2s; letter-spacing: 0.02em;
  text-transform: uppercase; display: inline-block; position: relative;
}
nav > a:hover, nav > a.active { color: var(--red); background: rgba(200,16,46,0.06); }

/* Dropdown */
.dropdown { position: relative; cursor: pointer; }
.dropdown > span {
  display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase; padding: 8px 13px;
  color: var(--black); border-radius: 4px; transition: all 0.2s; user-select: none;
}
.dropdown:hover > span, .dropdown > span.active { color: var(--red); background: rgba(200,16,46,0.06); }
.dropdown > span::after { content: '▾'; font-size: 10px; margin-left: 3px; }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border-radius: 6px; min-width: 200px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14); border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden; z-index: 2000;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 11px 18px; font-size: 0.86rem; color: var(--black);
  text-decoration: none; font-weight: 400; border-bottom: 1px solid var(--gray-light);
  transition: all 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(200,16,46,0.06); color: var(--red); padding-left: 24px; }
.dropdown-menu .dm-head {
  padding: 8px 18px 4px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray-mid); border-bottom: none; cursor: default;
}
.dropdown-menu .dm-head:hover { background: none; color: var(--gray-mid); padding-left: 18px; }

.donate-btn {
  background: var(--red) !important; color: white !important; padding: 10px 22px !important;
  border-radius: 4px; font-weight: 600 !important; margin-left: 6px;
}
.donate-btn:hover { background: var(--red-dark) !important; color: white !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 72px 0 0 0;
  background: white; z-index: 900; flex-direction: column;
  padding: 24px 32px; gap: 2px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--black); font-weight: 500;
  font-size: 1rem; padding: 12px 0; border-bottom: 1px solid var(--gray-light);
}
.mobile-nav .mob-section { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); padding: 14px 0 4px; border-bottom: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 72px; background: linear-gradient(105deg, var(--black) 0%, var(--red-dark) 60%, var(--red) 100%);
  color: white; padding: 72px 40px 60px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red-light), var(--red), var(--red-dark));
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.7; }
.page-hero-tag {
  display: inline-block; background: var(--red); color: white; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 16px; border-radius: 2px;
}

/* ===== HERO SLIDER (home) ===== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 72px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 6.5s ease; }
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,26,26,0.84) 0%, rgba(200,16,46,0.38) 60%, rgba(26,26,26,0.15) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 700px; padding: 0 80px; transform: translateY(30px); opacity: 0; transition: all 0.9s ease 0.3s; }
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-tag { display: inline-block; background: var(--red); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px; border-radius: 2px; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 20px; }
.slide-desc { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.slide-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: white; text-decoration: none; padding: 14px 32px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 3px; transition: all 0.3s; }
.slide-cta:hover { background: var(--red-dark); transform: translateX(4px); }
.slider-nav { position: absolute; bottom: 40px; left: 80px; z-index: 10; display: flex; gap: 10px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid white; background: transparent; cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--red); border-color: var(--red); width: 28px; border-radius: 4px; }
.slider-arrows { position: absolute; bottom: 30px; right: 80px; z-index: 10; display: flex; gap: 8px; }
.arrow { width: 44px; height: 44px; border: 2px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.3); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s; border-radius: 2px; }
.arrow:hover { background: var(--red); border-color: var(--red); }
.progress-bar { position: absolute; top: 0; left: 0; height: 3px; background: var(--red); z-index: 20; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--red); color: white; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 4px solid var(--red-dark); }
.stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,0.15); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }

/* ===== SECTIONS ===== */
section { padding: 90px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 16px; }
.section-lead { font-family: 'Crimson Text', serif; font-size: 1.2rem; color: #555; line-height: 1.75; max-width: 640px; margin-bottom: 48px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { width: 100%; border-radius: 2px; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(200,16,46,0.3); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--black); color: white; padding: 24px 28px; font-family: 'Playfair Display', serif; }
.about-badge-num { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.about-badge-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.value-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.value-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.value-list li::before { content: '✦'; color: var(--red); font-size: 0.65rem; margin-top: 3px; flex-shrink: 0; }

/* ===== PILLARS ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-card { background: white; border-radius: 2px; overflow: hidden; border-top: 4px solid transparent; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.pillar-card:hover { border-top-color: var(--red); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.pillar-icon { width: 54px; height: 54px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.pillar-body { padding: 28px; }
.pillar-num { font-size: 0.68rem; font-weight: 700; color: var(--red); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pillar-desc { font-size: 0.84rem; color: #666; line-height: 1.65; }

/* ===== MISSION BAND ===== */
.mission-band { background: var(--black); color: white; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.mission-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-light), var(--red)); }
.mission-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.4; max-width: 800px; margin: 0 auto 20px; font-style: italic; }
.mission-ref { color: var(--red); font-size: 1rem; letter-spacing: 0.05em; }

/* ===== NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.news-card { border-radius: 2px; overflow: hidden; background: white; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: all 0.3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.news-img { height: 200px; overflow: hidden; position: relative; background: #e0e0e0; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-cat { position: absolute; top: 16px; left: 16px; background: var(--red); color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.news-body { padding: 24px; }
.news-date { font-size: 0.75rem; color: var(--gray-mid); margin-bottom: 8px; }
.news-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.news-excerpt { font-size: 0.85rem; color: #666; line-height: 1.65; margin-bottom: 16px; }
.news-link { color: var(--red); font-size: 0.82rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.news-link:hover { gap: 10px; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { background: white; border-radius: 2px; overflow: hidden; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.team-photo { height: 220px; background: linear-gradient(135deg, #e8e8e8, #d0d0d0); display: flex; align-items: flex-end; justify-content: center; position: relative; overflow: hidden; }
.team-avatar-placeholder { width: 90px; height: 90px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin-bottom: 20px; font-family: 'Playfair Display', serif; font-weight: 700; }
.team-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(26,26,26,0.5), transparent); }
.team-body { padding: 20px 18px 24px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--red); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: #777; line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.team-social a { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: #999; text-decoration: none; transition: all 0.2s; font-weight: 700; }
.team-social a:hover { border-color: var(--red); color: var(--red); }

/* ===== PARTNERS ===== */
.partners-row { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; padding: 20px 0; }
.partner-logo { opacity: 0.45; transition: opacity 0.3s; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: #555; }
.partner-logo:hover { opacity: 0.9; }

/* ===== DONATE CTA ===== */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: white; text-align: center; padding: 80px 40px; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin-bottom: 16px; }
.cta-band p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--red); text-decoration: none; padding: 14px 36px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px; transition: all 0.3s; }
.btn-white:hover { background: var(--black); color: white; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); text-decoration: none; padding: 14px 36px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px; transition: all 0.3s; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-red { background: var(--red); color: white; text-decoration: none; padding: 13px 30px; font-weight: 700; font-size: 0.88rem; border-radius: 3px; transition: all 0.3s; display: inline-block; border: none; cursor: pointer; font-family: 'Inter', sans-serif; letter-spacing: 0.04em; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 42px; height: 42px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; flex-shrink: 0; }
.contact-form { background: white; padding: 40px; border-radius: 2px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #555; display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e0e0e0; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; color: var(--black); background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }

/* ===== CERP PAGE ===== */
.cerp-intro { background: var(--cream); }
.cerp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cerp-pillar { background: white; padding: 32px; border-radius: 2px; border-left: 4px solid var(--red); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; }
.cerp-pillar:hover { transform: translateX(4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.cerp-pillar-icon { font-size: 2rem; margin-bottom: 14px; }
.cerp-pillar h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.cerp-pillar p { font-size: 0.87rem; color: #666; line-height: 1.7; }
.cerp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0; }
.cerp-stat { background: var(--red); color: white; padding: 28px 20px; text-align: center; border-radius: 2px; }
.cerp-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; }
.cerp-stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; margin-top: 4px; }
.cerp-timeline { position: relative; padding-left: 32px; }
.cerp-timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--red); opacity: 0.3; }
.cerp-event { position: relative; margin-bottom: 36px; }
.cerp-event::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.cerp-event h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cerp-event p { font-size: 0.87rem; color: #666; line-height: 1.65; }
.cerp-event .event-date { font-size: 0.72rem; font-weight: 700; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.alert-box { background: rgba(200,16,46,0.08); border-left: 4px solid var(--red); padding: 20px 24px; border-radius: 0 4px 4px 0; margin-bottom: 28px; }
.alert-box h4 { font-weight: 700; margin-bottom: 6px; color: var(--red-dark); }
.alert-box p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* ===== GENERIC PAGES ===== */
.page-content { max-width: 1200px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.card-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: white; border-radius: 2px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 3px solid var(--red); transition: all 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.87rem; color: #666; line-height: 1.65; }
.download-list { list-style: none; }
.download-list li { border-bottom: 1px solid var(--gray-light); }
.download-list li:last-child { border-bottom: none; }
.download-list a { display: flex; align-items: center; gap: 16px; padding: 16px 4px; text-decoration: none; color: var(--black); transition: all 0.2s; }
.download-list a:hover { color: var(--red); padding-left: 10px; }
.dl-icon { width: 40px; height: 40px; background: rgba(200,16,46,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dl-info { flex: 1; }
.dl-name { font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.dl-meta { font-size: 0.78rem; color: var(--gray-mid); }
.dl-size { font-size: 0.78rem; color: var(--gray-mid); font-weight: 500; }
.diocese-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diocese-card { background: white; padding: 22px; border-radius: 2px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); border-left: 3px solid var(--red); transition: all 0.2s; }
.diocese-card:hover { transform: translateX(4px); }
.diocese-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 6px; }
.diocese-card p { font-size: 0.82rem; color: #777; }
.mis-feature { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: white; border-radius: 2px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.mis-icon { width: 48px; height: 48px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.mis-feature h4 { font-weight: 700; margin-bottom: 6px; }
.mis-feature p { font-size: 0.87rem; color: #666; line-height: 1.65; }

/* ===== FOOTER ===== */
footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 64px 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.72rem; font-weight: 700; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--red); color: white; background: var(--red); }
.footer-col h4 { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }
.footer-legal { display: flex; gap: 20px; }

/* ===== BACK TO TOP ===== */
#back-top { position: fixed; bottom: 32px; right: 32px; z-index: 500; width: 44px; height: 44px; background: var(--red); color: white; border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; opacity: 0; transform: translateY(10px); transition: all 0.3s; border: none; box-shadow: 0 4px 20px rgba(200,16,46,0.4); font-weight: 700; }
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--red-dark); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cerp-pillars { grid-template-columns: 1fr 1fr; }
  .cerp-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .card-list { grid-template-columns: 1fr 1fr; }
  .diocese-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: 80vh; }
  .slide-content { padding: 0 24px; }
  .slider-nav { left: 24px; }
  .slider-arrows { right: 24px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cerp-pillars { grid-template-columns: 1fr; }
  .cerp-stats { grid-template-columns: 1fr 1fr; }
  .card-list { grid-template-columns: 1fr; }
  .diocese-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 24px 40px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .cerp-stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .slide, .slide .slide-bg, .slide .slide-content, .reveal { transition: none; }
}

.pillar-card{
    position: relative;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
}

.pillar-card:hover{
    transform: translateY(-8px);
}

.pillar-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.75)
    );
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pillar-num{
    font-size: .9rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.pillar-title{
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-desc{
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.news-link:hover{
    color: #FFD700;
}