/* ============================================
   Omega Healing Centre Church – Main Styles
   Aesthetic: Sacred Elegance – brand purple & warm gold
   Fonts: Ubuntu / Exo 2 (display) + Montserrat (body)
   ============================================ */

:root {
    --navy:        #431D53;
    --navy-mid:    #4F2271;
    --navy-light:  #512989;
    --gold:        #C9983A;
    --gold-light:  #E5B96A;
    --gold-pale:   #F5E6C8;
    --cream:       #FAF7F2;
    --white:       #FFFFFF;
    --text-dark:   #221E1F;
    --text-mid:    #522B57;
    --text-light:  #863A96;
    --coral:       #DE6EA1;
    --rose:        #9F2B67;
    --teal:        #512989;
    --lavender:    #863A96;

    --font-display: 'Ubuntu', 'Exo 2', sans-serif;
    --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

    --shadow-sm:  0 2px 8px rgba(67,29,83,0.10);
    --shadow-md:  0 8px 32px rgba(67,29,83,0.16);
    --shadow-lg:  0 20px 60px rgba(67,29,83,0.22);
    --radius:     12px;
    --radius-lg:  20px;

    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

    /* Motion polish */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Motion & accessibility ─────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* Scroll progress (injected by JS) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1200;
    background: linear-gradient(90deg, rgba(201,152,58,0.0), rgba(201,152,58,0.25), rgba(201,152,58,0.0));
    pointer-events: none;
}
.scroll-progress > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    box-shadow: 0 8px 18px rgba(201,152,58,0.35);
    transform-origin: left center;
    border-radius: 999px;
}

/* ─── Typography ─────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.5rem,6vw,5rem); font-weight: 600; }
h2 { font-size: clamp(2rem,4vw,3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 600; }
em { font-style: italic; color: var(--gold); }
p { margin-bottom: 1rem; color: var(--text-mid); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ─── Layout ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ─── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn {
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.btn::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -60%;
    width: 60%;
    height: 160%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.btn:hover::after { opacity: 1; animation: btnSheen 0.8s var(--ease-out) both; }
@keyframes btnSheen { to { left: 120%; } }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,152,58,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.light { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline.light:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Labels ─────────────────────────── */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,152,58,0.12);
    padding: 0.35rem 1rem; border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(201,152,58,0.25);
}

.section-title { margin-bottom: 1.25rem; }
.section-desc { max-width: 560px; font-size: 1.05rem; }

.section-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-header.centered { flex-direction: column; align-items: center; text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ─── Ambient orbs (headers) ─────────────────── */
.section-header,
.page-hero-content {
    position: relative;
    isolation: isolate;
}
.section-header::before,
.section-header::after,
.page-hero-content::before {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(22px);
    opacity: 0.55;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform, opacity;
}
.section-header::before {
    width: 220px;
    height: 220px;
    left: -40px;
    top: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(201,152,58,0.32), transparent 60%);
    animation: orbFloatA 12s var(--ease-out) infinite;
}
.section-header::after {
    width: 260px;
    height: 260px;
    right: -80px;
    top: -90px;
    background: radial-gradient(circle at 50% 50%, rgba(42,125,140,0.18), transparent 62%);
    animation: orbFloatB 14s var(--ease-out) infinite;
    opacity: 0.42;
}
.page-hero-content::before {
    width: 360px;
    height: 360px;
    left: -120px;
    top: -140px;
    background: radial-gradient(circle at 30% 30%, rgba(201,152,58,0.22), transparent 62%);
    animation: orbFloatA 16s var(--ease-out) infinite;
    opacity: 0.35;
}
@keyframes orbFloatA {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(14px, 10px, 0) scale(1.04); }
}
@keyframes orbFloatB {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(-16px, 14px, 0) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
    .section-header::before,
    .section-header::after,
    .page-hero-content::before {
        animation: none !important;
    }
}

/* ─── Navbar ─────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(128,12,141,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,152,58,0.15);
    transition: var(--transition);
}
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,152,58,0.35), transparent);
    opacity: 0.75;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; gap: 2rem;
    height: 72px;
}
.nav-brand {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--white); flex-shrink: 0;
}
.brand-icon {
    width: 38px; height: 38px;
    background: transparent;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--navy); font-weight: 700;
}
.logo-wrap { padding: 0; overflow: hidden; background: transparent; }
.logo-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-icon.large { width: 48px; height: 48px; font-size: 1.4rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }

/* Fit all menu items on one line on desktop */
@media (min-width: 1025px) {
    .brand-sub { display: none; }
    .brand-name { font-size: 0.82rem; }
    .nav-container { gap: 0.35rem; }
    .nav-panel { gap: 0.2rem; }
    .nav-links { flex-wrap: nowrap; }
    .nav-links a { padding: 0.45rem 0.6rem; font-size: 0.8rem; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.78rem; }
}

.nav-links {
    display: flex; align-items: center; gap: 0.25rem;
    list-style: none; margin: 0; padding: 0;
}
.nav-links a {
    padding: 0.5rem 0.85rem; border-radius: 6px;
    font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.35rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229,185,106,0.95), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease-out);
    opacity: 0.9;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(201,152,58,0.15);
}
.nav-links a.active { color: var(--gold-light); }

