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

:root {
    --black: #0a0a0a;
    --off-black: #111111;
    --red: #D8272C;
    --red-dark: #a81e22;
    --cream: #F5ECD7;
    --yellow: #F5C518;
    --white: #ffffff;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2.5);
    background: var(--red);
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-size: 1.7rem;
    animation: wapulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
}

@keyframes wapulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4)
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7)
    }
}

.wa-label {
    position: fixed;
    bottom: 40px;
    right: 98px;
    z-index: 500;
    background: #128C7E;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px 6px 0 6px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-btn:hover~.wa-label {
    opacity: 1;
}

/* NAV */
nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.97), transparent);
    backdrop-filter: blur(6px);
    transition: background 0.3s, top 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

.nav-logo {
    font-family: 'Black Ops One', cursive;
    font-size: 1.5rem;
    color: var(--red);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-logo span {
    color: var(--cream);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--red-dark);
}

/* COMING SOON BANNER */
.cs-banner {
    background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow) 45%, #ffeb99 50%, var(--yellow) 55%, var(--yellow) 100%);
    background-size: 200% auto;
    color: var(--black);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    transition: transform 0.3s ease;
    animation: bannerShine 4s linear infinite;
}

@keyframes bannerShine {
    to {
        background-position: -200% center;
    }
}

.cs-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.cs-banner a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 800;
    opacity: 0.8;
}

.cs-banner a:hover {
    opacity: 1;
}

/* COMING SOON PILL - replaces "Order Now" on buttons */
.cs-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.35);
    color: var(--yellow);
    padding: 6px 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    cursor: default;
}

.cs-pill::before {
    content: '◉';
    font-size: 0.55em;
    animation: blink 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════
       WAITLIST SECTION
    ═══════════════════════════════ */
#waitlist {
    background: linear-gradient(135deg, #0f0303 0%, #1a0808 50%, #0a0a0a 100%);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(216, 39, 44, 0.2);
    border-bottom: 1px solid rgba(216, 39, 44, 0.2);
}

#waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(216, 39, 44, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

#waitlist::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(245, 236, 215, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.wl-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.wl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(216, 39, 44, 0.15);
    border: 1px solid rgba(216, 39, 44, 0.4);
    color: var(--red);
    padding: 6px 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.wl-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: blink 1.2s ease-in-out infinite;
}

.wl-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(44px, 7vw, 90px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.wl-title em {
    color: var(--red);
    font-style: normal;
    display: block;
}

.wl-location {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(18px, 3vw, 28px);
    letter-spacing: 6px;
    color: var(--yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.wl-sub {
    font-size: 0.95rem;
    color: rgba(245, 236, 215, 0.6);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* Perks row */
.wl-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.wl-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 236, 215, 0.1);
    padding: 10px 20px;
    font-size: 0.78rem;
    color: rgba(245, 236, 215, 0.7);
    letter-spacing: 1px;
}

.wl-perk-icon {
    font-size: 1rem;
}

/* Form */
.wl-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.wl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wl-form input,
.wl-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 236, 215, 0.15);
    color: var(--cream);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.wl-form input::placeholder {
    color: rgba(245, 236, 215, 0.3);
}

.wl-form input:focus,
.wl-form select:focus {
    border-color: var(--red);
}

.wl-form select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.wl-form select option {
    background: #1a0808;
    color: var(--cream);
}

.wl-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
    transition: background 0.2s, transform 0.15s;
    font-family: 'DM Sans', sans-serif;
}

.wl-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.wl-submit:active {
    transform: translateY(0);
}

.wl-note {
    font-size: 0.72rem;
    color: rgba(245, 236, 215, 0.3);
    margin-top: 12px;
    line-height: 1.6;
}

/* Success state */
.wl-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.wl-success-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.wl-success h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: #25D366;
    margin-bottom: 8px;
}

.wl-success p {
    color: rgba(245, 236, 215, 0.6);
    font-size: 0.88rem;
}

/* Counter */
.wl-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    color: rgba(245, 236, 215, 0.35);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wl-counter-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: var(--yellow);
}

/* HERO */
#home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(255, 255, 255, 0.012);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
    z-index: 0;
}

