:root {
    --ink: #141c2b;
    --ink-deep: #0a101a;
    --night: #0e1624;
    --canal: #2a3a4f;
    --gold: #c9a84d;
    --gold-bright: #e8c96a;
    --gold-soft: rgba(232, 201, 106, 0.55);
    --ember: #b86a3a;
    --dome-green: #2f6b5a;
    --mist: #9aadb8;
    --paper: #e6eaef;
    --paper-deep: #d5dde6;
    --text: #182231;
    --muted: #5a6675;
    --line: rgba(201, 168, 77, 0.38);
    --glass: rgba(10, 16, 26, 0.42);
    --font-display: "Cormorant Infant", "Times New Roman", serif;
    --font-body: "Source Serif 4", "Georgia", serif;
    --radius: 1px;
    --shadow: 0 28px 70px rgba(10, 16, 26, 0.35);
    --hero-image: url("/images/spas-na-krovi-hero.webp");
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(184, 106, 58, 0.08), transparent 55%),
        radial-gradient(1000px 500px at 88% 8%, rgba(47, 107, 90, 0.07), transparent 50%),
        linear-gradient(180deg, #dfe6ee 0%, var(--paper) 42%, #edf1f5 100%);
    line-height: 1.65;
}

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

a {
    color: var(--canal);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--ink);
}

.shell {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.shell.narrow {
    width: min(720px, calc(100% - 2.5rem));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--gold);
    color: var(--ink-deep);
    padding: 0.6rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

/* ——— Header ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px) saturate(1.15);
    background: rgba(10, 16, 26, 0.28);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 16, 26, 0.82);
    border-bottom-color: rgba(201, 168, 77, 0.28);
    box-shadow: 0 12px 40px rgba(10, 16, 26, 0.28);
}

.page-home .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.55), rgba(10, 16, 26, 0.08));
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.35rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 2;
    color: var(--gold-bright);
    text-decoration: none;
}

.header-phone {
    margin-left: auto;
    margin-right: 1rem;
    color: var(--gold-bright);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-phone:hover {
    color: #fff6df;
}

.header-phone--nav {
    display: none;
    margin: 0;
}

.brand__crucifix {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 3rem;
    filter: drop-shadow(0 1px 8px rgba(10, 16, 26, 0.75));
}

.brand__crucifix svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
}

.brand__mark {
    display: none;
}

.brand__text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    min-height: 2.5rem;
    transform: translateX(25ch);
}

.site-nav__primary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.35rem;
}

.site-nav__account {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    z-index: 2;
}

.site-nav a,
.linkish {
    color: rgba(230, 234, 239, 0.9);
    text-decoration: none;
    font-size: 0.98rem;
}

.site-nav a:hover,
.linkish:hover {
    color: var(--gold-bright);
}

.nav-cta {
    border: 1px solid var(--gold-soft);
    padding: 0.35rem 0.85rem;
    color: var(--gold-bright) !important;
    background: rgba(201, 168, 77, 0.08);
}

.nav-form {
    margin: 0;
}

.linkish {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: rgba(230, 234, 239, 0.9);
}

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0.55rem;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--gold-bright);
}

.flash {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: rgba(201, 168, 77, 0.14);
}

/* ——— Home hero: full-bleed temple ——— */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: start;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink-deep);
    margin-top: -4.35rem;
}

.hero__stage {
    position: absolute;
    inset: 0;
}

.hero__photo {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: 58% 45%;
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(105deg, rgba(10, 16, 26, 0.62) 0%, rgba(10, 16, 26, 0.28) 36%, rgba(10, 16, 26, 0.12) 62%, rgba(10, 16, 26, 0.4) 100%),
        linear-gradient(180deg, rgba(10, 16, 26, 0.42) 0%, rgba(10, 16, 26, 0.12) 38%, rgba(10, 16, 26, 0.55) 100%);
}

.hero__credit {
    margin: 1.35rem auto 0;
    max-width: 28ch;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(230, 234, 239, 0.55);
}

.hero__credit a {
    color: rgba(232, 201, 106, 0.75);
    text-decoration: none;
}

