/* ============================================================
   REALM OF GUIDANCE — modern coach redesign
   Inter throughout · Purple #A855F7 / light #D8B4FE · Dark #1E2733
   White / #F9FAFB alternating sections · soft rounded cards
   ============================================================ */

:root {
    --dark:        #1E2733;
    --body-gray:   #475467;
    --muted:       #667085;
    --green:       #A855F7;
    --green-dark:  #7C3AED;
    --green-tint:  #F3E8FF;
    --purple-light:#D8B4FE;
    --grad-purple: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
    --grad-purple-soft: linear-gradient(135deg, #C084FC 0%, #A855F7 100%);
    --bg:          #FFFFFF;
    --gray-50:     #F6F4FF;
    --border:      #ECE9F5;
    --border-dark: #D0D5DD;
    --white:       #FFFFFF;

    --font-head: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --container: 1216px;
    --gutter: 2rem;
    --section-pad: 6rem;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-full: 999px;

    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08);
    --shadow-md: 0 12px 24px -6px rgba(16, 24, 40, 0.10);
    --shadow-lg: 0 24px 48px -12px rgba(16, 24, 40, 0.14);
}

/* ── BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--body-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration: none; transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease; }
a:hover { color: var(--dark); }
::selection { background: var(--green-tint); color: var(--dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.75rem, 5vw, 4.375rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); line-height: 1.2; }
h3 { font-size: 1.375rem; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--green); }

.site-wrap { overflow-x: clip; }

.section-eyebrow,
.archive-header__eyebrow {
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--green);
    margin: 0 0 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1.125rem; color: var(--muted); max-width: 38rem; margin: 0 0 3rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all .25s ease;
}
.btn--primary { background: var(--grad-purple); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--white { background: var(--white); color: var(--dark); border-color: var(--white); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: var(--gray-50); color: var(--dark); }
.btn--ghost, .btn--outline { background: var(--white); color: var(--dark); border-color: var(--border-dark); }
.btn--ghost:hover, .btn--outline:hover { border-color: var(--dark); color: var(--dark); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--green-dark); color: var(--white); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.9375rem; }
.btn--lg { padding: 0.9rem 2rem; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
}
.announcement-bar p { margin: 0; }
.announcement-bar a { color: var(--purple-light); font-weight: 600; }
.announcement-bar a:hover { color: var(--white); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.site-header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-header__logo-main {
    font-family: var(--font-head);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.site-header__logo-sub { font-size: 0.7rem; font-weight: 500; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
}
.nav__link:hover { color: var(--green-dark); }
.current-menu-item .nav__link,
.current_page_item .nav__link { color: var(--green-dark); font-weight: 600; }
.nav__cta {
    background: var(--grad-purple);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: var(--r-sm);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}
.nav__cta:hover { background: var(--green-dark); color: var(--white); }

.nav__toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.nav__toggle-bar { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; }

@media (max-width: 900px) {
    .nav__toggle { display: block; }
    .nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem var(--gutter) 1.25rem;
        box-shadow: var(--shadow-md);
    }
    .site-nav.is-open .nav__list, .nav__list.is-open { display: flex; }
    .nav__item { width: 100%; }
    .nav__link { display: block; padding: 0.7rem 0; }
    .nav__cta { display: none; }
}

/* ── HERO (full-bleed photo) ─────────────────────────────────── */
.hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(30, 39, 51, 0.82) 0%, rgba(30, 39, 51, 0.5) 45%, rgba(124, 58, 237, 0.35) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 6rem var(--gutter) 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}
.hero__content { max-width: 34rem; }
.hero__eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin: 0 0 1.5rem;
}
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__title em { color: var(--purple-light); }
.hero__desc { color: rgba(255, 255, 255, 0.9); font-size: 1.125rem; line-height: 1.7; margin: 0 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}
.hero__card {
    align-self: flex-end;
    max-width: 34rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-lg);
    padding: 2rem 2.25rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.hero__card-quote { font-size: 1.0625rem; line-height: 1.7; margin: 0 0 1.25rem; }
.hero__card-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1rem; }
.hero__card-detail { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.75); }

@media (max-width: 900px) {
    .hero { min-height: 0; }
    .hero__inner { padding: 4rem var(--gutter) 3rem; }
    .hero__card { align-self: stretch; }
}
/* ── STATS BAR (green rounded band) ──────────────────────────── */
.stats-bar { padding: 5rem 0 0; background: var(--bg); }
.stats-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 3.25rem var(--gutter);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    background: var(--grad-purple);
    border-radius: var(--r-lg);
}
.stat { padding: 0 1rem; border-left: 1px solid rgba(255, 255, 255, 0.3); }
.stat:first-child { border-left: none; }
.stat__num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.stat__label { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 500; color: rgba(255, 255, 255, 0.95); }
@media (max-width: 900px) {
    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; border-radius: 0; }
    .stat:nth-child(3) { border-left: none; }
}
@media (min-width: 901px) {
    .stats-bar__inner { margin-left: auto; margin-right: auto; width: calc(100% - 4rem); }
}