.hero-stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    right: 0;
    background: var(--red);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 60px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow) 45%, #ffeb99 50%, var(--yellow) 55%, var(--yellow) 100%);
    background-size: 200% auto;
    color: var(--black);
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: badgePulse 2s infinite, bannerShine 4s linear infinite;
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.7);
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 197, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, 0);
    }
}

.hero-badge::before {
    content: '★';
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(64px, 8vw, 130px);
    line-height: 0.92;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-title span {
    color: var(--yellow);
    display: block;
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 236, 215, 0.7);
    max-width: 380px;
    margin-bottom: 44px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid rgba(245, 236, 215, 0.4);
    color: var(--cream);
    padding: 14px 34px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--cream);
}

.hero-img-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 40px 80px;
    gap: 28px;
}

.burger-visual {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #2a1a0a, #0a0402);
    border: 3px solid rgba(245, 197, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(216, 39, 44, 0.2);
    animation: float 4s ease-in-out infinite;
}

.burger-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(245, 236, 215, 0.08);
    border: 1px solid rgba(245, 236, 215, 0.15);
    color: var(--cream);
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.tag.accent {
    background: rgba(216, 39, 44, 0.15);
    border-color: rgba(216, 39, 44, 0.3);
    color: #ff6b6e;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    color: rgba(245, 236, 215, 0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245, 236, 215, 0.4), transparent);
    animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* STATS BAR */
.stats-bar {
    background: var(--red);
    padding: 24px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 2px;
    display: inline-block;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
}

.stat-div {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
}

/* RATING STRIP */
.rating-strip {
    background: var(--off-black);
    border-bottom: 1px solid rgba(245, 236, 215, 0.07);
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-logo {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Black Ops One', cursive;
}

.r-logo.g {
    color: #4285F4;
}

.r-logo.z {
    color: #E23744;
}

.r-logo.s {
    color: #FC8019;
}

.r-stars {
    color: var(--yellow);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.r-num {
    font-size: 0.8rem;
    color: rgba(245, 236, 215, 0.55);
}

.r-div {
    width: 1px;
    height: 28px;
    background: rgba(245, 236, 215, 0.12);
}

.r-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 236, 215, 0.35);
}

/* SECTION LABEL */
.sec-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--red);
}

.sec-label.center {
    justify-content: center;
}

.sec-label.center::after {
    display: none;
}

/* ══════════════════════════════════════
       OUR STORY - CINEMATIC SPLIT PANEL
    ══════════════════════════════════════ */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* LEFT VIDEO PANEL */
.story-visual {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #0a0202;
}

/* The actual video - swap in once generated */
.story-visual video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.2);
    z-index: 1;
}

/* Animated fallback background */
.story-video-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(155deg, #1a0808 0%, #0d0404 55%, #050101 100%);
    overflow: hidden;
}

/* Halftone dot overlay - the Beefin Burger effect */
.sv-halftone {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(245, 236, 215, 0.13) 1px, transparent 1px);
    background-size: 16px 16px;
    mix-blend-mode: screen;
}

/* Pulsing atmospheric red glow blobs */
.sv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
}

.sv-glow-1 {
    width: 380px;
    height: 380px;
    background: rgba(216, 39, 44, 0.22);
    top: -80px;
    left: -80px;
    animation: glowpulse 5s ease-in-out infinite;
}

.sv-glow-2 {
    width: 260px;
    height: 260px;
    background: rgba(245, 197, 24, 0.08);
    bottom: 60px;
    right: -40px;
    animation: glowpulse 7s ease-in-out infinite 1.5s;
}

.sv-glow-3 {
    width: 200px;
    height: 200px;
    background: rgba(216, 39, 44, 0.12);
    bottom: -60px;
    left: 30%;
    animation: glowpulse 6s ease-in-out infinite 3s;
}

@keyframes glowpulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

/* Scrolling grill grid lines */
.sv-grill {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(216, 39, 44, 0.04) 44px, rgba(216, 39, 44, 0.04) 46px),
        repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(216, 39, 44, 0.025) 44px, rgba(216, 39, 44, 0.025) 46px);
    animation: grillscroll 16s linear infinite;
}

@keyframes grillscroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(46px);
    }
}

/* Floating ember / spark particles */
.sv-ember {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
}

