/* ═══════════════════════════════════════════════════════════════════════════
   PARISH WEBSITE — Main Stylesheet
   Aesthetic: Sacred & Modern — warm parchment tones with deep navy and gold
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a2f5a;
  --navy-light: #243b70;
  --gold:       #b8963e;
  --gold-light: #d4af5a;
  --gold-pale:  #f5e8c7;
  --cream:      #faf6ef;
  --parchment:  #f0e8d5;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d3d5c;
  --text-muted: #6b6b8a;
  --border:     #ddd6c5;

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(15,31,61,0.08);
  --shadow-md: 0 8px 32px rgba(15,31,61,0.12);
  --shadow-lg: 0 20px 60px rgba(15,31,61,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
}

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

/* ─── Scroll Reveal ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Section Base ──────────────────────────────────────────────────────── */
section { padding: 5rem 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 60px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 1.5rem; max-width: 1200px; margin: 0 auto;
}

/* Logo */
#logo-container { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; color: var(--navy);
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); font-weight: 700; letter-spacing: 0.05em; }
.logo-sub { font-family: var(--font-sans); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* Desktop Nav */
#desktop-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid); padding: 0.4rem 0.75rem; border-radius: 6px;
  letter-spacing: 0.02em; transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy); background: var(--gold-pale);
}
.nav-donate-btn {
  background: var(--navy); color: var(--white) !important;
  padding: 0.45rem 1rem !important; border-radius: 20px !important;
  font-size: 0.8rem !important;
}
.nav-donate-btn:hover { background: var(--navy-light) !important; background-color: var(--navy-light) !important; }

/* Mobile Menu Button */
#mobile-menu-btn {
  display: none; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--navy); border-radius: 8px;
  transition: var(--transition);
}
#mobile-menu-btn:hover { background: var(--gold-pale); }
#mobile-menu-btn svg { width: 24px; height: 24px; }

/* Mobile Nav */
#mobile-nav {
  position: fixed; top: var(--header-h); right: 0; bottom: 0; width: 280px;
  background: var(--white); padding: 1.5rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; border-left: 1px solid var(--border);
  z-index: 999;
}
#mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block; padding: 0.9rem 1rem;
  font-family: var(--font-sans); font-weight: 500;
  color: var(--text-mid); border-radius: 8px;
  transition: var(--transition); border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.mobile-nav-link:hover { color: var(--navy); background: var(--gold-pale); }
#menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 998;
}
#menu-overlay.active { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
#hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-top: var(--header-h);
}
#hero-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
}
.hero-cross {
  position: absolute; opacity: 0.06;
  width: min(500px, 80vw); height: min(500px, 80vw);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-cross::before, .hero-cross::after {
  content: ""; position: absolute; background: white;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-cross::before { width: 100%; height: 18%; border-radius: 4px; }
.hero-cross::after { width: 18%; height: 100%; border-radius: 4px; }
.hero-content {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem; max-width: 800px;
}
.hero-tag {
  display: inline-block; font-family: var(--font-sans);
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(212,175,90,0.4);
  padding: 0.4rem 1.2rem; border-radius: 20px;
  margin-bottom: 1.5rem;
}
#hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1rem; letter-spacing: 0.03em;
}
#hero-subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.8); margin-bottom: 2rem;
  font-style: italic; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-family: var(--font-sans);
  font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  letter-spacing: 0.04em; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184,150,62,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,150,62,0.5); }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-family: var(--font-sans);
  font-weight: 500; font-size: 0.9rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  letter-spacing: 0.04em; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); animation: bounce 2s infinite;
  z-index: 1;
}
.hero-scroll svg { width: 24px; height: 24px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ═══════════════════════════════════════════════════════════════════════════
   MASS SCHEDULE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
#mass-section {
  background: var(--navy); padding: 4rem 0;
}
.mass-header { text-align: center; margin-bottom: 2.5rem; }
.mass-header .section-title { color: var(--white); }
.mass-header .section-divider { margin: 0.75rem auto 0; }
#mass-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.schedule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center;
}
.schedule-day {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--gold-light); margin-bottom: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.schedule-times { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.time-badge {
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 0.8rem; padding: 0.25rem 0.7rem; border-radius: 20px;
  font-family: var(--font-sans);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PASTORAL THEME
   ═══════════════════════════════════════════════════════════════════════════ */
#theme { background: var(--cream); }
.theme-header { text-align: center; margin-bottom: 3rem; }
.theme-year-badge {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1rem;
  text-transform: uppercase;
}
#theme-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--navy); line-height: 1.1;
  letter-spacing: 0.03em; margin-bottom: 0.5rem;
}
#theme-subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem); color: var(--gold);
  margin-bottom: 1.5rem;
}
#theme-desc {
  max-width: 700px; margin: 0 auto;
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 2rem;
}
.theme-verse {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; margin: 2rem 0 3rem;
  position: relative; overflow: hidden;
}
.theme-verse::before {
  content: "\201C"; position: absolute; top: -0.5rem; left: 1rem;
  font-family: var(--font-serif); font-size: 8rem;
  color: rgba(212,175,90,0.2); line-height: 1;
}
#theme-verse {
  font-family: var(--font-serif); font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white); font-style: italic; line-height: 1.8;
  position: relative; z-index: 1;
}
#theme-ref {
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--gold-light); letter-spacing: 0.1em;
  display: block; margin-top: 0.75rem; position: relative; z-index: 1;
}
#theme-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--gold-light);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-title {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--navy); margin-bottom: 0.75rem; letter-spacing: 0.04em;
}
.pillar-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════════════
   HISTORY
   ═══════════════════════════════════════════════════════════════════════════ */
