/* ============================================================
   Dandelion — Youth GKI Kota Modern
   Redesign based on Figma "CLS Dump • Dandelion"
   Final palette sync 2026-07-18 (Figma "Assets and Notes"):
   Brand/Primary #97723B · Accent #2C3E2B, #D66845
   Neutral/Background/Stroke #FFFDF7, #F7F4EB
   ============================================================ */

:root {
    --cream: #F7F4EB;
    --cream-2: #EDE8DA;
    --gold: #97723B;
    --gold-l: #A98545;
    --gold-d: #7C5D2F;
    --green: #2C3E2B;
    --green-d: #22301F;
    --coral: #D66845;
    --coral-d: #BF5231;
    --ink: #2E2C24;
    --gray: #6F6A5C;
    --white: #FFFDF7;
    --line: rgba(151, 114, 59, 0.35);
    --stroke: #E3DDCD;
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    /* Back-compat aliases (old templates referenced these) */
    --navy-dark: var(--green-d);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container {
    width: min(1380px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 0;
}

/* ============ PAGE LOADER ============ */
#page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.25rem;
    transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
    width: 54px; height: 54px;
    position: relative;
}
.loader-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 3px dashed var(--gold);
    animation: loaderSpin 2.4s linear infinite;
}
.loader-logo {
    position: absolute; inset: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.loader-logo img, .loader-logo svg { width: 100%; height: 100%; object-fit: contain; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
.loader-text {
    font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); font-size: .8rem;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.8rem 0;
    transition: padding .3s ease;
}
.navbar-inner {
    width: min(1380px, calc(100% - 2.5rem));
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(70, 55, 20, 0.10);
    display: flex; align-items: center; justify-content: space-between;
    padding: .3rem 1.4rem;
    transition: box-shadow .3s ease;
}
.navbar.scrolled { padding: .5rem 0; }
.navbar.scrolled .navbar-inner { box-shadow: 0 12px 40px rgba(70, 55, 20, 0.18); }

.navbar-brand { display: flex; align-items: center; gap: .65rem; }
.logo-icon {
    width: 180px; height: 60px; flex: 0 0 auto;
    color: var(--gold);
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-icon img { width: 150%; height: 100%; object-fit: contain; border-radius: 6px; }
.brand-name {
    display: none;
    font-weight: 800; font-size: 1.25rem; color: var(--gold);
    letter-spacing: -0.01em; line-height: 1.1;
}
.brand-sub {
    font-size: .62rem; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gray);
}

.navbar-nav {
    display: flex; align-items: center; gap: 1.9rem;
}
.nav-link {
    font-size: .74rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--ink);
    position: relative; padding: .3rem 0;
    transition: color .25s ease;
}
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--coral);
    transition: width .3s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link:hover::after { width: 100%; }

.navbar-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: .6rem 1.3rem !important;
    border-radius: 999px;
    transition: background .25s ease, transform .25s ease;
    display: none;
}
.navbar-cta::after { display: none; }
.navbar-cta:hover { background: var(--gold-d); transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: .4rem;
}
.hamburger span {
    width: 24px; height: 2.5px; background: var(--gold);
    border-radius: 2px; transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    padding: 7.5rem 0 0;
}
.hero-title { margin-bottom: 2rem; }
.hero-title-row {
    display: flex; align-items: center; gap: 1.5rem;
}
.hero-title-left, .hero-title-right {
    font-size: clamp(1.6rem, 4.2vw, 3.6rem);
    font-weight: 500; color: var(--gold);
    letter-spacing: -0.02em; line-height: 1.05;
    white-space: nowrap;
}
.hero-title-right { font-weight: 800; }
.hero-dots {
    flex: 1; height: 0; min-width: 40px;
    border-top: 3px dashed var(--line);
    position: relative;
}
.hero-dots::before, .hero-dots::after {
    content: ''; position: absolute; top: -5px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
}
.hero-dots::before { left: -2px; }
.hero-dots::after { right: -2px; }

