/* =============================================
   Bible Mission Church Udimudi
   Grand · Colourful · Stained-Glass Cathedral
   ============================================= */
:root {
    /* Stained-Glass Jewel Palette */
    --violet:        #6d28d9;
    --violet-deep:   #4c1d95;
    --violet-light:  #a78bfa;
    --sapphire:      #1d4ed8;
    --sapphire-deep: #1e3a8a;
    --ruby:          #be123c;
    --ruby-deep:     #9f1239;
    --emerald:       #047857;
    --emerald-deep:  #065f46;
    --gold:          #f5c542;
    --gold-deep:     #b45309;
    --gold-soft:     #fde68a;
    --rose:          #e11d48;
    --teal:          #0d9488;

    --ink:           #0c0420;
    --ink-soft:      #1a0f33;
    --ink-deeper:    #050010;
    --paper:         #fef9e7;

    --text:          #f8f1ff;
    --text-muted:    #b8acd1;
    --text-subtle:   #7d6f9c;

    --line:          rgba(255, 235, 180, 0.12);
    --line-strong:   rgba(255, 235, 180, 0.22);
    --surface:       rgba(255, 255, 255, 0.04);
    --surface-strong:rgba(255, 255, 255, 0.07);

    --gold-gradient:     linear-gradient(135deg, #fef3c7 0%, #fcd34d 30%, #f5c542 55%, #d97706 80%, #92400e 100%);
    --stained-gradient:  linear-gradient(120deg, #6d28d9 0%, #1d4ed8 25%, #be123c 50%, #f5c542 75%, #047857 100%);
    --royal-gradient:    linear-gradient(135deg, #6d28d9 0%, #1d4ed8 100%);
    --sunset-gradient:   linear-gradient(135deg, #be123c 0%, #f5c542 100%);
    --forest-gradient:   linear-gradient(135deg, #047857 0%, #0d9488 100%);

    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast:        all 0.3s ease;
    --t-med:         all 0.6s var(--ease);
    --t-slow:        all 1s var(--ease);
}

.light-mode {
    --ink:           #fffaf2;
    --ink-soft:      #fbf3e2;
    --ink-deeper:    #ffffff;
    --text:          #1a0e2e;
    --text-muted:    #524668;
    --text-subtle:   #7e7099;
    --line:          rgba(109, 40, 217, 0.12);
    --line-strong:   rgba(109, 40, 217, 0.22);
    --surface:       rgba(109, 40, 217, 0.03);
    --surface-strong:rgba(109, 40, 217, 0.06);
}

/* =============================================
   Base
   ============================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ink);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
    font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: var(--text);
}

.cinzel { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: 0.04em; }
.cormorant { font-family: 'Cormorant Garamond', serif; }

p { color: var(--text-muted); }

::selection {
    background: var(--gold);
    color: var(--ink);
}

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

/* =============================================
   Background — Stained Glass Aurora
   ============================================= */
.cathedral-backdrop {
    position: fixed;
    inset: 0;
    z-index: -3;
    background: var(--ink);
    overflow: hidden;
    pointer-events: none;
}

.cathedral-backdrop::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(109, 40, 217, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse 65% 55% at 80% 15%, rgba(29, 78, 216, 0.50) 0%, transparent 50%),
        radial-gradient(ellipse 55% 50% at 75% 85%, rgba(190, 18, 60, 0.40) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 15% 90%, rgba(4, 120, 87, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245, 197, 66, 0.15) 0%, transparent 60%);
    animation: aurora-drift 28s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-3%, 3%) scale(1.08); }
    66%      { transform: translate(3%, -3%) scale(0.95); }
}

/* Divine light rays — subtle, golden */
.divine-rays {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: screen;
    overflow: hidden;
}

.divine-rays::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    width: 200vh;
    height: 200vh;
    transform-origin: 0 0;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(245, 197, 66, 0.18) 4deg,
        transparent 10deg,
        transparent 40deg,
        rgba(254, 243, 199, 0.14) 45deg,
        transparent 52deg,
        transparent 360deg
    );
    animation: rays-rotate 100s linear infinite;
}