.nav-cta { background: var(--gold); color: var(--navy); padding: 0.55rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.82rem; white-space: nowrap; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s var(--ease-out), opacity 0.2s ease; transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: links + CTA live in a flex row; mobile drawer reuses the same panel */
.nav-panel {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    min-width: 0;
    margin-left: auto;
}
.nav-backdrop {
    display: none;
}

/* ─── Hero ───────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--navy);
    /* Override global `section { padding: 6rem 0 }` — hero only needs top offset for fixed nav */
    padding: 72px 0 3.5rem;
    box-sizing: border-box;
    margin: 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: var(--ohc-img-hero_1, url('/wp-content/uploads/2026/05/CHURCH.jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.03);
    animation: heroSlideShow 30s infinite;
}
.hero-slide.slide-1 { opacity: 0; }
.hero-slide.slide-1 { background-image: var(--ohc-img-hero_1, url('/wp-content/uploads/2026/05/CHURCH.jpg')); animation-delay: 0s; }
.hero-slide.slide-2 { background-image: var(--ohc-img-hero_2, url('/wp-content/uploads/2026/05/IMG_0159.jpg')); animation-delay: 6s; }
.hero-slide.slide-3 { background-image: var(--ohc-img-hero_3, url('/wp-content/uploads/2026/05/BW8A0063.jpg')); animation-delay: 12s; }
.hero-slide.slide-4 { background-image: var(--ohc-img-hero_4, url('/wp-content/uploads/2026/05/FB_IMG_1732119943192.jpg')); animation-delay: 18s; }
.hero-slide.slide-5 { background-image: var(--ohc-img-hero_5, url('/wp-content/uploads/2026/05/IMG_9893.jpg')); animation-delay: 24s; }
@keyframes heroSlideShow {
    0% { opacity: 0; transform: scale(1.03); }
    3% { opacity: 0.75; }
    16% { opacity: 0.75; transform: scale(1.08); }
    20% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-slide {
		animation: none !important;
		opacity: 0 !important;
		transform: none !important;
	}
	.hero-slide.slide-1 {
		opacity: 0.75 !important;
	}
}

@media (max-width: 768px) {
	.hero-slide {
		animation: none !important;
		transform: none !important;
		opacity: 0 !important;
	}
	.hero-slide.slide-1 {
		opacity: 0.75 !important;
	}
}
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.hero-bg::after {
    display: none;
}
@keyframes heroBreath {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.65; }
    50% { transform: translate3d(0,-1.5%,0) scale(1.03); opacity: 0.85; }
}
.hero-overlay {
    display: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    min-height: 0;
    padding: 0 2rem 0.5rem;
    animation: fadeUp 1s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    flex: 0 0 auto;
}
.hero-copy-slides,
[data-hero-text-slides] {
    width: 100%;
    max-width: 56rem;
    margin: 0.75rem auto 0.5rem;
}
.hero-copy-track {
    display: grid;
    place-items: center;
    text-align: center;
    min-height: clamp(12rem, 28vh, 17rem);
}
.hero-slide-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0.85rem auto 0;
}
.hero-copy-slide .hero-slide-headline + .hero-slide-desc,
.hero-copy-slide .hero-title + .hero-slide-desc {
    margin-top: 1rem;
}
.hero-copy-slide {
    grid-area: 1 / 1;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    pointer-events: none;
}
.hero-copy-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}
.hero-slide-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0;
}
.hero-title--slide {
    margin: 0;
    font-size: clamp(2.45rem, 6vw, 5rem);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 8px 36px rgba(0,0,0,0.45);
}
.hero-slide-headline {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.2vw, 4.1rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 8px 36px rgba(0,0,0,0.45);
}
.hero-slide-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.9vw, 3.65rem);
    font-weight: 700;
    color: rgba(255,255,255,0.97);
    margin: 0;
    line-height: 1.12;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 8px 36px rgba(0,0,0,0.42);
}
.hero-slide-tagline--emphasis {
    color: var(--gold-light);
}
.hero-slide-desc {
    font-size: clamp(1.05rem, 2.1vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
@media (prefers-reduced-motion: reduce) {
    .hero-copy-slide {
        transition: none;
    }
}
.hero-title {
    color: var(--white);
    margin: 1rem 0 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-light); }
.hero-copy-slide .hero-title {
    margin: 0;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 2.5rem; }
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

@media (min-width: 769px) {
    .hero {
        padding: 72px 0 4.5rem;
    }
    .hero-content {
        padding: 0 2.5rem 0.75rem;
        max-width: 960px;
    }
    .hero-content::before {
        content: '';
        display: block;
        flex: 1 1 auto;
        min-height: 18vh;
        max-height: 38vh;
        width: 100%;
        pointer-events: none;
    }
    .hero-copy-track {
        min-height: auto;
    }
    .hero-copy-slides,
    [data-hero-text-slides] {
        margin-top: 0;
    }
    .hero-actions {
        margin-top: 2rem;
        margin-bottom: 0;
    }
    .hero .hero-actions a,
    .hero .hero-actions .elementor-button,
    .hero .hero-actions .elementor-button-link,
    .hero .hero-actions button,
    .hero .hero-actions .btn,
    .hero .hero-actions .elementor-button-wrapper .elementor-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        padding: 0.9rem 1.75rem;
        text-decoration: none !important;
        border: 2px solid transparent;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
        transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }
    .hero .hero-actions a:first-child,
    .hero .hero-actions a:only-child,
    .hero .hero-actions .elementor-button:first-child,
    .hero .hero-actions .elementor-button:only-of-type,
    .hero .hero-actions .btn-primary,
    .hero .hero-actions > *:first-child a,
    .hero .hero-actions > *:only-child a,
    .hero .hero-actions > *:first-child .elementor-button,
    .hero .hero-actions .elementor-button-wrapper:first-child .elementor-button,
    .hero .hero-actions .elementor-button-wrapper:only-of-type .elementor-button {
        background: linear-gradient(135deg, #e8c06a 0%, #c9983a 48%, #a67c2e 100%) !important;
        color: #2a1038 !important;
        border-color: rgba(255, 236, 190, 0.55) !important;
        box-shadow:
            0 8px 26px rgba(201, 152, 58, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    .hero .hero-actions a:last-child:not(:only-child),
    .hero .hero-actions .elementor-button:last-child:not(:only-of-type),
    .hero .hero-actions .btn-outline:last-child,
    .hero .hero-actions > *:last-child:not(:only-child) a,
    .hero .hero-actions > *:last-child:not(:only-child) .elementor-button {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.55) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    .hero .hero-actions a:hover,
    .hero .hero-actions .elementor-button:hover {
        transform: translateY(-2px);
        filter: brightness(1.06);
    }
}
.hero-service-times {
    display: flex; align-items: center; gap: 1.5rem; justify-content: center;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,152,58,0.2);
    border-radius: 60px; padding: 0.85rem 2rem;
    backdrop-filter: blur(10px);
}
.service-time { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.service-time .day { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.service-time .time { font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.hero-service-times .divider { color: rgba(201,152,58,0.4); font-size: 1.2rem; }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; width: 44px; height: 44px;
    background: rgba(201,152,58,0.15); border: 1px solid rgba(201,152,58,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: none; } }
@keyframes bounce { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(8px); } }

/* ─── Page Hero ──────────────────────────────── */
.page-hero {
    position: relative; padding: 9rem 0 5rem; margin-top: 0;
    background-color: var(--navy);
    background-image: var(--ohc-img-page_hero, url('/wp-content/uploads/2026/05/490472671_9991672444198343_7756687227967691206_n.jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 100% at 60% 50%, rgba(201,152,58,0.15) 0%, transparent 70%);
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 20% 30%, rgba(201,152,58,0.10), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(67,29,83,0.95) 0%, rgba(81,41,137,0.86) 100%);
}
.page-hero-content {
    position: relative; z-index: 2;
    color: var(--white);
}
.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 520px; margin-bottom: 0; }

/* Breadcrumb hero: keep title only (hide description copy). */
.page-hero-content > p {
    display: none;
}

/* ─── Welcome Section ────────────────────────── */
.welcome-section { background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.welcome-image { position: relative; }
.image-frame { position: relative; }
.image-placeholder {
    aspect-ratio: 4/3; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; color: rgba(255,255,255,0.5);
}
.cross-icon { font-size: 4rem; color: var(--gold); opacity: 0.6; }
.image-accent {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    width: 60%; height: 60%; border-radius: var(--radius-lg);
    background: rgba(201,152,58,0.1); border: 1px solid rgba(201,152,58,0.2);
    z-index: -1;
}
.stat-card {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: var(--gold); color: var(--navy);
    padding: 1.25rem 1.75rem; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.stat-number { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }
.welcome-pillars { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.pillar { display: flex; align-items: center; gap: 1rem; }
.pillar-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.pillar span { font-size: 0.82rem; color: var(--text-light); }

/* ─── Services Section ───────────────────────── */
.services-section { position: relative; background: var(--navy); overflow: hidden; }
.services-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,152,58,0.08) 0%, transparent 70%);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center;
    transition: var(--transition);
}
.service-card:hover { border-color: rgba(201,152,58,0.3); transform: translateY(-4px); }
.service-card.highlighted { background: rgba(201,152,58,0.12); border-color: rgba(201,152,58,0.3); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.5rem; }
.service-card ul { list-style: none; margin-bottom: 1.5rem; }
.service-card li { color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 0.3rem 0; }
.services-section .section-badge { }
.services-section .section-title { color: var(--white); }
.services-section .section-desc { color: rgba(255,255,255,0.7); }

/* ─── Sermons ────────────────────────────────── */
.sermons-section { background: var(--cream); }
.sermons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sermons-grid.full { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.sermon-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.sermon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sermon-thumb { position: relative; aspect-ratio: 16/9; }
.sermon-thumb-bg { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--hue,220),50%,30%), hsl(calc(var(--hue,220)+40),50%,20%)); }
.sermon-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: rgba(255,255,255,0.8); cursor: pointer; transition: var(--transition); }
.sermon-play:hover { color: var(--white); transform: scale(1.1); }
.sermon-series { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(0,0,0,0.6); color: var(--white); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.sermon-body { padding: 1.5rem; }
.sermon-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
.sermon-date, .sermon-speaker { font-size: 0.75rem; color: var(--text-light); }
.sermon-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.sermon-body p { font-size: 0.875rem; margin-bottom: 1rem; }
.sermon-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.sermon-links { display: flex; gap: 1.25rem; }

/* ─── Verse ──────────────────────────────────── */
.verse-section { background: var(--gold); padding: 4rem 0; }
.verse-card { display: flex; align-items: center; gap: 2rem; max-width: 760px; margin: 0 auto; text-align: center; flex-direction: column; }
.verse-text { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2rem); font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 0.75rem; }
.verse-ref { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-light); }
.verse-decoration { font-family: var(--font-display); font-size: 6rem; color: rgba(67,29,83,0.18); line-height: 0.5; }

