/* ============================================================
   SACRED LIGHT — GGC Redesign
   Luminous cream · Forest green · Burnished amber · Editorial
   ============================================================ */
:root {
    --cream: #faf7f0;
    --cream2: #f2ede3;
    --cream3: #e8e0d0;
    --forest: #1c3d2b;
    --forest2: #2a5a3f;
    --forest3: #3d7a57;
    --amber: #c8872a;
    --amber2: #e09c35;
    --amber3: #f5b84a;
    --crimson: #8b1f33;
    --ink: #1a1512;
    --ink2: #2d2520;
    --ink3: #5a4f45;
    --muted: #8a7f72;
    --border: rgba(28, 61, 43, 0.12);
    --border2: rgba(200, 135, 42, 0.25);
    --r: 10px;
    --rl: 18px;
    --rxl: 28px;
    --shadow: 0 4px 24px rgba(26, 21, 18, 0.08);
    --shadow2: 0 12px 48px rgba(26, 21, 18, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Grain overlay for tactile feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream2);
}

::-webkit-scrollbar-thumb {
    background: var(--forest3);
    border-radius: 3px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── TICKER ── */
.ticker {
    background: var(--forest);
    padding: 7px 0;
    overflow: hidden;
    position: relative;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--forest), transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--forest));
}

.ticker-wrap {
    display: flex;
    width: max-content;
    animation: tick 35s linear infinite;
    white-space: nowrap;
}

.ticker-wrap span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.8);
    padding: 0 24px;
}

.ticker-wrap .dot {
    color: var(--amber3);
    font-size: .55rem;
    padding: 0 2px;
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(26, 21, 18, 0.1);
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left ul,
.nav-right ul {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-left ul li a,
.nav-right ul li a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-left ul li a:hover,
.nav-right ul li a:hover {
    color: var(--forest);
    background: rgba(28, 61, 43, .07);
}

.nav-center {
    flex-shrink: 0;
    padding: 0 10px;
}

.nav-center img {
    height: 40px;
    width: auto;
}

/* Show navy logo in light mode */
.nav-center .light-logo {
    display: block;
}

.nav-center .dark-logo {
    display: none;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 170px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s;
    z-index: 999;
    box-shadow: var(--shadow2);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--ink3) !important;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
}

.dropdown a:hover {
    color: var(--forest) !important;
    padding-left: 26px;
}

.has-dropdown i {
    display: none;
}

.btn-nav {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .22s;
    white-space: nowrap;
}

.btn-forest {
    background: var(--forest);
    color: var(--cream);
}

.btn-forest:hover {
    background: var(--forest2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(28, 61, 43, .3);
}

.btn-amber {
    background: var(--amber);
    color: #fff;
}

.btn-amber:hover {
    background: var(--amber2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 135, 42, .4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 61, 43, .82) 0%, rgba(26, 21, 18, .55) 50%, rgba(139, 31, 51, .65) 100%);
}

/* Stained-glass cross effect */
.hero-ornament {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.hero-ornament svg {
    width: min(60vw, 500px);
    height: auto;
    opacity: .07;
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 80px 28px;
    text-align: center;
    animation: rise 1.1s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--amber3);
    margin-bottom: 26px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: rgba(245, 184, 74, .5);
}

.hero-ref {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(.9rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--amber3);
    margin-bottom: 22px;
    letter-spacing: .02em;
    min-height: 1.8em;
    opacity: .9;
}

.hero-verse {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
    min-height: 2.5em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber3), transparent);
    margin: 0 auto 30px;
}

.hero-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, .55);
}

/* Diagonal bottom cut */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ── FEATURE STRIP ── */
.feature-strip {
    background: var(--cream2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.feature-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--border);
}

.feature-item {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background .2s;
}

.feature-item:hover {
    background: var(--cream);
}

.feat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--forest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cream);
}

.feat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink3);
}

.feat-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── SECTION HEADS ── */
.sec-head {
    margin-bottom: 56px;
}

.sec-head.center {
    text-align: center;
}

.sec-eyebrow {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-head.center .sec-eyebrow {
    justify-content: center;
}

.sec-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--amber3);
    opacity: .5;
}