.hero-media {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-top-right-radius: 100px;
    overflow: hidden;
    height: clamp(280px, 44vw, 470px);
    background-position: center;
    background-size: cover;
    position: relative;
}
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 43, 0) 55%, rgba(44, 62, 43, 0.28) 100%);
}

/* ============ SECTION PRIMITIVES ============ */
.section { padding: 4rem 0; }

.section-label {
    display: flex; align-items: center; gap: 1.1rem;
    color: var(--coral);
    font-size: clamp(1.1rem, 1.7vw, 1.6rem); font-weight: 600; letter-spacing: .01em;
    margin-bottom: 2.4rem;
}
.section-label::after {
    content: ''; flex: 1; height: 9px;
    background:
        radial-gradient(circle at calc(100% - 4px) 50%, currentColor 3.2px, transparent 3.8px),
        linear-gradient(currentColor, currentColor) 0 50% / calc(100% - 4px) 1.5px no-repeat;
    opacity: .9;
}

/* ============ PROFILE ============ */
.profile-grid {
    display: grid; grid-template-columns: 1.15fr .85fr;
    gap: 3.5rem; align-items: stretch;
}
.profile-heading {
    color: var(--gold);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}
.profile-text p {
    color: var(--ink); font-size: clamp(1.05rem, 1.7vw, 1.6rem); line-height: 1.95;
    margin-bottom: 1.2rem;
}
.profile-text strong { font-weight: 800; }
.profile-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(70, 55, 20, 0.16);
}
.profile-img img { width: 100%; height: 100%; object-fit: cover; }

.ambition {
    margin-top: 2.6rem; padding-top: 1.6rem;
    border-top: 2px dashed var(--line);
    max-width: 480px;
    position: relative;
}
.ambition::before, .ambition::after {
    content: ''; position: absolute; top: 0;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    display: none;
}
.ambition::before { left: 0; }
.ambition::after { right: 0; }
.ambition-lead { color: var(--green); font-size: clamp(1rem, 1.3vw, 1.333rem); }
.ambition-text {
    color: var(--gold); font-weight: 800;
    font-size: clamp(1.4rem, 2.6vw, 2.133rem);
    letter-spacing: .06em;
}

/* ============ GREEN BAND (Activities + Moments) ============ */
.green-band {
    background: var(--green);
    padding: 3.75rem 0 4rem;
    position: relative;
}
.green-band .section-label { color: var(--coral); }

.activities-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.4rem;
}
.activity-card {
    background: var(--cream);
    border-top: 6px solid var(--coral);
    border-radius: var(--radius-sm);
    padding: 1.3rem 1.4rem 1.2rem;
    width: calc(33.333% - 1rem);
    min-width: 250px;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.ac-num {
    font-size: .78rem; font-weight: 700; color: var(--coral);
    letter-spacing: .08em; margin-bottom: .9rem;
}
.ac-name { font-weight: 700; font-size: clamp(1.1rem, 1.7vw, 1.6rem); color: var(--green); line-height: 1.35; }
.ac-sched { font-size: clamp(.9rem, 1.2vw, 1.2rem); color: var(--gray); margin-top: .3rem; }
.ac-link {
    display: inline-block; margin-top: auto;
    background: none; border: none; padding: 0;
    font-size: .78rem; font-weight: 700; color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, color .25s ease;
    cursor: pointer;
    text-align: left;
}
.ac-link:hover { color: var(--gold-d); border-color: var(--gold-d); }

/* Seeds divider inside the band — real asset extracted from Figma (small
   floating dandelion-seed icons, stem + fluffy fan top, alternating tilt) */
.band-divider {
    height: 52px; margin: 3.2rem 0 2.8rem;
    background-image: url("../img/divider-seeds-dark.svg");
    background-repeat: repeat-x;
    background-position: center;
}

/* ============ DANDELION MOMENTS (masonry gallery) ============ */
/* FIXED 12-slot masonry matching Figma exactly: 4 columns, each item has one
   of 3 fixed crop ratios (never sized off the uploaded photo's own natural
   ratio) so the layout can never shift no matter what photo an admin uploads. */
.moments-masonry {
    columns: 4 220px;
    column-gap: 1rem;
}
.moment-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    transition: transform .3s ease;
}
.moment-item:hover { transform: translateY(-4px); }
.moment-item img { width: 100%; height: 100%; display: block; object-fit: cover; }
/* The 3 fixed shapes used across the masonry (widths are equal per column;
   only the height ratio differs) — matches Figma's 312×300 / 312×201.76 / 312×440 */