/* ─── Ministries ─────────────────────────────── */
.ministries-section { background: var(--white); }
.ministries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ministry-card {
    padding: 2.5rem 2rem; border-radius: var(--radius-lg);
    background: var(--cream); border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); text-align: center;
}
.ministry-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.ministry-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 30% 20%, rgba(201,152,58,0.16), transparent 45%),
                radial-gradient(circle at 80% 60%, rgba(42,125,140,0.10), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    pointer-events: none;
}
.ministry-card:hover::before { opacity: 1; }
.ministry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ministry-card.coral:hover, .ministry-card.coral .ministry-link { color: var(--coral); }
.ministry-card.rose:hover, .ministry-card.rose .ministry-link { color: var(--rose); }
.ministry-card.gold:hover, .ministry-card.gold .ministry-link { color: var(--gold); }
.ministry-card.navy:hover, .ministry-card.navy .ministry-link { color: var(--navy); }
.ministry-card.teal:hover, .ministry-card.teal .ministry-link { color: var(--teal); }
.ministry-card.lavender:hover, .ministry-card.lavender .ministry-link { color: var(--lavender); }
.ministry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ministry-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.ministry-card p { font-size: 0.875rem; margin-bottom: 1rem; }
.ministry-link { font-size: 0.85rem; font-weight: 600; }