.sec-head.center .sec-eyebrow::before {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--amber3);
    opacity: .5;
}

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--ink);
    line-height: 1.15;
}

.sec-title em {
    color: var(--forest);
    font-style: italic;
}

.sec-desc {
    font-size: 1rem;
    color: var(--ink3);
    margin-top: 14px;
    max-width: 540px;
    line-height: 1.75;
}

.sec-head.center .sec-desc {
    margin: 14px auto 0;
}

/* ── DEVOTION SECTION ── */
.devo-section {
    padding: 100px 0;
}

.devo-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.devo-content {
    position: relative;
}

.devo-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--cream);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.devo-date-badge::before {
    content: '✝';
    font-size: .9rem;
}

.devo-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 20px;
    min-height: 2em;
}

.devo-body-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ink3);
    line-height: 1.9;
    min-height: 5em;
    border-left: 3px solid var(--amber);
    padding-left: 20px;
}

.devo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--forest);
    border-radius: 8px;
    transition: all .22s;
}

.devo-cta:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow2);
}

/* Audio card */
.audio-card {
    background: var(--forest);
    border-radius: var(--rxl);
    padding: 40px 36px;
    color: var(--cream);
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow2);
    overflow: hidden;
    position: relative;
}

.audio-card::before {
    content: '♪';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: .05;
    line-height: 1;
    color: var(--cream);
    pointer-events: none;
}

.audio-label {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, .55);
    margin-bottom: 20px;
}

.audio-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 30px;
    min-height: 2em;
}

.audio-player-box {
    background: rgba(250, 247, 240, .08);
    border-radius: var(--rl);
    padding: 22px;
}

.audio-btns-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.abtn {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(250, 247, 240, .6);
    font-size: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
}

.abtn:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, .1);
}

.play-btn {
    width: 54px !important;
    height: 54px !important;
    background: var(--amber) !important;
    color: #fff !important;
    font-size: 20px !important;
    border-radius: 50% !important;
    transition: all .2s !important;
    box-shadow: 0 4px 20px rgba(200, 135, 42, .4) !important;
}

.play-btn:hover {
    background: var(--amber2) !important;
    transform: scale(1.08) !important;
}

.prog-bar {
    height: 3px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--amber3));
    border-radius: 3px;
    width: 0%;
    transition: width .1s;
}

.time-row {
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    color: rgba(250, 247, 240, .45);
}

.vol-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.vol-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    background: var(--amber3);
    border-radius: 50%;
    cursor: pointer;
}

/* ── QUICK ACCESS ── */
.access-section {
    padding: 100px 0;
    background: var(--cream2);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.access-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 40px 28px 32px;
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.access-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.access-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow2);
    border-color: var(--border2);
    color: var(--ink);
}

.access-card:hover::after {
    transform: scaleX(1);
}

.ac-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--cream3);
    line-height: 1;
    margin-bottom: 12px;
    font-style: italic;
}

.access-card:hover .ac-num {
    color: var(--forest);
    opacity: .2;
}

.ac-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.ac-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 12px;
}

.ac-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.ac-link {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.access-card:hover .ac-link {
    gap: 12px;
}

/* ── SCRIPTURE BANNER ── */
.scripture-banner {
    background: var(--forest);
    padding: 80px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scripture-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 135, 42, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 31, 51, .2) 0%, transparent 60%);
}

.sb-cross {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sb-cross::before {
    content: '✝';
    font-size: clamp(200px, 40vw, 380px);
    color: rgba(250, 247, 240, .03);
    line-height: 1;
}

.sb-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 3.8vw, 2.5rem);
    font-style: italic;
    color: rgba(250, 247, 240, .92);
    max-width: 780px;
    margin: 0 auto 20px;
    line-height: 1.4;
    position: relative;
}

.sb-ref {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amber3);
}

/* ── PRODUCTS ── */
.prod-section {
    padding: 100px 0;
}

.prod-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.view-all {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--border2);
    transition: gap .2s, color .2s;
}

.view-all:hover {
    gap: 14px;
    color: var(--amber);
}

