/* ============================================================
   Wildflower — a Ghost theme for Grass Lake Mom
   ============================================================ */

:root {
    --cream: #faf3ee;
    --cream-deep: #f0e4dc;
    --ink: #2a1a26;
    --ink-soft: #5e3d52;
    --terracotta: #c14a6b;
    --terracotta-deep: #9a3853;
    --moss: #6b7d4a;
    --rule: #e0cfc6;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--terracotta-deep); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Topbar --------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: var(--cream);
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-meta {
    display: flex;
    gap: 18px;
    opacity: 0.85;
}
.topbar-meta a {
    color: var(--cream);
    transition: opacity 0.15s;
}
.topbar-meta a:hover { opacity: 1; color: var(--cream); }

/* --- Masthead ------------------------------------------------- */
.masthead {
    text-align: center;
    padding: 36px 0 24px;
    border-bottom: 1px solid var(--rule);
}
.masthead .eyebrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--terracotta-deep);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.masthead-title {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 92px);
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 8px;
}
.masthead-title a { color: var(--ink); }
.masthead-logo {
    max-height: 88px;
    width: auto;
    margin: 0 auto;
}
.masthead .tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
}

/* --- Nav ------------------------------------------------------ */
.site-nav {
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 10;
}
.nav-inner ul,
.nav-inner ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.nav-inner a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: color 0.15s;
}
.nav-inner a:hover,
.nav-inner .nav-current a {
    color: var(--terracotta-deep);
}

/* --- Hero feature --------------------------------------------- */
.hero {
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--rule);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-img {
    aspect-ratio: 4/3;
    border-radius: 4px;
    background-color: var(--cream-deep);
    position: relative;
    overflow: hidden;
    display: block;
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-img-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(45deg, #c14a6b 0%, #e8a8b8 35%, #d4d0a4 65%, #6b7d4a 100%);
}
.hero-text .label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta-deep);
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 4px;
    margin-bottom: 20px;
}
.hero-text h2 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}
.hero-text h2 a { color: var(--ink); }
.hero-text h2 a:hover { color: var(--terracotta-deep); }
.hero-text .deck {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 24px;
}
.byline {
    font-size: 13px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.byline strong { color: var(--ink); font-weight: 600; }

/* --- Section heading ----------------------------------------- */
.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 10px;
    margin-bottom: 32px;
    gap: 24px;
}
.section-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
}
.section-head a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta-deep);
    font-weight: 600;
    white-space: nowrap;
}

/* --- Story cards (3-up + read-next) -------------------------- */
.stories,
.read-next {
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.story-card { display: block; }
.story-card .thumb {
    aspect-ratio: 4/3;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    background-color: var(--cream-deep);
}
.story-card .thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.story-card:hover .thumb-img { transform: scale(1.03); }
.story-card .thumb--placeholder {
    background: linear-gradient(135deg, #c14a6b 0%, #e8a8b8 100%);
}
.story-card:nth-child(3n+2) .thumb--placeholder {
    background: linear-gradient(135deg, #6b7d4a 0%, #b0bd8a 100%);
}
.story-card:nth-child(3n+3) .thumb--placeholder {
    background: linear-gradient(135deg, #8a4a6b 0%, #c47a98 100%);
}
.story-card .cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta-deep);
    margin-bottom: 8px;
}
.story-card h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--ink);
}
.story-card p {
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 12px;
}
.story-card .card-byline {
    font-size: 12px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.story-card:hover h4 { color: var(--terracotta-deep); }

/* --- Two-col: events + sports -------------------------------- */
.twocol {
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    border-bottom: 1px solid var(--rule);
}
.events-list { list-style: none; padding: 0; margin: 0; }
.event {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    align-items: center;
}
.event:last-child { border-bottom: none; }
.event-date {
    text-align: center;
    background: var(--cream-deep);
    border-radius: 4px;
    padding: 10px 0;
}
.event-date .month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-deep);
}
.event-date .day {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
    margin-top: 2px;
}
.event-info h5 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 4px;
}
.event-info h5 a { color: var(--ink); }
.event-info h5 a:hover { color: var(--terracotta-deep); }
.event-info .meta {
    font-size: 13px;
    color: var(--ink-soft);
}
.event-rsvp {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--ink);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.15s;
    color: var(--ink);
}
.event-rsvp:hover {
    background: var(--ink);
    color: var(--cream);
}
.empty {
    padding: 24px 0;
    color: var(--ink-soft);
    font-style: italic;
}

