@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #080810; color: #E8E4DC; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
::selection { background: rgba(42,191,204,0.3); }
::-webkit-scrollbar { width: 4px; background: #111; }
::-webkit-scrollbar-thumb { background: #2ABFCC; border-radius: 2px; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transition: all 0.4s ease; }
nav.scrolled { background: rgba(8,8,16,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(42,191,204,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; }
.nav-logo-text { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 0.02em; color: white; }
.nav-logo-sub { font-size: 11px; color: #2ABFCC; letter-spacing: 0.1em; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link { background: none; border: none; color: rgba(232,228,220,0.65); font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 0.04em; cursor: pointer; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; text-decoration: none; display: inline-block; }
.nav-link:hover { color: white; }
.nav-link.active { color: #2ABFCC; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.15); color: rgba(232,228,220,0.6); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.1em; cursor: pointer; padding: 6px 12px; border-radius: 20px; transition: all 0.2s; }
.lang-btn:hover, .lang-btn.active-lang { border-color: #2ABFCC; color: #2ABFCC; }
.burger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }

/* ── MOBILE MENU ──────────────────────────────────────────────────────────────── */
.mob-menu { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(8,8,16,0.98); backdrop-filter: blur(30px); flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mob-menu.open { display: flex; }
.mob-link { background: none; border: none; color: rgba(232,228,220,0.8); font-family: 'DM Sans', sans-serif; font-size: 22px; letter-spacing: 0.06em; cursor: pointer; padding: 16px 40px; width: 100%; text-align: center; transition: color 0.2s; text-decoration: none; display: block; }
.mob-link:hover { color: #2ABFCC; }
.mob-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 120px 0 100px 0; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(20,40,80,0.6) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,80,20,0.25) 0%, transparent 55%), #080810; }
.hero-noise { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(42,191,204,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(42,191,204,0.04) 1px, transparent 1px); background-size: 80px 80px; }
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
.hero-tag { margin-bottom: 32px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(52px, 8vw, 110px); line-height: 0.95; letter-spacing: -0.02em; color: white; margin-bottom: 36px; }
.hero-title .line-em { font-style: italic; color: #2ABFCC; }
.hero-title .line-dim { color: rgba(255,255,255,0.45); }
.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(232,228,220,0.6); max-width: 440px; margin-bottom: 48px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: #2ABFCC; color: #080810; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px 36px; border: none; border-radius: 2px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #3DD8E6; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(42,191,204,0.35); }
.btn-ghost { background: transparent; color: white; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 15px 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 40px; right: 32px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(232,228,220,0.35); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(42,191,204,0.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.4} }

/* ── SECTION COMMON ───────────────────────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 120px 32px; }
.section-header { margin-bottom: 72px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.02em; white-space: pre-line; }
.label { display: block; margin-bottom: 20px; }

/* ── ABOUT ────────────────────────────────────────────────────────────────────── */
.about-section { background: #0C0C16; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: rgba(232,228,220,0.65); font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.about-values { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.about-value { padding: 10px 22px; border: 1px solid rgba(42,191,204,0.25); color: #2ABFCC; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; }
.about-visual { position: relative; }
.about-card { background: rgba(42,191,204,0.04); border: 1px solid rgba(42,191,204,0.1); border-radius: 4px; padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 380px; position: relative; }
.about-card-year { font-family: 'Playfair Display', serif; font-size: 100px; color: rgba(42,191,204,0.08); line-height: 1; font-weight: 700; position: absolute; bottom: 24px; right: 24px; }
.about-carousel { position: relative; aspect-ratio: 1440 / 961; overflow: hidden; border-radius: 4px; }
.about-carousel::before,
.about-carousel::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06); pointer-events: none; }
.about-carousel::before { transform: rotate(-2deg) scale(0.98) translateY(10px); z-index: -1; }
.about-carousel::after  { transform: rotate(1.2deg) scale(0.96) translateY(18px); z-index: -2; }
.about-carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; filter: brightness(0.88) saturate(0.9); }
.about-carousel-img.active { opacity: 1; }
.about-card-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px 20px; background: linear-gradient(to top, rgba(8,8,16,0.9) 0%, transparent 100%); }
.about-carousel-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 2px; }
.about-arrow { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: white; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
.about-arrow:hover { background: rgba(42,191,204,0.3); border-color: #2ABFCC; }
.about-dots { display: flex; gap: 6px; align-items: center; }
.about-dot { width: 18px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); transition: background 0.3s, width 0.3s; cursor: pointer; }
.about-dot.active { width: 32px; background: #2ABFCC; }

/* ── MINISTRIES ───────────────────────────────────────────────────────────────── */
.ministries-section { background: #080810; }
.min-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.min-grid-page { grid-template-columns: repeat(3, 1fr); }
.min-card-full { padding: 40px 36px; }
.min-card { padding: 48px 40px; border: 1px solid rgba(255,255,255,0.04); transition: all 0.3s; position: relative; overflow: hidden; }
.min-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,191,204,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.min-name::after { content: ''; display: block; width: 28px; height: 2px; background: rgba(42,191,204,0.45); margin-top: 12px; }
.min-card:hover::before { opacity: 1; }
.min-card:hover { border-color: rgba(42,191,204,0.2); transform: translateY(-4px); }

.min-name { font-size: 20px; color: rgba(232,228,220,0.9); font-weight: 500; margin-bottom: 14px; }
.min-desc { font-size: 14px; line-height: 1.7; color: rgba(232,228,220,0.5); font-weight: 300; }

/* ── EVENTS ───────────────────────────────────────────────────────────────────── */
.events-section { background: linear-gradient(180deg, #0C0C16 0%, #0A0A12 100%); }
.events-grid { display: flex; flex-direction: column; }
.event-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 40px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.2s; cursor: pointer; }
.event-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.event-row:hover { padding-left: 12px; border-color: rgba(42,191,204,0.2); }
.event-row:hover .event-title { color: #2ABFCC; }
.event-date-block { text-align: center; }
.event-date-num { font-family: 'Playfair Display', serif; font-size: 28px; color: white; font-weight: 700; line-height: 1; }
.event-date-mon { font-size: 12px; color: #2ABFCC; letter-spacing: 0.1em; text-transform: uppercase; }
.event-day { font-size: 11px; color: rgba(232,228,220,0.4); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.event-title { font-size: 20px; color: rgba(232,228,220,0.9); font-weight: 500; transition: color 0.2s; margin-bottom: 6px; }
.event-meta { display: flex; gap: 16px; font-size: 13px; color: rgba(232,228,220,0.4); }
.event-tag { padding: 5px 14px; border-radius: 20px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(42,191,204,0.25); color: #2ABFCC; white-space: nowrap; }

/* ── SERMONS ──────────────────────────────────────────────────────────────────── */
.sermons-section { background: #080810; }
.sermons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sermon-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; transition: all 0.3s; cursor: pointer; display: flex; flex-direction: column; text-decoration: none; }
.sermon-card:hover { border-color: rgba(42,191,204,0.2); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.sermon-thumb { width: 100%; aspect-ratio: 16/9; flex-shrink: 0; background: linear-gradient(135deg, #1a3a4a 0%, #0a1a22 100%); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 40px; color: rgba(42,191,204,0.4); position: relative; overflow: hidden; }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sermon-play { position: absolute; bottom: 12px; right: 12px; width: 28px; height: 28px; background: #2ABFCC; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #080810; }
.sermon-info { padding: 24px; flex: 1; }
.sermon-series { font-size: 10px; color: #2ABFCC; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
.sermon-title { font-size: 19px; color: rgba(232,228,220,0.9); font-weight: 500; line-height: 1.3; margin-bottom: 14px; }
.sermon-meta { font-size: 12px; color: rgba(232,228,220,0.4); }
.sermons-footer { margin-top: 48px; text-align: center; }

/* ── GIVE ─────────────────────────────────────────────────────────────────────── */
.give-section { background: #080810; }
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.give-card { padding: 48px 40px; border: 1px solid rgba(255,255,255,0.04); transition: all 0.3s; position: relative; overflow: hidden; }
.give-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,191,204,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.give-card:hover::before { opacity: 1; }
.give-card:hover { border-color: rgba(42,191,204,0.2); transform: translateY(-4px); }
.give-card-name { font-size: 20px; color: rgba(232,228,220,0.9); font-weight: 500; margin-bottom: 12px; }
.give-card-name::after { content: ''; display: block; width: 28px; height: 2px; background: rgba(42,191,204,0.45); margin-top: 12px; }
.give-card-desc { font-size: 14px; line-height: 1.7; color: rgba(232,228,220,0.5); font-weight: 300; margin-bottom: 28px; }
.give-card-details { display: flex; flex-direction: column; gap: 12px; }
.give-detail-label { font-size: 10px; color: #2ABFCC; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2px; }
.give-detail-value { font-size: 15px; color: rgba(232,228,220,0.85); font-weight: 500; letter-spacing: 0.03em; }

/* ── BLOG ─────────────────────────────────────────────────────────────────────── */
.blog-section { background: #0C0C16; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.post-card { padding: 48px 40px; border: 1px solid rgba(255,255,255,0.04); position: relative; overflow: hidden; cursor: pointer; transition: all 0.3s; text-decoration: none; display: block; }
.post-card::after { content: '→'; position: absolute; bottom: 40px; right: 40px; font-size: 20px; color: rgba(42,191,204,0); transition: all 0.3s; }
.post-card:hover::after { color: #2ABFCC; transform: translateX(4px); }
.post-card:hover { border-color: rgba(42,191,204,0.15); }
.post-cat { font-size: 10px; color: #2ABFCC; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.post-title { font-size: 20px; color: rgba(232,228,220,0.9); font-weight: 500; line-height: 1.3; margin-bottom: 24px; }
.post-foot { display: flex; gap: 16px; font-size: 12px; color: rgba(232,228,220,0.35); }
.post-num { position: absolute; top: 32px; right: 40px; font-family: 'Playfair Display', serif; font-size: 64px; color: rgba(255,255,255,0.03); line-height: 1; }

.social-links { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(232,228,220,0.45); font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.25s; background: rgba(255,255,255,0.02); text-decoration: none; letter-spacing: 0.02em; }
.social-btn:hover { border-color: #2ABFCC; color: #2ABFCC; background: rgba(42,191,204,0.06); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────────────────────────── */
footer { background: #050508; border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 32px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: flex-start; }
.footer-left { flex: 1; display: flex; flex-direction: column; gap: 48px; min-width: 0; }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand-name { font-size: 15px; font-weight: 600; color: white; letter-spacing: 0.02em; margin-bottom: 6px; }
.footer-brand-tagline { font-size: 12px; color: rgba(232,228,220,0.3); line-height: 1.6; font-weight: 300; }
.footer-contacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-map-card { width: 320px; flex-shrink: 0; position: relative; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); align-self: stretch; min-height: 260px; }
.footer-map-card iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; filter: grayscale(0.8) brightness(0.5) contrast(1.1); }
.footer-map-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,8,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 20px; pointer-events: none; }
.footer-map-btn { pointer-events: auto; display: inline-block; padding: 8px 16px; background: rgba(42,191,204,0.12); border: 1px solid rgba(42,191,204,0.35); color: #2ABFCC; border-radius: 2px; font-size: 12px; letter-spacing: 0.08em; text-decoration: none; transition: background 0.2s; }
.footer-map-btn:hover { background: rgba(42,191,204,0.22); }
.footer-contact-item { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-label { font-size: 10px; color: #2ABFCC; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-contact-val { font-size: 13px; color: rgba(232,228,220,0.55); line-height: 1.6; font-weight: 300; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 11px; color: rgba(232,228,220,0.2); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 11px; color: rgba(232,228,220,0.25); cursor: pointer; transition: color 0.2s; letter-spacing: 0.04em; }
.footer-link:hover { color: #2ABFCC; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(232,228,220,0.45); cursor: pointer; transition: all 0.25s; background: rgba(255,255,255,0.03); text-decoration: none; }
.social-btn:hover { border-color: #2ABFCC; color: #2ABFCC; background: rgba(42,191,204,0.08); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,191,204,0.15); }

/* ── GC HOMEPAGE SECTION ─────────────────────────────────────────────────────── */
.gc-section { background: #0C0C16; }
.gc-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gc-day-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.gc-day-tile { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 32px 28px; position: relative; overflow: hidden; transition: border-color 0.3s; }
.gc-day-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #2ABFCC, rgba(42,191,204,0.1)); opacity: 0; transition: opacity 0.3s; }
.gc-day-tile:hover { border-color: rgba(42,191,204,0.2); }
.gc-day-tile:hover::before { opacity: 1; }
.gc-day-tile-name { font-size: 13px; color: rgba(232,228,220,0.45); letter-spacing: 0.06em; margin-bottom: 16px; font-weight: 300; }
.gc-day-tile-count { font-family: 'Playfair Display', serif; font-size: 42px; color: white; line-height: 1; }
.gc-day-tile-count span { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(232,228,220,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 6px; vertical-align: middle; }

/* ── GC PAGE ──────────────────────────────────────────────────────────────────── */
.gc-day-block { margin-bottom: 56px; }
.gc-day-label { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 4px; }
.gc-day-count { font-size: 11px; color: rgba(232,228,220,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.gc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gc-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s; }
.gc-card:hover { border-color: rgba(42,191,204,0.2); }
.gc-card-name { font-size: 16px; color: rgba(232,228,220,0.9); font-weight: 500; line-height: 1.3; }
.gc-card-time { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #2ABFCC; letter-spacing: 0.1em; text-transform: uppercase; }
.gc-card-footer { margin-top: auto; padding-top: 16px; }
.gc-wa-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); color: #25D366; font-size: 12px; font-weight: 500; padding: 9px 16px; border-radius: 4px; text-decoration: none; transition: all 0.2s; letter-spacing: 0.03em; }
.gc-wa-btn:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.5); transform: translateY(-1px); }
.gc-summary { display: flex; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.gc-summary-stat { display: flex; flex-direction: column; gap: 4px; }
.gc-summary-num { font-family: 'Playfair Display', serif; font-size: 40px; color: white; line-height: 1; }
.gc-summary-label { font-size: 11px; color: rgba(232,228,220,0.35); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── WHATSAPP FAB ─────────────────────────────────────────────────────────────── */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 9990; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.wa-fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ── DIVIDER ──────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(42,191,204,0.2), transparent); margin: 0 32px; }

/* ── SUBPAGE HEADER ───────────────────────────────────────────────────────────── */
.page-header { background: #0C0C16; padding: 160px 32px 80px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(42,191,204,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(42,191,204,0.03) 1px, transparent 1px); background-size: 80px 80px; }
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-header-inner .section-title { color: white; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(232,228,220,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; margin-bottom: 32px; letter-spacing: 0.04em; }
.back-link:hover { color: #2ABFCC; }

/* ── SERMON ARCHIVE ───────────────────────────────────────────────────────────── */
.archive-section { background: #080810; }
.series-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 56px; }
.filter-btn { background: none; border: 1px solid rgba(255,255,255,0.1); color: rgba(232,228,220,0.5); font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.08em; cursor: pointer; padding: 8px 20px; border-radius: 2px; transition: all 0.2s; }
.filter-btn:hover { border-color: rgba(42,191,204,0.3); color: rgba(232,228,220,0.8); }
.filter-btn.active { border-color: #2ABFCC; color: #2ABFCC; background: rgba(42,191,204,0.06); }
.sermons-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sermon-no-video { opacity: 0.4; cursor: default; }
.sermon-no-video:hover { transform: none; box-shadow: none; }

/* ── ARTICLE PAGE ─────────────────────────────────────────────────────────────── */
.article-section { background: #080810; }
.article-wrap { max-width: 760px; }
.article-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: 4px; margin-bottom: 56px; display: block; }
.article-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.article-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.02em; color: white; margin-bottom: 28px; }
.article-byline { display: flex; gap: 20px; font-size: 13px; color: rgba(232,228,220,0.4); margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; }
.article-body { font-size: 17px; line-height: 1.9; color: rgba(232,228,220,0.75); font-weight: 300; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: white; margin: 56px 0 20px; letter-spacing: -0.01em; font-weight: 700; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin: 40px 0 16px; }
.article-body p { margin-bottom: 28px; }
.article-body a { color: #2ABFCC; text-decoration: underline; text-decoration-color: rgba(42,191,204,0.4); }
.article-body a:hover { text-decoration-color: #2ABFCC; }
.article-body blockquote { border-left: 3px solid #2ABFCC; padding: 20px 32px; background: rgba(42,191,204,0.05); margin: 40px 0; font-style: italic; color: rgba(232,228,220,0.6); border-radius: 0 2px 2px 0; }
.article-body blockquote p { margin-bottom: 0; }
.article-body ul, .article-body ol { margin: 0 0 28px 24px; }
.article-body li { margin-bottom: 10px; }
.article-body img { width: 100%; border-radius: 4px; margin: 40px 0; }
.article-body strong { color: rgba(232,228,220,0.95); font-weight: 600; }
/* ── SERMON PAGE ──────────────────────────────────────────────────────────────── */
.sermon-detail-wrap { max-width: 860px; }
.sermon-detail-meta { display: flex; gap: 20px; font-size: 13px; color: rgba(232,228,220,0.4); margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; }
.sermon-detail-series { font-size: 11px; color: #2ABFCC; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.sermon-detail-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -0.02em; color: white; margin-bottom: 24px; }
.sermon-detail-desc { font-size: 16px; line-height: 1.8; color: rgba(232,228,220,0.6); font-weight: 300; margin-top: 40px; }
/* Media cards */
.media-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.media-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: #0d0d1a; }
.media-card-header { display: flex; align-items: center; gap: 12px; padding: 14px 20px; }
.media-card-header-yt { background: linear-gradient(90deg, rgba(255,0,0,0.12) 0%, transparent 100%); border-bottom: 1px solid rgba(255,0,0,0.1); }
.media-card-header-sp { background: linear-gradient(90deg, rgba(29,185,84,0.1) 0%, transparent 100%); border-bottom: 1px solid rgba(29,185,84,0.1); }
.media-card-badge { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 6px; font-size: 9px; font-weight: 800; letter-spacing: 0; flex-shrink: 0; }
.media-card-badge-yt { background: #FF0000; color: white; }
.media-card-badge-sp { background: #1DB954; color: white; }
.media-card-platform { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }
.media-card-platform-yt { color: rgba(255,100,100,0.85); }
.media-card-platform-sp { color: rgba(29,185,84,0.85); }
.media-card-body-yt { background: #000; }
.embed-video { position: relative; padding-top: 56.25%; }
.embed-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.embed-spotify iframe { display: block; width: 100%; border: 0; }

.article-not-found { padding: 120px 0; text-align: center; }
.article-not-found h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: white; margin-bottom: 16px; }
.article-not-found p { color: rgba(232,228,220,0.5); margin-bottom: 32px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .gc-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .gc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-map-card { width: 100%; min-height: 220px; }
  .footer-contacts { grid-template-columns: repeat(2, 1fr); }
  .min-grid { grid-template-columns: 1fr 1fr; }
  .sermons-grid, .sermons-grid-full { grid-template-columns: 1fr; }
  .give-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 12vw, 80px); }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-tag { display: none; }
}
@media (max-width: 600px) {
  .min-grid { grid-template-columns: 1fr; }
  .gc-grid { grid-template-columns: 1fr; }
  .footer-contacts { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-inner { padding: 80px 24px; }
  .hero-inner { padding: 0 24px; }
  .page-header { padding: 120px 24px 60px; }
}