.hero__credit a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
}

.hero__content {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 38%;
    max-width: 38%;
    margin: 0;
    padding: 6.5rem 1rem 3.5rem;
    text-align: center;
}

.hero__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--gold-bright);
    text-shadow:
        0 2px 24px rgba(10, 16, 26, 0.55),
        0 0 40px rgba(232, 201, 106, 0.18);
}

.hero__crucifix {
    display: block;
    flex-shrink: 0;
    width: 0.78em;
    height: 1.17em;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(10, 16, 26, 0.7))
        drop-shadow(0 0 14px rgba(232, 201, 106, 0.4));
}

.hero__brand-text {
    min-width: 0;
}

.hero__title {
    margin: 0 auto;
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    font-weight: 500;
    line-height: 1.3;
    color: rgba(230, 234, 239, 0.94);
    text-shadow: 0 2px 18px rgba(10, 16, 26, 0.55);
}

.hero__lead {
    margin: 1.55rem auto 0;
    max-width: 28ch;
    color: #f0d789;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow:
        0 2px 16px rgba(10, 16, 26, 0.65),
        0 0 28px rgba(201, 168, 77, 0.22);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.95rem;
    margin-top: 2.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.65rem 1.4rem;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--ink-deep);
    box-shadow: 0 10px 28px rgba(201, 168, 77, 0.28);
}

.btn--gold:hover {
    background: linear-gradient(180deg, #f0d789, var(--gold-bright));
    color: var(--ink-deep);
}

.btn--ghost {
    border-color: rgba(232, 201, 106, 0.5);
    color: var(--gold-bright);
    background: rgba(10, 16, 26, 0.28);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    color: #fff6df;
    border-color: var(--gold-bright);
    background: rgba(10, 16, 26, 0.42);
}

/* ——— Sections ——— */
.section {
    padding: 5rem 0;
}

.section--intro {
    position: relative;
    background:
        linear-gradient(180deg, rgba(20, 28, 43, 0.92), rgba(20, 28, 43, 0.88)),
        var(--night);
    color: var(--paper);
    overflow: hidden;
}

.section--intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: 50% 70%;
    opacity: 0.16;
    filter: saturate(0.85) contrast(1.05);
    transform: scale(1.05);
    pointer-events: none;
}

.section--intro .shell {
    position: relative;
    z-index: 1;
}

.section--intro h2,
.section__heading,
.page-hero h1,
.auth-page h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.12;
}

.section--intro h2 {
    color: var(--gold-bright);
}

.section--intro p {
    margin: 0;
    font-size: 1.12rem;
    color: rgba(230, 234, 239, 0.82);
    max-width: 42ch;
}

.section--paths {
    background:
        linear-gradient(180deg, rgba(47, 107, 90, 0.04), transparent 35%),
        linear-gradient(180deg, #edf1f5, var(--paper));
}

.section__heading {
    position: relative;
    padding-bottom: 0.85rem;
}

.section__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.path-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(20, 28, 43, 0.12);
}

.path-list li {
    border-bottom: 1px solid rgba(20, 28, 43, 0.12);
}

.path-list a {
    display: grid;
    gap: 0.3rem;
    padding: 1.45rem 0.2rem;
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.3s ease;
}

.path-list a:hover {
    padding-left: 0.55rem;
}

.path-list strong {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.25s ease;
}

.path-list span {
    color: var(--muted);
}

.path-list a:hover strong {
    color: var(--dome-green);
}

/* ——— Inner pages ——— */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 2.5rem;
    color: var(--paper);
    background: var(--night);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: 55% 40%;
}

.page-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 16, 26, 0.82), rgba(10, 16, 26, 0.55) 55%, rgba(10, 16, 26, 0.72)),
        linear-gradient(180deg, rgba(10, 16, 26, 0.35), rgba(10, 16, 26, 0.75));
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--gold-bright);
    text-shadow: 0 2px 20px rgba(10, 16, 26, 0.45);
}

.page-hero__lead {
    margin: 0;
    max-width: 40ch;
    color: rgba(230, 234, 239, 0.82);
}