/* --- Sports widget ------------------------------------------- */
.sports {
    background: var(--cream-deep);
    border-radius: 8px;
    padding: 28px;
    align-self: start;
}
.sports h3 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 6px;
}
.sports .school {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--moss);
    font-weight: 700;
    margin-bottom: 18px;
}
.game {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 14px;
    gap: 12px;
}
.game:last-of-type { border-bottom: none; }
.game-team { font-weight: 600; color: var(--ink); }
.game-vs { color: var(--ink-soft); font-size: 13px; }
.game-time { color: var(--terracotta-deep); font-weight: 600; font-size: 13px; white-space: nowrap; }
.sports-all {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta-deep);
    font-weight: 600;
}

/* --- Local biz ----------------------------------------------- */
.biz {
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
}
.biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.biz-card {
    background: white;
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.15s;
    color: var(--ink);
}
.biz-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-2px);
    color: var(--ink);
}
.biz-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    overflow: hidden;
    color: var(--terracotta-deep);
}
.biz-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.biz-card h5 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 4px;
}
.biz-card .biz-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 12px;
}
.biz-card p { font-size: 13px; color: var(--ink-soft); }

/* --- Newsletter (Block Party treatment) ---------------------- */
.newsletter {
    padding: 80px 24px;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.newsletter h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--cream);
}
.newsletter h3 .marker {
    background: var(--terracotta);
    color: var(--cream);
    padding: 0 12px;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-2deg);
}
.newsletter p {
    font-size: 18px;
    color: var(--cream);
    max-width: 560px;
    margin: 0 auto 28px;
    opacity: 0.85;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--cream);
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    background: var(--cream);
    color: var(--ink);
}
.newsletter-form input:focus {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
}
.newsletter-form button {
    padding: 14px 28px;
    background: var(--terracotta);
    color: var(--cream);
    border: 2px solid var(--terracotta);
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}
.newsletter-form button:hover {
    transform: translateY(-2px) rotate(-1deg);
    background: var(--terracotta-deep);
}
.newsletter-form button [data-members-loading],
.newsletter-form button [data-members-success],
.newsletter-form button [data-members-error] { display: none; }
.newsletter-form.loading button [data-members-default],
.newsletter-form.success button [data-members-default],
.newsletter-form.error button [data-members-default] { display: none; }
.newsletter-form.loading button [data-members-loading] { display: inline; }
.newsletter-form.success button [data-members-success] { display: inline; }
.newsletter-form.error button [data-members-error] { display: inline; }

/* --- Footer --------------------------------------------------- */
.site-footer {
    background: var(--cream-deep);
    padding: 48px 0 32px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 14px;
}
.footer-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 6px;
}
.footer-title a { color: var(--ink); }
.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 16px 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-meta {
    margin-top: 12px;
}
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--terracotta-deep); }

/* --- Access badges (icon-only padlock) ----------------------- */
.access-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.access-badge.access-paid,
.access-badge.access-tiers {
    background: var(--terracotta);
    color: #fff;
}
.access-badge .access-icon {
    width: 14px;
    height: 14px;
    display: block;
}
.access-badge--inline {
    position: static;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    vertical-align: middle;
    box-shadow: none;
}
.access-badge--inline .access-icon {
    width: 12px;
    height: 12px;
}

/* --- Single post / page -------------------------------------- */
.single .post-header {
    padding: 56px 24px 32px;
    text-align: center;
}
.post-eyebrow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.post-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta-deep);
}
.post-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    color: var(--ink);
}
.post-deck {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-bottom: 24px;
}
.post-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 13px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    align-items: center;
}
.post-meta strong { color: var(--ink); font-weight: 600; }
.post-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.post-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
.post-feature {
    margin: 32px auto 48px;
}
.post-feature img {
    width: 100%;
    border-radius: 4px;
}
.post-feature figcaption {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 12px;
}
.post-content {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink);
    padding: 0 24px 56px;
}
.post-content > * + * { margin-top: 1.4em; }
.post-content h2 {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -0.015em;
    margin-top: 1.8em;
}
.post-content h3 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-top: 1.6em;
}
.post-content blockquote {
    border-left: 3px solid var(--terracotta);
    padding-left: 24px;
    font-style: italic;
    color: var(--ink-soft);
}
.post-content a {
    color: var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta);
}
.post-content img,
.post-content figure { border-radius: 4px; }
.post-content pre {
    background: var(--cream-deep);
    padding: 18px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 14px;
}

