/* ── VARIABLES (fallback → WP presets) ── */
:root {
    --ella-pink: var(--wp--preset--color--pink, #FF88BE);
    --ella-hot: var(--wp--preset--color--hot, #FF4FA0);
    --ella-orange: var(--wp--preset--color--orange, #F08A59);
    --ella-peach: var(--wp--preset--color--peach, #FADADD);
    --ella-crimson: var(--wp--preset--color--crimson, #771D27);
    --ella-olive: var(--wp--preset--color--olive, #8A8649);
    --ella-cream: var(--wp--preset--color--cream, #FFF8F0);
    --ella-dark: var(--wp--preset--color--dark, #3B1020);
    --ella-white: var(--wp--preset--color--white, #FFFDF9);

    --ella-section-padding-y: clamp(80px, 12vh, 140px);
    --ella-section-padding-x: clamp(24px, 6vw, 96px);
    --ella-container-max: 1200px;
    --ella-radius-md: 16px;
    --ella-radius-lg: 28px;
    --ella-radius-xl: 40px;
    --ella-shadow-soft: 0 20px 60px -20px rgba(59, 16, 32, 0.18);
    --ella-shadow-tile: 0 10px 30px -10px rgba(59, 16, 32, 0.15);
    --ella-shadow-hard: 6px 8px 0 var(--ella-dark);
}

/* ── SECTION LAYOUT (padding + inner container) ── */
.wp-block-group.ella-pillars-section,
.wp-block-group.ella-edition-section,
.wp-block-group.ella-testimonials-section,
.wp-block-group.ella-about-section,
.wp-block-group.ella-faq-section,
.wp-block-group.ella-footer {
    padding-left: var(--ella-section-padding-x);
    padding-right: var(--ella-section-padding-x);
    padding-top: var(--ella-section-padding-y);
    padding-bottom: var(--ella-section-padding-y);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}
.ella-pillars-section > *,
.ella-edition-section > *,
.ella-testimonials-section > *,
.ella-about-section > *,
.ella-faq-section > * {
    max-width: var(--ella-container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ── HEADER / NAV ── */
.ella-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(59, 16, 32, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ella-header.scrolled {
    background: var(--ella-dark);
    box-shadow: 0 2px 20px rgba(59, 16, 32, 0.3);
}
.ella-header-logo {
    font-family: Fraunces, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 32px;
    color: var(--ella-white);
    text-decoration: none;
}
.ella-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.ella-header-nav a {
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ella-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.ella-header-nav a:hover {
    color: var(--ella-pink);
}
.ella-header-cta {
    background: var(--ella-hot) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
}
.ella-header-cta:hover {
    background: var(--ella-pink) !important;
    color: var(--ella-dark) !important;
}

/* ── HERO ── */
.ella-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 100px;
    text-align: center;
}
.ella-hero::before,
.ella-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}
.ella-hero::before {
    width: 500px; height: 500px;
    background: var(--ella-hot);
    top: -100px; left: -150px;
}
.ella-hero::after {
    width: 400px; height: 400px;
    background: var(--ella-orange);
    bottom: -80px; right: -100px;
}
p.ella-marquee-item,
p.ella-floating-pill {
    margin: 0;
}
p.ella-marquee-item {
    display: inline-block;
    vertical-align: middle;
}
.ella-hero-eyebrow {
    font-family: Caveat, cursive;
    font-size: 22px;
    color: var(--ella-crimson);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 12px;
}
.ella-hero-logo {
    font-family: Fraunces, serif;
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    color: var(--ella-dark);
    letter-spacing: -6px;
    position: relative;
    z-index: 1;
}
.ella-hero-badge {
    background: var(--ella-dark);
    color: var(--ella-pink);
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    margin-top: 24px;
}
.ella-hero-tagline {
    font-family: Fraunces, serif;
    font-style: italic;
    font-size: clamp(18px, 3vw, 26px);
    color: var(--ella-dark);
    margin-top: 32px;
    max-width: 480px;
    opacity: 0.75;
}

/* ── SUBSCRIBE FORM ── */
.ella-subscribe-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.ella-subscribe-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2.5px solid var(--ella-dark);
    border-radius: 999px;
    font-family: Nunito, sans-serif;
    font-size: 15px;
    background: var(--ella-white);
    color: var(--ella-dark);
    outline: none;
}
.ella-subscribe-form input[type="email"]::placeholder {
    color: rgba(59, 16, 32, 0.4);
}
.ella-subscribe-form input[type="email"]:focus {
    border-color: var(--ella-hot);
}
.ella-subscribe-form button {
    background: var(--ella-dark);
    color: var(--ella-pink);
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.ella-subscribe-form button:hover {
    background: var(--ella-hot);
    color: white;
}
.ella-subscribe-success {
    font-family: Fraunces, serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ella-dark);
    margin-top: 32px;
}

/* ── MARQUEE ── */
.ella-marquee {
    overflow: hidden;
    padding: 10px 0;
}
.ella-marquee.hot {
    background: var(--ella-hot);
}
.ella-marquee.olive {
    background: var(--ella-olive);
}
.ella-marquee-item {
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    padding: 0 28px;
}
.ella-marquee-item::after {
    content: '✦';
    margin-left: 28px;
}

/* ── SECTION SHARED ── */
.ella-section {
    padding: 100px 72px;
}
.ella-section-tag {
    display: inline-block;
    background: var(--ella-pink);
    color: var(--ella-dark);
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.ella-section-tag.dark {
    background: var(--ella-dark);
    color: var(--ella-pink);
}
.ella-section-title {
    font-family: Fraunces, serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    color: var(--ella-dark);
    margin-bottom: 24px;
}
.ella-section-title em {
    font-style: italic;
    color: var(--ella-hot);
}
.ella-section-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #6b3040;
    margin-bottom: 48px;
}

/* ── PILLARS ── */
.ella-pillars-section {
    background: linear-gradient(160deg, #FFE4F0 0%, #FFDDC8 100%);
}
.ella-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.ella-pillar-tile {
    border: 2.5px solid var(--ella-dark);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    background: var(--ella-cream);
    cursor: default;
}
.ella-pillar-tile .icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}
.ella-pillar-tile .name {
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ella-dark);
    margin-bottom: 6px;
}
.ella-pillar-tile .desc {
    font-size: 12px;
    line-height: 1.5;
    color: #6b3040;
}
/* Pillar color variants */
.ella-pillar-tile:nth-child(2) { background: var(--ella-pink); }
.ella-pillar-tile:nth-child(5) { background: linear-gradient(135deg, #FFE4A0, #F08A59); }
.ella-pillar-tile:nth-child(7) { background: var(--ella-dark); }
.ella-pillar-tile:nth-child(7) .name { color: var(--ella-pink); }
.ella-pillar-tile:nth-child(7) .desc { color: rgba(255, 248, 240, 0.6); }

/* ── EDITION PREVIEW ── */
.ella-edition-section {
    background: var(--ella-cream);
}
.ella-edition-card {
    background: var(--ella-white);
    border: 2.5px solid var(--ella-dark);
    border-radius: 24px;
    padding: 48px 40px;
    margin-top: 40px;
}
.ella-edition-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(59, 16, 32, 0.1);
}
.ella-edition-logo {
    font-family: Fraunces, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 36px;
    color: var(--ella-dark);
}
.ella-edition-date {
    font-family: Caveat, cursive;
    font-size: 18px;
    color: var(--ella-hot);
}
.ella-edition-snippet {
    background: linear-gradient(135deg, #FFE4F0, #FFDDC8);
    border: 2px solid var(--ella-dark);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    font-family: Fraunces, serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ella-dark);
    line-height: 1.4;
}
.ella-edition-snippet small {
    display: block;
    font-family: Nunito, sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    color: var(--ella-orange);
}

/* ── TESTIMONIALS ── */
.ella-testimonials-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 79, 160, 0.18), transparent 60%),
        linear-gradient(160deg, var(--ella-dark) 0%, #5a1a2e 100%);
}
.ella-testimonials-section .ella-section-title {
    color: var(--ella-pink);
}
.ella-testimonials-section .ella-section-lead {
    color: rgba(255, 248, 240, 0.7);
}
.ella-quote-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}
.ella-quote-bubble {
    background: linear-gradient(135deg, #FFE4F0, #FFDDC8);
    border: 2.5px solid var(--ella-dark);
    border-radius: 20px 20px 20px 4px;
    padding: 20px 28px;
    max-width: 620px;
    font-family: Fraunces, serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ella-dark);
    line-height: 1.3;
}
.ella-quote-bubble.right {
    align-self: flex-end;
    border-radius: 20px 20px 4px 20px;
    background: linear-gradient(135deg, #3B1020, #5a1a2e);
    color: var(--ella-pink);
    border-color: var(--ella-dark);
}
.ella-quote-bubble small {
    display: block;
    font-family: Nunito, sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    color: var(--ella-orange);
}
.ella-quote-bubble.right small {
    color: rgba(255, 216, 235, 0.5);
}

/* ── ABOUT ── */
.ella-about-section {
    background: var(--ella-white);
}
.ella-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}
.ella-pills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ella-pill {
    font-family: Fraunces, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 2.5px solid var(--ella-dark);
    background: var(--ella-cream);
    color: var(--ella-dark);
    cursor: default;
}
.ella-pill.pink-fill { background: var(--ella-pink); border-color: var(--ella-pink); }
.ella-pill.hot-fill { background: var(--ella-hot); border-color: var(--ella-hot); color: white; }
.ella-pill.olive-fill {
    background: var(--ella-olive); border-color: var(--ella-olive); color: white;
    font-style: normal; font-size: 13px; font-family: Nunito, sans-serif; font-weight: 800; letter-spacing: 1px;
}
.ella-vibe-card {
    background: var(--ella-dark);
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.ella-vibe-card::before {
    content: '✦';
    position: absolute;
    font-size: 200px;
    color: var(--ella-hot);
    opacity: 0.07;
    right: 20px;
    top: -20px;
    line-height: 1;
}
.ella-vibe-quote {
    font-family: Fraunces, serif;
    font-style: italic;
    font-weight: 900;
    font-size: 32px;
    color: var(--ella-pink);
    line-height: 1.1;
    position: relative;
}
.ella-vibe-sub {
    font-family: Caveat, cursive;
    font-size: 18px;
    color: rgba(255, 216, 235, 0.6);
    margin-top: 16px;
}
.ella-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.ella-voice-box {
    border: 2.5px solid var(--ella-dark);
    border-radius: 20px;
    padding: 28px 24px;
    background: var(--ella-cream);
}
.ella-voice-box-label {
    font-family: Caveat, cursive;
    font-size: 18px;
    color: var(--ella-hot);
    margin-bottom: 8px;
}
.ella-voice-box-title {
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ella-dark);
    margin-bottom: 8px;
}
.ella-voice-box-body {
    font-size: 13px;
    line-height: 1.6;
    color: #6b3040;
}

/* ── FAQ ── */
.ella-faq-section {
    background: var(--ella-cream);
}
.ella-faq-section .wp-block-details {
    border: 2.5px solid var(--ella-dark);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--ella-white);
}
.ella-faq-section .wp-block-details summary {
    padding: 20px 24px;
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ella-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ella-faq-section .wp-block-details summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: var(--ella-hot);
    transition: transform 0.2s;
}
.ella-faq-section .wp-block-details[open] summary::after {
    transform: rotate(45deg);
}
.ella-faq-section .wp-block-details summary::-webkit-details-marker {
    display: none;
}
.ella-faq-section .wp-block-details p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b3040;
}

/* ── FOOTER ── */
.ella-footer {
    background: var(--ella-dark);
    text-align: center;
    color: var(--ella-white);
    position: relative;
    overflow: hidden;
}
.ella-footer-logo {
    font-family: Fraunces, serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(60px, 10vw, 120px);
    color: var(--ella-pink);
    line-height: 0.9;
    margin-bottom: 32px;
}
.ella-footer-tagline {
    font-family: Caveat, cursive;
    font-size: 24px;
    color: rgba(255, 216, 235, 0.6);
    margin-top: 32px;
}
.ella-footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.ella-footer-social a {
    color: var(--ella-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.2s;
}
.ella-footer-social a:hover {
    color: var(--ella-white);
}
.ella-footer-legal {
    margin-top: 48px;
    font-size: 12px;
    color: rgba(255, 248, 240, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .ella-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ella-about-layout {
        grid-template-columns: 1fr;
    }
    .ella-voice-grid {
        grid-template-columns: 1fr;
    }
    .ella-header {
        padding: 12px 20px;
    }
    .ella-header-nav a:not(.ella-header-cta) {
        display: none;
    }
    .ella-subscribe-form {
        flex-direction: column;
    }
    .ella-edition-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .ella-pillars-grid {
        grid-template-columns: 1fr;
    }
    .ella-hero-floating-pills {
        display: none;
    }
}

/* ── HERO ENHANCEMENTS ── */
.ella-hero-impact {
    font-family: Caveat, cursive;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--ella-dark);
    margin-top: 24px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fade-in-up 0.8s ease 0.5s forwards;
}
.ella-hero-impact span {
    display: inline-block;
    opacity: 0;
    animation: fade-in-word 0.5s ease forwards;
}
.ella-hero-impact span:nth-child(1) { animation-delay: 0.6s; }
.ella-hero-impact span:nth-child(2) { animation-delay: 1.0s; }
.ella-hero-impact span:nth-child(3) { animation-delay: 1.4s; }

.ella-hero-subtexto {
    font-family: Nunito, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(59, 16, 32, 0.5);
    margin-top: 16px;
}

.ella-subscribe-form.hero-cta button {
    background: var(--ella-hot);
    color: white;
    font-size: 16px;
    padding: 16px 36px;
}
.ella-subscribe-form.hero-cta button:hover {
    background: var(--ella-dark);
    color: var(--ella-pink);
}
.ella-subscribe-form.hero-cta button .sparkle {
    display: inline-block;
    animation: pulse-sparkle 1.5s ease infinite;
}

/* ── FLOATING PILLS ── */
.ella-hero-floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.ella-floating-pill {
    position: absolute;
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid var(--ella-dark);
    background: rgba(255, 248, 240, 0.7);
    color: var(--ella-dark);
    backdrop-filter: blur(4px);
    animation: float-pill 6s ease-in-out infinite;
    opacity: 0.7;
}
.ella-floating-pill:nth-child(1) { top: 18%; left: 6%; animation-delay: 0s; }
.ella-floating-pill:nth-child(2) { top: 25%; right: 8%; animation-delay: 1.5s; }
.ella-floating-pill:nth-child(3) { bottom: 22%; left: 10%; animation-delay: 3s; }
.ella-floating-pill:nth-child(4) { bottom: 30%; right: 5%; animation-delay: 0.8s; }
.ella-floating-pill.pink { background: var(--ella-pink); border-color: var(--ella-pink); }
.ella-floating-pill.hot { background: var(--ella-hot); border-color: var(--ella-hot); color: white; }

/* ── FAQ ENHANCEMENTS ── */
.ella-faq-section {
    position: relative;
    overflow: hidden;
}
.ella-faq-section .ella-section-tag,
.ella-faq-section .ella-section-title {
    text-align: center;
}
.ella-faq-watermark {
    position: absolute;
    font-family: Fraunces, serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(200px, 30vw, 400px);
    color: var(--ella-dark);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}
.ella-faq-content {
    margin-top: 40px;
    text-align: left;
    position: relative;
    z-index: 1;
}
/* ── FOOTER CTA CENTERING ── */
.ella-footer .ella-subscribe-form {
    justify-content: center;
    margin: 32px auto 0;
}

/* ── NATIVE BLOCK OVERRIDES ── */

/* Header nav links as paragraphs */
.ella-header-nav-link {
    margin: 0;
}
.ella-header-nav-link a {
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ella-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.ella-header-nav-link a:hover {
    color: var(--ella-pink);
}
.ella-header .wp-block-button .wp-block-button__link {
    background: var(--ella-hot);
    color: white;
    padding: 10px 24px;
    border-radius: 999px;
    font-family: Nunito, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.ella-header .wp-block-button .wp-block-button__link:hover {
    background: var(--ella-pink);
    color: var(--ella-dark);
}
.ella-header h1 {
    margin: 0;
}

/* Edition snippet as blockquote */
blockquote.ella-edition-snippet {
    border-left: none;
    padding-left: 24px;
}
blockquote.ella-edition-snippet cite {
    font-family: Nunito, sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ella-orange);
}

/* Testimonial quote as blockquote */
blockquote.ella-quote-bubble {
    border-left: none;
}
blockquote.ella-quote-bubble cite {
    font-family: Nunito, sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
    color: var(--ella-orange);
}
blockquote.ella-quote-bubble.right cite {
    color: rgba(255, 216, 235, 0.5);
}

/* Footer social links override */
.ella-footer .wp-block-social-links {
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.ella-footer .wp-block-social-link a {
    color: var(--ella-pink);
}
.ella-footer .wp-block-social-link a:hover {
    color: var(--ella-white);
}

/* Hero group layout */
.wp-block-group.ella-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Pillars grid override for columns */
.wp-block-columns.ella-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

/* About layout: override WP columns defaults */
.wp-block-columns.ella-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}
.wp-block-columns.ella-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .wp-block-columns.ella-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-block-columns.ella-about-layout {
        grid-template-columns: 1fr;
    }
    .wp-block-columns.ella-voice-grid {
        grid-template-columns: 1fr;
    }
    .ella-header-nav-link {
        display: none;
    }
}
@media (max-width: 480px) {
    .wp-block-columns.ella-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ── NAVIGATION BLOCK OVERRIDES ── */
.ella-header-nav .wp-block-navigation-item__content {
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ella-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.ella-header-nav .wp-block-navigation-item__content:hover {
    color: var(--ella-pink);
}
.ella-header-nav .wp-block-navigation__responsive-container,
.ella-header-nav .wp-block-navigation__container {
    gap: 32px;
}
@media (max-width: 900px) {
    .ella-header-nav .wp-block-navigation-item:not(.ella-header-cta) {
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════════
   ══  v4.6 REDESIGN — runs after base styles, wins cascade       ══
   ════════════════════════════════════════════════════════════════ */

/* ── Sparkle divider no topo das seções ── */
.ella-pillars-section::before,
.ella-edition-section::before,
.ella-about-section::before,
.ella-faq-section::before {
    content: '✦ ✦ ✦';
    display: block;
    text-align: center;
    font-size: 20px;
    color: var(--ella-hot);
    opacity: 0.4;
    margin: 0 auto 48px;
    letter-spacing: 16px;
    max-width: none;
}

/* ── PILLARS redesign ── */
.ella-pillars-section {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 79, 160, 0.1), transparent 50%),
        linear-gradient(160deg, #FFE4F0 0%, #FFDDC8 100%);
}
.ella-pillar-tile {
    border: 1px solid rgba(59, 16, 32, 0.08);
    border-radius: var(--ella-radius-lg);
    padding: 32px 24px;
    background: var(--ella-cream);
    box-shadow: var(--ella-shadow-tile);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ella-pillar-tile .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: var(--ella-peach);
    border-radius: 50%;
    margin: 0 auto 16px;
}
.ella-pillar-tile .name {
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--ella-dark);
    margin: 0 0 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ella-pillar-tile .desc {
    font-size: 13px;
    line-height: 1.55;
    color: #6b3040;
    margin: 0;
}
.ella-pillar-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--ella-shadow-hard);
}
/* Reset the nth-child colors so .featured drives the accent */
.ella-pillar-tile:nth-child(2),
.ella-pillar-tile:nth-child(5),
.ella-pillar-tile:nth-child(7) {
    background: var(--ella-cream);
}
.ella-pillar-tile:nth-child(7) .name,
.ella-pillar-tile:nth-child(7) .desc {
    color: inherit;
}
/* Featured tiles — accent version */
.ella-pillar-tile.featured {
    background: linear-gradient(135deg, var(--ella-hot), var(--ella-orange));
    border-color: transparent;
}
.ella-pillar-tile.featured .icon {
    background: rgba(255, 255, 255, 0.25);
}
.ella-pillar-tile.featured .name,
.ella-pillar-tile.featured .desc {
    color: var(--ella-white);
}
.ella-pillar-tile.featured .desc {
    opacity: 0.85;
}
.ella-pillar-tile.featured.dark {
    background: linear-gradient(135deg, var(--ella-dark), #5a1a2e);
}

/* ── EDITION redesign ── */
.ella-edition-card {
    border: none;
    border-radius: var(--ella-radius-xl);
    padding: 56px 48px;
    box-shadow: var(--ella-shadow-soft);
    background:
        linear-gradient(180deg, rgba(255, 228, 240, 0.5), transparent 200px),
        var(--ella-white);
}
.ella-edition-date {
    font-family: Caveat, cursive;
    font-size: 26px;
    color: var(--ella-hot);
}
.ella-edition-snippet {
    position: relative;
    border: none;
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px -8px rgba(59, 16, 32, 0.2);
}
.ella-edition-snippet::before {
    content: '✦';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 16px;
    color: var(--ella-hot);
    opacity: 0.45;
}
.ella-edition-snippet:nth-of-type(1) {
    background: linear-gradient(135deg, #FFE4F0, #FFDDC8);
    transform: rotate(-0.35deg);
}
.ella-edition-snippet:nth-of-type(2) {
    background: linear-gradient(135deg, #FFF8F0, #FFE4A0);
    transform: rotate(0.5deg);
}
.ella-edition-snippet:nth-of-type(3) {
    background: linear-gradient(135deg, #FADADD, #FFBAD6);
    transform: rotate(-0.2deg);
}

/* ── TESTIMONIALS redesign ── */
.ella-quote-stack {
    gap: 24px;
}
.ella-quote-bubble {
    border: none;
    border-radius: 28px 28px 28px 6px;
    padding: 24px 32px;
    box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.4);
    position: relative;
}
.ella-quote-bubble.right {
    border-radius: 28px 28px 6px 28px;
}
.ella-quote-bubble::before {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ella-hot);
    color: var(--ella-white);
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 79, 160, 0.4);
}
.ella-quote-bubble.right::before {
    left: auto;
    right: -10px;
}
.ella-quote-bubble:nth-of-type(1)::before { content: '✦'; }
.ella-quote-bubble:nth-of-type(2)::before { content: '❤'; background: var(--ella-pink); }
.ella-quote-bubble:nth-of-type(3)::before { content: '🌸'; background: var(--ella-orange); }
.ella-quote-bubble:nth-of-type(4)::before { content: '✧'; background: var(--ella-crimson); }

/* ── ABOUT redesign ── */
.ella-pills-cloud {
    gap: 10px;
    overflow-wrap: break-word;
}
.ella-pill.olive-fill {
    padding: 12px 18px;
}
.ella-about-cue {
    font-family: Caveat, cursive;
    font-size: 30px;
    color: var(--ella-hot);
    margin-bottom: 4px;
}
.ella-about-cue-arrow {
    font-size: 32px;
    color: var(--ella-hot);
    opacity: 0.6;
    text-align: left;
    margin: -4px 0 12px 24px;
    line-height: 1;
    font-family: Caveat, cursive;
}
.ella-vibe-card {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(255, 79, 160, 0.18), transparent 50%),
        linear-gradient(135deg, var(--ella-dark), #4a1a3d);
    border-radius: 36px;
    box-shadow: var(--ella-shadow-soft);
}
.ella-voice-box {
    border: none;
    border-radius: 24px;
    background: var(--ella-cream);
    box-shadow: var(--ella-shadow-tile);
    transition: transform 0.2s ease;
}
.ella-voice-box:hover {
    transform: translateY(-4px);
}

/* ── FAQ redesign ── */
.ella-faq-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ella-faq-section .wp-block-details {
    border: 1.5px solid rgba(59, 16, 32, 0.1);
    border-radius: 18px;
    background: var(--ella-white);
    box-shadow: 0 6px 20px -14px rgba(59, 16, 32, 0.2);
    transition: background 0.25s ease, border-color 0.25s ease;
    margin-bottom: 0;
}
.ella-faq-section .wp-block-details:hover {
    background: #FFF4F7;
    border-color: rgba(255, 79, 160, 0.3);
}
.ella-faq-section .wp-block-details[open] {
    background: var(--ella-white);
    border-color: rgba(255, 79, 160, 0.3);
}
.ella-faq-section .wp-block-details summary::after {
    content: '▾';
    font-size: 18px;
    color: var(--ella-hot);
    transition: transform 0.25s ease;
}
.ella-faq-section .wp-block-details[open] summary::after {
    transform: rotate(180deg);
}
.ella-faq-watermark {
    opacity: 0.05;
}

/* ── FOOTER redesign ── */
.ella-footer-logo {
    font-size: clamp(80px, 12vw, 140px);
}
.ella-footer-signature {
    font-family: Caveat, cursive;
    font-size: 20px;
    color: rgba(255, 216, 235, 0.55);
    margin-top: 40px;
}
.ella-footer::before,
.ella-footer::after {
    content: '✦';
    position: absolute;
    color: var(--ella-hot);
    opacity: 0.08;
    font-size: 240px;
    line-height: 1;
    pointer-events: none;
}
.ella-footer::before {
    top: 40px; left: -40px;
}
.ella-footer::after {
    bottom: -60px; right: -20px;
    font-size: 180px;
}
.ella-footer > * {
    position: relative;
    z-index: 1;
}
.ella-footer .wp-block-social-link a {
    transition: background 0.2s ease, color 0.2s ease;
    padding: 8px;
    border-radius: 50%;
}
.ella-footer .wp-block-social-link a:hover {
    background: rgba(255, 79, 160, 0.22);
}

/* ── RESPONSIVE overrides for redesign ── */
@media (max-width: 900px) {
    .ella-edition-card {
        padding: 36px 24px;
    }
    .ella-vibe-card {
        padding: 36px 28px;
    }
}
@media (max-width: 480px) {
    .ella-pillar-tile {
        min-height: 0;
    }
    .ella-pillar-tile .name {
        min-height: 0;
    }
}
