:root {
    --brown-950: #2a1208;
    --brown-900: #2e1608;
    --brown-850: #2e1b10;
    --brown-800: #4a2412;
    --brown-700: #5a2d14;
    --brown-650: #6d3b1d;
    --brown-600: #8a4d26;
    --line-brown: #8a5a39;
    --cream: #f6f1ea;
    --paper: #ffffff;
    --line-soft: #decfc3;
    --line-muted: #d7c3b4;
    --text-muted: #777777;
    --shadow-soft: 0 18px 45px rgba(46, 22, 8, 0.12);
    --shadow-tight: 0 10px 26px rgba(46, 22, 8, 0.10);
    --header-gradient: linear-gradient(135deg, #2e1608 0%, #5a2d14 56%, #2a1208 100%);
    --surface-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 234, 0.92));
    --nav-height: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: calc(var(--nav-height) + 116px);
    background:
        radial-gradient(circle at 12% 0%, rgba(138, 90, 57, 0.16), transparent 30rem),
        linear-gradient(180deg, #f6f1ea 0%, #ffffff 46%, #f6f1ea 100%);
    color: var(--brown-850);
    font-family: "Roboto Slab", serif;
    text-rendering: optimizeLegibility;
}

body::after {
    content: "";
    position: fixed;
    inset-inline: -4%;
    bottom: 0;
    z-index: 0;
    height: clamp(58px, 10vw, 92px);
    background:
        url("../imagens/gramado.png") center bottom / auto 100% repeat-x,
        linear-gradient(180deg, rgba(246, 241, 234, 0), rgba(42, 18, 8, 0.14));
    opacity: 0.34;
    pointer-events: none;
    transform-origin: center bottom;
    animation: garden-breeze 9s ease-in-out infinite;
}

img,
audio {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.falling-leaves {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    top: -12vh;
    left: var(--leaf-left);
    opacity: 0.24;
    font-size: var(--leaf-size);
    line-height: 1;
    text-shadow: 0 6px 14px rgba(46, 22, 8, 0.16);
    will-change: transform, opacity;
    animation: leaf-fall var(--leaf-duration) linear infinite;
    animation-delay: var(--leaf-delay);
}

.leaf:nth-child(1) { --leaf-left: 8%; --leaf-size: 1.25rem; --leaf-duration: 24s; --leaf-delay: -4s; --leaf-drift: 34px; }
.leaf:nth-child(2) { --leaf-left: 24%; --leaf-size: 0.95rem; --leaf-duration: 31s; --leaf-delay: -18s; --leaf-drift: -26px; }
.leaf:nth-child(3) { --leaf-left: 43%; --leaf-size: 1.1rem; --leaf-duration: 28s; --leaf-delay: -10s; --leaf-drift: 42px; }
.leaf:nth-child(4) { --leaf-left: 63%; --leaf-size: 0.9rem; --leaf-duration: 35s; --leaf-delay: -26s; --leaf-drift: -34px; }
.leaf:nth-child(5) { --leaf-left: 78%; --leaf-size: 1.2rem; --leaf-duration: 27s; --leaf-delay: -14s; --leaf-drift: 28px; }
.leaf:nth-child(6) { --leaf-left: 91%; --leaf-size: 0.85rem; --leaf-duration: 33s; --leaf-delay: -7s; --leaf-drift: -22px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--header-gradient);
    color: var(--paper);
    box-shadow: var(--shadow-tight);
}

.header-shell {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
}

.logo-link {
    grid-column: 3;
    justify-self: end;
}

.logo-link img {
    width: clamp(132px, 29vw, 220px);
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(42, 18, 8, 0.35));
}

.menu-toggle {
    grid-column: 1;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-brown);
    color: var(--paper);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.primary-nav {
    display: none;
    border-top: 1px solid var(--line-brown);
    border-bottom: 1px solid var(--line-brown);
    background: var(--brown-950);
}

.primary-nav.is-open {
    display: grid;
}

.primary-nav a {
    padding: 17px 20px;
    color: var(--paper);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(138, 90, 57, 0.38);
    transition: background-color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
    background: var(--brown-600);
}

.app-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 1220px);
    margin: 0 auto;
    padding: 22px 16px 44px;
}

.desktop-sidebar {
    display: none;
}

.content-flow,
.radio-layout,
.devotional-grid,
.recent-posts,
.devotional-library,
.help-form,
.identity-fields,
.form-grid {
    display: grid;
    gap: 18px;
}

.panel,
.hero-card,
.page-hero,
.devotional-card,
.reading-card,
.help-form-panel,
.prayer-panel,
.post-row {
    background: var(--surface-gradient);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-tight);
}