/* ─── Events ─────────────────────────────────── */
.events-section { position: relative; background: var(--navy); overflow: hidden; }
.events-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 30% 50%, rgba(201,152,58,0.08) 0%, transparent 70%); }
.events-section .section-title { color: var(--white); }
.events-list { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
.event-item {
    display: flex; align-items: center; gap: 2rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 1.5rem 2rem;
    transition: var(--transition);
}
.event-item:hover { border-color: rgba(201,152,58,0.3); background: rgba(255,255,255,0.08); }
.event-date {
    display: flex; flex-direction: column; align-items: center;
    min-width: 56px; text-align: center;
    background: rgba(201,152,58,0.15); border: 1px solid rgba(201,152,58,0.25);
    border-radius: 10px; padding: 0.75rem 0.5rem;
}
.event-day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.event-month { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }
.event-year { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.event-info { flex: 1; }
.event-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(201,152,58,0.15); padding: 0.2rem 0.6rem; border-radius: 20px; margin-bottom: 0.5rem; }
.event-info h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; }
.event-details { display: flex; gap: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ─── Give ───────────────────────────────────── */
.give-section { background: var(--cream); }
.give-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.give-text p { font-size: 0.95rem; }
.give-text em { font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.give-methods { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
.give-method { background: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-sm); }
.give-method strong { color: var(--text-dark); font-size: 0.875rem; }
.give-method span { font-size: 0.85rem; color: var(--text-light); }
.give-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; color: var(--white);
    box-shadow: var(--shadow-lg);
}
.give-icon { font-size: 5rem; margin-bottom: 1rem; }
.give-visual p { color: rgba(255,255,255,0.7); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; margin-bottom: 0; }

/* ─── Location ───────────────────────────────── */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: stretch; margin-top: 3rem; }
.map-placeholder {
    background: var(--cream); border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 3rem; text-align: center; gap: 1rem; min-height: 350px;
}
.map-pin { font-size: 4rem; }
.map-placeholder p { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.location-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.35rem; }
.info-block p { font-size: 0.9rem; margin-bottom: 0; }

/* ─── Footer ─────────────────────────────────── */
.footer { background: #800c8d; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 4rem; padding: 5rem 4rem 4rem; max-width: 1280px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.75rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 4rem; max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0; }

/* ─── About ──────────────────────────────────── */
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.story-card-stack { display: flex; flex-direction: column; gap: 1rem; }
.story-card { background: var(--cream); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); padding: 1.5rem; }
.story-card.accent { background: var(--navy); color: var(--white); }
.story-card.accent .story-stat { color: var(--gold); }
.story-card.accent p { color: rgba(255,255,255,0.7); }
.story-year { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.story-card.accent .story-year { color: rgba(255,255,255,0.5); }
.story-stat { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.story-card p { font-size: 0.85rem; margin-top: 0.35rem; margin-bottom: 0; }

.beliefs-section { position: relative; background: var(--navy); overflow: hidden; }
.beliefs-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,152,58,0.08) 0%, transparent 70%); }
.beliefs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.belief-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.belief-card:hover { border-color: rgba(201,152,58,0.3); }
.belief-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.belief-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.belief-card p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-bottom: 0; }
.beliefs-section .section-title, .beliefs-section .section-badge { color: var(--white); }

