:root {
    --ink: #252620;
    --ink-soft: #3f4139;
    --muted: #696b62;
    --sage: #46533d;
    --sage-deep: #34402f;
    --sage-soft: #e8ebe2;
    --tan: #bd8b62;
    --tan-soft: #efe1d2;
    --peach: #edcdb3;
    --cream: #fffaf2;
    --paper: #fffefb;
    --line: #ded8cb;
    --shadow: 0 18px 48px rgba(48, 42, 33, .10);
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Montserrat', Arial, Helvetica, sans-serif;
    --script: 'Allura', 'Segoe Script', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans);
    background:
        radial-gradient(circle at 15% 10%, rgba(239, 225, 210, .35), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fbf6ed 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1370px, calc(100% - 120px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 48px)); }
.flash {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    background: var(--sage);
    color: #fff;
    padding: 12px 20px;
    box-shadow: var(--shadow);
}

.announcement {
    background: linear-gradient(90deg, #efe4d7, #f8f0e8);
    color: #3c3f36;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}
.announcement-inner,
.nav-wrap,
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.announcement a { padding: 12px 0; transition: color .2s ease; }
.announcement a:hover { color: var(--tan); }
.socials {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
}
.socials a { opacity: .86; transition: color .2s ease, transform .2s ease, opacity .2s ease; }
.socials a:hover { color: var(--tan); opacity: 1; transform: translateY(-1px); }
.socials svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.site-header {
    background: rgba(255, 255, 255, .91);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 1px 0 rgba(70, 70, 60, .08);
    backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 14px 38px rgba(42, 37, 31, .08); }
.nav-wrap { min-height: 132px; transition: min-height .25s ease; }
.site-header.is-scrolled .nav-wrap { min-height: 98px; }
.logo {
    min-width: 220px;
    font-family: var(--serif);
    font-size: 35px;
    line-height: .82;
    letter-spacing: 0;
}
.logo span { display: block; }
.logo strong {
    display: block;
    font-family: var(--script);
    font-size: 42px;
    font-weight: 400;
    color: #20231f;
    transform: rotate(-4deg);
    margin-left: 25px;
}
.logo::after {
    content: "\2667";
    color: #9ca493;
    font-size: 40px;
    margin-left: 145px;
    margin-top: -42px;
    display: block;
}
.main-nav { display: flex; align-items: center; gap: 38px; font-weight: 700; color: #42423d; }
.main-nav a { position: relative; padding: 8px 0; transition: color .2s ease; }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    background: var(--tan);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}
.main-nav a:hover,
.main-nav a:first-child { color: var(--tan); }
.main-nav a:hover::after,
.main-nav a:first-child::after { transform: scaleX(1); }
.search-link { font-size: 32px; line-height: 1; color: #2d2d29 !important; }
.search-link::after { display: none; }
.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    padding: 8px 12px;
    font-size: 22px;
    cursor: pointer;
}

.hero {
    min-height: 598px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(255, 250, 242, .28));
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 88px; }
.hero h1 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: 0;
    color: #24251f;
    text-shadow: 0 1px 0 rgba(255,255,255,.42);
}
.hero h1 em,
.script,
.newsletter h2 {
    font-family: var(--script);
    color: #717c6e;
    font-style: normal;
    font-weight: 400;
}
.hero p { font-size: 18px; font-weight: 600; margin: 0 0 40px; color: #3d4038; letter-spacing: -.01em; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 34px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800;
    font-size: 13px;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(52, 45, 35, .16); }