.prose p {
    margin: 0 0 1.1rem;
    font-size: 1.08rem;
    color: var(--muted);
}

/* ——— Auth ——— */
.auth-page {
    position: relative;
    padding: 4rem 0 5.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #1a2434 0%, #121a27 40%, #e6eaef 40%, var(--paper) 100%);
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0 0 58%;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: 55% 35%;
    opacity: 0.45;
    filter: saturate(0.85);
    pointer-events: none;
}

.auth-page::after {
    content: "";
    position: absolute;
    inset: 0 0 58%;
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.55), rgba(18, 26, 39, 0.92));
    pointer-events: none;
}

.auth-shell {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100% - 2.5rem));
}

.church-form {
    position: relative;
    padding: 2.35rem 1.85rem 1.95rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.97), rgba(230, 234, 239, 0.95));
    border: 1px solid rgba(201, 168, 77, 0.45);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        var(--shadow);
}

.church-form--profile {
    margin-top: -0.5rem;
}

.church-form__ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.church-form__arch {
    width: 4.5rem;
    height: 1.35rem;
    border: 1.5px solid var(--gold);
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    position: relative;
}

.church-form__arch::before,
.church-form__arch::after {
    content: "";
    position: absolute;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid var(--gold);
    background: var(--paper);
    transform: rotate(45deg);
}

.church-form__arch::before {
    left: -0.15rem;
}

.church-form__arch::after {
    right: -0.15rem;
}

.church-form__title,
.auth-page h1 {
    margin: 0 0 0.65rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
}

.church-form__title--sm {
    font-size: clamp(1.55rem, 3vw, 1.95rem);
    margin-bottom: 1.15rem;
}

.church-form__lead,
.auth-lead {
    margin: 0 0 1.45rem;
    text-align: center;
    color: var(--muted);
    font-size: 1.02rem;
}

.church-form__body {
    border-top: 1px solid rgba(201, 168, 77, 0.28);
    padding-top: 1.35rem;
}

.church-form__footer {
    margin-top: 0.35rem;
}

.auth-form {
    display: grid;
    gap: 1.05rem;
}

.auth-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--ink);
}

.auth-form label > span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    min-height: 2.95rem;
    border: 1px solid rgba(42, 58, 79, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.65rem 0.9rem;
    font: inherit;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.auth-form input:focus {
    outline: 2px solid rgba(201, 168, 77, 0.6);
    outline-offset: 1px;
    border-color: var(--gold);
}

.auth-form .btn {
    margin-top: 0.35rem;
    width: 100%;
}

.check {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    grid-template-columns: none;
}

.field-error {
    color: #7a3030;
    font-style: normal;
    font-size: 0.9rem;
}

.auth-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.15rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 77, 0.22);
}

.auth-links a {
    color: var(--canal);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.auth-links a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.profile-meta {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.75rem;
}

.profile-meta div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(20, 28, 43, 0.12);
}

.profile-meta dt {
    color: var(--muted);
    font-size: 0.9rem;
}

.profile-meta dd {
    margin: 0;
    font-size: 1.1rem;
}

.text-link {
    color: var(--canal);
}

/* ——— Footer ——— */
.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 77, 0.22);
    padding: 3rem 0;
    background: var(--night);
    color: var(--paper);
}

.site-footer__atmosphere {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: 50% 85%;
    opacity: 0.18;
    filter: saturate(0.8);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
}

.site-footer__brand {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--gold-bright);
}

.site-footer__phone {
    margin: 0.45rem 0 0;
}

