:root {
    --ink: #17231d;
    --muted: #66716b;
    --line: #dedbd1;
    --paper: #f5f2e9;
    --panel: #fffefa;
    --nav: #10271e;
    --gold: #c6a15b;
    --gold-deep: #9b7739;
    --blue: #274d43;
    --green: #173c30;
    --green-soft: #dce8df;
    --danger: #8d2f25;
    --ok: #2f6b35;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid #e1bd6d;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #fff;
    background: #10271e;
    border-radius: 4px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px clamp(18px, 4vw, 48px);
    background: var(--nav);
    color: #fffdf8;
}

.brand {
    text-decoration: none;
    font-weight: 900;
    font-size: 21px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(198, 161, 91, .55);
    border-radius: 50%;
    color: var(--gold);
    font-size: 17px;
}

.topbar nav {
    display: flex;
    gap: 10px;
}

.topbar nav a {
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 8px;
    color: #f4dfaa;
}

.topbar nav a.active {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.reader-layout {
    display: grid;
    grid-template-columns: minmax(300px, 350px) minmax(0, 1fr) minmax(300px, 420px);
    gap: 22px;
    width: min(1600px, calc(100% - 48px));
    margin: 24px auto 64px;
    align-items: start;
}

.panel,
.scripture,
.lights,
.login-card,
.admin-head,
.filters,
.table-wrap,
.metrics article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 34px rgba(17, 24, 39, .06);
}

.panel,
.lights,
.scripture {
    padding: 22px;
    min-width: 0;
}

.panel {
    position: sticky;
    top: 18px;
}

.eyebrow {
    margin: 0 0 10px;
    color: #b8872f;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
}

h1, h2, h3 { margin-top: 0; }

.reader-form,
.login-card form,
.filters {
    display: grid;
    gap: 12px;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    color: #344054;
}

input,
select,
button {
    width: 100%;
    max-width: 100%;
    font: inherit;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
}

button {
    cursor: pointer;
    background: var(--gold);
    color: #151515;
    border-color: #c79a3e;
    font-weight: 900;
}

.topbar nav a,
.pager a,
.pager span {
    width: auto;
}

.muted {
    color: var(--muted);
}