/* ── ABOUT (image left, content right) ─────────────────────────── */
.about-section { padding: var(--section-pad) 0; background: var(--bg); }
.about-section__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 4.5rem;
    align-items: center;
    text-align: left;
}
.about-section__image-col { display: block; }
.about-section__image-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-md); }
.about-section__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-section__image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-family: var(--font-head);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--r-sm);
    display: flex;
    gap: 0.4rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}
.about-section__content p { margin: 0 0 1.15rem; color: var(--body-gray); font-size: 1.0625rem; line-height: 1.7; }
.about-quote {
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p { font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; font-style: italic; color: var(--dark); margin: 0 !important; }
.about-credentials { font-family: var(--font-head); font-size: 0.875rem !important; font-weight: 500; color: var(--muted) !important; margin-bottom: 1.75rem !important; }
.about-section__content .btn--outline { margin-top: 0.25rem; }
@media (max-width: 900px) { .about-section__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── SERVICES (bordered white cards, green icon circles) ─────────── */
.services-section { padding: var(--section-pad) 0; background: var(--gray-50); }
.services-section__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card--featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--green-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}
.service-card__title { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card__desc { color: var(--muted); margin: 0 0 1.5rem; flex-grow: 1; font-size: 0.9855rem; }
.service-card__link { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--green-dark); }
.service-card__link:hover { color: var(--dark); }
.services-section__cta { text-align: center; margin-top: 3rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ── BLOG PREVIEW ───────────────────────────────────────────── */
.blog-preview { padding: var(--section-pad) 0; background: var(--bg); }
.blog-preview__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.blog-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-preview__cta { text-align: center; margin-top: 3rem; }
@media (max-width: 900px) { .blog-preview__grid { grid-template-columns: 1fr; } }

/* ── POST CARD ──────────────────────────────────────────────── */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--gray-50); }
.post-card__image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.post-card:hover .post-card__image { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; flex-grow: 1; }
.post-card__cat {
    display: inline-block;
    background: var(--green-tint);
    color: var(--green-dark);
    font-family: var(--font-head);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-full);
    margin-bottom: 0.9rem;
}
.post-card__cat:hover { background: var(--green); color: var(--white); }
.post-card__title { font-size: 1.25rem; line-height: 1.35; margin: 0 0 0.5rem; }
.post-card__title a { color: var(--dark); }
.post-card__title a:hover { color: var(--green-dark); }
.post-card__excerpt { color: var(--muted); margin: 0 0 1rem; font-size: 0.9375rem; flex-grow: 1; }
.post-card__meta { display: flex; gap: 0.6rem; align-items: center; font-size: 0.8125rem; color: var(--muted); }
.post-card__read::before { content: '·'; margin-right: 0.6rem; }