@keyframes rays-rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

.vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(5, 0, 16, 0.65) 100%);
}

/* =============================================
   Typography helpers
   ============================================= */
.gold-text {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gold-shimmer 8s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(245, 197, 66, 0.28));
}

@keyframes gold-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.stained-text {
    background: var(--stained-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: stained-flow 14s ease-in-out infinite;
}

@keyframes stained-flow {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.violet-text  { color: var(--violet-light); }
.gold-color   { color: var(--gold); }
.italic-serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }

.muted { color: var(--text-muted); }
.subtle { color: var(--text-subtle); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor);
}

.eyebrow.centered { justify-content: center; }

.eyebrow.centered::after {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, currentColor, transparent);
}

/* =============================================
   Cards & Surfaces
   ============================================= */
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    transition: var(--t-med);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glass {
    background: var(--surface);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--line);
}

.glass-strong {
    background: var(--surface-strong);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--line-strong);
}

.surface-bordered {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Sacred halo glow */
.halo-glow {
    position: relative;
}

.halo-glow::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at center, var(--gold-glow, rgba(245, 197, 66, 0.4)) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.1rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: var(--t-med);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: #2a1500;
    box-shadow: 0 12px 36px rgba(245, 197, 66, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(245, 197, 66, 0.5);
}

.btn-royal {
    background: var(--royal-gradient);
    color: #fff;
    box-shadow: 0 12px 36px rgba(109, 40, 217, 0.4);
}

.btn-royal:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(109, 40, 217, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 600;
}

.btn-ghost:hover { color: var(--gold); }

/* =============================================
   Preloader
   ============================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a0f33 0%, #050010 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-cross {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-cross .icon {
    font-size: 2.5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 30px rgba(245, 197, 66, 0.8));
    animation: cross-breath 2.5s ease-in-out infinite;
}

.preloader-cross .ring {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes cross-breath {
    0%, 100% { transform: scale(1);    opacity: 0.85; }
    50%      { transform: scale(1.12); opacity: 1; }
}

#preloader .preloader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

#preloader .preloader-verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
    text-align: center;
    max-width: 480px;
    padding: 0 1rem;
    margin-top: 0.5rem;
}

#enterBtn {
    margin-top: 2rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.85rem 2.5rem;
    border-radius: 9999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t-med);
    opacity: 0;
}

#enterBtn:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 36px rgba(245, 197, 66, 0.4);
}

/* =============================================
   Navigation
   ============================================= */
#navbar {
    transition: var(--t-fast);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(12, 4, 32, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.light-mode #navbar.scrolled {
    background: rgba(255, 250, 242, 0.94);
}

.nav-link {
    position: relative;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: var(--t-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--t-med);
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--gold);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* =============================================
   Sections
   ============================================= */
.section {
    padding: 7rem 0;
    position: relative;
}

@media (min-width: 1024px) {
    .section { padding: 9rem 0; }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header .title {
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    margin: 1.5rem 0 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.section-header .lede {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.sacred-divider {
    width: 160px;
    height: 28px;
    margin: 1.5rem auto;
    position: relative;
}

.sacred-divider::before,
.sacred-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sacred-divider::before { left: 0; }
.sacred-divider::after  { right: 0; }

.sacred-divider .gem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 18px var(--gold), 0 0 40px rgba(245, 197, 66, 0.5);
}

/* =============================================
   Hero
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 9rem 0 5rem;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.6;
}

.hero-orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--violet), transparent 70%);
    top: -10%;
    right: -10%;
    animation: orb-drift 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--ruby), transparent 70%);
    bottom: -8%;
    left: -6%;
    animation: orb-drift 24s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: 35%;
    left: 35%;
    opacity: 0.25;
    animation: orb-drift 18s ease-in-out infinite;
    animation-delay: -7s;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(40px, -30px); }
    66%      { transform: translate(-30px, 40px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 6rem;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 7.5vw, 6.75rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
}

.hero-title .accent-word {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
}

.hero-lede {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.92;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--line);
}

.hero-meta .stat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 900;
    display: block;
    letter-spacing: -0.03em;
    text-shadow: 0 0 24px rgba(245, 197, 66, 0.45);
}

.hero-meta .stat .lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-top: 0.6rem;
    display: block;
    font-weight: 600;
}

/* Hero portrait — gothic arch frame */
.portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 260px 260px 14px 14px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: var(--ink-soft);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(245, 197, 66, 0.12);
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.4s var(--ease);
}

.portrait:hover img { transform: scale(1.05); }

.portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.12) 0%, transparent 22%, transparent 70%, rgba(12, 4, 32, 0.85) 100%);
    pointer-events: none;
}

.portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.25rem 1.75rem 1.75rem;
    text-align: center;
    z-index: 2;
}

.portrait-caption .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.portrait-caption .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
}

/* Floating decorative gold cross */
.floating-cross {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a1500;
    font-size: 1.5rem;
    box-shadow: 0 16px 48px rgba(245, 197, 66, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 3;
    animation: float-medium 4s ease-in-out infinite;
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* =============================================
   Scripture Strip — Marquee
   ============================================= */
.scripture-marquee {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg,
            rgba(109, 40, 217, 0.10),
            rgba(29, 78, 216, 0.10) 30%,
            rgba(190, 18, 60, 0.10) 60%,
            rgba(245, 197, 66, 0.10));
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 55s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    text-transform: uppercase;
}

.marquee-track span em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    text-transform: none;
    font-size: 1.35rem;
    color: var(--text);
}

.marquee-track i {
    color: var(--gold);
    font-size: 0.85rem;
    filter: drop-shadow(0 0 10px var(--gold));
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   Service Times (vibrant cards)
   ============================================= */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    position: relative;
    padding: 3.25rem 2.25rem;
    border-radius: 1.5rem;
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    text-align: center;
    transition: var(--t-med);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, var(--gold-gradient));
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--card-glow, rgba(245, 197, 66, 0.18)), transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--line-strong);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.service-card.violet  { --card-color: var(--royal-gradient); --card-glow: rgba(109, 40, 217, 0.30); }
.service-card.gold    { --card-color: var(--gold-gradient);  --card-glow: rgba(245, 197, 66, 0.25); }
.service-card.ruby    { --card-color: var(--sunset-gradient);--card-glow: rgba(190, 18, 60, 0.28); }
.service-card.emerald { --card-color: var(--forest-gradient);--card-glow: rgba(4, 120, 87, 0.28); }

.service-card .icon-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--card-color, var(--gold-gradient));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.25);
    position: relative;
}

.service-card .icon-circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 197, 66, 0.3);
    animation: spin 24s linear infinite;
}

.service-card .day {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.service-card .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.service-card .time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-card .desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   Pull quote
   ============================================= */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
    }
}

.pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    line-height: 1.25;
    color: var(--text);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
}

.pull-quote::before {
    content: '\201C';
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: -1.5rem;
    opacity: 0.6;
    text-shadow: 0 0 40px rgba(245, 197, 66, 0.4);
}

.signature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.signature .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    padding: 2px;
    flex-shrink: 0;
}

.signature .avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.signature .avatar-inner img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.signature .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: -0.01em;
    font-weight: 800;
}

.signature .role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.3rem;
    font-weight: 700;
}

/* =============================================
   Ministries (vibrant)
   ============================================= */
.ministry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) { .ministry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ministry-grid { grid-template-columns: repeat(4, 1fr); } }

.ministry-card {
    position: relative;
    padding: 2.75rem 1.75rem;
    border-radius: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px);
    transition: var(--t-med);
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-tint, transparent);
    opacity: 0;
    transition: var(--t-med);
}

.ministry-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border, var(--gold));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.ministry-card:hover::before { opacity: 0.06; }