.moment-item.moment-square   { aspect-ratio: 312 / 300; }
.moment-item.moment-wide     { aspect-ratio: 312 / 201.76; }
.moment-item.moment-portrait { aspect-ratio: 312 / 440; }
.moment-item .gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(34, 48, 31, 0.72), transparent 55%);
    opacity: 0; transition: opacity .3s ease;
    display: flex; align-items: flex-end;
    padding: .8rem;
}
.moment-item:hover .gal-overlay { opacity: 1; }
.moment-item .gal-overlay span {
    color: var(--white); font-size: .72rem; font-weight: 600;
}
.moments-dots { display: none; }

/* ============ ACTIVITY DETAIL OVERLAY ============ */
.act-modal {
    position: fixed; inset: 0; z-index: 2100;
    display: none;
    align-items: center; justify-content: center;
    padding: 1.2rem;
}
.act-modal.open { display: flex; }
.act-modal-bg {
    position: absolute; inset: 0;
    background: rgba(30, 36, 24, 0.8);
}
.act-modal-card {
    position: relative; z-index: 2;
    background: var(--white);
    border-radius: var(--radius-md);
    width: min(820px, 100%);
    max-height: 88vh;
    display: grid; grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.act-modal-art {
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    min-height: 320px;
    padding: 2rem;
}
.act-modal-art svg, .act-modal-art img { width: 100%; max-width: 300px; height: auto; opacity: .95; }
.act-modal-body {
    padding: 2.6rem 2.4rem 2.2rem;
    overflow-y: auto;
}
.am-title {
    color: var(--green);
    font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.6rem); line-height: 1.3;
    margin-bottom: .35rem;
    padding-right: 1.6rem;
}
.am-sched { font-size: clamp(.95rem, 1.2vw, 1.2rem); font-weight: 600; color: var(--gold); margin-bottom: 1.2rem; }
.am-sched .am-time { color: var(--ink); font-weight: 700; }
.am-desc { color: var(--gray); font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.85; white-space: pre-line; }
.act-modal-close {
    position: absolute; top: 1rem; right: 1.2rem; z-index: 3;
    background: none; border: none;
    color: var(--gold);
    font-size: 1.35rem; line-height: 1;
    opacity: .8; transition: opacity .2s ease, transform .2s ease;
}
.act-modal-close:hover { opacity: 1; transform: scale(1.1); }

/* ============ BIBLE READING ============ */
.bible-card {
    background: var(--green);
    border-radius: var(--radius-md);
    border-bottom-right-radius: 90px;
    overflow: hidden;
    display: grid; grid-template-columns: .95fr 1.4fr;
    min-height: 300px;
}
.bible-img {
    background-position: center; background-size: cover;
    min-height: 220px;
}
.bible-body {
    padding: 2.4rem 2.6rem;
    display: flex; flex-direction: column; gap: 1.1rem;
}
.bible-body p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.4vw, 1.333rem); line-height: 1.9;
}
.bible-quote {
    color: var(--white); font-weight: 800; font-size: 1rem;
}
.bible-actions { margin-top: auto; display: flex; justify-content: flex-end; }

.btn-gold {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--gold); color: var(--white);
    font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: .8rem 1.7rem; border-radius: 999px; border: none;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
    background: var(--gold-d); transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(169, 133, 69, 0.4);
}