/* ── BOOKS ──────────────────────────────────────────────────── */
.books-section { padding: var(--section-pad) 0; background: var(--gray-50); }
.books-section__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.book-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.book-card__spine { width: 8px; flex-shrink: 0; background: var(--green); }
.book-card__spine--rose { background: var(--dark); }
.book-card__content { padding: 2.25rem; }
.book-card__label { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--green-dark); margin: 0 0 0.6rem; }
.book-card__title { font-size: 1.5rem; font-style: normal; margin-bottom: 0.6rem; }
.book-card__title em { font-style: normal; color: var(--dark); }
.book-card__desc { color: var(--muted); margin: 0 0 1.5rem; }
@media (max-width: 900px) { .books-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { padding: var(--section-pad) 0; background: var(--bg); }
.testimonials-section__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.testimonial__petals { color: var(--green); font-size: 1.5rem; margin-bottom: 1rem; }
.testimonial__body { font-size: 1rem; line-height: 1.7; color: var(--body-gray); margin: 0 0 1.5rem; flex-grow: 1; }
.testimonial__author { display: flex; flex-direction: column; gap: 0.1rem; }
.testimonial__name { font-family: var(--font-head); font-weight: 600; color: var(--dark); }
.testimonial__detail { font-size: 0.8125rem; color: var(--muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── FINAL CTA (green band) ─────────────────────────────────── */
.cta-section { padding: 0 0 var(--section-pad); background: var(--bg); }
.cta-section__petals { display: none; }
.cta-section__inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    width: calc(100% - 4rem);
    background: var(--grad-purple);
    border-radius: var(--r-lg);
    text-align: center;
    padding: 4.5rem 2rem;
    overflow: hidden;
}
.cta-section .section-eyebrow { color: rgba(255, 255, 255, 0.9); }
.cta-section__title { color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.cta-section__title em { color: var(--dark); font-style: normal; }
.cta-section__desc { color: rgba(255, 255, 255, 0.95); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto 2rem; }
.cta-section .btn--primary { background: var(--white); color: var(--dark); }
.cta-section .btn--primary:hover { background: var(--dark); color: var(--white); }
.cta-section__note { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--gray-50); border-top: 1px solid var(--border); }
.footer-widgets__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 4.5rem var(--gutter) 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 1rem; }
.footer-logo__main { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--dark); }
.footer-logo__tagline { font-size: 0.75rem; color: var(--muted); }
.footer-bio { font-size: 0.9375rem; color: var(--muted); max-width: 24rem; margin: 0 0 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social__link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
}
.footer-social__link:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col__title { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin-bottom: 1.1rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a { color: var(--muted); font-size: 0.9375rem; }
.footer-nav a:hover { color: var(--green-dark); }
.footer-cta-text { font-size: 0.9375rem; color: var(--muted); margin: 0 0 1.1rem; }
.footer-cta-btn {
    display: inline-block;
    background: var(--grad-purple);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.7rem 1.35rem;
    border-radius: var(--r-sm);
    margin-bottom: 1.1rem;
}
.footer-cta-btn:hover { background: var(--green-dark); color: var(--white); }
.footer-cta-note { font-size: 0.8125rem; color: var(--muted); margin: 0; }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.4rem var(--gutter);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--muted);
}
.footer-bottom__inner p { margin: 0; }
.footer-bottom a { color: var(--body-gray); }
.footer-bottom a:hover { color: var(--green-dark); }
@media (max-width: 900px) { .footer-widgets__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-widgets__inner { grid-template-columns: 1fr; } }
/* ── BLOG ARCHIVE ───────────────────────────────────────────── */
.archive-header { padding: 4.5rem 0 2.5rem; background: var(--bg); }
.archive-header__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.archive-header__title { font-size: clamp(2.25rem, 4.5vw, 3.25rem); margin-bottom: 0.75rem; }
.archive-header__desc { font-size: 1.125rem; color: var(--muted); max-width: 40rem; margin: 0; }

.archive-wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) var(--section-pad); display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 3rem; }
.archive-wrap__inner { min-width: 0; }
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.post-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.post-card--featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card--featured__image-wrap { display: block; overflow: hidden; min-height: 320px; }
.post-card--featured__image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.post-card--featured:hover .post-card--featured__image { transform: scale(1.03); }
.post-card--featured__body { padding: 2.25rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; justify-content: center; }
.post-card--featured__title { font-size: 1.75rem; line-height: 1.25; margin: 0; }
.post-card--featured__title a { color: var(--dark); }
.post-card--featured__title a:hover { color: var(--green-dark); }
.post-card--featured__excerpt { color: var(--muted); margin: 0; }
.post-card--featured .btn { margin-top: 0.5rem; }