.sv-e1 {
    width: 4px;
    height: 4px;
    background: rgba(245, 197, 24, 0.75);
    left: 18%;
    bottom: 12%;
    animation: svrise 4.2s ease-in infinite;
}

.sv-e2 {
    width: 3px;
    height: 3px;
    background: rgba(216, 39, 44, 0.8);
    left: 35%;
    bottom: 8%;
    animation: svrise 5.8s ease-in infinite 0.8s;
}

.sv-e3 {
    width: 5px;
    height: 5px;
    background: rgba(245, 197, 24, 0.6);
    left: 55%;
    bottom: 16%;
    animation: svrise 3.9s ease-in infinite 1.6s;
}

.sv-e4 {
    width: 3px;
    height: 3px;
    background: rgba(255, 160, 40, 0.7);
    left: 70%;
    bottom: 10%;
    animation: svrise 6.2s ease-in infinite 0.3s;
}

.sv-e5 {
    width: 4px;
    height: 4px;
    background: rgba(216, 39, 44, 0.65);
    left: 45%;
    bottom: 22%;
    animation: svrise 4.7s ease-in infinite 2.1s;
}

.sv-e6 {
    width: 3px;
    height: 3px;
    background: rgba(245, 197, 24, 0.8);
    left: 82%;
    bottom: 14%;
    animation: svrise 5.1s ease-in infinite 1.1s;
}

@keyframes svrise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.9;
    }

    60% {
        transform: translateY(-180px) translateX(12px) scale(0.5);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-300px) translateX(20px) scale(0);
        opacity: 0;
    }
}

/* Soft steam wisps rising */
.sv-steam {
    position: absolute;
    z-index: 4;
    width: 40px;
    height: 80px;
    border-radius: 50%;
    background: rgba(245, 236, 215, 0.04);
    filter: blur(12px);
    animation: svsteam 4s ease-in-out infinite;
}

.sv-s1 {
    left: 25%;
    bottom: 25%;
    animation-delay: 0s;
}

.sv-s2 {
    left: 50%;
    bottom: 20%;
    animation-delay: 1.4s;
}

.sv-s3 {
    left: 72%;
    bottom: 28%;
    animation-delay: 2.8s;
}

@keyframes svsteam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-120px) scaleX(2);
        opacity: 0;
    }
}

/* "Coming soon" centre label */
.sv-label {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sv-play-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(216, 39, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 39, 44, 0.1);
    animation: ringpulse 2.5s ease-in-out infinite;
    margin-bottom: 4px;
}

@keyframes ringpulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(216, 39, 44, 0.3);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(216, 39, 44, 0);
    }
}

.sv-play-icon {
    color: var(--red);
    font-size: 1.4rem;
    margin-left: 4px;
}

.sv-label-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 5px;
    color: rgba(245, 236, 215, 0.5);
    text-transform: uppercase;
}

.sv-label-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(245, 236, 215, 0.25);
    text-transform: uppercase;
}

/* Vignette: right-edge fade + top/bottom darken */
.story-vignette {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background:
        linear-gradient(to right, transparent 55%, rgba(13, 13, 13, 0.96) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 18%, transparent 80%, rgba(0, 0, 0, 0.65) 100%);
}