.prod-track {
    display: flex;
    gap: 22px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
}

.product-card {
    flex-shrink: 0;
    width: 230px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: transform .3s, box-shadow .3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow2);
    color: var(--ink);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.prod-info {
    padding: 16px 18px 20px;
}

.prod-info p {
    font-size: .83rem;
    color: var(--ink3);
    margin-bottom: 8px;
    line-height: 1.4;
}

.prod-price {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--forest);
}

.slide-ctrls {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    justify-content: center;
}

.slide-c {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--cream);
    color: var(--ink3);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.slide-c:hover {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
    box-shadow: var(--shadow);
}

/* ── TESTIMONIALS ── */
.testi-section {
    padding: 100px 0;
    background: var(--cream2);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 40px 32px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--forest);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow2);
}

.testi-card:hover::before {
    transform: scaleY(1);
}

.big-q {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    line-height: .8;
    color: var(--amber3);
    opacity: .35;
    margin-bottom: 16px;
    display: block;
}

.testi-txt {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: var(--ink3);
    line-height: 1.85;
    margin-bottom: 28px;
}

.testi-divider {
    width: 36px;
    height: 2px;
    background: var(--amber);
    margin-bottom: 20px;
}

.testi-auth {
    display: flex;
    align-items: center;
    gap: 14px;
}

.auth-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .05em;
    flex-shrink: 0;
}

.auth-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .04em;
}

.auth-role {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 56px;
}

.f-brand img {
    height: 36px;
    width: auto;
}

/* Show white logo in dark footer */
.f-brand .dark-logo {
    display: block;
}

.f-brand .light-logo {
    display: none;
}

.f-tag {
    font-family: 'Playfair Display', serif;
    font-size: .9rem;
    font-style: italic;
    color: rgba(250, 247, 240, .5);
    margin: 18px 0 24px;
    line-height: 1.7;
    max-width: 240px;
}

.f-social {
    display: flex;
    gap: 10px;
}

.f-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(250, 247, 240, .07);
    border: 1px solid rgba(250, 247, 240, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 247, 240, .55);
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
}

.f-social a:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
}

.f-col h4 {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, .4);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(250, 247, 240, .08);
}

.f-col a {
    display: block;
    font-size: .84rem;
    color: rgba(250, 247, 240, .55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s, padding-left .2s;
}

.f-col a:hover {
    color: var(--amber3);
    padding-left: 6px;
}

.footer-bot {
    border-top: 1px solid rgba(250, 247, 240, .06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bot p {
    font-size: .77rem;
    color: rgba(250, 247, 240, .3);
}

.theme-btn {
    background: rgba(250, 247, 240, .06);
    border: 1px solid rgba(250, 247, 240, .1);
    color: rgba(250, 247, 240, .5);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    font-family: 'Nunito Sans', sans-serif;
}

.theme-btn:hover {
    border-color: var(--amber);
    color: var(--amber3);
}

/* ── BACK TO TOP ── */
.btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    border: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    box-shadow: 0 4px 20px rgba(28, 61, 43, .4);
    z-index: 9000;
}

.btt.vis {
    opacity: 1;
    pointer-events: all;
}

.btt:hover {
    transform: translateY(-3px);
}

/* ── SCROLL REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.rv.on {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
    .devo-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .audio-card {
        position: relative;
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:900px) {
    .access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
        position: fixed;
        top: 68px;
        background: rgba(250, 247, 240, .97);
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
        flex-direction: column;
        z-index: 9997;
        backdrop-filter: blur(20px);
    }

    .nav-left {
        left: 0;
        align-items: flex-start;
    }

    .nav-right {
        right: 0;
        align-items: flex-end;
    }

    .nav-left.open,
    .nav-right.open {
        display: flex;
    }

    .nav-left ul,
    .nav-right ul {
        flex-direction: column;
        gap: 2px;
        width: 100%;
        padding: 0 16px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 12px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-verse {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .prod-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media(max-width:480px) {
    .access-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip-inner {
        grid-template-columns: 1fr;
    }

    .footer-bot {
        flex-direction: column;
        text-align: center;
    }
}