/* ============ LATEST UPDATES (events) ============ */
.updates-intro {
    color: var(--gray); font-size: clamp(1.1rem, 1.7vw, 1.6rem); margin: -1.2rem 0 1.8rem;
}
.updates-intro a {
    color: var(--gold-d); font-weight: 700; text-decoration: underline;
    text-underline-offset: 3px;
}
.updates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}
.update-card-link {
    display: block; text-decoration: none;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.update-card-link:hover .update-card {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(70, 55, 20, 0.22);
}
.update-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    background: var(--cream-2);
    background-position: center; background-size: cover;
    box-shadow: 0 14px 30px rgba(70, 55, 20, 0.14);
    transition: transform .3s ease, box-shadow .3s ease;
}
.update-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(70, 55, 20, 0.22);
}
.update-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(42, 52, 34, 0.82) 0%, rgba(42, 52, 34, 0.1) 45%, transparent 65%);
}
.update-body {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1rem 1.1rem;
}
.update-date {
    color: rgba(255, 255, 255, 0.72);
    font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: .3rem;
}
.update-title {
    color: var(--white); font-weight: 700; font-size: .85rem; line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.update-tag {
    position: absolute; top: .9rem; left: .9rem; z-index: 2;
    background: rgba(255, 255, 255, 0.9); color: var(--gold-d);
    font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: .3rem .7rem; border-radius: 999px;
}
.update-arrow {
    position: absolute; top: .8rem; right: .8rem; z-index: 2;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(3px);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem;
}
.updates-dots { display: none; }

/* ============ GIVE ============ */
.give-accounts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
}
.give-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.7rem 1.6rem;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.give-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(70, 55, 20, 0.16);
}
.give-bank {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
    color: var(--white); font-weight: 800; font-size: .82rem;
    letter-spacing: .06em;
    padding: .45rem 1.2rem; border-radius: 999px;
    margin-bottom: 1.1rem;
}
.give-acc-num {
    font-size: 1.35rem; font-weight: 800; color: var(--ink);
    letter-spacing: .06em;
}
.give-acc-name { font-size: .8rem; color: var(--gray); margin-top: .2rem; }
.give-copy-btn {
    margin-top: 1.1rem;
    background: none; border: 1.5px solid var(--gold);
    color: var(--gold-d); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    padding: .5rem 1.2rem; border-radius: 999px;
    transition: background .25s ease, color .25s ease;
}
.give-copy-btn:hover, .give-copy-btn.copied {
    background: var(--gold); color: var(--white);
}
.give-note {
    color: var(--gray); font-size: .8rem; margin-top: 2.2rem; text-align: center;
}

/* ============ ASK (contact form band) ============ */
.ask-band {
    position: relative;
    background-position: center; background-size: cover;
    padding: 3.75rem 0;
}
.ask-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(42, 52, 34, 0.82) 20%, rgba(42, 52, 34, 0.45) 70%, rgba(42, 52, 34, 0.55) 100%);
}
.ask-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 3rem; align-items: center;
}
.ask-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.4vw, 2.667rem);
    font-weight: 600; line-height: 1.3;
    margin-bottom: .9rem;
}
.ask-sub { color: rgba(255, 255, 255, 0.78); font-size: clamp(1rem, 1.3vw, 1.067rem); font-weight: 500; max-width: 420px; }