.ministry-card.violet  { --card-border: var(--violet-light); --card-tint: radial-gradient(circle at 50% 0%, var(--violet), transparent 70%); }
.ministry-card.sapphire{ --card-border: #60a5fa;             --card-tint: radial-gradient(circle at 50% 0%, var(--sapphire), transparent 70%); }
.ministry-card.ruby    { --card-border: #fb7185;             --card-tint: radial-gradient(circle at 50% 0%, var(--ruby), transparent 70%); }
.ministry-card.emerald { --card-border: #34d399;             --card-tint: radial-gradient(circle at 50% 0%, var(--emerald), transparent 70%); }

.ministry-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: var(--t-med);
}

.ministry-card.violet   .icon { background: linear-gradient(135deg, var(--violet), var(--violet-deep)); }
.ministry-card.sapphire .icon { background: linear-gradient(135deg, var(--sapphire), var(--sapphire-deep)); }
.ministry-card.ruby     .icon { background: linear-gradient(135deg, var(--ruby), var(--ruby-deep)); }
.ministry-card.emerald  .icon { background: linear-gradient(135deg, var(--emerald), var(--emerald-deep)); }

.ministry-card:hover .icon {
    transform: rotate(-6deg) scale(1.1);
}

.ministry-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.ministry-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ministry-card .link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--t-fast);
}

.ministry-card:hover .link { gap: 1rem; }

/* =============================================
   Events / Posters
   ============================================= */
.poster-frame {
    border: 1px solid var(--line);
    padding: 1.25rem;
    border-radius: 1.75rem;
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.06), rgba(245, 197, 66, 0.04));
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.poster-frame img { border-radius: 1rem; }

.poster-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.poster-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.poster-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line-strong);
    cursor: pointer;
    transition: var(--t-fast);
    border: none;
    padding: 0;
}

.poster-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 4px;
    box-shadow: 0 0 14px var(--gold);
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t-fast);
    backdrop-filter: blur(12px);
}

.icon-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 197, 66, 0.08);
    transform: scale(1.05);
}

/* =============================================
   Daily Verse
   ============================================= */
.verse-frame {
    border: 1px solid var(--line);
    padding: 1rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(245, 197, 66, 0.04));
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.verse-frame img { border-radius: 1rem; }

.checklist {
    list-style: none;
    margin: 2.5rem 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
}

.checklist li:last-child { border-bottom: 0; }

.checklist .check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #2a1500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(245, 197, 66, 0.4);
}

/* =============================================
   Countdown
   ============================================= */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 540px;
}

.countdown-cell {
    background:
        linear-gradient(160deg, rgba(245, 197, 66, 0.12), rgba(109, 40, 217, 0.06));
    border: 1px solid rgba(245, 197, 66, 0.20);
    border-radius: 1rem;
    text-align: center;
    padding: 1.5rem 0.5rem;
    backdrop-filter: blur(12px);
    transition: var(--t-fast);
}

.countdown-cell:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(245, 197, 66, 0.18);
}

.countdown-cell .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.45);
}

.countdown-cell .lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.7rem;
    display: block;
    font-weight: 700;
}

/* =============================================
   Sermon Messages (16:9)
   ============================================= */
.message-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px)  { .message-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .message-grid { grid-template-columns: repeat(4, 1fr); } }

.message-card {
    display: block;
    transition: var(--t-med);
}

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

.message-card .thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--t-med);
}

.message-card:hover .thumb {
    border-color: var(--gold);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(245, 197, 66, 0.18);
}

.message-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.message-card:hover .thumb img { transform: scale(1.08); }

.message-card .thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12, 4, 32, 0.85));
    pointer-events: none;
}

.message-card .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.message-card .play-btn span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #2a1500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--t-med);
    box-shadow: 0 14px 36px rgba(245, 197, 66, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transform: scale(0.85);
    opacity: 0;
}

.message-card:hover .play-btn span {
    transform: scale(1);
    opacity: 1;
}

.message-card .duration {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    background: rgba(12, 4, 32, 0.75);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
    z-index: 2;
}

.message-card .meta {
    padding: 1.5rem 0.5rem 0;
}

.message-card .part {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.message-card .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.25;
    transition: var(--t-fast);
    text-transform: uppercase;
}

.message-card:hover .title { color: var(--gold); }