#about { background: var(--parchment); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual {
  position: relative;
}
.about-ornament {
  width: 100%; aspect-ratio: 1;
  max-width: 400px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15);
}
.about-ornament svg { width: 60%; height: 60%; }
.about-year {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--gold);
  color: var(--navy); font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
#history-content {
  font-family: var(--font-serif); font-size: 1.1rem;
  line-height: 1.9; color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWS & BLOGS
   ═══════════════════════════════════════════════════════════════════════════ */
#news { background: var(--cream); }
#news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-img { transform: scale(1.05); }
.news-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 20px;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-blue { background: var(--navy); color: var(--white); }
.badge-green { background: #1a5c3a; color: var(--white); }
.news-body { padding: 1.5rem; }
.news-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.news-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.news-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.read-more-btn {
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.03em; transition: var(--transition);
}
.read-more-btn:hover { color: var(--navy); }

/* News Modal */
#news-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
#news-modal.active { display: flex; }
.modal-inner {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 680px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
}
.modal-img-wrap img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-content-wrap { padding: 2rem; }
.modal-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.modal-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.modal-body { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); }
#modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.2rem; font-weight: 700;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
#modal-close:hover { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════════════════════ */
#events { background: var(--parchment); }
#events-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; gap: 1.25rem;
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  overflow: hidden;
}
.event-icon svg,
.event-icon img {
  width: 24px; height: 24px;
  max-width: 24px; max-height: 24px;
  flex-shrink: 0;
}
.event-body { flex: 1; }
.event-date-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.event-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.event-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.25rem; }
.event-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.event-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-top: 0.6rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */
#gallery { background: var(--navy); }
#gallery .section-title { color: var(--white); }
#gallery .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-drive-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--gold-light); margin-bottom: 2rem;
  border: 1px solid rgba(212,175,90,0.3); padding: 0.4rem 1rem; border-radius: 20px;
  transition: var(--transition);
}
.gallery-drive-link:hover { background: rgba(212,175,90,0.1); }
#gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer;
  background: rgba(255,255,255,0.05);
}
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white); padding: 1.5rem 0.75rem 0.75rem;
  font-size: 0.8rem; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
  flex-direction: column;
}
#lightbox.active { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
#lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1rem; }
#lightbox-counter { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 0.25rem; }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.7); font-size: 2rem; line-height: 1;
  transition: var(--transition); background: none;
}
#lightbox-close:hover { color: var(--white); }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); color: var(--white);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--transition);
}
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════════════════════════════
   FUNDRAISING STORE
   ═══════════════════════════════════════════════════════════════════════════ */
#store { background: var(--cream); }
#store-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card.out-of-stock { opacity: 0.7; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.04); }
.sold-out-badge {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em;
}
.product-body { padding: 1.25rem; }
.product-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.product-price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.order-btn {
  display: block; width: 100%; text-align: center;
  background: var(--navy); color: var(--white);
  padding: 0.65rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.order-btn:hover { background: var(--navy-light); }
.order-btn.disabled {
  background: var(--border); color: var(--text-muted); cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DONATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
#donate { background: var(--parchment); }
.donate-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; color: var(--text-muted); }
.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.donation-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.donation-card:hover { box-shadow: var(--shadow-md); }
.donation-sector {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--navy); margin-bottom: 0.25rem; letter-spacing: 0.04em;
}
.donation-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.donation-bank {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1rem;
}
.donation-card:first-child .donation-bank { background: #1a4ab5; color: var(--white); }
.donation-card:last-child .donation-bank { background: #0091cd; color: var(--white); }
.donation-qr-wrap {
  width: 180px; height: 180px; margin: 0 auto 1.5rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.donation-qr { width: 100%; height: 100%; object-fit: contain; }
.donation-account { margin-bottom: 1.25rem; }
.donation-account-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.donation-account-num { font-family: monospace; font-size: 1rem; color: var(--navy); letter-spacing: 0.06em; margin-top: 0.2rem; }
.transparency-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gold); border: 1px solid var(--gold);
  padding: 0.45rem 1.25rem; border-radius: 20px; transition: var(--transition);
}
.transparency-link:hover { background: var(--gold); color: var(--navy); }
.transparency-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
#contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.contact-value a { color: var(--navy); transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }
#contact-social { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; }
.feedback-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center;
}
.feedback-box h3 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.feedback-box p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.feedback-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  letter-spacing: 0.03em; transition: var(--transition);
}
.feedback-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,150,62,0.4); }
.feedback-btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-name {
  display: block; font-family: var(--font-display);
  font-size: 1.2rem; color: var(--white);
  letter-spacing: 0.05em; margin-bottom: 0.2rem;
}
.footer-logo-sub {
  display: block; font-size: 0.7rem;
  color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.75rem;
  color: var(--gold-light); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1rem;
}
#footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-link { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-nav-link:hover { color: var(--white); padding-left: 4px; }
#footer-address { font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-credit { color: rgba(255,255,255,0.4); }
.footer-feedback a { color: var(--gold-light); transition: var(--transition); }
.footer-feedback a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  #desktop-nav { display: none !important; }
  #mobile-menu-btn { display: flex !important; }

  section { padding: 3.5rem 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { order: -1; }
  .about-ornament { max-width: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  #hero-headline { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-cta-group { flex-direction: column; align-items: center; }

  #lightbox-prev { left: 0.5rem; }
  #lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .donation-grid { grid-template-columns: 1fr; }
  #news-container, #events-container, #store-container { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}