/* ============================================================ *
 * Wild Femme Yoga — chrome (header + footer + mobile nav)
 * ============================================================ */

/* ---------- HEADER ---------- *
 * Default: solid plum bg (works on every inner page).
 * Homepage only: transparent before scroll so the hero gradient shows through.
 */
.wfy-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 14px 0;
    background: var(--wfy-plum-deep);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: background 0.35s var(--wfy-ease), padding 0.35s var(--wfy-ease), box-shadow 0.35s var(--wfy-ease);
}
.wfy-header.is-scrolled {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
/* Homepage: transparent on first paint so the hero gradient reads as a single canvas */
body.home .wfy-header:not(.is-scrolled) {
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
}

.wfy-header__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wfy-header__top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wfy-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--wfy-cream);
    text-decoration: none;
    flex-shrink: 0;
}
.wfy-header.is-scrolled .wfy-logo { color: var(--wfy-cream); }

.wfy-logo__mark { display: inline-flex; color: inherit; }
.wfy-logo__wordmark {
    display: flex;
    flex-direction: column;
    font-family: var(--wfy-font-display);
    line-height: 0.95;
    color: inherit;
}
.wfy-logo__line1 { font-size: 22px; font-style: italic; font-weight: 500; }
.wfy-logo__line2 { font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 400; opacity: 0.9; }

/* Desktop nav — full-width centered row beneath the top row */
.wfy-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}
.wfy-nav__list {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.wfy-nav__list a {
    color: var(--wfy-cream);
    font-family: var(--wfy-font-eyebrow);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s var(--wfy-ease);
    white-space: nowrap;
}
@media (min-width: 1280px) {
    .wfy-nav__list { gap: 32px; }
    .wfy-nav__list a { font-size: 11.5px; letter-spacing: 0.24em; }
}
.wfy-nav__list a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--wfy-gold);
    transition: width 0.3s var(--wfy-ease), left 0.3s var(--wfy-ease);
}
.wfy-nav__list a:hover { color: var(--wfy-gold); }
.wfy-nav__list a:hover::after { width: 100%; left: 0; }

/* Portal / Sign in nav variants */
.wfy-nav__list .wfy-nav__item--portal a {
    background: linear-gradient(135deg, var(--wfy-purple), var(--wfy-violet));
    color: var(--wfy-white) !important;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
}
.wfy-nav__list .wfy-nav__item--portal a::after { display: none; }
.wfy-nav__list .wfy-nav__item--portal a:hover {
    background: linear-gradient(135deg, var(--wfy-violet), var(--wfy-purple));
    color: var(--wfy-white) !important;
}
.wfy-nav__list .wfy-nav__item--signin a { opacity: 0.7; }
.wfy-nav__list .wfy-nav__item--signin a:hover { opacity: 1; color: var(--wfy-gold); }

.wfy-header__cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}
.wfy-btn--sm { padding: 11px 22px; font-size: 11px; }

/* ---------- COUNTDOWN PILL ---------- */
.wfy-countdown {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px 9px 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 230, 242, 0.2);
    border-radius: 100px;
    color: var(--wfy-cream);
    font-family: var(--wfy-font-eyebrow);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s var(--wfy-ease), background 0.3s var(--wfy-ease), border-color 0.3s var(--wfy-ease);
}
.wfy-countdown[hidden] { display: none !important; }
.wfy-countdown:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 196, 48, 0.4);
}
.wfy-countdown__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--wfy-gold);
    box-shadow: 0 0 10px rgba(244, 196, 48, 0.75);
    animation: wfyBreath 1.8s ease-in-out infinite;
    --wfy-breath-min: 0.55;
    --wfy-breath-max: 1;
    flex-shrink: 0;
}
.wfy-countdown__label {
    color: rgba(255, 230, 242, 0.78);
}
.wfy-countdown__time {
    color: var(--wfy-gold);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.1em;
}

/* Mobile drawer version — bigger, stacked label above time */
.wfy-countdown--drawer {
    display: inline-flex;
    margin-top: 22px;
    padding: 16px 22px;
    font-size: 12px;
    gap: 12px;
    background: rgba(199, 125, 255, 0.12);
    border-color: rgba(199, 125, 255, 0.3);
}
.wfy-countdown--drawer .wfy-countdown__time {
    font-size: 14px;
}

