:root {
    --ink: #26332f;
    --muted: #66736e;
    --paper: #fbfaf6;
    --card: #ffffff;
    --sage: #69877c;
    --sage-dark: #36584e;
    --sand: #eadfca;
    --line: #e6e5de;
    --shadow: 0 20px 60px rgba(42, 58, 52, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}
a { color: inherit; }
.site-header {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 50% 50% 48% 52% / 56% 43% 57% 44%;
    color: white; background: var(--sage-dark); font-family: Georgia, serif; font-size: 24px;
}
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1; }
.brand small { color: var(--muted); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
nav { display: flex; gap: 28px; }
nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
nav a:hover, nav a:focus-visible { color: var(--sage); }
main { min-height: calc(100vh - 280px); }
.hero {
    width: min(1160px, calc(100% - 40px));
    margin: 28px auto 84px;
    min-height: 530px;
    padding: clamp(42px, 7vw, 90px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: center;
    gap: 60px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #e8eee8 0%, #f4eddf 62%, #e9dac5 100%);
    box-shadow: var(--shadow);
}
.eyebrow { margin: 0 0 14px; color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.02em; }
.hero h1 { max-width: 680px; font-size: clamp(48px, 7vw, 84px); }
.hero-copy { max-width: 650px; margin: 28px 0 34px; color: #52615c; font-size: clamp(17px, 2vw, 21px); }
.button {
    display: inline-flex; align-items: center; min-height: 50px; padding: 0 23px;
    border-radius: 999px; color: #fff; background: var(--sage-dark); text-decoration: none; font-weight: 800; font-size: 14px;
}
.button:hover, .button:focus-visible { background: #24473d; transform: translateY(-1px); }
.nest-art { position: relative; width: min(100%, 380px); aspect-ratio: 1; margin: auto; }
.nest-art::before, .nest-art::after, .nest-art span { content: ""; position: absolute; border-radius: 50%; }
.nest-art::before { inset: 7%; background: #d6b887; box-shadow: inset 0 0 0 28px rgba(255,255,255,.26), 0 28px 50px rgba(69,72,56,.14); }
.nest-art::after { inset: 25%; background: #f8f1df; box-shadow: inset 0 -18px 35px rgba(168,132,80,.16); }
.nest-art span { z-index: 1; width: 22%; aspect-ratio: 1; top: 39%; background: #8ca69b; box-shadow: inset -10px -12px 18px rgba(51,76,68,.18); }
.nest-art span:nth-child(1) { left: 26%; transform: rotate(-12deg); }
.nest-art span:nth-child(2) { left: 41%; top: 34%; background: #b97869; }
.nest-art span:nth-child(3) { left: 55%; transform: rotate(12deg); background: #d5ac67; }
.stories { width: min(1160px, calc(100% - 40px)); margin: 0 auto 110px; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(36px, 5vw, 56px); }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--card); box-shadow: 0 10px 35px rgba(42,58,52,.06); }
.post-card > a { display: block; height: 100%; text-decoration: none; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card, .post-card:hover, .button { transition: .22s ease; }
.post-cover { position: relative; min-height: 260px; overflow: hidden; display: flex; align-items: flex-end; padding: 24px; }
.post-cover::before, .post-cover::after { content: ""; position: absolute; border-radius: 50%; opacity: .75; }
.post-cover::before { width: 220px; height: 220px; right: -45px; top: -60px; border: 26px solid rgba(255,255,255,.4); }
.post-cover::after { width: 120px; height: 120px; left: 10%; bottom: -65px; background: rgba(255,255,255,.26); }
.post-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-cover span { position: relative; z-index: 2; padding: 8px 13px; border-radius: 999px; color: #fff; background: rgba(23,36,32,.68); backdrop-filter: blur(8px); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cover-yoga { background: linear-gradient(135deg, #8aa59a, #d7e1d8); }
.cover-love { background: linear-gradient(135deg, #c57875, #efc3b7); }
.cover-treasure { background: linear-gradient(135deg, #3b8291, #e1ba76); }
.cover-cakes { background: #d8baa7; }
.post-card-body { padding: 30px; }
.post-card time, .article-header time { color: var(--muted); font-size: 13px; font-weight: 700; }
.post-card h3 { margin: 10px 0 14px; font-size: clamp(28px, 3.2vw, 38px); }
.post-card p { margin: 0 0 20px; color: var(--muted); }
.read-more { color: var(--sage-dark); font-weight: 800; font-size: 14px; }
.article { width: min(840px, calc(100% - 40px)); margin: 48px auto 100px; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--sage-dark); text-decoration: none; font-weight: 800; font-size: 14px; }
.post-cover-large { min-height: min(52vw, 470px); border-radius: 28px; }
.article-header { padding: 48px 0 28px; border-bottom: 1px solid var(--line); }
.article-header h1 { margin-bottom: 22px; font-size: clamp(42px, 7vw, 72px); }
.article-content { padding-top: 32px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.82; }
.article-content p { margin: 0 0 1.35em; }
.article-content a { color: var(--sage-dark); text-underline-offset: 3px; }
.article-content blockquote { margin: 2em 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--sand); color: var(--muted); }
.article-content figure { margin: 2.2em 0; }
.article-content figure img { display: block; width: 100%; height: auto; max-height: 760px; object-fit: contain; border-radius: 18px; background: #f1efe9; box-shadow: 0 12px 35px rgba(42,58,52,.09); }
.page-card, .message-card { width: min(840px, calc(100% - 40px)); margin: 65px auto 110px; padding: clamp(38px, 7vw, 76px); border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.page-card h1, .message-card h1 { margin-bottom: 28px; font-size: clamp(44px, 7vw, 70px); }
.page-card .lead { color: var(--sage-dark); font-family: Georgia, serif; font-size: 25px; line-height: 1.5; }
.site-footer { display: flex; justify-content: space-between; gap: 30px; width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 52px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-footer p { margin: 0; }

@media (max-width: 760px) {
    .site-header { min-height: 74px; }
    nav { gap: 15px; }
    nav a { font-size: 13px; }
    .hero { grid-template-columns: 1fr; min-height: 0; margin-top: 12px; padding: 42px 28px; gap: 30px; }
    .nest-art { width: 230px; order: -1; }
    .post-grid { grid-template-columns: 1fr; }
    .post-cover { min-height: 220px; }
    .post-cover-large { min-height: 300px; }
    .article-header { padding-top: 34px; }
    .article-content { font-size: 18px; }
    .site-footer { display: block; }
    .site-footer p + p { margin-top: 20px; }
}

@media (max-width: 470px) {
    .site-header { width: min(100% - 26px, 1160px); align-items: flex-start; padding: 15px 0; }
    .brand small { display: none; }
    nav { padding-top: 12px; gap: 12px; }
    .hero, .stories, .article, .page-card, .message-card, .site-footer { width: min(100% - 26px, 1160px); }
    .hero h1 { font-size: 45px; }
    .post-card-body { padding: 24px; }
}

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