/*
Theme Name: EatReal
Author: WordPress Telex
Description: A bold, dark-canvas block theme for EatReal — Mumbai's favourite healthy food startup. Features the Street-to-Table Motion aesthetic with fresh green accents, cinematic hero sections, and kinetic energy throughout.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: eatreal
Tags: block-theme, full-site-editing, dark, food, health
*/

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ── Scroll Reveal Animations ── */
@keyframes eatreal-fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eatreal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes eatreal-slide-left {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes eatreal-slide-right {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes eatreal-scale-in {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes eatreal-line-grow {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes eatreal-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

@keyframes eatreal-accent-slide {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* ── Word Cycling Animation ── */
@keyframes eatreal-word-slide-out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes eatreal-word-slide-in {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    60% {
        opacity: 1;
        transform: translateY(-6%);
    }
    80% {
        transform: translateY(2%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.eatreal-cycle-word {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
}

.eatreal-cycle-word span {
    display: inline-block;
}

.eatreal-cycle-word span.is-sliding-out {
    animation: eatreal-word-slide-out 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.eatreal-cycle-word span.is-sliding-in {
    animation: eatreal-word-slide-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes eatreal-glow-pulse {
    0%, 100% {
        text-shadow: 0 0 0px transparent;
    }
    50% {
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.15);
    }
}

.eatreal-cycle-word span {
    animation: eatreal-glow-pulse 3s ease-in-out infinite;
}

/* ── Scroll-triggered animations ── */
.eatreal-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eatreal-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eatreal-reveal-delay-1 { transition-delay: 0.1s; }
.eatreal-reveal-delay-2 { transition-delay: 0.2s; }
.eatreal-reveal-delay-3 { transition-delay: 0.3s; }
.eatreal-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Glassmorphism Base Mixin ── */
.eatreal-glass {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(16px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.eatreal-glass-subtle {
    background: rgba(255, 255, 255, 0.025) !important;
    backdrop-filter: blur(12px) saturate(1.3) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.eatreal-glass-accent {
    background: rgba(34, 197, 94, 0.06) !important;
    backdrop-filter: blur(20px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
    border: 1px solid rgba(34, 197, 94, 0.15) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(34, 197, 94, 0.1) !important;
}

/* ── Hero Section ── */
.eatreal-hero-video {
    position: relative;
    overflow: hidden;
}

.eatreal-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.eatreal-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    opacity: 0.7;
}

.eatreal-hero-overlay {
    position: relative;
    z-index: 10;
}

.eatreal-hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(10,10,10,0.97) 0%,
            rgba(10,10,10,0.95) 25%,
            rgba(10,10,10,0.85) 38%,
            rgba(10,10,10,0.55) 55%,
            rgba(10,10,10,0.15) 72%,
            transparent 85%
        ),
        linear-gradient(180deg,
            rgba(10,10,10,0.4) 0%,
            transparent 15%,
            transparent 80%,
            rgba(10,10,10,0.5) 100%
        );
    pointer-events: none;
}

.eatreal-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.035;
    background-image: repeating-conic-gradient(rgba(255,255,255,0.08) 0% 25%, transparent 0% 50%);
    background-size: 4px 4px;
    pointer-events: none;
}

/* Hero accent line at bottom */
.eatreal-hero-accent-bar {
    height: 4px !important;
    min-height: 4px !important;
    background: linear-gradient(90deg,
        #22C55E 0%, #22C55E 40%,
        #16A34A 40%, #16A34A 70%,
        #0F9D58 70%, #0F9D58 100%
    ) !important;
    animation: eatreal-accent-slide 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Pulse dot */
.eatreal-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background-color: #22C55E;
    position: relative;
    flex-shrink: 0;
}

.eatreal-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid #22C55E;
    animation: eatreal-pulse 2.5s ease-in-out infinite;
}

/* Hero headline styling */
.eatreal-headline-huge {
    line-height: 0.88 !important;
    letter-spacing: -0.01em !important;
}

.eatreal-headline-yellow {
    position: relative;
    display: inline-block;
}

.eatreal-headline-yellow::after {
    content: '';
    position: absolute;
    bottom: 0.06em;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #22C55E;
    opacity: 0.25;
}

/* Hero stat tile — glassmorphism */
.eatreal-stat-tile {
    position: relative;
    background: rgba(34, 197, 94, 0.12) !important;
    backdrop-filter: blur(20px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
    border: 1px solid rgba(34, 197, 94, 0.25) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(34, 197, 94, 0.15) !important;
    padding: 1.5rem 2rem !important;
    text-align: center;
}

.eatreal-stat-tile::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(34,197,94,0.15);
    pointer-events: none;
}

/* Hero badge — glassmorphism */
.eatreal-badge {
    background: rgba(34, 197, 94, 0.12) !important;
    backdrop-filter: blur(16px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    border: 1px solid rgba(34, 197, 94, 0.25) !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(34, 197, 94, 0.08) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem !important;
}

/* ── Sticky Header — Glassmorphism ── */
.eatreal-header {
    position: sticky !important;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.6) !important;
    backdrop-filter: blur(24px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    transition: background 0.3s ease;
}

.eatreal-header .wp-block-navigation a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.3s ease !important;
}

.eatreal-header .wp-block-navigation a:hover {
    color: #FFFFFF !important;
}

/* ── CTA Buttons ── */
.eatreal-cta-primary a,
.eatreal-cta-primary .wp-block-button__link {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    background-color: #22C55E !important;
    color: #0A0A0A !important;
    border: 2px solid #22C55E !important;
    border-radius: 0 !important;
    padding: 0.7rem 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eatreal-cta-primary a:hover,
.eatreal-cta-primary .wp-block-button__link:hover {
    background-color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #0A0A0A !important;
    transform: translateY(-2px) !important;
}

.eatreal-cta-secondary a,
.eatreal-cta-secondary .wp-block-button__link {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: rgba(255,255,255,0.65) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 0 !important;
    padding: 0.7rem 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eatreal-cta-secondary a:hover,
.eatreal-cta-secondary .wp-block-button__link:hover {
    border-color: rgba(255,255,255,0.4) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

.eatreal-cta-header a,
.eatreal-cta-header .wp-block-button__link {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background-color: #22C55E !important;
    color: #0A0A0A !important;
    border-radius: 0 !important;
    padding: 0.55rem 1.3rem !important;
    transition: all 0.3s ease !important;
}

.eatreal-cta-header a:hover,
.eatreal-cta-header .wp-block-button__link:hover {
    background-color: #FFFFFF !important;
    color: #0A0A0A !important;
    transform: translateY(-1px) !important;
}

/* ── How It Works Section ── */
.eatreal-steps-section {
    position: relative;
    overflow: hidden;
}

/* ── How It Works — Horizontal Card Deck ── */
/* ── Food-Themed Particle Animations ── */
@keyframes eatreal-ingredient-float {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0; }
    15% { opacity: 0.4; }
    40% { transform: translate(12px, -30px) rotate(45deg) scale(1.1); opacity: 0.35; }
    70% { transform: translate(-8px, -55px) rotate(120deg) scale(0.7); opacity: 0.2; }
    100% { transform: translate(5px, -80px) rotate(200deg) scale(0.3); opacity: 0; }
}

@keyframes eatreal-steam-rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0.06; }
    30% { transform: translateY(-15px) scaleX(1.3); opacity: 0.1; }
    60% { transform: translateY(-35px) scaleX(0.7); opacity: 0.05; }
    100% { transform: translateY(-60px) scaleX(1.1); opacity: 0; }
}

@keyframes eatreal-sizzle {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes eatreal-bubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    25% { transform: translateY(-4px) scale(1.4); opacity: 0.9; }
    50% { transform: translateY(-2px) scale(0.8); opacity: 0.6; }
    75% { transform: translateY(-5px) scale(1.2); opacity: 0.8; }
}

/* Bowl-toss entrance: ingredients fly in with a bounce like being tossed */
@keyframes eatreal-bowl-toss-1 {
    0% { opacity: 0; transform: translateY(100px) rotate(-8deg) scale(0.8); }
    50% { opacity: 1; transform: translateY(-15px) rotate(2deg) scale(1.03); }
    70% { transform: translateY(5px) rotate(-0.5deg) scale(0.99); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes eatreal-bowl-toss-2 {
    0% { opacity: 0; transform: translateY(120px) rotate(6deg) scale(0.75); }
    50% { opacity: 1; transform: translateY(-20px) rotate(-2deg) scale(1.04); }
    70% { transform: translateY(8px) rotate(0.5deg) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes eatreal-bowl-toss-3 {
    0% { opacity: 0; transform: translateY(140px) rotate(-5deg) scale(0.7); }
    50% { opacity: 1; transform: translateY(-18px) rotate(3deg) scale(1.05); }
    70% { transform: translateY(6px) rotate(-1deg) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes eatreal-drizzle-fill {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes eatreal-spice-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    30% { box-shadow: 0 0 12px 3px rgba(34, 197, 94, 0.2), 0 0 24px 6px rgba(22, 163, 74, 0.08); }
    60% { box-shadow: 0 0 18px 5px rgba(34, 197, 94, 0.15); }
}

@keyframes eatreal-steam-watermark {
    0%, 100% { opacity: 0.04; transform: translateY(0); }
    50% { opacity: 0.09; transform: translateY(-4px); }
}

@keyframes eatreal-sizzle-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Sauce drizzle for progress bar */
@keyframes eatreal-sauce-drizzle {
    0% { width: 0; background-size: 200% 100%; background-position: 100% 0; }
    60% { width: 95%; background-position: 50% 0; }
    80% { width: 100%; background-position: 20% 0; }
    100% { width: 100%; background-size: 100% 100%; background-position: 0 0; }
}

.eatreal-timeline-header {
    text-align: left;
}

/* ── Sauce Drizzle Progress Bar ── */
.eatreal-steps-progress {
    position: relative;
    height: 3px !important;
    min-height: 3px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    margin-bottom: 2.5rem !important;
    overflow: hidden;
    border-radius: 3px;
}

.eatreal-steps-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #16A34A, #22C55E, #4ADE80, #22C55E, #16A34A);
    background-size: 200% 100%;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5), 0 0 4px rgba(34, 197, 94, 0.3);
}

.eatreal-steps-progress.is-animated::before {
    animation: eatreal-sauce-drizzle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Drizzle drop at the leading edge */
.eatreal-steps-progress::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eatreal-steps-progress.is-animated::after {
    opacity: 1;
    transition-delay: 1.6s;
}

/* ── Card Deck Container ── */
.eatreal-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    perspective: 1200px;
}

/* ── Pipeline Connectors ── */
.eatreal-deck-connector {
    display: none;
}

/* Desktop: Bubbling broth connectors between cards */
@media (min-width: 783px) {
    .eatreal-deck::before,
    .eatreal-deck::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 1.5rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(34,197,94,0.08), rgba(34,197,94,0.2), rgba(34,197,94,0.08));
        z-index: 5;
        pointer-events: none;
    }

    .eatreal-deck::before {
        left: calc(33.33% - 0.75rem);
        transform: translateY(-50%);
    }

    .eatreal-deck::after {
        left: calc(66.66% - 0.75rem);
        transform: translateY(-50%);
    }

    .eatreal-deck-connector {
        display: block;
        position: absolute;
        top: 50%;
        width: 1.5rem;
        height: 12px;
        z-index: 6;
        pointer-events: none;
        overflow: visible;
    }

    .eatreal-deck-connector-1 {
        left: calc(33.33% - 0.75rem);
        transform: translateY(-50%);
    }

    .eatreal-deck-connector-2 {
        left: calc(66.66% - 0.75rem);
        transform: translateY(-50%);
    }

    /* Bubbling dots — two per connector */
    .eatreal-deck-connector::before,
    .eatreal-deck-connector::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #22C55E;
        box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
    }

    .eatreal-deck-connector::before {
        left: 3px;
        top: 50%;
        transform: translateY(-50%);
        animation: eatreal-bubble 2s ease-in-out infinite;
    }

    .eatreal-deck-connector::after {
        right: 3px;
        top: 50%;
        transform: translateY(-50%);
        animation: eatreal-bubble 2s ease-in-out infinite 0.6s;
        width: 3px;
        height: 3px;
        opacity: 0.6;
    }

    .eatreal-deck-connector-2::before {
        animation-delay: 0.8s;
    }

    .eatreal-deck-connector-2::after {
        animation-delay: 1.4s;
    }
}

/* ── Individual Deck Card ── */
.eatreal-deck-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.6s ease;
    padding: 2.5rem 2rem 2rem;
    opacity: 0;
}

.eatreal-deck-card.is-visible {
    opacity: 1;
}

/* Bowl-toss entrance: each card flies in like an ingredient tossed into a bowl */
.eatreal-deck-card:nth-child(1).is-visible {
    animation: eatreal-bowl-toss-1 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.eatreal-deck-card:nth-child(2).is-visible {
    animation: eatreal-bowl-toss-2 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s forwards;
}

.eatreal-deck-card:nth-child(3).is-visible {
    animation: eatreal-bowl-toss-3 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.36s forwards;
}

/* Watermark number — steam-rise effect */
.eatreal-deck-card .eatreal-deck-watermark {
    position: absolute;
    top: -0.15em;
    right: -0.05em;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 14vw, 12rem);
    line-height: 1;
    color: transparent;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    -webkit-text-stroke: 1px rgba(34, 197, 94, 0.06);
    animation: eatreal-steam-watermark 5s ease-in-out infinite;
}

.eatreal-deck-card:nth-child(2) .eatreal-deck-watermark {
    animation-delay: 1.8s;
}

.eatreal-deck-card:nth-child(3) .eatreal-deck-watermark {
    animation-delay: 3.6s;
}

/* Sizzle shimmer — hot pan effect on hover */
.eatreal-deck-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.03),
        rgba(74, 222, 128, 0.06),
        rgba(34, 197, 94, 0.03),
        transparent
    );
    z-index: 1;
    pointer-events: none;
    transition: none;
}

/* Bottom sauce drizzle beam */
.eatreal-deck-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #16A34A, #22C55E, #4ADE80, #22C55E, #16A34A);
    background-size: 200% 100%;
    z-index: 2;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.eatreal-deck-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(2deg);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(34, 197, 94, 0.08),
        0 4px 20px rgba(34, 197, 94, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eatreal-deck-card:hover::before {
    animation: eatreal-sizzle-shimmer 0.8s ease-in-out;
}

.eatreal-deck-card:hover::after {
    width: 100%;
    animation: eatreal-sizzle 2s linear infinite;
}

/* Card content — sits above watermark */
.eatreal-deck-content {
    position: relative;
    z-index: 2;
}

/* Spice badge — warm glow like a spice mortar */
.eatreal-deck-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #22C55E;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: eatreal-spice-glow 3.5s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
    position: relative;
}

.eatreal-deck-card:nth-child(2) .eatreal-deck-badge {
    animation-delay: 1.2s;
}

.eatreal-deck-card:nth-child(3) .eatreal-deck-badge {
    animation-delay: 2.4s;
}

/* Hover: mortar-and-pestle spin */
.eatreal-deck-card:hover .eatreal-deck-badge {
    transform: scale(1.2) rotate(-12deg);
    background: rgba(34, 197, 94, 0.22);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}

/* Card title */
.eatreal-deck-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.6rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* Card description */
.eatreal-deck-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0;
}

/* Hidden detail — hover reveal */
.eatreal-deck-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease 0.15s,
                margin 0.4s ease;
    margin-top: 0;
}

.eatreal-deck-card:hover .eatreal-deck-detail {
    max-height: 100px;
    opacity: 1;
    margin-top: 0.75rem;
}

.eatreal-deck-detail p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.6;
    color: #22C55E;
    margin: 0;
}

/* Step label above title */
.eatreal-deck-step-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(34, 197, 94, 0.5);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eatreal-deck-step-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: rgba(34, 197, 94, 0.3);
}

/* ── Floating Ingredient Particles ── */
.eatreal-steps-section .eatreal-food-particle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    animation: eatreal-ingredient-float 10s ease-in-out infinite;
}