.post-footer {
    padding: 0 24px 56px;
    border-bottom: 1px solid var(--rule);
}
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta-deep);
    background: var(--cream-deep);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.post-comments { padding: 56px 24px; }

/* --- Koenig editor cards (image breakouts, captions, embeds) --- */
.kg-card { margin: 1.6em auto; }
.kg-card figcaption {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 12px;
}
.kg-image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 4px;
}
.kg-width-wide {
    position: relative;
    width: 80vw;
    max-width: 1100px;
    min-width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
}
.kg-width-wide .kg-image { border-radius: 4px; }
.kg-width-full {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.kg-width-full .kg-image { border-radius: 0; }
.kg-bookmark-card,
.kg-callout-card,
.kg-toggle-card {
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
}
.kg-gallery-image img { border-radius: 4px; }

/* --- Content CTA (paywall / signup prompt) -------------------- */
.gh-cta.wildflower-cta {
    margin: 56px auto;
    max-width: 720px;
    padding: 0 24px;
}
.wildflower-cta-inner {
    background: var(--cream-deep);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--terracotta);
    border-radius: 8px;
    padding: 36px 36px 32px;
    text-align: center;
    position: relative;
}
.wildflower-cta-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta-deep);
    margin-bottom: 12px;
}
.wildflower-cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 12px;
}
.wildflower-cta-title .marker {
    background: var(--terracotta);
    color: var(--cream);
    padding: 0 10px;
    border-radius: 6px;
    display: inline-block;
    transform: rotate(-1.5deg);
}
.wildflower-cta-deck {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto 24px;
}
.wildflower-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.wildflower-cta-btn,
.wildflower-cta-btn:link,
.wildflower-cta-btn:visited,
.wildflower-cta-btn:active {
    display: inline-block;
    background: var(--terracotta);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 999px;
    border: 2px solid var(--terracotta);
    text-decoration: none;
    transition: transform 0.15s, background 0.15s, color 0.15s;
}
.wildflower-cta-btn:hover,
.wildflower-cta-btn:focus {
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    color: #ffffff;
    transform: translateY(-2px) rotate(-0.5deg);
}
.wildflower-cta-link,
.wildflower-cta-link:link,
.wildflower-cta-link:visited {
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: none;
}
.wildflower-cta-link:hover {
    color: var(--terracotta-deep);
    text-decoration: none;
}

@media (max-width: 640px) {
    .wildflower-cta-inner { padding: 28px 22px; }
}

/* --- Archive / list views ------------------------------------ */
.archive-header {
    text-align: center;
    padding: 64px 24px 32px;
}
.archive-eyebrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--terracotta-deep);
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}
.archive-title {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 16px;
}
.archive-desc {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 12px;
}
.archive-count {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
}
.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.post-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding: 32px 32px 64px;
}

/* --- Pagination ---------------------------------------------- */
.pagination {
    text-align: center;
    padding: 32px 0 64px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pagination a {
    margin: 0 12px;
    color: var(--terracotta-deep);
    font-weight: 600;
}

/* --- Error page ---------------------------------------------- */
.error {
    text-align: center;
    padding: 96px 24px;
}
.error-code {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 80px;
    color: var(--terracotta);
    line-height: 1;
}
.error-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    margin: 20px 0 12px;
}
.error-msg { color: var(--ink-soft); margin-bottom: 24px; }
.error-home {
    color: var(--terracotta-deep);
    font-weight: 600;
}

/* --- Responsive ---------------------------------------------- */
@media (max-width: 980px) {
    .hero-grid,
    .twocol {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stories-grid,
    .post-feed {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .biz-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .stories-grid,
    .post-feed,
    .biz-grid {
        grid-template-columns: 1fr;
    }
    .nav-inner ul { gap: 18px; }
    .topbar { font-size: 12px; }
    .topbar-meta { gap: 12px; }
    .event {
        grid-template-columns: 60px 1fr;
        gap: 14px;
    }
    .event-rsvp { grid-column: 1 / -1; justify-self: start; }
    .newsletter-form {
        flex-direction: column;
    }
    .post-content { font-size: 18px; }
}