@media (max-width: 1100px) { .archive-wrap { grid-template-columns: 1fr; } }
@media (max-width: 800px) {
    .post-grid { grid-template-columns: 1fr; }
    .post-card--featured { grid-template-columns: 1fr; }
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; }
.widget__title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--dark); margin: 0 0 1.1rem; }
.sidebar-about { text-align: center; }
.sidebar-about__avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.sidebar-about__name { font-size: 1.125rem; margin-bottom: 0.5rem; }
.sidebar-about__bio { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.sidebar-cats { list-style: none; margin: 0; padding: 0; }
.sidebar-cats__item { border-bottom: 1px solid var(--border); }
.sidebar-cats__item:last-child { border-bottom: none; }
.sidebar-cats__link { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; color: var(--body-gray); font-size: 0.9375rem; }
.sidebar-cats__link:hover .sidebar-cats__name { color: var(--green-dark); }
.sidebar-cats__count { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; background: var(--green-tint); color: var(--green-dark); border-radius: var(--r-full); padding: 0.1rem 0.6rem; }
.sidebar-recent { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-recent__item { display: flex; gap: 0.85rem; align-items: flex-start; }
.sidebar-recent__thumb { width: 72px; height: 56px; object-fit: cover; border-radius: var(--r-sm); }
.sidebar-recent__title { display: block; font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; line-height: 1.35; color: var(--dark); }
.sidebar-recent__title:hover { color: var(--green-dark); }
.sidebar-recent__date { font-size: 0.75rem; color: var(--muted); }
.sidebar-widget--cta { background: var(--dark); border-color: var(--dark); text-align: center; }
.sidebar-cta__eyebrow { font-size: 0.8125rem; font-weight: 600; color: var(--purple-light); margin: 0 0 0.6rem; font-family: var(--font-head); }
.sidebar-cta__title { color: var(--white); font-size: 1.375rem; }
.sidebar-cta__text { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin-bottom: 1.25rem; }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination { margin-top: 3rem; }
.pagination__list { display: flex; gap: 0.5rem; justify-content: center; list-style: none; margin: 0; padding: 0; }
.pagination__item a, .pagination__item span {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-head);
    font-size: 0.9375rem; font-weight: 500;
    color: var(--dark);
    background: var(--white);
}
.pagination__item a:hover { border-color: var(--green); color: var(--green-dark); }
.pagination__item .current { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── SINGLE POST ────────────────────────────────────────────── */
.post-hero { padding: 4rem 0 2.5rem; background: var(--bg); }
.post-hero__inner { max-width: 52rem; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.post-cat-label {
    display: inline-block;
    background: var(--green-tint);
    color: var(--green-dark);
    font-family: var(--font-head);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-full);
    margin-bottom: 1.25rem;
}
.post-cat-label:hover { background: var(--green); color: var(--white); }
.post-hero__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.post-hero__excerpt { font-size: 1.125rem; color: var(--muted); }
.post-hero__meta { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: left; }
.post-hero__author { display: flex; gap: 0.85rem; align-items: center; }
.post-hero__avatar { border-radius: 50%; }
.post-hero__author-name { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.9375rem; color: var(--dark); }
.post-hero__date-read { font-size: 0.8125rem; color: var(--muted); }
.post-hero__share { display: flex; align-items: center; gap: 0.5rem; }
.post-hero__share-label { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.post-hero__share-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--dark); background: var(--white); }
.post-hero__share-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.post-featured-image { max-width: 62rem; margin: 0 auto 3rem; padding: 0 var(--gutter); }
.post-featured-image__img { width: 100%; border-radius: var(--r-lg); }

.post-body { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) 4rem; display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: 3rem; }
.toc { position: sticky; top: 100px; border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem 1.5rem; background: var(--gray-50); }
.toc__title { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin: 0 0 0.75rem; }
.toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.toc__list a { font-size: 0.875rem; color: var(--muted); line-height: 1.4; }
.toc__list a:hover, .toc__list a.active, .toc__link.active { color: var(--green-dark); }
@media (max-width: 900px) { .post-body { grid-template-columns: 1fr; } .post-body__sidebar { display: none; } }

.post-content { font-size: 1.0625rem; line-height: 1.8; color: var(--body-gray); }
.post-content > * + * { margin-top: 1.2rem; }
.post-content h2 { font-size: 1.75rem; margin: 2.25rem 0 0.9rem; }
.post-content h3 { font-size: 1.375rem; margin: 1.9rem 0 0.75rem; }
.post-content a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--dark); }
.post-content blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 3px solid var(--green); background: var(--gray-50); border-radius: 0 var(--r-md) var(--r-md) 0; }
.post-content blockquote p { font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; color: var(--dark); margin: 0; }
.post-content ul li, .post-content ol li { margin-bottom: 0.5rem; }
.post-content img { border-radius: var(--r-md); }
.post-content figcaption { font-size: 0.8125rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.25rem; }
.post-tag { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 500; border: 1px solid var(--border); border-radius: var(--r-full); padding: 0.35rem 0.9rem; color: var(--body-gray); background: var(--white); }
.post-tag:hover { border-color: var(--green); color: var(--green-dark); }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-nav__item { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.1rem 1.25rem; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); }
.post-nav__item:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.post-nav__item--next { text-align: right; }
.post-nav__label { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; color: var(--green-dark); }
.post-nav__title { font-family: var(--font-head); font-size: 0.9855rem; font-weight: 600; color: var(--dark); line-height: 1.35; }

.post-cta-band { background: var(--bg); }
.post-cta-band__inner {
    max-width: 56rem;
    margin: 0 auto;
    width: calc(100% - 4rem);
    background: var(--grad-purple);
    border-radius: var(--r-lg);
    padding: 3.5rem 2rem;
    text-align: center;
}
.post-cta-band__eyebrow { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); margin: 0 0 0.6rem; }
.post-cta-band__title { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.25rem); }
.post-cta-band__text { color: rgba(255,255,255,0.95); margin: 0 auto 1.75rem; max-width: 32rem; }
.post-cta-band__btn { display: inline-block; background: var(--white); color: var(--dark); font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; padding: 0.8rem 1.75rem; border-radius: var(--r-sm); }
.post-cta-band__btn:hover { background: var(--dark); color: var(--white); }