/* Hide header countdown at very small mobile (header CTA is hidden there anyway) */
@media (max-width: 767px) {
    .wfy-header__cta .wfy-countdown { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet: slimmer pill so it doesn't crowd the burger */
    .wfy-header__cta .wfy-countdown { padding: 8px 13px; font-size: 10px; gap: 7px; }
    .wfy-header__cta .wfy-countdown__label { display: none; } /* save space — keep dot + time */
}
/* Smaller desktop (1024-1279): nav has 8 items so hide the countdown label to keep header from getting crowded */
@media (min-width: 1024px) and (max-width: 1279px) {
    .wfy-header__cta .wfy-countdown { padding: 8px 12px; font-size: 10px; gap: 7px; }
    .wfy-header__cta .wfy-countdown__label { display: none; }
    .wfy-moon__label { display: none; }
    .wfy-header__inner { gap: 24px; }
}

/* ---------- LUNAR GLYPH ---------- */
.wfy-moon {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--wfy-cream);
    font-family: var(--wfy-font-eyebrow);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    cursor: default;
}
.wfy-moon__svg {
    flex-shrink: 0;
    animation: wfyBreath 9s ease-in-out infinite;
    --wfy-breath-min: 0.85;
    --wfy-breath-max: 1;
    filter: drop-shadow(0 0 6px rgba(255, 230, 242, 0.4));
}
.wfy-moon__label {
    color: rgba(255, 230, 242, 0.7);
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .wfy-moon { display: inline-flex; }
}

/* ============================================================ *
 * TODAY'S WHISPER — daily mantra ribbon above the footer
 * ============================================================ */
.wfy-whisper {
    background: linear-gradient(180deg, var(--wfy-pink-mist) 0%, var(--wfy-cream) 100%);
    padding: clamp(48px, 7vw, 88px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.wfy-whisper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(199, 125, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.wfy-whisper__inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.wfy-whisper__inner .wfy-eyebrow {
    color: var(--wfy-purple) !important;
    margin-bottom: 18px;
    display: inline-block;
}
.wfy-whisper__line {
    margin: 0;
    font-family: var(--wfy-font-ritual);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.8vw, 36px);
    line-height: 1.4;
    color: var(--wfy-plum-deep);
    background: linear-gradient(110deg, var(--wfy-plum-deep) 0%, var(--wfy-purple) 50%, var(--wfy-plum-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
    .wfy-whisper { padding: 40px 0; }
    .wfy-whisper__line { font-size: 22px; }
}

/* ============================================================ *
 * EXIT-INTENT SUBSTACK MODAL
 * ============================================================ */
.wfy-exit-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--wfy-ease), visibility 0.5s;
    overflow-y: auto;
}
.wfy-exit-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.wfy-exit-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 11, 46, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.wfy-exit-modal__content {
    position: relative;
    background: var(--wfy-cream);
    border-radius: var(--wfy-radius-lg);
    padding: 48px 40px 36px;
    max-width: 520px;
    width: 92%;
    margin: clamp(60px, 10vh, 120px) auto 40px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(26, 11, 46, 0.4);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.6s var(--wfy-ease);
}
.wfy-exit-modal.is-open .wfy-exit-modal__content { transform: translateY(0) scale(1); }
.wfy-exit-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--wfy-plum-deep);
    font-size: 26px;
    line-height: 1;
    transition: background 0.25s var(--wfy-ease);
    z-index: 2;
}
.wfy-exit-modal__close:hover {
    background: rgba(26, 11, 46, 0.08);
}
.wfy-exit-modal__content .wfy-eyebrow {
    color: var(--wfy-purple);
    margin-bottom: 16px;
}
.wfy-exit-modal__content h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    margin-bottom: 14px;
}
.wfy-exit-modal__content h2 em {
    font-style: italic;
    color: var(--wfy-purple);
}
.wfy-exit-modal__lede {
    font-size: 16px;
    color: var(--wfy-ink-soft);
    margin: 0 auto 24px;
    max-width: 380px;
    line-height: 1.6;
}
.wfy-exit-modal__embed {
    background: var(--wfy-white);
    border-radius: var(--wfy-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 11, 46, 0.06);
    min-height: 320px;
}
.wfy-exit-modal__embed iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}
.wfy-exit-modal__form {
    margin: 0 auto 18px;
    max-width: 380px;
    gap: 12px;
}
.wfy-exit-modal__form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: var(--wfy-radius-md);
    font-size: 16px;
    font-family: var(--wfy-font-body);
    background: var(--wfy-white);
    color: var(--wfy-ink);
    text-align: center;
    transition: border-color 0.2s var(--wfy-ease), box-shadow 0.2s var(--wfy-ease);
}
.wfy-exit-modal__form input[type="email"]:focus {
    outline: none;
    border-color: var(--wfy-purple);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.15);
}
.wfy-exit-modal__form .wfy-btn--block {
    width: 100%;
    justify-content: center;
}
.wfy-exit-modal__dismiss {
    display: inline-block;
    background: transparent;
    border: 0;
    padding: 8px 4px;
    font-family: var(--wfy-font-eyebrow);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wfy-mute);
    text-decoration: none;
    cursor: pointer;
    margin-top: 8px;
    transition: color 0.25s var(--wfy-ease);
}
.wfy-exit-modal__dismiss:hover {
    color: var(--wfy-purple);
}
@media (max-width: 480px) {
    .wfy-exit-modal__content { padding: 36px 24px 24px; margin-top: 40px; }
    .wfy-exit-modal__embed,
    .wfy-exit-modal__embed iframe { min-height: 300px; }
}