/* Leaf shapes */
.eatreal-steps-section .eatreal-food-particle--leaf {
    width: 8px;
    height: 5px;
    background: rgba(34, 197, 94, 0.18);
    border-radius: 0 50% 50% 50%;
    transform-origin: center center;
}

/* Seed shapes */
.eatreal-steps-section .eatreal-food-particle--seed {
    width: 4px;
    height: 6px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50% 50% 50% 0;
}

/* Spice dot shapes */
.eatreal-steps-section .eatreal-food-particle--spice {
    width: 3px;
    height: 3px;
    background: rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.15);
}

/* Grain shapes */
.eatreal-steps-section .eatreal-food-particle--grain {
    width: 6px;
    height: 3px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 40%;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-duration: 8s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(2) {
    top: 45%;
    right: 7%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(4) {
    top: 30%;
    right: 3%;
    animation-duration: 12s;
    animation-delay: 0.8s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(5) {
    top: 80%;
    right: 12%;
    animation-duration: 10s;
    animation-delay: 2.5s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(6) {
    top: 25%;
    left: 15%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(7) {
    top: 60%;
    right: 18%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.eatreal-steps-section .eatreal-food-particle:nth-child(8) {
    top: 90%;
    left: 20%;
    animation-duration: 9s;
    animation-delay: 5s;
}

/* ── Steam wisps above cards ── */
.eatreal-deck-card .eatreal-steam-wisp {
    position: absolute;
    top: -8px;
    width: 20px;
    height: 2px;
    background: rgba(34, 197, 94, 0.06);
    border-radius: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: eatreal-steam-rise 4s ease-in-out infinite;
    filter: blur(1px);
}

.eatreal-deck-card:hover .eatreal-steam-wisp {
    opacity: 1;
}

.eatreal-deck-card .eatreal-steam-wisp:nth-child(1) {
    left: 25%;
    animation-delay: 0s;
}

.eatreal-deck-card .eatreal-steam-wisp:nth-child(2) {
    left: 50%;
    animation-delay: 1.2s;
    width: 14px;
}

.eatreal-deck-card .eatreal-steam-wisp:nth-child(3) {
    left: 72%;
    animation-delay: 2.4s;
    width: 18px;
}

/* ── Mobile Responsive — Deck ── */
@media (max-width: 782px) {
    .eatreal-deck {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        perspective: none;
    }

    .eatreal-deck-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .eatreal-deck-card .eatreal-deck-watermark {
        font-size: 6rem;
    }

    .eatreal-deck-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

/* LEGACY - keep for backward compat */
.eatreal-step-number {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 3.5rem !important;
    line-height: 1 !important;
    color: rgba(34,197,94,0.15) !important;
    letter-spacing: 0.02em !important;
}

.eatreal-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(14px) saturate(1.3) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-left: 3px solid #22C55E !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    padding-left: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eatreal-step-card:hover {
    transform: translateX(8px) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(34, 197, 94, 0.2) !important;
    border-left-color: #22C55E !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* ── Menu Highlights — Glassmorphism ── */
.eatreal-menu-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eatreal-menu-card:hover {
    border-color: rgba(34,197,94,0.25) !important;
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(34, 197, 94, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.eatreal-menu-card img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eatreal-menu-card:hover img {
    transform: scale(1.06) !important;
}

.eatreal-menu-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.55rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    background: rgba(34, 197, 94, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #22C55E !important;
    padding: 0.3rem 0.8rem !important;
    border: 1px solid rgba(34,197,94,0.2) !important;
}

.eatreal-price-tag {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.5rem !important;
    color: #22C55E !important;
    letter-spacing: 0.02em !important;
}

/* ── Philosophy / Brand Story ── */
.eatreal-philosophy {
    position: relative;
    overflow: hidden;
}

.eatreal-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: repeating-conic-gradient(rgba(255,255,255,0.1) 0% 25%, transparent 0% 50%);
    background-size: 3px 3px;
    pointer-events: none;
}

.eatreal-big-quote {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.02em !important;
}

.eatreal-vertical-divider {
    width: 3px !important;
    min-height: 80px;
    background: linear-gradient(180deg, #22C55E, #16A34A, #0F9D58) !important;
}

/* ── Promise Section — Bento Grid ── */
@keyframes eatreal-border-glow {
    0%, 100% {
        border-color: rgba(34, 197, 94, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 rgba(34, 197, 94, 0), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    50% {
        border-color: rgba(34, 197, 94, 0.35);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 25px rgba(34, 197, 94, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
}

@keyframes eatreal-count-up {
    0% { opacity: 0; transform: translateY(20px); }
    60% { opacity: 1; transform: translateY(-3px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes eatreal-grid-fade {
    from { opacity: 0; }
    to { opacity: 0.03; }
}

@keyframes eatreal-dot-travel {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-15px) scale(1.3); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

.eatreal-promise-section {
    position: relative;
    overflow: hidden;
}

.eatreal-promise-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: eatreal-grid-fade 1.5s ease-out forwards;
    pointer-events: none;
}

.eatreal-promise-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Featured large promise card */
.eatreal-promise-featured {
    position: relative;
    background: rgba(34, 197, 94, 0.04) !important;
    backdrop-filter: blur(20px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
    border: 1px solid rgba(34, 197, 94, 0.15) !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(34, 197, 94, 0.08) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden;
}

.eatreal-promise-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: transform 0.8s ease;
}

.eatreal-promise-featured:hover {
    border-color: rgba(34, 197, 94, 0.35) !important;
    transform: translateY(-6px) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(34, 197, 94, 0.12) !important;
}

.eatreal-promise-featured:hover::before {
    transform: translate(-20%, 20%);
}

.eatreal-promise-big-number {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(5rem, 10vw, 8rem) !important;
    line-height: 1 !important;
    color: rgba(34, 197, 94, 0.12) !important;
    letter-spacing: -0.02em !important;
    position: relative;
}

.eatreal-promise-big-number.is-visible {
    animation: eatreal-count-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Promise cards */
.eatreal-promise-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025) !important;
    backdrop-filter: blur(16px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden;
    cursor: default;
    height: 100%;
}

.eatreal-promise-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22C55E, #16A34A);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eatreal-promise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.eatreal-promise-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(34, 197, 94, 0.25) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(34, 197, 94, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    animation: eatreal-border-glow 2s ease-in-out infinite;
}

.eatreal-promise-card:hover::before {
    width: 100%;
}

.eatreal-promise-card:hover::after {
    opacity: 1;
}

/* Promise card number */
.eatreal-promise-num {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 3rem !important;
    line-height: 1 !important;
    color: rgba(34, 197, 94, 0.12) !important;
    letter-spacing: 0.02em !important;
    transition: color 0.5s ease !important;
}

.eatreal-promise-card:hover .eatreal-promise-num {
    color: rgba(34, 197, 94, 0.3) !important;
}

/* Promise card detail reveal */
.eatreal-promise-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease 0.1s;
}

.eatreal-promise-card:hover .eatreal-promise-detail {
    max-height: 80px;
    opacity: 1;
}

/* Promise bento 2x2 grid */
.eatreal-promise-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.eatreal-promise-grid > .wp-block-group {
    margin-bottom: 0 !important;
}

/* Featured card stretch */
.eatreal-promise-left-col {
    display: flex !important;
    flex-direction: column;
}

.eatreal-promise-left-col > .eatreal-promise-featured {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 782px) {
    .eatreal-promise-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* Accent dot decorations */
.eatreal-promise-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: eatreal-dot-travel 3s ease-in-out infinite;
}

.eatreal-promise-dot-2 {
    animation-delay: 1s;
}

.eatreal-promise-dot-3 {
    animation-delay: 2s;
}

/* Stagger reveal directions */
.eatreal-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eatreal-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.eatreal-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eatreal-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.eatreal-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eatreal-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Legacy compat */
.eatreal-value-item {
    text-align: center;
    padding: 2.5rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.025) !important;
    backdrop-filter: blur(12px) saturate(1.3) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
}

.eatreal-value-item:hover {
    border-color: rgba(34,197,94,0.2) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(34, 197, 94, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.eatreal-value-icon {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    color: #22C55E !important;
    margin-bottom: 1rem !important;
}

/* ── Footer ── */
.eatreal-footer {
    position: relative;
}

.eatreal-footer-accent {
    height: 3px !important;
    min-height: 3px !important;
    background: linear-gradient(90deg,
        #22C55E 0%, #22C55E 40%,
        #16A34A 40%, #16A34A 70%,
        #0F9D58 70%, #0F9D58 100%
    ) !important;
}

.eatreal-footer a {
    transition: color 0.3s ease !important;
}

.eatreal-footer a:hover {
    color: #22C55E !important;
}

/* ── Equal Cards ── */
.equal-cards > .wp-block-column {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.equal-cards > .wp-block-column > .wp-block-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.equal-cards .cta-bottom {
    margin-top: auto;
    justify-content: center;
}

/* ── Global overrides ── */
.wp-site-blocks > footer {
    margin-block-start: 0;
}

.wp-site-blocks > * + * {
    margin-block-start: 0;
}

/* ── Section separator line ── */
.eatreal-section-line {
    width: 60px;
    height: 3px;
    background-color: #22C55E;
    border: none;
}

/* ── Hero content alignment ── */
.eatreal-hero-overlay {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.eatreal-hero-overlay .eatreal-headline-huge,
.eatreal-hero-overlay .wp-block-heading,
.eatreal-hero-overlay .wp-block-paragraph,
.eatreal-hero-overlay .wp-block-buttons {
    text-align: left;
}

/* ── Consistent container constraint ── */
.wp-site-blocks .alignfull > .wp-block-group__inner-container,
.wp-site-blocks .alignfull.wp-block-group > .wp-block-group__inner-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure all constrained sections respect container */
.wp-site-blocks > .wp-block-group.alignfull {
    padding-left: max(2rem, calc((100% - 1280px) / 2)) !important;
    padding-right: max(2rem, calc((100% - 1280px) / 2)) !important;
}

/* Header container consistency */
.eatreal-header.wp-block-group {
    padding-left: max(2rem, calc((100% - 1280px) / 2)) !important;
    padding-right: max(2rem, calc((100% - 1280px) / 2)) !important;
}

.eatreal-header .wp-block-group[style*="padding-left:2rem"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Footer container consistency */
.eatreal-footer.wp-block-group {
    padding-left: max(2rem, calc((100% - 1280px) / 2)) !important;
    padding-right: max(2rem, calc((100% - 1280px) / 2)) !important;
}

/* ── Responsive ── */
@media (max-width: 782px) {
    .eatreal-header .wp-block-navigation {
        display: none !important;
    }

    .eatreal-hero-video {
        min-height: 44vh !important;
    }

    .eatreal-hero-video::before {
        background:
            linear-gradient(90deg,
                rgba(10,10,10,0.97) 0%,
                rgba(10,10,10,0.92) 40%,
                rgba(10,10,10,0.6) 65%,
                rgba(10,10,10,0.3) 100%
            ),
            linear-gradient(180deg,
                rgba(10,10,10,0.5) 0%,
                transparent 20%,
                transparent 75%,
                rgba(10,10,10,0.6) 100%
            );
    }

    .eatreal-video-bg iframe {
        width: 100vw;
        height: 56.25vw;
        min-height: 100%;
        min-width: 177.78vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .eatreal-stat-tile {
        padding: 1rem 1.5rem !important;
    }

    .wp-site-blocks > .wp-block-group.alignfull {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .eatreal-header.wp-block-group {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .eatreal-footer.wp-block-group {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}