.related-posts { padding: 4.5rem 0 3.5rem; background: var(--bg); }
.related-posts__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.related-posts__title { font-size: 1.75rem; margin-bottom: 1.75rem; }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.related-card__image { width: 100%; height: 100%; object-fit: cover; }
.related-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.related-card__title { font-size: 1.0625rem; line-height: 1.4; margin: 0.5rem 0; }
.related-card__title a { color: var(--dark); }
.related-card__title a:hover { color: var(--green-dark); }
@media (max-width: 800px) { .related-posts__grid { grid-template-columns: 1fr; } }

.post-comments { border-top: 1px solid var(--border); background: var(--bg); }
.post-comments__inner { max-width: 52rem; margin: 0 auto; padding: 3rem var(--gutter) 4.5rem; }

/* ── STATIC PAGES + GUTENBERG ──────────────────────────────── */
.page-wrap { padding-bottom: var(--section-pad); }
.page-wrap__inner { max-width: 62rem; margin: 0 auto; padding: 0 var(--gutter); }
.page-header { padding: 3.5rem 0 1.5rem; text-align: center; }
.page-header__title { margin: 0; }

.entry-content .wp-block-cover { border-radius: var(--r-lg); overflow: hidden; margin: 2rem 0; }
.entry-content .wp-block-columns { gap: 2rem; }
.entry-content .wp-block-group.has-background { border-radius: var(--r-lg); }
.entry-content .wp-block-group[style*="#faf7f2"] { background-color: var(--gray-50) !important; }
.entry-content .wp-block-group[style*="#1a1207"] { background-color: var(--dark) !important; border-radius: var(--r-lg); }
.entry-content .wp-block-button__link {
    background-color: var(--green) !important;
    color: var(--white) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
}
.entry-content .wp-block-button__link:hover { background-color: var(--green-dark) !important; }
.entry-content .wp-block-quote { border-left: 3px solid var(--green); padding: 1rem 1.5rem; background: var(--gray-50); border-radius: 0 var(--r-md) var(--r-md) 0; }
.entry-content .wp-block-quote cite { font-size: 0.8125rem; color: var(--muted); }
.entry-content .wp-block-separator { border: none; border-top: 1px solid var(--border); }
.entry-content h2[style*="#c9a96e"], .entry-content h3[style*="#c9a96e"], .entry-content p[style*="#c9a96e"], .entry-content cite[style*="#c9a96e"] { color: var(--green-dark) !important; }

/* ── FORMS ──────────────────────────────────────────────────── */
input[type="text"], input[type="email"], input[type="url"], input[type="search"], textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    padding: 0.7rem 0.9rem;
    width: 100%;
    transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
input[type="submit"], button[type="submit"] {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    cursor: pointer;
    transition: background .25s ease;
    width: auto;
}
input[type="submit"]:hover, button[type="submit"]:hover { background: var(--green-dark); }

/* ── MISC ─────────────────────────────────────────────────── */
.no-posts { text-align: center; padding: 4rem 0; color: var(--muted); grid-column: 1 / -1; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }



/* ============================================================
   THIRD-PARTY HARMONIZER (tagDiv archives, Gutenberg blocks)
   ============================================================ */
.td-module-title a { font-family: var(--font-head) !important; color: var(--dark) !important; font-weight: 600 !important; }
.td-module-title a:hover { color: var(--green-dark) !important; }
.td-post-category, .td-category a { background: var(--green-tint) !important; color: var(--green-dark) !important; font-family: var(--font-head) !important; font-weight: 600 !important; text-transform: none !important; letter-spacing: 0 !important; padding: 4px 12px !important; border-radius: 999px !important; }

/* ============================================================
   MOTION / REVEAL EFFECTS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero staggered load-in */
.hero--enter .hero__content > *,
.hero--enter .hero__card { opacity: 0; transform: translateY(22px); }
.hero--in .hero__content > *,
.hero--in .hero__card { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.hero--in .hero__eyebrow  { transition-delay: .05s; }
.hero--in .hero__title    { transition-delay: .15s; }
.hero--in .hero__desc     { transition-delay: .28s; }
.hero--in .hero__actions  { transition-delay: .40s; }
.hero--in .hero__trust    { transition-delay: .52s; }
.hero--in .hero__card     { transition-delay: .62s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible,
  .hero--enter .hero__content > *, .hero--enter .hero__card {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}