/* Est. tag pinned to bottom-left */
.story-est-tag {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.82rem;
    letter-spacing: 6px;
    color: var(--yellow);
    text-transform: uppercase;
    padding: 8px 22px;
    border: 1px solid rgba(245, 197, 24, 0.3);
    background: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

.story-text {
    padding: 100px 68px 100px 56px;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(38px, 4.2vw, 66px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.about-text {
    color: rgba(245, 236, 215, 0.62);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.about-pull {
    border-left: 3px solid var(--red);
    padding-left: 20px;
    color: var(--cream);
    font-size: 1.05rem;
    font-style: italic;
    margin: 28px 0;
    line-height: 1.7;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 236, 215, 0.07);
    padding: 22px 18px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
}

.ac-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    color: var(--yellow);
    line-height: 1;
}

.ac-label {
    font-size: 0.72rem;
    color: rgba(245, 236, 215, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* DELIVERY SECTION */
.delivery-wrap {
    background: var(--black);
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(245, 236, 215, 0.06);
    border-bottom: 1px solid rgba(245, 236, 215, 0.06);
}

.delivery-lede {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 236, 215, 0.35);
    margin-bottom: 28px;
}

.delivery-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.d-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1.5px solid rgba(245, 236, 215, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: border-color 0.2s, transform 0.2s;
}

.d-badge:hover {
    transform: translateY(-3px);
}

.d-badge.swiggy {
    color: #FC8019;
    border-color: rgba(252, 128, 25, 0.2);
}

.d-badge.swiggy:hover {
    border-color: #FC8019;
}

.d-badge.zomato {
    color: #E23744;
    border-color: rgba(226, 55, 68, 0.2);
}

.d-badge.zomato:hover {
    border-color: #E23744;
}

.d-badge.gmaps {
    color: #4285F4;
    border-color: rgba(66, 133, 244, 0.2);
}

.d-badge.gmaps:hover {
    border-color: #4285F4;
}

/* MENU */
#menu {
    background: #0d0d0d;
    padding: 120px 60px;
}

.menu-hdr {
    text-align: center;
    margin-bottom: 70px;
}

.menu-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(48px, 7vw, 100px);
    color: var(--white);
    letter-spacing: 3px;
}

.menu-title span {
    color: var(--red);
}

.menu-sub {
    color: rgba(245, 236, 215, 0.45);
    font-size: 0.88rem;
    margin-top: 12px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--off-black);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    z-index: 1;
}

.menu-card.feat {
    background: var(--red);
}

.menu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.menu-card:hover::after {
    transform: scaleX(1);
}

.m-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 24px;
}

.m-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.m-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.m-sub {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
}

.menu-card.feat .m-sub {
    color: rgba(255, 255, 255, 0.7);
}

.m-desc {
    font-size: 0.88rem;
    color: rgba(245, 236, 215, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.menu-card.feat .m-desc {
    color: rgba(255, 255, 255, 0.82);
}

.m-feats {
    list-style: none;
    margin-bottom: 28px;
}

.m-feats li {
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.m-feats li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
}

.m-cta {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background 0.2s;
}

.m-cta:hover {
    background: var(--yellow);
}

/* PROTEIN LEGEND */
.protein-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 236, 215, 0.08);
    flex-wrap: wrap;
}

.pl-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 36px;
    flex: 1;
    min-width: 220px;
}

.pl-item.pl-beef {
    background: rgba(216, 39, 44, 0.08);
    border-left: 3px solid var(--red);
}

.pl-dot {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pl-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.pl-beef .pl-title {
    color: var(--yellow);
}

.pl-sub {
    font-size: 0.75rem;
    color: rgba(245, 236, 215, 0.45);
    line-height: 1.5;
}

.pl-divider {
    width: 1px;
    height: 60px;
    background: rgba(245, 236, 215, 0.08);
    flex-shrink: 0;
}

/* PROCESS */
#process {
    padding: 120px 60px;
    background: var(--black);
}

.proc-hdr {
    text-align: center;
    margin-bottom: 70px;
}

.proc-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 6vw, 88px);
    color: var(--white);
}

.proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.proc-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--yellow));
}

.proc-step {
    text-align: center;
    padding: 0 20px;
}

.p-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--black);
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--red);
    position: relative;
    z-index: 1;
}

.p-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.p-desc {
    font-size: 0.82rem;
    color: rgba(245, 236, 215, 0.5);
    line-height: 1.7;
}

/* REVIEWS */
#reviews {
    background: var(--off-black);
    padding: 120px 60px;
}

.rev-hdr {
    text-align: center;
    margin-bottom: 60px;
}

.rev-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 5vw, 80px);
    color: var(--white);
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rev-card {
    background: var(--black);
    padding: 36px 32px;
    border: 1px solid rgba(245, 236, 215, 0.07);
}

.rev-q {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--red);
    line-height: 0.5;
    margin-bottom: 20px;
}

.rev-text {
    color: rgba(245, 236, 215, 0.75);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.rev-stars {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.rev-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}

.rev-role {
    font-size: 0.75rem;
    color: var(--gray);
}

/* FAQ */
#faq {
    background: var(--black);
    padding: 100px 60px;
}