/* =============================================
   Shorts (Reels)
   ============================================= */
.reel-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: var(--t-med);
    display: block;
    background: var(--surface);
}

.reel-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.reel-card .ratio {
    position: relative;
    padding-top: 177.77%;
    overflow: hidden;
}

.reel-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.reel-card:hover img { transform: scale(1.08); }

.reel-card .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(12, 4, 32, 0.85));
}

.reel-card .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-card .play span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #2a1500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--t-med);
    box-shadow: 0 14px 36px rgba(245, 197, 66, 0.45);
}

.reel-card:hover .play span {
    transform: scale(1.12);
}

.reel-card .label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =============================================
   Gallery
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: var(--t-med);
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.gallery-card:hover img { transform: scale(1.10); }

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 4, 32, 0.94));
}

.gallery-card .label {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    z-index: 2;
}

.gallery-card .label .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.gallery-card .label .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: #fff;
    font-weight: 500;
}

/* =============================================
   Form
   ============================================= */
.form-card {
    background:
        linear-gradient(160deg, rgba(109, 40, 217, 0.10), rgba(245, 197, 66, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line-strong);
    border-radius: 1.75rem;
    padding: 2.75rem;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.field { margin-bottom: 1.5rem; }

.field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 0.85rem 0;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    transition: var(--t-fast);
    outline: none;
}

.input::placeholder {
    color: var(--text-subtle);
    font-style: italic;
}

.input:focus {
    border-bottom-color: var(--gold);
    box-shadow: 0 4px 0 -3px var(--gold);
}

textarea.input { resize: vertical; min-height: 100px; }

select.input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5c542' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 10px;
    padding-right: 1.5rem;
}

select.input option { background: var(--ink); color: var(--text); }

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .field-row { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   Contact list
   ============================================= */
.contact-list {
    list-style: none;
    margin-top: 3rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    transition: var(--t-fast);
}

.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list li:hover .icon-wrap { transform: scale(1.08); }

.contact-list .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: var(--gold-gradient);
    color: #2a1500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
    transition: var(--t-med);
    box-shadow: 0 10px 24px rgba(245, 197, 66, 0.32);
}

.contact-list .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-list .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    border-top: 1px solid var(--line);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stained-gradient);
    background-size: 300% 100%;
    animation: stained-flow 14s ease-in-out infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand img { height: 64px; margin-bottom: 1.25rem; }

.footer-brand .name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-brand .desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 340px;
    line-height: 1.65;
    font-style: italic;
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.85rem; }
.footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; text-align: left; }
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-subtle);
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.social-row { display: flex; gap: 0.7rem; }

.social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-fast);
    font-size: 0.9rem;
    background: var(--surface);
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.25);
}

/* =============================================
   Mobile Menu
   ============================================= */
#mobileMenu {
    position: fixed;
    inset: 0;
    background: rgba(12, 4, 32, 0.96);
    backdrop-filter: blur(28px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.85rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--t-slow);
    padding: 2rem;
}

#mobileMenu.open { opacity: 1; visibility: visible; }

#mobileMenu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: -0.01em;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--t-fast);
}

#mobileMenu a:hover { color: var(--gold); }

#mobileClose {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

/* =============================================
   Back to Top
   ============================================= */
#backToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    visibility: hidden;
    transition: var(--t-med);
    z-index: 999;
    font-size: 0.95rem;
    box-shadow: 0 14px 32px rgba(245, 197, 66, 0.4);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-5px) scale(1.08);
}

/* =============================================
   Scrollbar
   ============================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-deeper); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* =============================================
   Mobile Responsive
   ============================================= */

/* Tablet and below */
@media (max-width: 1024px) {
    .section { padding: 5rem 0; }

    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .hero-grid { gap: 3rem; }

    .editorial-grid { gap: 3rem; }

    .section-header { margin-bottom: 3.5rem; }

    .pull-quote { font-size: clamp(1.6rem, 3.2vw, 2.6rem); }

    .pull-quote::before {
        font-size: 4rem;
        margin-bottom: -1rem;
    }

    .hero-orb-3 { display: none; }

    .marquee-track span { font-size: 0.9rem; }
    .marquee-track span em { font-size: 1.15rem; }
}

