: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); }

.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: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; }

.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-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: 420px; object-fit: cover; margin: 0 auto; box-shadow: var(--shadow); }
.search-form { display: flex; gap: 12px; margin-top: 24px; }
.search-form input { flex: 1; border: 1px solid var(--line); padding: 15px 16px; font-size: 17px; }
.search-form input:focus { outline: 2px solid rgba(189,139,98,.25); border-color: var(--tan); }

.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 { 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; }
    .footer-grid, .footer-grid nav { flex-direction: column; gap: 18px; text-align: center; }
}

@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; }
    .subscribe-form, .search-form { flex-direction: column; }
    .subscribe-form input, .subscribe-form button { min-height: 52px; }
    .post-card-body { padding: 24px 24px 26px; }
}