.faq-hdr {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(36px, 5vw, 76px);
    color: var(--white);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 236, 215, 0.08);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    gap: 16px;
}

.faq-q:hover {
    color: var(--yellow);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 236, 215, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--red);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 0 24px;
    color: rgba(245, 236, 215, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* SOCIAL */
.social-wrap {
    background: var(--off-black);
    padding: 70px 60px;
    text-align: center;
    border-top: 1px solid rgba(245, 236, 215, 0.06);
}

.social-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 8px;
}

.social-sub {
    color: rgba(245, 236, 215, 0.4);
    font-size: 0.85rem;
    margin-bottom: 36px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.s-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    border: 1.5px solid rgba(245, 236, 215, 0.15);
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.s-btn:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

/* CONTACT */
#contact {
    background: var(--black);
}

.contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.c-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
}

.c-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 5vw, 72px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(245, 236, 215, 0.07);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-lbl {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 6px;
}

.info-val {
    color: var(--cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-val a {
    color: var(--cream);
    text-decoration: none;
}

.info-val a:hover {
    color: var(--yellow);
}

.map-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-black);
    border: 1px solid rgba(245, 236, 215, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.map-box span {
    font-size: 3rem;
}

.map-box p {
    color: var(--gray);
    font-size: 0.85rem;
}

.map-btn {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.map-btn:hover {
    background: var(--red-dark);
}

/* FOOTER */
footer {
    background: #050505;
    padding: 60px 60px 32px;
    border-top: 1px solid rgba(245, 236, 215, 0.07);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 40px;
}

.f-brand {
    max-width: 320px;
}

.f-logo {
    font-family: 'Black Ops One', cursive;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 16px;
}

.f-logo span {
    color: var(--cream);
}

.f-desc {
    color: rgba(245, 236, 215, 0.45);
    font-size: 0.85rem;
    line-height: 1.7;
}

.f-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.f-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 236, 215, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}

.f-social a:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.f-links h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
}

.f-links ul {
    list-style: none;
}

.f-links li {
    margin-bottom: 10px;
}

.f-links a {
    color: rgba(245, 236, 215, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.f-links a:hover {
    color: var(--red);
}

.f-hours h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
}

.hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 39, 44, 0.1);
    border: 1px solid rgba(216, 39, 44, 0.3);
    padding: 8px 20px;
    color: var(--red);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.hours-pill::before {
    content: '●';
    font-size: 0.5em;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.f-hours p {
    color: rgba(245, 236, 215, 0.5);
    font-size: 0.85rem;
    margin: 6px 0;
}

.footer-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 236, 215, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.f-copy {
    color: rgba(245, 236, 215, 0.3);
    font-size: 0.78rem;
}

.f-legal {
    display: flex;
    gap: 24px;
}

.f-legal a {
    color: rgba(245, 236, 215, 0.3);
    text-decoration: none;
    font-size: 0.78rem;
}

.f-legal a:hover {
    color: var(--cream);
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 9998;
}

/* ══════════════════════════════════
       VIDEO SHOWCASE SECTION
    ══════════════════════════════════ */
#video-section {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    inset: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42) saturate(1.15);
}

/* Animated fallback when no video file */
.video-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0404 0%, #1c0808 40%, #0a0402 100%);
}

.video-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(216, 39, 44, 0.28) 0%, transparent 48%),
        radial-gradient(ellipse at 78% 22%, rgba(245, 197, 24, 0.1) 0%, transparent 38%);
    animation: bgpulse 5s ease-in-out infinite alternate;
}

@keyframes bgpulse {
    0% {
        opacity: 0.6;
        transform: scale(1)
    }

    100% {
        opacity: 1;
        transform: scale(1.04)
    }
}

.video-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 46px, rgba(216, 39, 44, 0.04) 46px, rgba(216, 39, 44, 0.04) 48px),
        repeating-linear-gradient(90deg, transparent, transparent 46px, rgba(216, 39, 44, 0.025) 46px, rgba(216, 39, 44, 0.025) 48px);
    animation: grillscroll 14s linear infinite;
}

@keyframes grillscroll {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(48px)
    }
}