.section-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--brown-600);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-card,
.page-hero {
    min-height: 320px;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: clamp(28px, 7vw, 52px);
    position: relative;
}

.hero-card::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(46, 22, 8, 0.08), transparent 52%),
        radial-gradient(circle at 88% 18%, rgba(138, 77, 38, 0.16), transparent 15rem);
    pointer-events: none;
}

.hero-card > *,
.page-hero > * {
    position: relative;
}

.hero-card h2,
.page-hero h2 {
    max-width: 780px;
    color: var(--brown-800);
    font-size: clamp(2rem, 9vw, 4.3rem);
    font-weight: 800;
    line-height: 1.04;
}

.hero-card p,
.page-hero p {
    max-width: 620px;
    margin-top: 16px;
    color: var(--brown-800);
    font-size: 1rem;
    line-height: 1.78;
}

.install-app-button {
    width: fit-content;
    min-height: 50px;
    margin-top: 22px;
    padding: 13px 18px;
    background: var(--brown-900);
    border: 1px solid var(--line-brown);
    color: var(--paper);
    cursor: pointer;
    font-weight: 800;
}

.install-app-status {
    display: block;
    max-width: 520px;
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.radio-player,
.playlist,
.compact,
.devotional-card,
.reading-card,
.help-form-panel,
.post-row {
    padding: 22px;
}

.radio-player {
    display: grid;
    gap: 22px;
}

.radio-player h2,
.section-heading h2,
.compact h2,
.prayer-panel h2 {
    color: var(--brown-800);
    font-size: clamp(1.35rem, 6vw, 2rem);
    line-height: 1.18;
}

.player-mark {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    margin: 2px auto;
    color: var(--brown-800);
    font-size: 4.5rem;
    border: 1px solid var(--line-muted);
    background: #f6f1ea;
}

.player-mark.has-cover {
    color: transparent;
    background-position: center;
    background-size: cover;
}

.home-radio-control {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--line-soft);
}

.home-radio-control button {
    min-height: 48px;
    background: var(--brown-900);
    border: 1px solid var(--line-brown);
    color: var(--paper);
    cursor: pointer;
    font-weight: 800;
}

.home-radio-text {
    min-width: 0;
}

.home-radio-text strong,
.home-radio-text small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-radio-text small {
    margin-top: 4px;
    color: var(--text-muted);
}

.home-radio-progress {
    height: 4px;
    margin-top: 12px;
    background: rgba(90, 45, 20, 0.16);
}

.home-radio-progress span {
    display: block;
    inline-size: 0;
    block-size: 100%;
    background: var(--brown-600);
}

.player-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line-soft);
    padding-top: 16px;
}

.player-meta span {
    padding: 7px 10px;
    background: var(--brown-900);
    color: var(--paper);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.playlist {
    display: grid;
    gap: 12px;
}

.playlist-placeholder {
    padding-block: 16px;
    color: var(--text-muted);
    line-height: 1.65;
}

.track {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line-soft);
    color: var(--brown-850);
    cursor: pointer;
    text-align: left;
}

.track small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
}

.track b,
.track.active strong,
.devotional-card span,
.reading-card time,
.post-row time {
    color: var(--brown-600);
}

.devotional-card span,
.reading-card time,
.post-row time {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.devotional-card h3,
.reading-card h3,
.post-row h3 {
    color: var(--brown-800);
    font-size: 1.28rem;
    line-height: 1.25;
}

.devotional-card p,
.reading-card p,
.post-row p,
.compact p,
.prayer-panel p {
    margin-top: 12px;
    color: var(--brown-850);
    line-height: 1.75;
}

.devotional-card a,
.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--brown-600);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.devotional-article {
    display: grid;
    gap: 24px;
    padding: clamp(24px, 6vw, 54px);
}