/* Phones */
@media (max-width: 640px) {
    /* Layout */
    .section { padding: 4rem 0; }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-grid { gap: 2.5rem; }
    .editorial-grid { gap: 2rem; }

    .section-header { margin-bottom: 2.5rem; }
    .section-header .title { margin: 1rem 0; }
    .section-header .lede { font-size: 1rem; line-height: 1.55; }

    .sacred-divider { width: 120px; margin: 1rem auto; }
    .sacred-divider::before,
    .sacred-divider::after { width: 44px; }

    /* Hero */
    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
        margin: 1rem 0 1.5rem;
        line-height: 1;
    }

    .hero-lede {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
        line-height: 1.55;
    }

    .hero-meta {
        gap: 1.5rem 1.75rem;
        padding-top: 1.75rem;
        margin-top: 2rem;
    }

    .hero-meta .stat .num { font-size: 2rem; }
    .hero-meta .stat .lbl { font-size: 0.62rem; letter-spacing: 0.14em; }

    /* Portrait */
    .portrait { aspect-ratio: 4 / 4.6; border-radius: 180px 180px 12px 12px; }

    .portrait-caption {
        padding: 1.5rem 1rem 1.25rem;
    }

    .portrait-caption .role { font-size: 0.6rem; letter-spacing: 0.18em; }
    .portrait-caption .name { font-size: 1.2rem; }

    .floating-cross {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.1rem !important;
        top: -14px !important;
        right: -14px !important;
    }

    /* Orbs — soften on mobile */
    .hero-orb-1 { width: 360px; height: 360px; }
    .hero-orb-2 { width: 320px; height: 320px; }

    /* Scripture marquee */
    .scripture-marquee { padding: 1.25rem 0; }
    .marquee-track { gap: 2.5rem; }
    .marquee-track span { font-size: 0.78rem; gap: 0.75rem; }
    .marquee-track span em { font-size: 0.95rem; }

    /* Service cards */
    .service-grid { gap: 1.5rem; }

    .service-card {
        padding: 2.5rem 1.75rem;
    }

    .service-card[style*="translateY"] { transform: none !important; }

    .service-card .icon-circle {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .service-card .name { font-size: 1.3rem; }
    .service-card .time { font-size: 2.2rem; }
    .service-card .desc { font-size: 0.88rem; }

    /* Pull quote */
    .pull-quote { font-size: clamp(1.4rem, 5.5vw, 1.85rem); margin-bottom: 1.75rem; }
    .pull-quote::before {
        font-size: 3.2rem;
        margin-bottom: -0.5rem;
    }

    .signature { gap: 1rem; padding-top: 1.5rem; }
    .signature .avatar { width: 46px; height: 46px; }
    .signature .name { font-size: 1rem; }
    .signature .role { font-size: 0.6rem; letter-spacing: 0.16em; }

    /* Countdown */
    .countdown { gap: 0.65rem; max-width: 100%; }
    .countdown-cell { padding: 1rem 0.35rem; border-radius: 0.75rem; }
    .countdown-cell .num { font-size: 1.65rem; }
    .countdown-cell .lbl { font-size: 0.52rem; letter-spacing: 0.14em; margin-top: 0.45rem; }

    /* Ministry */
    .ministry-grid { gap: 1.25rem; }
    .ministry-card { padding: 2rem 1.5rem; }
    .ministry-card .icon {
        width: 56px;
        height: 56px;
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
        border-radius: 1rem;
    }
    .ministry-card h4 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .ministry-card p { font-size: 0.88rem; margin-bottom: 1.25rem; }

    /* Events / Poster */
    .poster-frame { padding: 0.6rem; border-radius: 1.25rem; }
    .poster-controls { gap: 0.85rem; margin-top: 1.75rem; }
    .icon-btn { width: 42px; height: 42px; }

    /* Daily Verse */
    .verse-frame { padding: 0.6rem; border-radius: 1.25rem; }

    .checklist { margin: 1.75rem 0; }
    .checklist li { font-size: 1rem; gap: 0.85rem; padding: 0.85rem 0; }
    .checklist .check { width: 28px; height: 28px; font-size: 0.62rem; }

    /* Messages */
    .message-grid { gap: 1.5rem; }
    .message-card .meta { padding-top: 1.1rem; padding-left: 0.25rem; }
    .message-card .title { font-size: 1.05rem; }

    /* Reels */
    .reel-card .play span {
        width: 52px;
        height: 52px;
        font-size: 0.95rem;
    }
    .reel-card .label {
        bottom: 1rem;
        left: 1rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    /* Gallery */
    .gallery-grid { gap: 1.25rem; }
    .gallery-card { aspect-ratio: 4 / 4.5; border-radius: 1.25rem; }
    .gallery-card .label { bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
    .gallery-card .label .title { font-size: 1.2rem; }
    .gallery-card .label .tag { font-size: 0.6rem; letter-spacing: 0.16em; }

    /* Form */
    .form-card {
        padding: 1.75rem 1.25rem;
        border-radius: 1.25rem;
    }
    .field { margin-bottom: 1.15rem; }
    .field label { font-size: 0.62rem; letter-spacing: 0.16em; margin-bottom: 0.5rem; }
    .input { font-size: 1rem; padding: 0.7rem 0; }

    /* Contact list */
    .contact-list { margin-top: 2rem; }
    .contact-list li { gap: 1rem; padding: 1.15rem 0; }
    .contact-list .icon-wrap { width: 44px; height: 44px; font-size: 0.92rem; }
    .contact-list .label { font-size: 0.6rem; letter-spacing: 0.16em; }
    .contact-list .value { font-size: 1.02rem; }

    /* Footer */
    .footer { padding: 3.5rem 0 1.75rem; }
    .footer-grid { gap: 2.25rem; margin-bottom: 2.5rem; }
    .footer-brand img { height: 52px; }
    .footer-brand .name { font-size: 1.15rem; }
    .footer-brand .desc { font-size: 0.95rem; }
    .footer-col h5 { margin-bottom: 1rem; font-size: 0.66rem; }
    .footer-col li { margin-bottom: 0.65rem; }
    .footer-bottom p { font-size: 0.62rem; letter-spacing: 0.08em; }

    /* Buttons */
    .btn { padding: 0.95rem 1.6rem; font-size: 0.72rem; letter-spacing: 0.1em; }

    /* Eyebrow */
    .eyebrow { font-size: 0.66rem; letter-spacing: 0.18em; }
    .eyebrow::before, .eyebrow.centered::after { width: 24px; }

    /* Back to top */
    #backToTop {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    /* Nav */
    #navbar { padding: 1rem 1.25rem; }

    /* Mobile menu */
    #mobileMenu { gap: 1.4rem; }
    #mobileMenu a { font-size: 1.35rem; }

    /* Preloader */
    .preloader-cross { width: 64px; height: 64px; margin-bottom: 1.5rem; }
    .preloader-cross .icon { font-size: 2rem; }
    #preloader .preloader-text { font-size: 0.72rem; letter-spacing: 0.16em; }
    #preloader .preloader-verse { font-size: 0.95rem; max-width: 320px; }
}

/* Small phones */
@media (max-width: 380px) {
    .section { padding: 3.25rem 0; }

    .hero-title { font-size: 2.1rem; }

    .hero-meta .stat .num { font-size: 1.75rem; }
    .hero-meta .stat .lbl { font-size: 0.58rem; }

    .countdown-cell .num { font-size: 1.35rem; }
    .countdown-cell .lbl { font-size: 0.46rem; letter-spacing: 0.1em; }

    .service-card { padding: 2rem 1.25rem; }
    .service-card .time { font-size: 1.9rem; }

    .section-header .title { font-size: 1.85rem; }

    .ministry-card { padding: 1.75rem 1.25rem; }

    .footer-brand img { height: 46px; }
}

/* =============================================
   Reduce Motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