/* Floating ember particles */
.ember {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.ember-1 {
    width: 4px;
    height: 4px;
    background: rgba(245, 197, 24, 0.6);
    left: 20%;
    bottom: 20%;
    animation: rise1 4s ease-in infinite;
}

.ember-2 {
    width: 3px;
    height: 3px;
    background: rgba(216, 39, 44, 0.7);
    left: 45%;
    bottom: 15%;
    animation: rise2 5.5s ease-in infinite 1s;
}

.ember-3 {
    width: 5px;
    height: 5px;
    background: rgba(245, 197, 24, 0.5);
    left: 70%;
    bottom: 25%;
    animation: rise1 3.8s ease-in infinite 0.5s;
}

.ember-4 {
    width: 3px;
    height: 3px;
    background: rgba(216, 39, 44, 0.6);
    left: 60%;
    bottom: 10%;
    animation: rise2 6s ease-in infinite 2s;
}

.ember-5 {
    width: 4px;
    height: 4px;
    background: rgba(255, 200, 50, 0.55);
    left: 35%;
    bottom: 30%;
    animation: rise1 4.5s ease-in infinite 1.5s;
}

@keyframes rise1 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translateY(-200px) scale(0.5) translateX(20px);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-320px) scale(0);
        opacity: 0;
    }
}

@keyframes rise2 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    70% {
        transform: translateY(-180px) scale(0.6) translateX(-15px);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-300px) scale(0);
        opacity: 0;
    }
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, transparent 18%, transparent 65%, rgba(10, 10, 10, 0.85) 100%),
        linear-gradient(to right, rgba(10, 10, 10, 0.3), transparent 50%, rgba(10, 10, 10, 0.25));
}

.video-scanlines {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.025) 2px, rgba(0, 0, 0, 0.025) 4px);
}

/* Content */
.video-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 40px;
    max-width: 800px;
}

.video-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeSlideDown 1s ease 0.2s both;
}

.video-eyebrow::before,
.video-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--yellow);
    opacity: 0.5;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.video-headline {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(54px, 9vw, 128px);
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 28px;
    animation: fadeSlideUp 1s ease 0.4s both;
}

.video-headline em {
    color: var(--red);
    font-style: normal;
    display: block;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.video-tagline {
    font-size: 1rem;
    color: rgba(245, 236, 215, 0.72);
    max-width: 460px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: fadeSlideUp 1s ease 0.65s both;
}

.video-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s ease 0.85s both;
}

.video-btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 17px 42px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    transition: background 0.2s, transform 0.2s;
}

.video-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.video-btn-ghost {
    border: 2px solid rgba(245, 236, 215, 0.45);
    color: var(--cream);
    padding: 15px 36px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s;
}

.video-btn-ghost:hover {
    border-color: var(--cream);
}

.play-ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.video-bottom-badges {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 36px;
    align-items: center;
    white-space: nowrap;
}

.vb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 236, 215, 0.45);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
}

/* STAT COUNTER */
.stat-num.counting {
    color: rgba(255, 255, 255, 0.85);
}

/* ══════════════════════════════
       RESPONSIVE - TABLET (960px)
    ══════════════════════════════ */