.article-header h2 {
    color: var(--brown-800);
    font-size: clamp(1.7rem, 7vw, 3.35rem);
    line-height: 1.08;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    color: var(--brown-600);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.scripture-card {
    margin: 0;
    padding: 24px;
    background: #f6f1ea;
    border: 1px solid var(--line-muted);
    color: var(--brown-800);
    font-size: clamp(1.18rem, 5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.55;
}

.scripture-card cite {
    display: block;
    margin-top: 14px;
    color: var(--brown-600);
    font-size: 0.85rem;
    font-style: normal;
    text-transform: uppercase;
}

.devotional-article > p {
    line-height: 1.9;
}

.reflection-box {
    padding: 22px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.reflection-box h3 {
    color: var(--brown-800);
}

.prayer-panel {
    display: grid;
    gap: 20px;
    padding: 28px 24px;
    background: var(--header-gradient);
    color: var(--paper);
}

.prayer-panel .section-kicker,
.prayer-panel h2,
.prayer-panel p {
    color: var(--paper);
}

.prayer-button,
.submit-button {
    min-height: 52px;
    padding: 14px 18px;
    background: var(--paper);
    color: var(--brown-800);
    border: 1px solid rgba(255, 255, 255, 0.62);
    cursor: pointer;
    font-weight: 800;
}

.help-form-panel {
    padding: clamp(24px, 6vw, 48px);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-fieldset,
.captcha-box {
    padding: 18px;
    border: 1px solid var(--line-soft);
}

.choice-option,
.consent-line {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.55;
}

.choice-option input,
.consent-line input {
    width: 18px;
    height: 18px;
    accent-color: var(--brown-600);
}

.identity-fields[hidden] {
    display: none;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field span,
.form-fieldset legend {
    color: var(--brown-800);
    font-size: 0.86rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--line-muted);
    color: var(--brown-850);
    outline: none;
}

.form-field textarea {
    min-height: 190px;
    resize: vertical;
    line-height: 1.75;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    border-color: var(--brown-600);
    box-shadow: 0 0 0 3px rgba(138, 77, 38, 0.16);
}

.captcha-box {
    min-height: 76px;
    display: grid;
    align-items: center;
    justify-items: start;
    overflow: hidden;
    background: #f6f1ea;
}

.form-note,
.form-status {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.submit-button {
    background: var(--header-gradient);
    color: var(--paper);
    border: 1px solid var(--line-brown);
}

.privacy-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding-left: 18px;
    line-height: 1.75;
}

.privacy-list li::marker {
    color: var(--brown-600);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.cookie-consent {
    position: fixed;
    inset-inline: 14px;
    bottom: calc(var(--nav-height) + 130px);
    z-index: 60;
    display: grid;
    gap: 16px;
    max-width: 680px;
    margin-inline: auto;
    padding: 20px;
    background: var(--surface-gradient);
    border: 1px solid var(--line-brown);
    box-shadow: var(--shadow-soft);
}

.cookie-consent h2 {
    color: var(--brown-800);
    font-size: 1.25rem;
    line-height: 1.2;
}

.cookie-consent p {
    margin-top: 10px;
    color: var(--brown-850);
    line-height: 1.65;
}

.cookie-consent a {
    display: inline-block;
    margin-top: 10px;
    color: var(--brown-600);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.cookie-actions {
    display: grid;
    gap: 10px;
}

.cookie-actions button {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line-brown);
    cursor: pointer;
    font-weight: 800;
}

.cookie-actions [data-cookie-decline] {
    background: var(--paper);
    color: var(--brown-800);
}

.cookie-actions [data-cookie-accept] {
    background: var(--brown-900);
    color: var(--paper);
}

.site-footer {
    position: relative;
    z-index: 2;
    min-height: 148px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--header-gradient);
    color: var(--paper);
}

.footer-content {
    width: min(100%, 1220px);
    margin: 0 auto;
    padding: 42px 18px;
    text-align: center;
}

.footer-content img {
    width: 56px;
    margin: 0 auto 16px;
    opacity: 0.88;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bottom-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 30;
    min-height: var(--nav-height);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--brown-950);
    border-top: 1px solid var(--line-brown);
    box-shadow: 0 -14px 32px rgba(42, 18, 8, 0.18);
}

.bottom-nav a {
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 10px 4px 9px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
}

.bottom-nav span {
    font-size: 1.12rem;
    line-height: 1;
}

.bottom-nav a.active {
    background: var(--brown-600);
    color: var(--paper);
}

.live-radio-player {
    position: fixed;
    inset-inline: 0;
    bottom: var(--nav-height);
    z-index: 28;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(42, 18, 8, 0.96);
    border-top: 1px solid var(--line-brown);
    color: var(--paper);
    box-shadow: 0 -12px 30px rgba(42, 18, 8, 0.2);
}

.live-radio-cover {
    width: 68px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--brown-800);
    border: 1px solid var(--line-brown);
    background-position: center;
    background-size: cover;
}

.live-radio-cover span {
    font-size: 2rem;
}

.live-radio-cover.has-cover span {
    display: none;
}

.live-radio-info {
    min-width: 0;
}

.live-radio-kicker {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.live-radio-info strong,
.live-radio-info small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-radio-info small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
}

.live-radio-progress {
    height: 4px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.18);
}

.live-radio-progress span {
    display: block;
    inline-size: 0;
    block-size: 100%;
    background: var(--paper);
}

.live-radio-time {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
}

.live-radio-controls {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 52px 52px 52px 1fr;
    gap: 8px;
    align-items: center;
}

.live-radio-controls button {
    min-height: 42px;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--brown-800);
    cursor: pointer;
    font-weight: 800;
}