.reader-summary {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.reader-chapter-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.reader-chapter-head h2 {
    margin-bottom: 4px;
    font: 500 clamp(34px, 4vw, 52px)/1.05 Georgia, 'Times New Roman', serif;
}

.reader-position,
.reader-progress-label {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.reader-progress-label { white-space: nowrap; }

.reader-progress {
    height: 4px;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e3d7;
}

.reader-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.chapter-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 30px;
}

.chapter-nav-link {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 13px 16px;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfaf5;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.chapter-nav-link:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: #fffdf7;
}

.chapter-nav-link small,
.chapter-nav-link strong { grid-column: 2; }
.chapter-nav-link small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.chapter-nav-link strong { font: 600 16px Georgia, 'Times New Roman', serif; }
.chapter-nav-link > span { grid-row: 1 / 3; color: var(--gold-deep); font-size: 20px; }
.chapter-nav-next { text-align: right; }
.chapter-nav-next small,
.chapter-nav-next strong { grid-column: 2; }
.chapter-nav-next > span { grid-column: 3; }
.chapter-nav-link.disabled { opacity: .48; }
.chapter-nav-link.disabled:hover { transform: none; border-color: var(--line); background: #fbfaf5; }
.chapter-nav-bottom { margin: 38px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }

.scripture-text {
    max-width: 760px;
    margin: 0 auto;
}

.verse {
    font-size: 20px;
    line-height: 1.85;
    margin: 0 0 13px;
}

.verse.selected {
    background: #fff3cf;
    border-radius: 8px;
    padding: 6px 8px;
}

.verse-num {
    display: inline-block;
    min-width: 30px;
    text-decoration: none;
    color: #8a531d;
    font-weight: 900;
    font-size: 14px;
}

.light-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-left: 7px;
    border-radius: 999px;
    background: #ffe7a4;
    color: #74420d;
    text-decoration: none;
    font-weight: 900;
    font-size: 0;
}

.light-dot::before {
    content: "\2726";
    font-size: 16px;
    line-height: 1;
}

.light-card {
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.light-card:first-of-type {
    border-top: 0;
}

.reference {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.light-card p {
    line-height: 1.6;
}

.lights-heading {
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
}

.empty-state {
    margin-top: 22px;
    padding: 28px 20px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 12px;
}

.empty-state span {
    display: block;
    color: var(--gold-deep);
    font-size: 24px;
}

.admin-wrap {
    width: min(1280px, calc(100% - 28px));
    margin: 32px auto 72px;
}

.login-card {
    max-width: 520px;
    padding: 26px;
}

.alert {
    padding: 10px 12px;
    border-left: 4px solid var(--danger);
    background: #ffe8e4;
    color: var(--danger);
}

.ok {
    padding: 10px 12px;
    border-left: 4px solid var(--ok);
    background: #e8f5e8;
    color: var(--ok);
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px;
    margin-bottom: 18px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.metrics article {
    padding: 14px;
}

.metrics strong {
    display: block;
    font-size: 28px;
}

.metrics span {
    color: var(--muted);
    font-size: 13px;
}

.filters {
    grid-template-columns: minmax(180px, 1fr) 180px 190px 110px;
    padding: 16px;
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: #f2e3c8;
    font-size: 12px;
    text-transform: uppercase;
}

td span {
    color: var(--muted);
}

.status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef2ff;
    color: #243b67;
    font-weight: 800;
    font-size: 12px;
}

.inline-form {
    display: grid;
    grid-template-columns: 170px minmax(120px, 1fr) 90px;
    gap: 8px;
}

.pager {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.pager a,
.pager span {
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
}

/* Landing */

.landing-page {
    background: #f7f5ef;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
    text-wrap: pretty;
}

.site-header {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-header .brand {
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    letter-spacing: .01em;
}

.site-header nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header nav a,
.site-footer nav a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.site-header nav a:not(.nav-cta) {
    color: rgba(255,255,255,.75);
}

.site-header nav a:hover,
.site-footer nav a:hover {
    color: var(--gold);
}

.site-header .nav-cta {
    padding: 11px 17px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 790px;
    padding: 155px 0 100px;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(9,30,22,.98) 0%, rgba(18,56,43,.97) 52%, rgba(28,69,53,.93) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .12;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.35) .6px, transparent .6px);
    background-size: 7px 7px;
    mask-image: linear-gradient(to right, #000, transparent 65%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    width: 520px;
    height: 520px;
    top: -260px;
    right: 5%;
    background: radial-gradient(circle, rgba(203,170,100,.17), transparent 70%);
}

.hero-glow-two {
    width: 420px;
    height: 420px;
    bottom: -250px;
    left: 20%;
    background: radial-gradient(circle, rgba(218,235,220,.1), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    color: #d9be85;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 800;
}

.hero-copy h1 {
    max-width: 750px;
    margin: 0;
    font: 500 clamp(52px, 6.4vw, 86px)/.98 Georgia, 'Times New Roman', serif;
    letter-spacing: -.045em;
}

.hero-copy h1 em,
.section-heading h2 em,
.final-cta h2 em {
    color: #d7bb7c;
    font-weight: 400;
}

.hero-lead {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.button-primary {
    background: var(--gold);
    color: #16251e;
}

.button-primary:hover {
    background: #d6b56f;
}

.button-secondary {
    color: #fff;
    border-color: rgba(255,255,255,.26);
    background: rgba(255,255,255,.04);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
}

.trust-row span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.trust-row i {
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(198,161,91,.65);
    border-radius: 50%;
    color: var(--gold);
    font-style: normal;
    font-size: 9px;
}

.hero-preview {
    position: relative;
    padding: 22px 0 45px;
}

.preview-window {
    overflow: hidden;
    width: min(100%, 500px);
    margin-left: auto;
    color: var(--ink);
    background: #fdfbf4;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    box-shadow: 0 34px 80px rgba(0,0,0,.28);
    transform: rotate(1.5deg);
}

.preview-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    background: #eeeae0;
    border-bottom: 1px solid #ddd8cd;
}

.preview-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bdb7aa;
}

.preview-bar small {
    margin-left: auto;
    color: #777267;
    font: 600 10px Georgia, serif;
}

.preview-body {
    padding: clamp(26px, 4vw, 42px);
}

.preview-reference {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2ddd2;
}

.preview-reference span {
    color: var(--gold-deep);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.preview-reference strong {
    font: 500 16px Georgia, serif;
}

.preview-body > p {
    color: #3b443f;
    font: 400 17px/1.7 Georgia, serif;
}

.preview-body sup {
    color: var(--gold-deep);
    font: 800 9px system-ui;
}

.preview-light {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 27px;
    padding: 19px;
    background: #e5eee7;
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.preview-light-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
}

.preview-light small,
.preview-light strong {
    display: block;
}

.preview-light small {
    margin-bottom: 5px;
    color: var(--gold-deep);
    font-size: 8px;
    letter-spacing: .14em;
    font-weight: 900;
}

.preview-light strong {
    font: 600 16px Georgia, serif;
}

.preview-light p {
    margin: 6px 0 0;
    color: #59635e;
    font-size: 11px;
    line-height: 1.55;
}

.preview-badge {
    position: absolute;
    right: -20px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

.preview-badge > span { color: var(--gold-deep); font-size: 22px; }
.preview-badge strong, .preview-badge small { display: block; }
.preview-badge strong { font: 600 13px Georgia, serif; }
.preview-badge small { margin-top: 2px; color: var(--muted); font-size: 9px; }

.value-strip {
    position: relative;
    z-index: 3;
    width: min(1060px, calc(100% - 40px));
    min-height: 110px;
    margin: -38px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background: #fffefa;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(24,48,39,.09);
}

.value-strip div {
    padding: 20px 28px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.value-strip div:last-child { border-right: 0; }
.value-strip strong { display: block; color: var(--green); font: 500 27px Georgia, serif; }
.value-strip span { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 125px 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.light-story h2,
.final-cta h2 {
    margin: 0;
    color: var(--green);
    font: 500 clamp(40px, 5vw, 61px)/1.06 Georgia, 'Times New Roman', serif;
    letter-spacing: -.035em;
}

.section-heading h2 em { color: var(--gold-deep); }
.section-heading > p:last-child { max-width: 640px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    min-height: 290px;
    padding: 38px;
    overflow: hidden;
    background: #fffefa;
    border: 1px solid var(--line);
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(20,55,42,.08);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: #d7d4ca;
    font: 500 13px Georgia, serif;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 27px;
    color: var(--green);
    background: var(--green-soft);
    border-radius: 50%;
    font-size: 21px;
}

.feature-card h3,
.coming-grid h3 {
    margin-bottom: 12px;
    color: var(--green);
    font: 600 25px Georgia, serif;
}

.feature-card p,
.coming-grid p {
    max-width: 500px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-card a {
    display: inline-flex;
    gap: 12px;
    margin-top: 13px;
    color: var(--green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.feature-card-gold {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.feature-card-gold h3,
.feature-card-gold .feature-number { color: #fff; }
.feature-card-gold p { color: rgba(255,255,255,.68); }
.feature-card-gold .feature-icon { color: var(--green); background: var(--gold); }

.feature-label,
.coming-status {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 8px;
    color: #e1c88e;
    border: 1px solid rgba(225,200,142,.35);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.light-story {
    padding: 120px 0;
    color: #fff;
    background: var(--green);
}

.light-story-inner {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.eyebrow-light { color: #d9bb78; }
.light-story h2, .final-cta h2 { color: #fff; }
.light-story-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.75; }

.light-points {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
}

.light-points li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.13);
}

.light-points li > span { color: var(--gold); font: 500 13px Georgia, serif; }
.light-points strong, .light-points small { display: block; }
.light-points strong { font: 600 16px Georgia, serif; }
.light-points small { margin-top: 5px; color: rgba(255,255,255,.55); }

.pastor-quote {
    position: relative;
    margin: 0;
    padding: 45px;
    color: var(--ink);
    background: #f6f0e3;
    box-shadow: 18px 18px 0 rgba(198,161,91,.25);
}

.quote-mark { display: block; height: 58px; color: var(--gold-deep); font: 80px/1 Georgia, serif; }
.pastor-quote p { margin: 10px 0 30px; font: 500 29px/1.35 Georgia, serif; }
.pastor-quote footer { padding-top: 18px; color: var(--muted); border-top: 1px solid #d9d1c3; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.centered { margin: 0 auto; text-align: center; }
.centered > p:last-child { margin-left: auto; margin-right: auto; }

.coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 58px;
}

.coming-grid article {
    position: relative;
    min-height: 310px;
    padding: 34px;
    background: #fffefa;
    border: 1px solid var(--line);
}

.coming-status { margin: 0; color: var(--gold-deep); border-color: #d8c79f; }
.coming-icon { margin: 35px 0 25px; color: var(--green); font-size: 32px; }

.final-cta {
    padding: 110px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(120deg, #7c632f, #b58e45);
}

.final-cta > div { max-width: 760px; margin: 0 auto; }
.final-mark { display: inline-grid; place-items: center; width: 58px; height: 58px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 24px; }
.final-cta h2 em { color: #fff; }
.final-cta > div > p:not(.eyebrow) { margin: 24px auto 30px; color: rgba(255,255,255,.74); }
.button-light { color: var(--green); background: #fff; }

.site-footer {
    min-height: 145px;
    padding: 38px max(20px, calc((100% - 1180px) / 2));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    color: rgba(255,255,255,.65);
    background: #0c2119;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { color: #fff; font: 600 18px Georgia, serif; }
.footer-brand small { margin-top: 3px; font-size: 10px; }
.site-footer > p { margin: 0; text-align: center; font-size: 11px; }
.site-footer nav { justify-content: flex-end; gap: 20px; font-size: 11px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (max-width: 1180px) {
    .reader-layout {
        grid-template-columns: 1fr;
    }
    .panel {
        position: static;
    }
    .metrics,
    .filters {
        grid-template-columns: 1fr 1fr;
    }
    .hero-inner { grid-template-columns: 1fr 440px; gap: 45px; }
}

@media (max-width: 900px) {
    .site-header { position: relative; background: var(--green); }
    .site-header-inner { min-height: 74px; }
    .site-header nav a:not(.nav-cta) { display: none; }
    .hero { min-height: auto; padding-top: 90px; }
    .hero-inner, .light-story-inner { grid-template-columns: 1fr; }
    .hero-preview { width: min(560px, 100%); margin: 0 auto; }
    .value-strip { grid-template-columns: 1fr 1fr; margin-top: 0; }
    .value-strip div:nth-child(2) { border-right: 0; }
    .value-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .coming-grid { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .site-footer nav { justify-content: center; }
}

@media (max-width: 640px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .metrics,
    .filters,
    .inline-form {
        grid-template-columns: 1fr;
    }
    .verse {
        font-size: 18px;
    }
    .reader-layout { width: min(100% - 20px, 1600px); margin-top: 12px; }
    .panel, .lights, .scripture { padding: 18px; }
    .reader-chapter-head { align-items: flex-start; }
    .reader-progress-label { margin-top: 5px; }
    .chapter-nav { grid-template-columns: 1fr; }
    .chapter-nav-link { min-height: 62px; }
    .site-header-inner { width: min(100% - 28px, 1180px); }
    .site-header .brand { font-size: 19px; }
    .site-header .nav-cta { padding: 9px 13px; font-size: 12px; }
    .hero { padding: 70px 0 65px; }
    .hero-inner { width: min(100% - 30px, 1180px); }
    .hero-copy h1 { font-size: clamp(44px, 14vw, 60px); }
    .hero-lead { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .trust-row { gap: 12px 18px; }
    .preview-window { transform: none; }
    .preview-badge { position: relative; right: auto; width: calc(100% - 24px); margin: -12px auto 0; }
    .value-strip { width: 100%; border-left: 0; border-right: 0; }
    .value-strip div { padding: 18px 10px; }
    .section { width: min(100% - 30px, 1180px); padding: 85px 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; padding: 30px 26px; }
    .light-story { padding: 85px 0; }
    .light-story-inner { width: min(100% - 30px, 1100px); gap: 50px; }
    .pastor-quote { padding: 32px 27px; }
    .pastor-quote p { font-size: 24px; }
    .coming-grid article { min-height: auto; padding: 28px; }
    .final-cta { padding: 85px 20px; }
    .site-footer { padding: 40px 20px; }
}
