:root {
    --navy-950: #122864;
    --navy-900: #173B9D;
    --navy-850: #224ABC;
    --navy-800: #2B55D1;
    --navy-700: #305CDE;
    --blue-500: #4E7BEE;
    --blue-200: #D9E5FF;
    --gold-500: #C99A3D;
    --gold-400: #D8AD55;
    --gold-300: #EDD080;
    --gold-200: #F7E4AA;
    --cream: #FFFBEF;
    --white: #FFFFFF;
    --ink: #102039;
    --muted: #5F6F89;
    --line: rgba(48, 92, 222, 0.12);
    --shadow: 0 24px 80px rgba(17, 44, 116, 0.14);
    --shadow-dark: 0 22px 70px rgba(8, 23, 65, 0.32);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --radius-sm: 12px;
    --container: 1180px;
    --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-sans);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-300); color: var(--navy-950); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    background: var(--gold-300);
    color: var(--navy-950);
    padding: 12px 18px;
    border-radius: 10px;
    z-index: 2000;
    font-weight: 700;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.section-dark { color: white; background: var(--navy-900); }
.section-soft { background: #f4f7ff; }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }
.max-copy { max-width: 720px; }
.centered { margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.16; }
h1, h2 { font-family: var(--font-serif); }
h1 { font-size: clamp(2.7rem, 7vw, 5.75rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
.section-dark p, .hero p, .page-hero p, .final-cta p, .site-footer p { color: rgba(255,255,255,.72); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); }

.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold {
    color: var(--navy-950);
    background: linear-gradient(120deg, var(--gold-200), var(--gold-500));
    box-shadow: 0 12px 32px rgba(201,154,61,.25);
}
.button-gold:hover { box-shadow: 0 17px 38px rgba(201,154,61,.36); }
.button-blue { color: white; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.button-outline { color: var(--navy-900); border-color: rgba(8,38,77,.22); background: white; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.button-link { color: var(--navy-700); padding-inline: 0; min-height: auto; }
.button-link::after { content: "→"; }

.announcement-bar { background: var(--navy-700); color: white; font-size: .85rem; }
.announcement-inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.announcement-inner a { color: var(--gold-300); font-weight: 800; margin-left: 6px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d5e; box-shadow: 0 0 0 5px rgba(255,77,94,.14); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,77,94,0); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(9,41,82,.08);
    transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 12px 38px rgba(4,20,45,.08); }
.nav-shell { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--font-serif); font-size: 1.12rem; color: var(--navy-900); }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: .7rem; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a { padding: 10px 11px; border-radius: 10px; color: #31445f; font-size: .9rem; font-weight: 700; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-900); background: #eef3ff; }
.main-nav .nav-donate { color: var(--navy-950); background: var(--gold-300); padding-inline: 17px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: #eef3ff; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); }

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(135deg, rgba(18,40,100,.82) 0%, rgba(48,92,222,.72) 52%, rgba(17,59,157,.76) 100%),
        radial-gradient(circle at 18% 16%, rgba(255,255,255,.16), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(237,208,128,.30), transparent 24%),
        url('../img/hero-mount-zion-bg.png') center/cover no-repeat;
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(232,198,116,.18);
    border-radius: 50%;
}
.hero::before { width: 600px; height: 600px; right: -170px; top: -170px; }
.hero::after { width: 430px; height: 430px; right: -80px; top: -80px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; padding: 105px 0 120px; }
.hero h1 { max-width: 800px; margin-bottom: 26px; }
.hero h1 em { display: block; color: var(--gold-300); font-style: normal; }
.hero-copy > p { max-width: 650px; font-size: 1.18rem; }
.hero .button-row { margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 36px; color: rgba(255,255,255,.84); font-size: .88rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); padding: 10px 14px; border-radius: 999px; backdrop-filter: blur(8px); }
.hero-trust span::before { content: "✓"; color: var(--gold-300); font-weight: 900; }

.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-orbit {
    position: absolute;
    width: 470px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(238,207,127,.30);
    animation: rotate 28s linear infinite;
}
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--gold-300); box-shadow: 0 0 30px rgba(237,208,128,.55); }
.hero-orbit::before { width: 11px; height: 11px; top: 52px; left: 70px; }
.hero-orbit::after { width: 7px; height: 7px; right: 48px; bottom: 94px; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-emblem {
    width: min(86%, 390px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.20), rgba(255,255,255,.05) 58%, rgba(0,0,0,.14));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 0 75px rgba(255,255,255,.08), 0 30px 100px rgba(0,0,0,.25);
}
.hero-emblem img { width: 70%; filter: drop-shadow(0 25px 25px rgba(0,0,0,.25)); }
.hero-live-card {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 250px;
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(23,59,157,.80);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
}
.hero-live-card strong, .hero-live-card span { display: block; }
.hero-live-card strong { margin-bottom: 4px; }
.hero-live-card span { color: rgba(255,255,255,.72); font-size: .84rem; }
.hero-live-card .live-label { display: inline-flex; margin-bottom: 12px; color: #ffe0a7; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.page-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 80% 15%, rgba(237,208,128,.22), transparent 30%),
        linear-gradient(135deg, #173B9D, #305CDE 62%, #224ABC);
}
.page-hero::after { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(241,211,135,.14); border-radius: 50%; right: -90px; top: -190px; }
.page-hero-inner { position: relative; z-index: 2; padding: 94px 0 86px; max-width: 830px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 14px 0 22px; }
.page-hero p { font-size: 1.15rem; max-width: 700px; }

.page-hero-prayer {
    background:
        linear-gradient(135deg, rgba(23,59,157,.82), rgba(48,92,222,.78)),
        url('../img/western-wall-bg.png') center/cover no-repeat;
}

.stats-strip { position: relative; z-index: 4; margin-top: -42px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.stat { padding: 28px 25px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy-800); font-family: var(--font-serif); font-size: 1.55rem; }
.stat span { color: var(--muted); font-size: .86rem; }

.section-heading { margin-bottom: 42px; }
.section-heading h2 { margin: 12px 0 18px; }
.section-heading p { max-width: 700px; }
.section-heading.centered p { margin-inline: auto; }

.cards-3, .cards-4 { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3,1fr); }
.cards-4 { grid-template-columns: repeat(4,1fr); }
.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 12px 40px rgba(4,25,55,.06);
}
.card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--navy-800);
    background: linear-gradient(145deg, #fff3c9, #e1b85d);
    font-weight: 900;
    font-size: 1.25rem;
}
.card h3 { color: var(--navy-900); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.card-hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-hover:hover { transform: translateY(-6px); border-color: rgba(201,154,61,.45); box-shadow: 0 22px 55px rgba(4,25,55,.12); }

.daily-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.verse-card, .prayer-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: clamp(32px, 5vw, 60px);
    border-radius: var(--radius-xl);
}
.verse-card {
    color: white;
    background:
        linear-gradient(rgba(5,26,58,.2), rgba(5,26,58,.78)),
        radial-gradient(circle at 75% 20%, #245f9f, transparent 42%),
        var(--navy-850);
    box-shadow: var(--shadow-dark);
}
.verse-card::after { content: "“"; position: absolute; right: 30px; top: 0; color: rgba(239,209,128,.16); font-family: Georgia, serif; font-size: 18rem; line-height: 1; }
.verse-card blockquote { position: relative; z-index: 2; margin: 30px 0 26px; font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 3.1rem); line-height: 1.34; }
.verse-card cite { position: relative; z-index: 2; color: var(--gold-300); font-style: normal; font-weight: 800; }
.verse-actions { position: relative; z-index: 2; margin-top: 36px; }
.prayer-card { background: linear-gradient(145deg, #fffaf0, #f2e7cb); border: 1px solid rgba(194,148,51,.22); }
.prayer-card h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy-900); }
.prayer-card .prayer-text { margin: 26px 0; color: #495875; font-size: 1.15rem; }

.need-selector { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.need-list { display: grid; gap: 10px; }
.need-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: white;
    text-align: left;
    font-weight: 700;
    transition: .2s ease;
}
.need-button::after { content: "›"; color: var(--gold-500); font-size: 1.5rem; }
.need-button:hover, .need-button.active { border-color: var(--gold-400); background: var(--cream); transform: translateX(3px); }
.need-result {
    position: relative;
    min-height: 480px;
    padding: clamp(35px, 6vw, 65px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: white;
    background: linear-gradient(145deg, var(--navy-850), #0e3a71);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.need-result::before { content: ""; position: absolute; width: 330px; height: 330px; right: -130px; top: -100px; border: 1px solid rgba(241,209,126,.18); border-radius: 50%; }
.need-result > * { position: relative; z-index: 2; }
.need-result h3 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); }
.need-result blockquote { margin: 24px 0 8px; font-size: 1.3rem; color: var(--gold-300); }
.need-result p { max-width: 620px; }

.live-stage { background: #020812; color: white; }
.live-stage-inner { padding: 65px 0 85px; }
.live-status { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #ff9aa4; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 25px;
    background: #000;
    box-shadow: 0 35px 100px rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.1);
}
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.live-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.live-toolbar p { margin: 0; }

.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card { overflow: hidden; border-radius: 19px; border: 1px solid var(--line); background: white; box-shadow: 0 10px 35px rgba(4,24,51,.07); transition: .25s ease; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(4,24,51,.12); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #dfe7f0; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.play-badge { position: absolute; inset: 0; display: grid; place-items: center; }
.play-badge span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: rgba(3,18,40,.86); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.video-body { padding: 20px; }
.video-body h3 { margin-bottom: 10px; font-size: 1.05rem; line-height: 1.35; }
.video-body time { color: var(--muted); font-size: .82rem; }
.loading-card { min-height: 280px; display: grid; place-items: center; border-radius: 18px; background: #edf2f7; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px,8vw,100px); }
.feature-panel { position: relative; overflow: hidden; min-height: 500px; padding: 45px; border-radius: var(--radius-xl); color: white; background: linear-gradient(145deg, #061832, #0b3d78); box-shadow: var(--shadow-dark); }
.feature-panel::before { content: ""; position: absolute; width: 280px; height: 280px; right: -80px; top: -80px; border-radius: 50%; background: rgba(222,181,94,.1); }
.feature-panel > * { position: relative; z-index: 2; }
.feature-panel .large-mark { font-family: var(--font-serif); font-size: clamp(5rem,14vw,10rem); color: rgba(237,208,128,.16); line-height: 1; }
.feature-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 15px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: #52627a; }
.feature-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 24px; margin-top: 2px; border-radius: 50%; color: var(--navy-950); background: var(--gold-300); font-size: .8rem; font-weight: 900; }
.section-dark .feature-list li { color: rgba(255,255,255,.72); }

.form-card { padding: clamp(28px,5vw,52px); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--navy-900); font-weight: 800; font-size: .88rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    border: 1px solid #ccd7e3;
    border-radius: 13px;
    padding: 13px 15px;
    color: var(--ink);
    background: #fbfdff;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height: 145px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(202,155,61,.13); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { margin-top: 5px; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.form-status.success { display: block; color: #0e5d3b; background: #e4f7ee; }
.form-status.error { display: block; color: #8d2630; background: #fdebed; }
.honeypot { position: absolute !important; left: -9999px !important; }

.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.info-box { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.info-box strong { display: block; margin-bottom: 8px; color: var(--navy-900); }
.info-box a { color: var(--navy-700); font-weight: 700; }

.map-shell { overflow: hidden; min-height: 480px; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.map-shell iframe { width: 100%; height: 520px; border: 0; display: block; }

.donation-card {
    position: relative;
    overflow: hidden;
    padding: clamp(34px,6vw,65px);
    border-radius: var(--radius-xl);
    color: white;
    background: linear-gradient(145deg, #061731, #0c3970);
    box-shadow: var(--shadow-dark);
}
.donation-card::after { content: "$"; position: absolute; right: 35px; top: -35px; font-family: var(--font-serif); font-size: 16rem; color: rgba(255,255,255,.05); }
.donation-card > * { position: relative; z-index: 2; }
.donation-details { margin: 28px 0; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); }
.donation-details span { display: block; color: rgba(255,255,255,.62); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.donation-details strong { display: block; margin-top: 7px; font-size: 1.1rem; }
.copy-button { margin-top: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 9px 14px; color: white; background: rgba(255,255,255,.08); font-weight: 700; }

.steps { counter-reset: steps; display: grid; gap: 18px; }
.step { position: relative; padding: 24px 24px 24px 76px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 22px; top: 22px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold-300); font-weight: 900; }
.step h3 { margin-bottom: 7px; }
.step p { margin-bottom: 0; }

.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: white; }
.accordion-button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; color: var(--navy-900); background: white; text-align: left; font-weight: 800; }
.accordion-button::after { content: "+"; color: var(--gold-500); font-size: 1.4rem; }
.accordion-item.open .accordion-button::after { content: "−"; }
.accordion-panel { display: none; padding: 0 22px 22px; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel p:last-child { margin-bottom: 0; }

.quiz-card { padding: clamp(30px,5vw,48px); border-radius: var(--radius-xl); background: var(--navy-900); color: white; }
.quiz-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.quiz-option { padding: 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: white; background: rgba(255,255,255,.06); text-align: left; font-weight: 700; }
.quiz-option:hover { border-color: var(--gold-300); }
.quiz-option.correct { color: #0b3b29; background: #bff1d7; }
.quiz-option.wrong { color: #6c1720; background: #ffc9ce; }
.quiz-feedback { min-height: 32px; margin-top: 18px; color: var(--gold-300); font-weight: 800; }

.final-cta { position: relative; overflow: hidden; color: white; background: linear-gradient(110deg, #092b57, #06172f); }
.final-cta::before { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -180px; border: 1px solid rgba(237,207,128,.16); border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 2; min-height: 285px; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta h2 { margin: 10px 0 14px; font-size: clamp(2rem,4vw,3.4rem); }
.final-cta p { max-width: 650px; margin-bottom: 0; }

.site-footer { padding: 75px 0 22px; color: white; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.35fr 1fr; gap: 45px; }
.site-footer h2, .site-footer h3 { margin-bottom: 18px; }
.site-footer h2 { font-family: var(--font-serif); }
.site-footer h3 { color: var(--gold-300); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand img { margin-bottom: 18px; }
.youtube-link { color: var(--gold-300) !important; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .78rem; }

.floating-prayer {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    border-radius: 999px;
    color: var(--navy-950);
    background: linear-gradient(125deg, var(--gold-200), var(--gold-500));
    box-shadow: 0 14px 40px rgba(5,25,55,.25);
    font-weight: 900;
}
.floating-prayer svg { width: 20px; height: 20px; fill: currentColor; }

.notice { padding: 18px 20px; border-left: 4px solid var(--gold-500); border-radius: 0 14px 14px 0; background: #fff8e5; color: #5d4b24; }
.notice p:last-child { margin-bottom: 0; color: inherit; }
.divider { height: 1px; margin: 40px 0; background: var(--line); }
.tag { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--navy-800); background: #eaf2fb; font-size: .77rem; font-weight: 800; }

@media (max-width: 1040px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: none;
        padding: 16px;
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
    }
    .main-nav.open { display: grid; }
    .main-nav a { padding: 13px 14px; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 86px; }
    .hero-copy { max-width: 760px; }
    .hero-art { min-height: 430px; }
    .hero-orbit { width: 390px; }
    .cards-4 { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
    .section { padding: 76px 0; }
    .hero { min-height: auto; }
    .hero-grid { gap: 25px; padding-bottom: 90px; }
    .hero-art { min-height: 350px; }
    .hero-orbit { width: 320px; }
    .hero-live-card { left: 50%; transform: translateX(-50%); bottom: 4px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cards-3, .video-grid, .info-grid { grid-template-columns: 1fr 1fr; }
    .daily-grid, .need-selector, .split { grid-template-columns: 1fr; }
    .need-result { min-height: 420px; }
    .final-cta-inner { min-height: 350px; flex-direction: column; align-items: flex-start; justify-content: center; }
    .live-toolbar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 26px), var(--container)); }
    .announcement-inner { min-height: 42px; font-size: .74rem; }
    .announcement-inner span:nth-child(2) { display: none; }
    .nav-shell { min-height: 72px; }
    .brand img { width: 44px; height: 44px; }
    .brand-copy small { display: none; }
    .hero-grid { padding-top: 70px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-art { min-height: 300px; }
    .hero-orbit { width: 260px; }
    .hero-emblem { width: 245px; }
    .hero-live-card { width: 220px; }
    .page-hero-inner { padding: 70px 0; }
    .stats-strip { margin-top: -22px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .cards-3, .cards-4, .video-grid, .info-grid, .form-grid, .quiz-options { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .verse-card, .prayer-card { min-height: auto; }
    .button-row { align-items: stretch; flex-direction: column; }
    .button-row .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .floating-prayer { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
    .floating-prayer span { display: none; }
    .map-shell iframe { height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


.stats-strip { display: none; }

.western-wall-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
.prayer-wall-layout {
    align-items: start;
}
.western-wall-experience {
    position: relative;
}
.western-wall-scene {
    position: relative;
    min-height: 860px;
    border-radius: 28px;
    overflow: hidden;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(10,26,74,.10), rgba(10,26,74,.20)),
        url('../img/western-wall-bg.png') center/cover no-repeat;
    box-shadow: var(--shadow);
}
.western-wall-copy {
    position: relative;
    z-index: 2;
    max-width: 360px;
    color: white;
    margin-bottom: 22px;
}
.western-wall-copy p { color: rgba(255,255,255,.88); margin-top: 12px; }
.wall-crack-target {
    position: absolute;
    top: 48%;
    right: 8%;
    width: 26px;
    height: 140px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(63,44,25,.75), rgba(99,74,45,.58));
    box-shadow: inset 0 0 8px rgba(0,0,0,.3), 0 0 0 6px rgba(255,255,255,.08);
    z-index: 1;
}
.note-form {
    position: relative;
    z-index: 3;
    max-width: 540px;
    margin-top: 70px;
    margin-left: 18px;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
}
.note-paper {
    position: relative;
    background: #fff9ea;
    border-radius: 8px;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 70px rgba(20,33,82,.28);
    border: 1px solid rgba(201,154,61,.20);
    transform-origin: center center;
    transition: transform .42s cubic-bezier(.2,.75,.2,1), opacity .55s ease, filter .55s ease, border-radius .4s ease;
}
.note-paper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: repeating-linear-gradient(180deg, rgba(168,142,84,.08) 0, rgba(168,142,84,.08) 1px, transparent 1px, transparent 38px);
    pointer-events: none;
}
.note-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #f0ddb3 0%, #fff6e1 55%, rgba(255,255,255,0) 56%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border-top-right-radius: 8px;
}
.note-form.is-folding-one .note-paper {
    transform: scaleY(.48);
    filter: saturate(.96) drop-shadow(0 10px 14px rgba(20,33,82,.18));
    border-radius: 4px;
}
.note-form.is-folding-two .note-paper {
    transform: scale(.48, .30) rotate(5deg);
    filter: saturate(.92) drop-shadow(0 8px 10px rgba(20,33,82,.20));
    border-radius: 3px;
}
.note-form.is-sent-note .note-paper {
    transform: translate(270px, 110px) scale(.075) rotate(19deg);
    opacity: .08;
}
.note-form .form-group,
.note-form .checkbox-row,
.note-form .form-note,
.note-form .form-status,
.note-form label,
.note-form input,
.note-form textarea {
    position: relative;
    z-index: 1;
}
.note-form textarea {
    min-height: 170px;
    background: rgba(255,255,255,.72);
}
.note-form input,
.note-form textarea {
    border-color: rgba(48,92,222,.14);
}
.note-form .button-gold {
    min-width: 220px;
}
.form-status.success {
    color: #1f7a38;
    font-weight: 700;
}
.form-status.error {
    color: #b3261e;
    font-weight: 700;
}

@media (max-width: 920px) {
    .western-wall-scene { min-height: auto; }
    .note-form {
        margin-top: 24px;
        margin-left: 0;
        max-width: 100%;
    }
    .wall-crack-target {
        right: 4%;
        top: auto;
        bottom: 14%;
    }
    .note-form.is-sent-note .note-paper {
        transform: translate(95px, 115px) scale(.09) rotate(16deg);
    }
}