.site-footer__phone a {
    color: rgba(230, 234, 239, 0.92);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.site-footer__phone a:hover {
    color: var(--gold-bright);
}

.site-footer__note {
    margin: 0.45rem 0 0;
    color: rgba(154, 173, 184, 0.85);
    font-size: 0.95rem;
}

/* ——— Psalm bar ——— */
.psalom-audio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.psalom-bar {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 50;
}

.psalom-bar__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.6rem;
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(201, 168, 77, 0.45);
    background: rgba(10, 16, 26, 0.88);
    color: var(--gold-bright);
    font-family: var(--font-body);
    font-size: 0.92rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.psalom-bar__toggle:hover {
    border-color: var(--gold-bright);
}

.psalom-bar__icon {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: rgba(232, 201, 106, 0.45);
}

.psalom-bar__toggle.is-playing .psalom-bar__icon {
    background: var(--gold-bright);
}

@media (max-width: 860px) {
    :root {
        --hero-image: url("/images/spas-na-krovi-hero-960.webp");
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-phone:not(.header-phone--nav) {
        display: none;
    }

    .header-phone--nav {
        display: inline;
        color: var(--gold-bright);
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.15rem 1.25rem 1.35rem;
        background: rgba(10, 16, 26, 0.96);
        border-bottom: 1px solid rgba(201, 168, 77, 0.25);
        transform: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__primary {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
    }

    .site-nav__account {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }

    .nav-toggle {
        margin-left: auto;
    }

    .hero__content {
        width: min(100%, 26rem);
        max-width: none;
        padding: 5.5rem 0.85rem 2.75rem;
        text-align: center;
    }

    .hero__brand {
        font-size: clamp(2.8rem, 11vw, 4.2rem);
        flex-wrap: nowrap;
        gap: 0.4em;
    }

    .hero__crucifix {
        width: 0.85em;
        height: 1.25em;
    }

    .hero__title {
        font-size: clamp(1.4rem, 4.5vw, 1.9rem);
        max-width: 20ch;
    }

    .hero__lead {
        font-size: clamp(1.35rem, 4.2vw, 1.7rem);
        max-width: 26ch;
    }

    .hero__photo {
        background-position: 58% 42%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none !important;
    }
}

/* ——— Contact honeypot ——— */
.hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.optional {
    color: var(--muted);
    font-size: 0.9em;
    font-weight: 400;
}

.field-error {
    margin: 0.35rem 0 0;
    color: #8b2e2e;
    font-size: 0.92rem;
}

.church-form--contact {
    margin-top: 0;
}

/* ——— Admin cabinet ——— */
.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(20, 28, 43, 0.12);
}

.admin-nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    color: var(--ink);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.admin-stat {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(201, 168, 77, 0.35);
    background: rgba(255, 255, 255, 0.55);
}

.admin-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--ink);
    line-height: 1.1;
}

.admin-stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .admin-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.admin-heading {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(20, 28, 43, 0.12);
    background: rgba(255, 255, 255, 0.65);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(20, 28, 43, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    background: rgba(201, 168, 77, 0.12);
    font-weight: 600;
}

.admin-table tr.is-unread {
    background: rgba(232, 201, 106, 0.18);
}

.admin-ua {
    max-width: 18rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.admin-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.admin-filter label {
    display: block;
    width: 100%;
    font-size: 0.92rem;
    color: var(--muted);
}

.admin-filter input {
    min-width: 14rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(20, 28, 43, 0.18);
    font: inherit;
}

.admin-messages {
    display: grid;
    gap: 1rem;
}

.admin-message {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(20, 28, 43, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

.admin-message.is-unread {
    border-color: rgba(201, 168, 77, 0.55);
    background: rgba(255, 248, 220, 0.75);
}

.admin-message__head {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.admin-message__meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-message__body {
    margin: 0 0 0.85rem;
    white-space: pre-wrap;
}

.admin-pagination {
    margin-top: 1.5rem;
}

.admin-pagination nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.admin-pagination a,
.admin-pagination span {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(20, 28, 43, 0.12);
    text-decoration: none;
    color: var(--ink);
}

.page-hero__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.page-hero__kicker a {
    color: var(--gold-bright);
    text-decoration: none;
}

.psalm-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 0.55rem;
}

.psalm-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(20, 28, 43, 0.1);
    background: rgba(255, 255, 255, 0.55);
    color: inherit;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.psalm-grid a:hover {
    border-color: rgba(201, 168, 77, 0.55);
    color: var(--dome-green);
}

.badge-audio {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: lowercase;
}

.liturgical-text {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--text);
    white-space: normal;
}

.liturgical-source {
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.92rem;
}