.live-radio-controls input {
    width: 100%;
    accent-color: var(--brown-600);
}

.live-radio-player.is-playing .live-radio-cover {
    animation: cover-pulse 2.6s ease-in-out infinite;
}

.live-radio-player.needs-action {
    box-shadow:
        0 -12px 30px rgba(42, 18, 8, 0.24),
        0 -1px 0 rgba(246, 241, 234, 0.22);
}

.live-radio-player.needs-action [data-radio-play] {
    animation: radio-call 1.6s ease-in-out infinite;
}

.live-radio-player.is-minimized {
    grid-template-columns: 42px 1fr auto;
    padding-block: 8px;
}

.live-radio-player.is-minimized .live-radio-cover {
    width: 42px;
}

.live-radio-player.is-minimized .live-radio-progress,
.live-radio-player.is-minimized .live-radio-time,
.live-radio-player.is-minimized .live-radio-controls label,
.live-radio-player.is-minimized [data-radio-next] {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes leaf-fall {
    0% {
        opacity: 0;
        transform: translate3d(0, -12vh, 0) rotate(0deg);
    }
    12% {
        opacity: 0.24;
    }
    50% {
        transform: translate3d(var(--leaf-drift), 52vh, 0) rotate(96deg);
    }
    88% {
        opacity: 0.22;
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(var(--leaf-drift) * -0.45), 112vh, 0) rotate(190deg);
    }
}

@keyframes cover-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}

@keyframes radio-call {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes garden-breeze {
    0%, 100% {
        transform: translateX(0) skewX(0deg);
    }
    50% {
        transform: translateX(-0.8%) skewX(-1deg);
    }
}

@media (min-width: 720px) {
    body {
        padding-bottom: 116px;
    }

    .header-shell {
        min-height: 142px;
        padding: 28px 42px;
    }

    .menu-toggle {
        display: none;
    }

    .primary-nav,
    .primary-nav.is-open {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .primary-nav a {
        min-width: 112px;
        border-bottom: 0;
        border-right: 1px solid rgba(138, 90, 57, 0.28);
        text-align: center;
    }

    .app-shell {
        padding: 34px 28px 64px;
    }

    .content-flow {
        gap: 24px;
    }

    .radio-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
        gap: 24px;
    }

    .devotional-grid,
    .devotional-library {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .form-fieldset,
    .form-grid,
    .identity-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading.wide {
        grid-column: 1 / -1;
    }

    .prayer-panel {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 34px;
    }

    .prayer-button {
        width: auto;
        min-width: 190px;
    }

    .post-row {
        grid-template-columns: 130px 1fr;
        align-items: start;
        padding: 26px;
    }

    .bottom-nav {
        display: none;
    }

    .live-radio-player {
        bottom: 0;
        grid-template-columns: 82px minmax(0, 1fr) minmax(260px, 0.36fr);
        padding-inline: 30px;
    }

    .live-radio-cover {
        width: 82px;
    }

    .live-radio-controls {
        grid-column: auto;
    }

    .cookie-consent {
        bottom: 112px;
        grid-template-columns: minmax(0, 1fr) 220px;
        align-items: end;
    }
}

@media (min-width: 1040px) {
    .site-header {
        position: relative;
    }

    .header-shell {
        width: min(100%, 1320px);
        margin: 0 auto;
        padding-inline: 60px;
    }

    .app-shell {
        display: grid;
        grid-template-columns: 310px minmax(0, 1fr);
        gap: 30px;
        align-items: start;
        padding-inline: 40px;
    }

    .desktop-sidebar {
        position: sticky;
        top: 28px;
        display: grid;
        gap: 22px;
    }

    .compact blockquote {
        color: var(--brown-800);
        font-size: 1.35rem;
        line-height: 1.55;
    }

    .compact blockquote + p {
        color: var(--brown-600);
        font-weight: 800;
    }

    .hero-card {
        min-height: 430px;
    }
}

@media (hover: hover) {
    .track:hover,
    .devotional-card:hover,
    .reading-card:hover,
    .post-row:hover {
        transform: translateY(-3px);
        transition: transform 180ms ease, box-shadow 180ms ease;
        box-shadow: var(--shadow-soft);
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .falling-leaves {
        display: none;
    }

    .live-radio-player.needs-action [data-radio-play] {
        animation: none;
    }
}