.btn.dark { background: linear-gradient(135deg, var(--sage), var(--sage-deep)); color: white; }
.btn.outline { border: 2px solid #9ca093; color: #4d5049; background: #fff; }
.btn.outline:hover { background: var(--sage); border-color: var(--sage); color: #fff; }

.values {
    background: linear-gradient(90deg, #e4e8dc, #f3f1e7);
    padding: 52px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(64,64,54,.05);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.values-grid div {
    min-height: 76px;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    border-right: 1px solid #d1d0c5;
    transition: transform .2s ease;
}
.values-grid div:hover { transform: translateY(-2px); }
.values-grid div:last-child { border-right: 0; }
.line-icon { grid-row: span 2; color: #6f7769; font-size: 46px; line-height: 1; }
.values strong { text-transform: uppercase; letter-spacing: .06em; font-size: 13px; color: #3d4038; }
.values p { margin: 7px 0 0; color: #5d5f58; font-weight: 600; font-size: 14px; max-width: 250px; }

.welcome-section { padding: 90px 0 26px; }
.welcome-grid { display: grid; grid-template-columns: .88fr 1fr; gap: 64px; align-items: center; }
.welcome-grid img {
    width: 100%;
    height: 415px;
    object-fit: cover;
    box-shadow: var(--shadow);
    filter: contrast(1.04) saturate(.95);
}
.eyebrow {
    display: block;
    color: var(--tan);
    text-transform: uppercase;
    letter-spacing: .11em;
    font-weight: 800;
    margin-bottom: 12px;
}
.welcome-copy h2,
.section-head h2,
.page-hero h1,
.article-header h1 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05;
    margin: 0;
    color: #292a24;
}
.welcome-copy h2 { font-size: 47px; }
.welcome-copy h2::after,
.section-head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    background: var(--tan);
    margin: 18px 0 24px;
}
.welcome-copy p { font-size: 17px; font-weight: 500; max-width: 610px; color: #44463e; }
.script { font-size: 38px !important; line-height: 1.08; margin: 10px 0 18px; color: #7c8778 !important; }

.latest { padding: 24px 0 54px; }
.section-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
}
.section-head h2 { font-size: 40px; text-align: center; }
.section-head h2::after { margin: 14px auto 0; }
.section-head a {
    justify-self: end;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: #5d5f58;
    transition: color .2s ease, transform .2s ease;
}
.section-head a:hover { color: var(--tan); transform: translateX(2px); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card {
    background: #fff;
    border: 1px solid #eee8dc;
    box-shadow: 0 12px 32px rgba(52, 45, 35, .075);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(52, 45, 35, .13);
    border-color: #e1d4c2;
}
.post-card a:first-child { display: block; overflow: hidden; }
.post-card img { width: 100%; height: 174px; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.post-card:hover img { transform: scale(1.045); filter: contrast(1.04) saturate(1.04); }
.post-card-body { padding: 26px 30px 28px; }
.tag {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 5px 13px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.post-card h3 { font-family: var(--serif); font-size: 31px; line-height: .98; margin: 22px 0 10px; font-weight: 600; }
.post-card h3 a { transition: color .2s ease; }
.post-card h3 a:hover { color: var(--tan); }
.post-card p { margin: 0 0 18px; font-size: 14px; font-weight: 500; color: #4c4d47; }
.meta { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: #56584f; }
.meta b { padding: 0 12px; }
.meta a { transition: color .2s ease; }
.meta a:hover { color: var(--tan); }

.scripture-strip {
    background: linear-gradient(90deg, #f2e9df, #fbf5ed);
    padding: 38px 0;
    border-top: 1px solid rgba(189,139,98,.12);
    border-bottom: 1px solid rgba(64,64,54,.08);
}
.scripture-grid { display: grid; grid-template-columns: 90px 280px 1fr 230px; gap: 34px; align-items: center; }
.sun { font-size: 52px; color: #969b8d; }
.scripture-strip h2 { margin: 0; color: #a97750; font-family: var(--serif); font-size: 34px; line-height: 1; font-weight: 600; }
blockquote { margin: 0; font-size: 18px; font-weight: 600; border-left: 1px solid #d6c9b9; padding-left: 42px; color: #3f4139; }
cite { display: block; margin-top: 8px; font-style: normal; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.newsletter {
    background: linear-gradient(90deg, rgba(52,64,47,.98), rgba(70,83,61,.96)), var(--sage);
    color: #fff;
    padding: 36px 0;
}
.newsletter-grid { display: grid; grid-template-columns: 330px 1fr 120px; gap: 60px; align-items: center; }
.newsletter h2 { color: #e9ded2; font-size: 38px; line-height: 1; margin: 0 0 4px; }
.newsletter p { margin: 0; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.86); }
.subscribe-form { display: flex; max-width: 590px; box-shadow: 0 12px 28px rgba(20,25,18,.12); }
.subscribe-form input {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.34);
    color: #fff;
    padding: 0 24px;
    font-size: 16px;
    outline: none;
}
.subscribe-form input.is-invalid {
    border-color: #f2b5a8;
    background: rgba(255,255,255,.1);
}
.subscribe-form input:focus { border-color: rgba(237,205,179,.95); }
.subscribe-form input::placeholder { color: #d8d8cf; }
.subscribe-form button {
    border: 0;
    background: var(--peach);
    color: #8d6445;
    padding: 0 34px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .07em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.subscribe-form button:hover { background: #f3d8c0; color: #65462f; }
.leaf-mark { font-size: 58px; opacity: .45; text-align: right; }
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-section { padding: 76px 0 88px; }
.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 64px;
    align-items: start;
}
.contact-copy h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.04;
}
.contact-copy p {
    margin: 0 0 22px;
    color: #4c4d47;
    font-weight: 500;
}
.contact-email {
    display: inline-flex;
    color: var(--sage);
    font-weight: 800;
    border-bottom: 2px solid var(--tan);
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255,255,255,.78);
    border: 1px solid #eee8dc;
    box-shadow: var(--shadow);
    padding: 32px;
}
.contact-form label {
    display: grid;
    gap: 8px;
    color: #46483f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.contact-form input,
.contact-form textarea,
.search-form input {
    background: #fff;
    color: var(--ink);
    border: 1px solid #d9d1c4;
    padding: 14px 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 180px; }
.contact-form input:focus,
.contact-form textarea:focus,
.search-form input:focus {
    border-color: var(--tan);
    box-shadow: 0 0 0 4px rgba(189,139,98,.13);
}
.contact-form .is-invalid {
    border-color: #bd5d4e;
    background: #fff8f6;
}
.span-2 { grid-column: span 2; }
.field-error,
.form-error {
    color: #9e4638;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.footer { background: #fffdf8; padding: 28px 0 14px; border-top: 1px solid rgba(64,64,54,.06); }
.footer-grid nav { display: flex; gap: 34px; font-weight: 600; font-size: 13px; color: #55564f; }
.footer-grid nav a { transition: color .2s ease; }
.footer-grid nav a:hover { color: var(--tan); }
.footer-logo { transform: scale(.78); transform-origin: left center; }
.copyright { text-align: center; margin: 8px 0 0; font-size: 12px; color: #77786f; font-weight: 600; }

.page-hero { background: linear-gradient(135deg, #f5efe7, #fbf8f1); padding: 82px 0; text-align: center; }
.page-hero h1, .article-header h1 { font-size: clamp(44px, 5vw, 70px); }
.page-hero p { font-size: 18px; font-weight: 500; }
.page-image-section { padding: 54px 0 0; }
.page-featured-image {
    width: 100%;
    height: clamp(260px, 42vw, 520px);
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}
.page-content, .article-body { padding: 62px 0; font-size: 17px; font-weight: 500; }
.article-header { background: linear-gradient(135deg, #f5efe7, #fbf8f1); padding: 74px 0 42px; text-align: center; }
.article-image { width: min(980px, calc(100% - 48px)); height: clamp(280px, 44vw, 420px); object-fit: cover; object-position: center; margin: 0 auto; box-shadow: var(--shadow); }
.article-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 34px 0 0;
}
.like-form { margin: 0; }
.like-button,
.share-buttons a,
.share-buttons button {
    min-height: 42px;
    border: 1px solid #d9d1c4;
    background: #fff;
    color: var(--ink-soft);
    padding: 0 15px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.share-buttons svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex: 0 0 auto;
}
.share-pill.facebook { color: #315c9f; }
.share-pill.linkedin { color: #246a9f; }
.share-pill.instagram { color: #9e5c6f; }
.share-pill.copy-link { color: var(--sage); }
.like-button:hover,
.share-buttons a:hover,
.share-buttons button:hover {
    transform: translateY(-2px);
    border-color: var(--tan);
    color: var(--tan);
}
.like-button span { color: #9e4638; font-size: 16px; line-height: 1; }
.share-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.share-buttons > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.search-form { display: flex; gap: 12px; margin-top: 24px; }
.search-form input { flex: 1; font-size: 17px; }
.search-form input:focus { outline: 2px solid rgba(189,139,98,.25); border-color: var(--tan); }

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 22px 0 62px;
}
.post-navigation div {
    min-height: 104px;
    border: 1px solid #eee8dc;
    background: rgba(255,255,255,.72);
    padding: 22px;
}
.post-navigation div:last-child { text-align: right; }
.post-navigation span {
    display: block;
    color: var(--tan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.post-navigation a {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
    transition: color .2s ease;
}
.post-navigation a:hover { color: var(--tan); }

.comments-section { padding: 68px 0 86px; }
.comments-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.comments-head h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
}
.comments-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    background: #fff;
    border: 1px solid #eee8dc;
    box-shadow: 0 10px 24px rgba(52, 45, 35, .055);
    padding: 18px;
    margin-bottom: 18px;
}
.comment-form.auth-form { display: none; }
.comment-form.auth-form.is-active { display: grid; }
.comment-auth-panel {
    width: min(100%, 620px);
    margin: 0 auto 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid #eee4d7;
    box-shadow: 0 18px 50px rgba(52, 45, 35, .09);
    padding: 22px;
    overflow: hidden;
}
.auth-intro { text-align: center; margin-bottom: 16px; }
.auth-intro h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
}
.auth-intro p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    background: #f4eee6;
    border: 1px solid #eadfd2;
    padding: 5px;
    margin-bottom: 16px;
}
.auth-tab {
    min-height: 42px;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.auth-tab:hover { transform: translateY(-1px); color: var(--tan); }
.auth-tab.is-active {
    background: var(--sage);
    color: #fff;
    box-shadow: 0 8px 18px rgba(52,64,47,.16);
}
.comment-auth-panel .comment-form {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
}
.comment-member-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f4eee6;
    border: 1px solid #e1d4c2;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.comment-member-bar form { margin: 0; }
.comment-member-bar button {
    border: 0;
    background: transparent;
    color: var(--tan);
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.comment-form-single { margin-bottom: 34px; }
.comment-form label {
    display: grid;
    gap: 6px;
    color: #46483f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.comment-form input,
.comment-form textarea {
    border: 1px solid #d9d1c4;
    padding: 11px 13px;
    outline: none;
    resize: vertical;
    min-height: 44px;
    font-size: 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--tan);
    box-shadow: 0 0 0 4px rgba(189,139,98,.13);
}
.comment-form .is-invalid { border-color: #bd5d4e; background: #fff8f6; }
.comment-form.is-submitting {
    opacity: .78;
    pointer-events: none;
}
.comment-form button[disabled] {
    cursor: wait;
    filter: grayscale(.15);
}
.password-control {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
}
.password-control input {
    border-right: 0;
}
.password-control button {
    border: 1px solid #d9d1c4;
    background: #fbf8f1;
    color: var(--sage);
    padding: 0 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.password-control:focus-within input,
.password-control:focus-within button {
    border-color: var(--tan);
    box-shadow: 0 0 0 4px rgba(189,139,98,.13);
}
.password-control:focus-within button {
    box-shadow: 4px 0 0 4px rgba(189,139,98,.13);
}
.password-meter {
    height: 4px;
    background: #eee8dc;
    overflow: hidden;
    margin-top: -2px;
}
.password-meter span {
    display: block;
    width: 12%;
    height: 100%;
    background: #bd5d4e;
    transition: width .25s ease, background .25s ease;
}
.password-meter span[data-score="2"] { background: #bd8b62; }
.password-meter span[data-score="3"],
.password-meter span[data-score="4"] { background: var(--sage); }
.password-hint {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
}
.auth-footnote {
    margin: 12px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}
.comment-note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}
.comment-list { display: grid; gap: 18px; }
.comment-empty {
    border: 1px dashed #d8cbbc;
    background: rgba(255,255,255,.58);
    padding: 28px;
    text-align: center;
}
.comment-empty span {
    display: block;
    color: var(--tan);
    font-family: var(--serif);
    font-size: 56px;
    line-height: .7;
}
.comment-empty h3 {
    margin: 4px 0 6px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
}
.comment-empty p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}
.comment-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,242,.78));
    border: 1px solid #eee3d5;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(52, 45, 35, .055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.comment-card:hover {
    transform: translateY(-2px);
    border-color: #dfcfbd;
    box-shadow: 0 18px 40px rgba(52, 45, 35, .09);
}
.comment-avatar {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sage), var(--sage-deep));
    color: #fff;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 10px 18px rgba(52,64,47,.16);
}
.comment-content { min-width: 0; }
.comment-meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}
.comment-meta-row span {
    flex: 0 0 auto;
    background: #f4eee6;
    color: var(--tan);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.comment-card h3 { margin: 0; font-size: 17px; color: var(--ink); }
.comment-card time {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin: 2px 0 0;
}
.comment-card p {
    margin: 0;
    color: #44463e;
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
    .container { width: min(100% - 40px, 900px); }
    .announcement .socials { display: none; }
    .nav-wrap { min-height: 92px; }
    .site-header.is-scrolled .nav-wrap { min-height: 92px; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        padding: 20px;
        flex-direction: column;
        gap: 18px;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 38px rgba(42, 37, 31, .08);
    }
    .main-nav.open { display: flex; }
    .hero { min-height: 520px; background-position: 58% center; }
    .values-grid, .post-grid, .welcome-grid, .scripture-grid, .newsletter-grid, .contact-grid { grid-template-columns: 1fr; }
    .values-grid div { border-right: 0; border-bottom: 1px solid #d1d0c5; padding-bottom: 20px; }
    .section-head { grid-template-columns: 1fr; text-align: center; }
    .section-head a { justify-self: center; }
    .scripture-grid { gap: 16px; text-align: center; }
    blockquote { border-left: 0; padding-left: 0; }
    .subscribe-form { max-width: none; }
    .contact-section { padding: 56px 0 68px; }
    .footer-grid, .footer-grid nav { flex-direction: column; gap: 18px; text-align: center; }
    .article-tools { align-items: flex-start; flex-direction: column; }
    .share-buttons { justify-content: flex-start; }
    .post-navigation { grid-template-columns: 1fr; }
    .post-navigation div:last-child { text-align: left; }
    .comment-form { grid-template-columns: 1fr; }
    .comment-member-bar { align-items: flex-start; flex-direction: column; }
    .comment-auth-panel { padding: 18px; width: 100%; }
}

@media (max-width: 560px) {
    .container { width: calc(100% - 28px); }
    .announcement { font-size: 12px; }
    .logo { font-size: 29px; min-width: 176px; }
    .logo strong { font-size: 34px; }
    .logo::after { margin-left: 116px; font-size: 31px; }
    .hero p br { display: none; }
    .welcome-grid img, .article-image { height: 300px; }
    .page-featured-image { height: 280px; }
    .subscribe-form, .search-form { flex-direction: column; }
    .subscribe-form input, .subscribe-form button { min-height: 52px; }
    .contact-form { grid-template-columns: 1fr; padding: 24px; }
    .span-2 { grid-column: auto; }
    .like-button,
    .share-buttons a,
    .share-buttons button { width: 100%; justify-content: center; }
    .share-buttons { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
    .share-buttons > span { grid-column: 1 / -1; text-align: center; }
    .comment-card { grid-template-columns: 1fr; }
    .comment-avatar { width: 48px; height: 48px; }
    .comment-meta-row { flex-direction: column; align-items: flex-start; }
    .auth-intro h3 { font-size: 27px; }
    .auth-tabs { gap: 5px; }
    .auth-tab { min-height: 40px; font-size: 11px; }
    .comment-form { padding: 16px; gap: 12px; }
    .comment-auth-panel .comment-form { padding: 0; }
    .password-control { grid-template-columns: 1fr 74px; }
    .password-control button { padding: 0 10px; font-size: 11px; }
    .post-card-body { padding: 24px 24px 26px; }
}