.ask-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.7rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}
.ask-form .form-group { margin-bottom: 1rem; }
.ask-form label {
    display: block; font-size: .74rem; font-weight: 600;
    color: var(--gray); margin-bottom: .4rem;
}
.ask-form input, .ask-form select, .ask-form textarea {
    width: 100%;
    border: 1.5px solid var(--stroke);
    border-radius: 10px;
    background: #fff;
    padding: .62rem .85rem;
    font-size: .9rem; color: var(--ink);
    outline: none;
    transition: border-color .25s ease;
}
.ask-form input:hover, .ask-form select:hover, .ask-form textarea:hover,
.ask-form input:focus, .ask-form select:focus, .ask-form textarea:focus {
    border-color: var(--gold);
}
.ask-form textarea { resize: vertical; min-height: 84px; }
.ask-form .phone-row {
    display: flex; align-items: stretch;
    border: 1.5px solid var(--stroke); border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition: border-color .25s ease;
}
.ask-form .phone-row:hover, .ask-form .phone-row:focus-within { border-color: var(--gold); }
.ask-form .phone-prefix {
    display: flex; align-items: center;
    font-size: .9rem; color: var(--gray); font-weight: 600;
    padding: 0 .8rem;
    border-right: 1.5px solid var(--stroke);
    background: #fff;
}
.ask-form .phone-row input {
    border: none; border-radius: 0;
    flex: 1;
}
.ask-form .phone-row input:hover, .ask-form .phone-row input:focus { border: none; }
.ask-submit {
    width: 100%; justify-content: center;
    margin-top: .4rem;
}

/* ============ LOCATION & CONTACT ============ */
.location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    border-bottom-right-radius: 110px;
    overflow: hidden;
}
.loc-card {
    border-radius: 0;
    padding: 2.2rem 2.3rem;
    color: var(--white);
    display: flex; flex-direction: column;
    min-height: 250px;
}
.loc-card.loc-green { background: var(--green); }
.loc-card.loc-gold { background: var(--gold); }
.loc-icon {
    width: 46px; height: 46px;
    background: var(--white); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.loc-green .loc-icon { color: var(--green); }
.loc-gold .loc-icon { color: var(--gold-d); }
.loc-title { font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.4rem); margin-bottom: .7rem; }
.loc-body { font-size: clamp(.92rem, 1.05vw, 1.08rem); line-height: 1.85; opacity: .92; }
.loc-body i { width: 18px; opacity: .8; font-size: .78rem; }
.loc-link {
    margin-top: auto; padding-top: 1.2rem;
    font-size: clamp(.85rem, 1.1vw, 1.067rem); font-weight: 700; letter-spacing: .04em;
    text-decoration: underline; text-underline-offset: 4px;
    opacity: .95;
    transition: opacity .25s ease;
}
.loc-link:hover { opacity: 1; }

/* ============ FOOTER ============ */
.footer {
    padding: 3.5rem 0 2rem;
    position: relative;
}
.footer::before {
    /* seeds divider */
    content: ''; display: block;
    height: 30px; margin-bottom: 2.8rem;
    background-image: url("../img/divider-seeds-gold.svg?v=1");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 30px;
}
.footer-brand-mini {
    display: flex; align-items: center; gap: .5rem;
    color: var(--gold); font-weight: 800;
    font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-brand-mini .logo-icon { width: 22px; height: 22px; }
.footer-motto {
    font-size: clamp(2.4rem, 7.6vw, 7.6rem);
    font-weight: 800; letter-spacing: .01em; line-height: 1.05;
    color: var(--coral);
    display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.4rem);
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}
.footer-motto .motto-img {
    height: clamp(2.1rem, 5.9vw, 5.7rem);
    aspect-ratio: 2.1/1;
    border-radius: 999px;
    background-position: center; background-size: cover;
    display: inline-block;
    flex: 0 0 auto;
}
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    font-size: .74rem; color: var(--gray);
}
.footer-bottom .social-links { display: flex; gap: .6rem; }
.footer-bottom .social-links a {
    width: 34px; height: 34px; border-radius: 9px;
    background: rgba(151, 114, 59, 0.12);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    transition: background .25s ease, color .25s ease;
}
.footer-bottom .social-links a:hover { background: var(--gold); color: var(--white); }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a {
    color: var(--gray); font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px;
    transition: color .25s ease;
}
.footer-links a:hover { color: var(--gold-d); }