@media (max-width: 960px) {
    nav {
        padding: 14px 24px;
        top: 38px;
    }

    .nav-links {
        display: none;
    }

    #home {
        grid-template-columns: 1fr;
    }

    .hero-stripe {
        display: none;
    }

    .hero-content {
        padding: 160px 24px 32px;
    }

    .hero-img-col {
        padding: 16px 24px 50px;
    }

    .stats-bar {
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .rating-strip {
        padding: 14px 20px;
        gap: 14px;
        flex-wrap: wrap;
    }

    #about {
        grid-template-columns: 1fr;
    }

    .story-visual {
        min-height: 340px;
    }

    .story-text {
        padding: 50px 24px;
    }

    .delivery-wrap {
        padding: 40px 24px;
    }

    #menu {
        padding: 70px 24px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    #process {
        padding: 70px 24px;
    }

    .proc-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .proc-steps::before {
        display: none;
    }

    .rev-grid {
        grid-template-columns: 1fr;
    }

    #faq {
        padding: 70px 24px;
    }

    .social-wrap {
        padding: 50px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        padding: 70px 24px;
    }

    footer {
        padding: 40px 24px 24px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bot {
        flex-direction: column;
        text-align: center;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }

    #waitlist {
        padding: 70px 24px;
    }

    .wl-row {
        grid-template-columns: 1fr;
    }

    .wl-perks {
        gap: 10px;
    }

    .wl-perk {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .video-bottom-badges {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .protein-legend {
        flex-direction: column;
    }

    .pl-divider {
        width: 100%;
        height: 1px;
    }
}

/* ══════════════════════════════
       RESPONSIVE - MOBILE (600px)
    ══════════════════════════════ */
@media (max-width: 600px) {

    /* Banner - single line, smaller text */
    .cs-banner {
        font-size: 0.62rem;
        letter-spacing: 1.5px;
        padding: 8px 16px;
        gap: 8px;
        flex-direction: column;
        line-height: 1.5;
    }

    .cs-banner-dot {
        display: none;
    }

    /* Nav - tighter, logo smaller */
    nav {
        padding: 12px 20px;
        top: 0;
        /* banner is stacked vertically, handled by JS */
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Hero */
    .hero-content {
        padding: 160px 20px 28px;
    }

    .hero-title {
        font-size: clamp(48px, 13vw, 72px);
    }

    .hero-badge {
        font-size: 0.62rem;
        letter-spacing: 2px;
        padding: 5px 12px;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .hero-img-col {
        padding: 8px 20px 40px;
    }

    .burger-visual {
        width: 220px;
        height: 220px;
    }

    .burger-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .hero-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.68rem;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    /* Stats bar */
    .stats-bar {
        padding: 20px 16px;
        gap: 12px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .stat-div {
        height: 36px;
    }

    /* Rating / coming soon strip */
    .rating-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 12px;
    }

    .r-div {
        display: none;
    }

    .r-label {
        font-size: 0.62rem;
    }

    /* Our Story */
    .story-visual {
        min-height: 280px;
    }

    .story-text {
        padding: 40px 20px;
    }

    .about-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-card {
        padding: 16px 12px;
    }

    .ac-num {
        font-size: 1.6rem;
    }

    .about-pull {
        font-size: 1rem;
    }

    /* Delivery */
    .delivery-wrap {
        padding: 36px 20px;
    }

    .delivery-badges {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .d-badge {
        justify-content: center;
        padding: 14px 20px;
    }

    /* Menu */
    #menu {
        padding: 60px 20px;
    }

    .menu-title {
        font-size: clamp(44px, 12vw, 70px);
    }

    .menu-grid {
        gap: 16px;
    }

    .menu-card {
        padding: 28px 20px;
    }

    .m-emoji {
        font-size: 2.5rem;
    }

    /* Process */
    #process {
        padding: 60px 20px;
    }

    .proc-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Video section */
    #video-section {
        height: 65vh;
        min-height: 400px;
    }

    .video-headline {
        font-size: clamp(40px, 11vw, 70px);
    }

    .video-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .video-bottom-badges {
        display: none;
    }

    /* FAQ */
    #faq {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .faq-q {
        font-size: 0.88rem;
        padding: 18px 16px;
    }

    /* Social */
    .social-wrap {
        padding: 40px 20px;
    }

    .social-links {
        flex-direction: column;
    }

    .s-btn {
        justify-content: center;
    }

    /* Waitlist */
    #waitlist {
        padding: 60px 20px;
    }

    .wl-title {
        font-size: clamp(40px, 12vw, 70px);
    }

    .wl-perks {
        flex-direction: column;
        gap: 8px;
    }

    .wl-perk {
        width: 100%;
        justify-content: flex-start;
    }

    .wl-form input,
    .wl-form select {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .wl-submit {
        font-size: 0.82rem;
        letter-spacing: 2px;
        padding: 16px;
    }

    /* Contact */
    .contact-inner {
        padding: 60px 20px;
    }

    .c-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .map-box {
        padding: 32px 20px;
    }

    /* Footer */
    footer {
        padding: 40px 20px 20px;
    }

    .f-logo {
        font-size: 1.3rem;
    }

    .footer-top {
        gap: 36px;
    }

    /* Scroll indicator */
    .hero-scroll {
        display: none;
    }
}