.leadership-section { background: var(--white); }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.leader-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.leader-avatar { background: linear-gradient(135deg, var(--navy), var(--navy-light)); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.avatar-placeholder { font-size: 3rem; opacity: 0.5; color: var(--gold); }
.leader-info { padding: 1.75rem; }
.leader-info h3 { margin-bottom: 0.25rem; font-size: 1.3rem; }
.leader-title { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.leader-info p { font-size: 0.875rem; margin-bottom: 0; }

.vision-section { background: var(--cream); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vision-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border-bottom: 4px solid transparent; border-color: var(--gold-pale); transition: var(--transition); }
.vision-card.accent { background: var(--navy); }
.vision-card.accent h3, .vision-card.accent p { color: rgba(255,255,255,0.85); }
.vision-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vision-icon { font-size: 2rem; margin-bottom: 1rem; }
.vision-card h3 { margin-bottom: 0.75rem; }
.vision-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ─── Sermons Page ────────────────────────────── */
.sermons-page-section { background: var(--cream); }
.filter-bar { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; padding: 1.5rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.filter-group { display: flex; flex-direction: column; gap: 0.35rem; }
.filter-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.filter-select { padding: 0.5rem 1rem; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; font-family: var(--font-body); font-size: 0.875rem; background: var(--cream); color: var(--text-dark); cursor: pointer; }
.featured-sermon { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 4rem; box-shadow: var(--shadow-md); }
.featured-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.featured-thumb-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.featured-play-btn { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--gold); color: var(--navy); padding: 0.6rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; cursor: pointer; z-index: 2; }
.featured-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--navy); padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; z-index: 2; }
.featured-info { padding: 2.5rem 2.5rem 2.5rem 0; }
.sermon-series-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(201,152,58,0.1); padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.75rem; }
.sermon-meta-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--text-light); margin: 0.75rem 0 1rem; }
.sermon-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.grid-section-title { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.875rem; color: var(--text-mid); background: var(--white); border: 1px solid rgba(0,0,0,0.1); transition: var(--transition); }
.page-btn.active, .page-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ─── Events Page ────────────────────────────── */
.events-page-section { background: var(--cream); }
.events-page-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.event-full-card { display: flex; gap: 2rem; background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.event-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ─── Soft cursor spotlight (cards) ───────────── */
.spotlight {
    position: relative;
    overflow: hidden;
}
.spotlight::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(
        220px circle at var(--mx, 50%) var(--my, 50%),
        rgba(229,185,106,0.16),
        rgba(201,152,58,0.08) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.25s var(--ease-out);
    pointer-events: none;
    mix-blend-mode: soft-light;
}
.spotlight:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .spotlight::after { display: none; }
}
.event-date-block { display: flex; flex-direction: column; align-items: center; background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 1rem; min-width: 70px; text-align: center; }
.event-date-block .event-day { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.event-date-block .event-month { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.event-date-block .event-year { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }
.event-content h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.event-detail-row { display: flex; gap: 1.5rem; font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.75rem; }
.event-content p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.event-tag-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 20px; margin-bottom: 0.5rem; background: rgba(201,152,58,0.12); color: var(--gold); }

/* ─── Contact ────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.875rem; margin-bottom: 0; }
.prayer-request-box { display: flex; gap: 1rem; background: rgba(201,152,58,0.1); border: 1px solid rgba(201,152,58,0.2); border-radius: var(--radius); padding: 1.25rem; margin-top: 2rem; }
.prayer-icon { font-size: 1.75rem; }
.prayer-request-box h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.prayer-request-box p { font-size: 0.82rem; margin-bottom: 0; }
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem; border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem;
    background: var(--cream); color: var(--text-dark); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-error { font-size: 0.75rem; color: #e05555; }
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }

/* ─── Ministries Page ────────────────────────── */
.ministries-page-section { background: var(--cream); }
.ministries-page-section .container { display: flex; flex-direction: column; gap: 2rem; }
.ministry-full-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.ministry-full-card:hover { box-shadow: var(--shadow-md); }
.ministry-full-header { display: flex; align-items: center; gap: 1.5rem; padding: 2rem 2.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.ministry-full-header.coral { border-left: 4px solid var(--coral); }
.ministry-full-header.gold { border-left: 4px solid var(--gold); }
.ministry-full-header.rose { border-left: 4px solid var(--rose); }
.ministry-full-header.navy { border-left: 4px solid var(--navy); }
.ministry-full-header.teal { border-left: 4px solid var(--teal); }
.ministry-full-header.lavender { border-left: 4px solid var(--lavender); }
.ministry-full-card.coral .ministry-full-header { border-left: 4px solid var(--coral); }
.ministry-full-card.gold .ministry-full-header { border-left: 4px solid var(--gold); }
.ministry-full-card.rose .ministry-full-header { border-left: 4px solid var(--rose); }
.ministry-full-card.navy .ministry-full-header { border-left: 4px solid var(--navy); }
.ministry-full-card.teal .ministry-full-header { border-left: 4px solid var(--teal); }
.ministry-full-card.lavender .ministry-full-header { border-left: 4px solid var(--lavender); }
.ministry-full-icon { font-size: 2.5rem; }
.ministry-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.ministry-full-header h2 { font-size: 1.6rem; }
.ministry-full-body { padding: 2rem 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 2rem; align-items: start; }
.ministry-full-body p { margin-bottom: 0; font-size: 0.9rem; }
.ministry-programs h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.5rem; }
.ministry-programs ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.ministry-programs li { font-size: 0.875rem; color: var(--text-mid); }

/* ─── Give Page ──────────────────────────────── */
.give-page-section { background: var(--cream); }
.give-page-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.give-verse-block { background: var(--navy); border-radius: var(--radius); padding: 2rem; margin-bottom: 2.5rem; }
.give-verse-block blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 0.75rem; }
.give-verse-block cite { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.give-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.give-method-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); text-align: center; }
.give-method-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.give-method-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.give-method-card p { font-size: 0.8rem; margin-bottom: 0.5rem; }
.give-detail { font-size: 0.78rem; color: var(--text-light); }
.give-number { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.give-categories h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.give-cat-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.give-cat { background: var(--white); border: 1px solid rgba(201,152,58,0.25); color: var(--text-dark); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.82rem; font-weight: 500; }
.give-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.give-impact-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.give-impact-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
.impact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.impact-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.impact-icon { font-size: 1.1rem; flex-shrink: 0; }
.impact-item span { font-size: 0.85rem; color: var(--text-mid); }
.give-contact-card { background: var(--navy); border-radius: var(--radius); padding: 1.75rem; }
.give-contact-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.give-contact-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }

.content-image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.content-image.tall { min-height: 420px; }
.content-image:hover { transform: scale(1.02) translateY(-2px); box-shadow: var(--shadow-lg); }
.hero::after {
    display: none;
}
@keyframes sheenMove {
    0% { transform: translateX(-20%); opacity: 0.2; }
    50% { opacity: 0.45; }
    100% { transform: translateX(20%); opacity: 0.2; }
}

/* ─── Reveal (JS adds .reveal / .reveal--visible) ─ */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.reveal--visible {
    opacity: 1;
    transform: none;
}

/* ─── Visit Page ─────────────────────────────── */
.visit-section { background: var(--cream); }
.visit-welcome { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.visit-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.visit-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.visit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.visit-icon { font-size: 2rem; margin-bottom: 1rem; }
.visit-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.visit-card p, .visit-list { font-size: 0.875rem; }
.visit-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.visit-list li { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 0.6rem; color: var(--text-mid); }
.visit-cta-block { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius-lg); padding: 4rem; text-align: center; color: var(--white); }
.visit-cta-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.6; }
.visit-cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.visit-cta-block p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2rem; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .welcome-grid, .give-grid, .story-grid, .location-grid { grid-template-columns: 1fr; }
    .welcome-image {
        display: block;
        order: 2;
        margin-top: 1.75rem;
    }
    .welcome-content {
        order: 1;
    }
    .content-image.tall {
        min-height: 280px;
    }
    .sermons-grid { grid-template-columns: repeat(2, 1fr); }
    .ministries-grid { grid-template-columns: repeat(2, 1fr); }
    .beliefs-grid, .leadership-grid, .vision-grid { grid-template-columns: repeat(2, 1fr); }
    .give-methods-grid { grid-template-columns: 1fr; }
    .give-page-grid { grid-template-columns: 1fr; }
    .featured-sermon { grid-template-columns: 1fr; }
    .featured-info { padding: 2rem; }
    .ministry-full-body { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-backdrop {
        display: block;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10050;
        margin: 0;
        padding: 0;
        border: 0;
        background: rgba(67, 29, 83, 0.55);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.28s ease,
            visibility 0s linear 0.28s;
    }
    .navbar.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            opacity 0.28s ease,
            visibility 0s linear 0s;
    }
    .navbar.nav-open .nav-container {
        position: relative;
        z-index: 10052;
    }
    .nav-panel {
        display: flex;
        position: fixed !important;
        top: 72px !important;
        bottom: auto !important;
        left: 0 !important;
        right: auto !important;
        width: min(86vw, 360px);
        min-width: 0;
        max-height: none;
        height: calc(100vh - 72px) !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        flex: none;
        padding: 0.35rem 0 1.25rem;
        background: rgba(22, 10, 40, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-left: none;
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
        z-index: 10051;
        transform: translate3d(-100%, 0, 0);
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0.32s;
    }
    .nav-panel.open {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 72px) !important;
        transition:
            transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0s;
    }
    .nav-panel.open .nav-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .nav-panel.open .nav-cta {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .nav-panel::-webkit-scrollbar {
        display: none;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .nav-links li {
        margin: 0;
        border-bottom: none;
        list-style: none;
    }
    .nav-links li::after {
        content: '';
        display: block;
        height: 2px;
        margin: 0 1rem;
        border-radius: 999px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 152, 58, 0.25) 10%,
            rgba(255, 224, 160, 0.95) 50%,
            rgba(201, 152, 58, 0.25) 90%,
            transparent 100%
        );
        box-shadow:
            0 0 8px rgba(229, 185, 106, 0.35),
            0 1px 0 rgba(255, 255, 255, 0.12);
        pointer-events: none;
    }
    .nav-links li:last-child::after {
        display: none;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
        padding: 1.05rem 1.35rem;
        border-radius: 0;
        font-size: 1.0625rem;
        color: #ffffff !important;
        font-weight: 500;
        letter-spacing: 0.02em;
        background: transparent !important;
        line-height: 1.35;
    }
    .nav-panel .nav-links a:hover,
    .nav-panel .nav-links a.active {
        color: #e5b96a !important;
        background: rgba(201, 152, 58, 0.12) !important;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-cta {
        display: inline-flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        align-self: stretch;
        margin: 0 1.25rem 1.25rem;
        width: auto;
        max-width: none;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    .nav-cta::before {
        content: '';
        display: block;
        height: 2px;
        margin: 0.35rem 0 1rem;
        border-radius: 999px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 152, 58, 0.25) 10%,
            rgba(255, 224, 160, 0.95) 50%,
            rgba(201, 152, 58, 0.25) 90%,
            transparent 100%
        );
        box-shadow:
            0 0 8px rgba(229, 185, 106, 0.35),
            0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .navbar .nav-container {
        position: relative;
        min-height: 72px;
        padding-right: 4rem;
    }
    /* Elementor-only header mode: do not suppress Elementor/HFE toggles. */
    #navToggle,
    #navbar .nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        line-height: 1;
        position: absolute;
        left: auto;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10053;
        background: rgba(201, 152, 58, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    }
    #navToggle span,
    #navbar .nav-toggle span {
        background: var(--navy, #431D53);
    }
    body.admin-bar .navbar .nav-panel,
    body.admin-bar .navbar .nav-backdrop {
        top: calc(72px + var(--wp-admin--admin-bar--height, 32px));
        bottom: 0;
    }
    body.admin-bar #navToggle,
    body.admin-bar #navbar .nav-toggle {
        top: 50%;
    }
    @media (prefers-reduced-motion: reduce) {
        .nav-panel,
        .nav-panel.open,
        .nav-backdrop,
        .navbar.nav-open .nav-backdrop {
            transition: none;
        }
    }
    body.nav-menu-open {
        overflow: hidden !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        height: auto;
        padding: 72px 0 1.5rem;
        align-items: stretch;
    }
    .hero-content {
        min-height: calc(100svh - 72px);
        min-height: calc(100dvh - 72px);
        height: auto;
        max-height: none;
        padding: 0 1.15rem 2rem;
        overflow: visible;
        animation: none;
        transform: none !important;
        justify-content: flex-end;
        gap: 1rem;
    }
    .hero-content::before {
        flex: 1 1 auto;
        min-height: 14vh;
        max-height: 28vh;
    }
    .hero-copy-slides,
    [data-hero-text-slides] {
        margin-top: 0.5rem;
    }
    .hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 20rem;
        margin: 1.75rem auto 2rem;
        gap: 0.75rem;
    }
    .hero .hero-actions a,
    .hero .hero-actions .elementor-button,
    .hero .hero-actions .elementor-button-link,
    .hero .hero-actions button,
    .hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        padding: 0.9rem 1.35rem;
        text-decoration: none !important;
        border: 2px solid transparent;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
        transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }
    .hero .hero-actions a:first-child,
    .hero .hero-actions .elementor-button:first-child,
    .hero .hero-actions .btn-primary:first-child,
    .hero .hero-actions > *:first-child a,
    .hero .hero-actions > *:first-child .elementor-button {
        background: linear-gradient(135deg, #e8c06a 0%, #c9983a 48%, #a67c2e 100%) !important;
        color: #2a1038 !important;
        border-color: rgba(255, 236, 190, 0.55) !important;
        box-shadow:
            0 8px 26px rgba(201, 152, 58, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    .hero .hero-actions a:last-child:not(:only-child),
    .hero .hero-actions .elementor-button:last-child:not(:only-of-type),
    .hero .hero-actions .btn-outline:last-child,
    .hero .hero-actions > *:last-child:not(:only-child) a,
    .hero .hero-actions > *:last-child:not(:only-child) .elementor-button {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.55) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    .hero .hero-actions a:active,
    .hero .hero-actions .elementor-button:active {
        transform: scale(0.98);
    }
    .hero-copy-slides,
    .hero-copy-track {
        width: 100%;
        max-width: 100%;
    }
    .hero-copy-track {
        min-height: auto;
    }
    .hero-copy-slide {
        transform: none;
        transition: opacity 0.55s var(--ease-out);
    }
    .hero-copy-slide.is-active {
        transform: none;
    }
    .hero-title--slide,
    .hero-slide-headline {
        font-size: clamp(1.95rem, 8.8vw, 2.75rem);
        line-height: 1.12;
        max-width: 11.5em;
        margin-left: auto;
        margin-right: auto;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
        padding: 0 0.35rem;
    }
    .hero-slide-tagline {
        font-size: clamp(1.65rem, 7.2vw, 2.35rem);
        line-height: 1.14;
        max-width: 12em;
        margin-left: auto;
        margin-right: auto;
        overflow-wrap: normal;
        hyphens: none;
        padding: 0 0.35rem;
    }
    .hero-slide-desc {
        font-size: clamp(0.95rem, 3.8vw, 1.1rem);
        max-width: 24rem;
        line-height: 1.55;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    .hero-copy-track {
        min-height: clamp(9.5rem, 26vh, 12.5rem);
    }
    main#content.site-main {
        padding-top: 0 !important;
    }
    .page-content > .hero:first-child {
        margin-top: 0 !important;
    }
    section { padding: 4rem 0; }
    section.hero {
        padding-top: 72px !important;
        padding-bottom: 0 !important;
    }
    .services-grid, .sermons-grid, .ministries-grid { grid-template-columns: 1fr; }
    .beliefs-grid, .leadership-grid, .vision-grid { grid-template-columns: 1fr; }
    .visit-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-service-times { flex-direction: column; gap: 1rem; }
    .hero-service-times .divider { display: none; }
    .event-item { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .footer-top { padding: 3rem 1.5rem 2rem; }
    .footer-links { grid-template-columns: 1fr; }
    .event-full-card { flex-direction: column; }
}

/* ─── Dropdown / Sub-menu ────────────────────────────── */

/* Parent item needs relative positioning */
.nav-links li.menu-item-has-children {
    position: relative;
}

/* Chevron arrow indicator */
.nav-links .sub-arrow {
    display: inline-block;
    margin-left: 5px;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Desktop dropdown ── */
@media (min-width: 1025px) {
    .nav-links .sub-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(-6px);
        min-width: 215px;
        background: rgba(20, 8, 38, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(201, 152, 58, 0.25);
        border-radius: 12px;
        padding: 0.5rem 0;
        list-style: none;
        margin: 0;
        z-index: 10100;
        box-shadow:
            0 4px 6px rgba(0,0,0,0.12),
            0 16px 48px rgba(0,0,0,0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0s linear 0.22s;
    }

    /* Caret pointer */
    .nav-links .sub-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 11px;
        height: 11px;
        background: rgba(20, 8, 38, 0.97);
        border-left: 1px solid rgba(201, 152, 58, 0.25);
        border-top: 1px solid rgba(201, 152, 58, 0.25);
    }

    /* Show on hover / focus-within */
    .nav-links li.menu-item-has-children:hover > .sub-menu,
    .nav-links li.menu-item-has-children:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0s linear 0s;
    }

    /* Rotate arrow on hover */
    .nav-links li.menu-item-has-children:hover > a .sub-arrow,
    .nav-links li.menu-item-has-children:focus-within > a .sub-arrow {
        transform: rotate(225deg) translateY(2px);
    }

    .nav-links .sub-menu li {
        margin: 0;
        list-style: none;
    }

    .nav-links .sub-menu li::after {
        display: none !important;
    }

    .nav-links .sub-menu a {
        display: block;
        padding: 0.6rem 1.3rem;
        color: rgba(255,255,255,0.82) !important;
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        white-space: nowrap;
        background: transparent !important;
        transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
    }

    .nav-links .sub-menu a:hover,
    .nav-links .sub-menu a.active {
        color: #e5b96a !important;
        background: rgba(201, 152, 58, 0.12) !important;
        padding-left: 1.65rem;
    }

    .nav-links .sub-menu a::after {
        display: none !important;
    }
}

/* ── Mobile accordion ── */
@media (max-width: 1024px) {
    .nav-links .sub-menu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
        background: rgba(0,0,0,0.15);
        border-top: 1px solid rgba(201,152,58,0.15);
    }

    .nav-links li.menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }

    .nav-links .sub-menu li::after {
        display: none !important;
    }

    .nav-links .sub-menu a {
        padding: 0.75rem 1.35rem 0.75rem 2.5rem !important;
        font-size: 0.9rem !important;
        color: rgba(255,255,255,0.72) !important;
        border-left: 2px solid rgba(201,152,58,0.35);
        background: transparent !important;
    }

    .nav-links .sub-menu a:hover,
    .nav-links .sub-menu a.active {
        color: #e5b96a !important;
        border-left-color: #e5b96a;
        background: rgba(201,152,58,0.08) !important;
    }

    /* Parent link: stretch to push arrow right */
    .nav-links li.menu-item-has-children > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Rotate arrow when open */
    .nav-links li.menu-item-has-children.submenu-open > a .sub-arrow {
        transform: rotate(225deg) translateY(2px);
    }
}

/* ─── Elementor Global Variable Overrides ───────────────────────────────────
   Map Elementor kit CSS variables to our brand tokens so every Elementor
   widget — headings, body text, buttons — inherits the correct fonts and
   colours without manual per-widget edits.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Typography */
    --e-global-typography-primary-font-family:   'Ubuntu';
    --e-global-typography-primary-font-weight:   600;
    --e-global-typography-secondary-font-family: 'Exo 2';
    --e-global-typography-secondary-font-weight: 500;
    --e-global-typography-text-font-family:      'Montserrat';
    --e-global-typography-text-font-weight:      400;
    --e-global-typography-accent-font-family:    'Montserrat';
    --e-global-typography-accent-font-weight:    500;

    /* Colours — map Elementor kit slots to brand palette */
    --e-global-color-primary:   #431D53;
    --e-global-color-secondary: #C9983A;
    --e-global-color-text:      #221E1F;
    --e-global-color-accent:    #9F2B67;
}

/* Force headings that Elementor renders to use the display font */
.elementor-widget-heading .elementor-heading-title,
.elementor h1, .elementor h2, .elementor h3, .elementor h4 {
    font-family: var(--font-display) !important;
}

/* Force Elementor text-editor and paragraph widgets to use body font */
.elementor-widget-text-editor .elementor-widget-container,
.elementor-widget-text-editor p,
.elementor p {
    font-family: var(--font-body);
}

/* Elementor button widgets */
.elementor-button {
    font-family: var(--font-body);
    font-weight: 500;
}