/* Burger (mobile/tablet) */
.wfy-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    flex-shrink: 0;
}
.wfy-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wfy-cream);
    border-radius: 2px;
    transition: transform 0.3s var(--wfy-ease), opacity 0.2s var(--wfy-ease);
}
.wfy-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wfy-burger.is-open span:nth-child(2) { opacity: 0; }
.wfy-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ *
 * Mobile nav drawer — slide-in sidebar from the right, app-style
 * ------------------------------------------------------------------ */
.wfy-mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 6, 36, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--wfy-ease), visibility 0.3s;
}
.wfy-mobile-nav__backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.wfy-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    background: linear-gradient(170deg, var(--wfy-plum-deep) 0%, var(--wfy-plum-mid) 100%);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.wfy-mobile-nav.is-open {
    transform: translateX(0);
}

/* Soft aurora glow inside the drawer */
.wfy-mobile-nav::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.22), transparent 60%);
    pointer-events: none;
}
.wfy-mobile-nav::after {
    content: '';
    position: absolute;
    inset: auto auto -30% -30%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.12), transparent 60%);
    pointer-events: none;
}

.wfy-mobile-nav__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Drawer header — logo + close */
.wfy-mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.wfy-mobile-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wfy-gold) !important;
    text-decoration: none;
}
.wfy-mobile-nav__brand > svg { color: var(--wfy-gold); flex-shrink: 0; }
.wfy-mobile-nav__brand-line1,
.wfy-mobile-nav__brand-line2 {
    display: block;
    font-family: var(--wfy-font-display);
    font-style: italic;
    color: var(--wfy-cream);
    line-height: 1;
}
.wfy-mobile-nav__brand-line1 { font-size: 16px; }
.wfy-mobile-nav__brand-line2 { font-size: 12px; margin-top: 2px; opacity: 0.7; }

.wfy-mobile-nav__close {
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    color: var(--wfy-cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--wfy-ease), color 0.2s var(--wfy-ease), transform 0.2s var(--wfy-ease);
}
.wfy-mobile-nav__close:hover { background: var(--wfy-gold); color: var(--wfy-plum-deep); transform: rotate(90deg); }

/* Drawer body — sections */
.wfy-mobile-nav__body {
    flex: 1;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.wfy-mobile-nav__section { display: block; }
.wfy-mobile-nav__section-label {
    display: block;
    padding: 0 12px;
    margin-bottom: 8px;
    font-family: var(--wfy-font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wfy-gold);
    font-weight: 700;
    opacity: 0.7;
}

.wfy-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wfy-mobile-nav__list li { margin: 0; }
.wfy-mobile-nav__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    color: var(--wfy-cream) !important;
    font-family: var(--wfy-font-display);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s var(--wfy-ease), color 0.2s var(--wfy-ease), transform 0.15s var(--wfy-ease);
    min-height: 48px;
}
.wfy-mobile-nav__list a::after { display: none !important; }
.wfy-mobile-nav__list a:hover,
.wfy-mobile-nav__list a:focus-visible {
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.25), rgba(157, 78, 221, 0.05));
    color: var(--wfy-gold) !important;
}
.wfy-mobile-nav__list a:active { transform: scale(0.98); }
.wfy-mobile-nav__arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 22px;
    line-height: 1;
    transition: color 0.2s var(--wfy-ease), transform 0.2s var(--wfy-ease);
}
.wfy-mobile-nav__list a:hover .wfy-mobile-nav__arrow {
    color: var(--wfy-gold);
    transform: translateX(3px);
}

/* Account section gets a slightly different feel — gold tint */
.wfy-mobile-nav__acct a {
    color: var(--wfy-gold) !important;
    font-style: italic;
}

/* Drawer footer — countdown + CTA + socials */
.wfy-mobile-nav__foot {
    padding: 18px 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
    flex-shrink: 0;
}
.wfy-mobile-nav__foot .wfy-countdown {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}
.wfy-mobile-nav__foot .wfy-btn--block {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.wfy-mobile-nav__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}
.wfy-mobile-nav__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--wfy-cream);
    transition: background 0.2s var(--wfy-ease), color 0.2s var(--wfy-ease), transform 0.15s var(--wfy-ease);
}
.wfy-mobile-nav__socials a:hover {
    background: var(--wfy-gold);
    color: var(--wfy-plum-deep);
    transform: translateY(-2px);
}