/* ============ LIGHTBOX ============ */
.lightbox-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none;
    align-items: center; justify-content: center;
}
.lightbox-modal.open { display: flex; }
.lightbox-bg {
    position: absolute; inset: 0;
    background: rgba(30, 36, 24, 0.92);
}
.lightbox-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 1rem;
    max-width: 92vw;
}
.lightbox-content { text-align: center; }
.lightbox-content img {
    max-width: 82vw; max-height: 78vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-caption { color: rgba(255,255,255,0.85); font-size: .85rem; margin-top: .9rem; }
.lightbox-close {
    position: absolute; top: 1.4rem; right: 1.8rem; z-index: 3;
    background: none; border: none; color: var(--white);
    font-size: 1.6rem; opacity: .8; transition: opacity .2s ease;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    background: rgba(255, 255, 255, 0.12); border: none; color: var(--white);
    width: 44px; height: 44px; border-radius: 50%;
    font-size: 1.5rem; line-height: 1;
    transition: background .25s ease;
    flex: 0 0 auto;
}
.lightbox-nav:hover { background: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
[data-aos] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.19, 1, 0.22, 1);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .profile-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .profile-img { max-width: 520px; }
    .activity-card { width: calc(50% - 0.7rem); }
    .updates-grid { grid-template-columns: repeat(2, 1fr); }
    .ask-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .bible-card { grid-template-columns: 1fr; border-bottom-right-radius: 70px; }
    .bible-img { min-height: 240px; }
    .moments-masonry { columns: 3 180px; }
    .location-grid { grid-template-columns: 1fr; }
    .act-modal-card { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .act-modal-art { min-height: 170px; padding: 1.4rem; }
    .act-modal-art svg, .act-modal-art img { max-width: 200px; }
}

@media (max-width: 767.98px) {
    .container { width: calc(100% - 2rem); padding: 0 1rem; }
    .navbar-inner { position: relative; width: calc(100% - 2rem); padding: 0.8rem 1.4rem; }
    .navbar-nav {
        position: absolute; top: calc(100% + 10px); right: 0; left: auto;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 50px rgba(70, 55, 20, 0.2);
        flex-direction: column; align-items: flex-end;
        gap: 1.15rem;
        min-width: 230px;
        padding: 1.4rem 1.5rem;
        opacity: 0; visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    }
    .navbar-nav.open { opacity: 1; visibility: visible; transform: none; }
    .navbar-nav .nav-link { font-size: .82rem; }
    .navbar-nav .navbar-cta { margin-top: .3rem; }
    .hamburger { display: flex; position: relative; z-index: 1001; }

    .hero { padding-top: 6.5rem; }
    .hero-title-row { flex-direction: column; align-items: flex-start; gap: .6rem; }
    .hero-dots { flex: none; width: 60px; min-width: 60px; }
    .section { padding: 3rem 0; }
    .activity-card { width: 100%; }

    /* Moments: horizontal swipe carousel */
    .moments-masonry {
        columns: auto; column-gap: 0;
        display: flex; gap: .9rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: .4rem;
    }
    .moments-masonry::-webkit-scrollbar { display: none; }
    .moment-item {
        flex: 0 0 76%;
        margin-bottom: 0;
        scroll-snap-align: center;
        aspect-ratio: 3/4;
    }
    .moment-item img { width: 100%; height: 100%; object-fit: cover; }
    .moments-dots {
        display: flex; justify-content: center; gap: .45rem;
        margin-top: 1.1rem;
    }
    .moments-dots span {
        width: 7px; height: 7px; border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        transition: background .25s ease, transform .25s ease;
    }
    .moments-dots span.active { background: var(--coral); transform: scale(1.2); }

    /* Updates: horizontal swipe carousel */
    .updates-grid {
        display: flex; gap: .9rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: .4rem;
    }
    .updates-grid::-webkit-scrollbar { display: none; }
    .update-card { flex: 0 0 76%; scroll-snap-align: center; }

    .bible-body { padding: 1.8rem 1.5rem; }
    .bible-card { border-bottom-right-radius: 56px; }
    .location-grid { border-bottom-right-radius: 70px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