@media (max-width: 1023px) {
    .wfy-nav { display: none; }
    .wfy-burger { display: flex; }
}
/* Tablet (768-1023): keep "Book Event" CTA visible alongside burger */
@media (min-width: 768px) and (max-width: 1023px) {
    .wfy-header__cta { display: block; }
    .wfy-header__inner { gap: 16px; }
}
/* Phone (<768): hide header CTA — the burger drawer surfaces the Book Event button */
@media (max-width: 767px) {
    .wfy-header__cta { display: none; }
    .wfy-logo__line1 { font-size: 20px; }
    .wfy-logo__line2 { font-size: 11px; letter-spacing: 0.28em; }
    .wfy-header { padding: 10px 0; }
}

/* ---------- PAGE BODY OFFSET FOR FIXED HEADER ---------- */
.wfy-main { padding-top: 0; }

/* ---------- FOOTER ---------- */
.wfy-footer {
    background: var(--wfy-plum-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}
.wfy-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wfy-violet) 50%, transparent);
    opacity: 0.5;
}
.wfy-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 80px;
}
.wfy-footer__col--brand .wfy-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--wfy-violet);
    margin-bottom: 16px;
}
.wfy-footer__title {
    color: var(--wfy-cream);
    font-size: 28px;
    margin: 0;
    font-style: italic;
}
.wfy-footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
}
.wfy-footer__heading {
    color: var(--wfy-cream);
    font-family: var(--wfy-font-eyebrow);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 18px;
}
.wfy-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wfy-footer__menu li { margin-bottom: 10px; }
.wfy-footer__menu a,
.wfy-footer__menu span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s var(--wfy-ease);
}
.wfy-footer__menu a:hover { color: var(--wfy-gold); }

.wfy-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}
.wfy-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s var(--wfy-ease);
}
.wfy-social a:hover {
    background: var(--wfy-gold);
    color: var(--wfy-plum-deep);
    border-color: var(--wfy-gold);
    transform: translateY(-2px);
}

.wfy-newsletter__honey {
    position: absolute !important;
    left: -9999px;
}
.wfy-newsletter__row {
    display: flex;
    gap: 10px;
}
.wfy-newsletter__row input[type=email] {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--wfy-cream);
    padding: 12px 16px;
    border-radius: var(--wfy-radius-sm);
    font-family: var(--wfy-font-body);
    font-size: 14px;
}
.wfy-newsletter__row input[type=email]::placeholder { color: rgba(255, 255, 255, 0.5); }
.wfy-newsletter__row input[type=email]:focus {
    outline: none;
    border-color: var(--wfy-violet);
    background: rgba(255, 255, 255, 0.1);
}

.wfy-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}
.wfy-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.wfy-footer__copy,
.wfy-footer__credit {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}
.wfy-footer__credit a { color: var(--wfy-violet); }
.wfy-footer__credit a:hover { color: var(--wfy-gold); }

@media (max-width: 1023px) {
    .wfy-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .wfy-footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .wfy-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- PROSE (article body) ---------- */
.wfy-prose {
    font-size: 18px;
    line-height: 1.75;
    color: var(--wfy-ink);
}
.wfy-prose h2 { margin-top: 1.6em; }
.wfy-prose h3 { margin-top: 1.4em; }
.wfy-prose a { color: var(--wfy-purple); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.wfy-prose a:hover { color: var(--wfy-plum-deep); }
.wfy-prose blockquote {
    border-left: 3px solid var(--wfy-purple);
    margin: 1.6em 0;
    padding: 0.2em 0 0.2em 1.2em;
    font-family: var(--wfy-font-display);
    font-style: italic;
    font-size: 1.25em;
    color: var(--wfy-plum-deep);
}

.wfy-container--narrow { max-width: 820px; }
.wfy-page-header { margin-bottom: 40px; }

/* ---------- POST GRID ---------- */
.wfy-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}
.wfy-post-card {
    background: var(--wfy-white);
    border-radius: var(--wfy-radius-lg);
    overflow: hidden;
    box-shadow: var(--wfy-shadow-sm);
    transition: transform 0.4s var(--wfy-ease), box-shadow 0.4s var(--wfy-ease);
}
.wfy-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wfy-shadow-md);
}
.wfy-post-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.wfy-post-card__body { padding: 24px 28px 28px; }
.wfy-post-card__title { font-size: 24px; margin: 0 0 12px; }
.wfy-post-card__title a { color: var(--wfy-plum-deep); }
.wfy-post-card__title a:hover { color: var(--wfy-purple); }
.wfy-post-card__more {
    font-family: var(--wfy-font-eyebrow);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wfy-purple);
}
