/* ================================
   CLUCKIES - Main Stylesheet
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Fiery Theme */
    --primary-orange: #FF7A18;
    --primary-red: #FF2D2D;
    --accent-yellow: #FFE066;
    
    /* Background Colors - Dark Theme */
    --bg-dark: #1A1A1A;
    --bg-darker: #0D0D0D;
    --bg-light-dark: #2D2D2D;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-gray: #AAAAAA;
    
    /* Special Effects */
    --fire-gradient: linear-gradient(135deg, #FFE066, #FF7A18 45%, #FF2D2D);
    --glow-orange: 0 0 24px rgba(255, 122, 24, 0.58);
    --glow-red: 0 0 24px rgba(255, 45, 45, 0.56);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
}

.navbar.navbar-home-transparent {
    background-color: transparent !important;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-orange) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: visible;
}

.navbar-brand i {
    margin-right: 8px;
    animation: flicker 1.5s infinite alternate;
}

.navbar-logo {
    max-height: 90px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(1.2);
    transform-origin: left center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.24);
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

@keyframes flicker {
    0%, 100% { opacity: 1; text-shadow: var(--glow-orange); }
    50% { opacity: 0.8; text-shadow: var(--glow-red); }
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--fire-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Navbar: Order online — Toast CTA (matches fire gradient / primary buttons) */
.navbar-order-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0.85rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 122, 24, 0.18);
}

.navbar-order-cluster--cta {
    gap: 0;
}

.navbar-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.52rem 1.15rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-white);
    background: var(--fire-gradient);
    background-size: 140% 140%;
    background-position: center;
    border: 1px solid rgba(255, 224, 102, 0.45);
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 18px rgba(255, 122, 24, 0.25);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease,
        border-color 0.22s ease;
}

.navbar-order-btn i {
    font-size: 0.92rem;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 60, 30, 0.45));
}

.navbar-order-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 224, 102, 0.75);
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(255, 122, 24, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    filter: saturate(1.08) brightness(1.06);
}

.navbar-order-btn:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 3px;
}

/* Solid nav bar — slightly tighter glow so it sits on dark chrome */
.navbar:not(.navbar-home-transparent) .navbar-order-btn {
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 14px rgba(255, 122, 24, 0.22);
}

/* Home hero: same CTA reads clearly over video */
.navbar.navbar-home-transparent .navbar-order-btn {
    backdrop-filter: blur(6px);
    border-color: rgba(255, 224, 102, 0.55);
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 24px rgba(255, 90, 30, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.35);
}

.navbar.navbar-home-transparent .navbar-order-btn:hover {
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.52),
        0 0 32px rgba(255, 122, 24, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 0 0 1px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
    .navbar-order-cluster {
        width: auto;
        flex-wrap: nowrap;
        align-items: center;
        align-self: center;
        justify-content: flex-start;
        padding-top: 0;
        margin-top: 0;
        margin-left: 0.75rem;
        padding-left: 1rem;
        border-top: none;
        border-left: 1px solid rgba(255, 122, 24, 0.38);
    }
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2D2D2D 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJub25lIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmZjZmMzUiIG9wYWNpdHk9IjAuMSIvPgo8L3N2Zz4=');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn-primary {
    background: var(--fire-gradient);
    border: none;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
    background: var(--fire-gradient);
}

.btn-outline-light {
    border: 3px solid var(--text-white);
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   SECTIONS COMMON
   ================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--fire-gradient);
}

/* ================================
   FEATURED SECTION
   ================================ */
.featured-section {
    background-color: var(--bg-darker);
}

.featured-card {
    background: var(--bg-light-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.featured-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.featured-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.featured-card p {
    color: var(--text-gray);
}

/* ================================
   ABOUT PREVIEW
   ================================ */
.about-preview {
    background-color: var(--bg-dark);
}

.about-preview .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-preview p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
    font-size: 8rem;
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ================================
   CTA SECTION
   =cta-section
   ================================ */
.cta-section {
    background: var(--fire-gradient);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background-color: var(--bg-darker);
    padding: 4rem 0 1rem;
    border-top: 3px solid var(--primary-orange);
}

.site-footer h4 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.site-footer h4 i {
    margin-right: 8px;
}

.site-footer h5 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.site-footer p {
    color: var(--text-gray);
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer ul li a {
    color: var(--text-gray);
}

.site-footer ul li a:hover {
    color: var(--primary-orange);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light-dark);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--bg-light-dark);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-yellow);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.footer-bottom-copy {
    margin-bottom: 0;
}

.footer-bottom-sep {
    opacity: 0.45;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .navbar-collapse {
        background: var(--bg-darker);
        padding: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ================================
   MENU VARIANT INTERACTIVE UI
   ================================ */
.mvi-wrap {
    /* margin-top is controlled per context (auto in flex cards, 0 in grid cards) */
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mvi-variant {
    margin-bottom: 0.85rem;
}

.mvi-readout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.55rem;
}

.mvi-readout-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.mvi-readout-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-orange);
}

.mvi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-orange) 55%, var(--primary-red));
    cursor: pointer;
    outline: none;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.mvi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fire-gradient);
    box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.25), var(--glow-orange);
    cursor: grab;
    margin-top: -7px;
    transition: box-shadow 0.15s;
}

.mvi-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.35), var(--glow-orange);
}

.mvi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: var(--fire-gradient);
    box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.25);
    cursor: grab;
}

.mvi-ticks {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.mvi-tick {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.32rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    user-select: none;
}

.mvi-tick:hover {
    color: var(--text-white);
    border-color: rgba(255, 122, 24, 0.5);
}

.mvi-tick.is-active {
    color: var(--text-white);
    border-color: var(--primary-orange);
    background: rgba(255, 122, 24, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.25);
}

.mvi-combo-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: transparent;
    border: 1px dashed rgba(255, 224, 102, 0.35);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    color: rgba(255, 224, 102, 0.75);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.mvi-combo-btn:hover {
    background: rgba(255, 224, 102, 0.07);
    border-color: rgba(255, 224, 102, 0.65);
    color: var(--accent-yellow);
}

.mvi-combo-btn.is-active {
    background: rgba(255, 224, 102, 0.12);
    border-style: solid;
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.mvi-combo-plus {
    margin-left: auto;
    font-weight: 900;
}

.mvi-total {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.mvi-total strong {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0;
}

.mvi-total-breakdown {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-left: 0.3rem;
    text-transform: none;
    letter-spacing: 0;
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   BUTTON STYLES
   ================================ */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* ================================
   PAGE HEADERS
   ================================ */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--bg-darker);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ================================
   MENU PAGE STYLES
   ================================ */
.menu-section {
    background-color: var(--bg-darker);
    padding: 4rem 0;
}

.menu-categories {
    /* Single-row horizontal scroll — works on Chrome, Firefox, Safari iOS */
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* momentum scroll on Safari/iOS */
    scroll-snap-type: x proximity;
    /* add horizontal padding so first/last pills aren't flush against the edge */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 6px; /* breathing room above hidden scrollbar */
    /* hide scrollbar across all browsers */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE / Edge */
}

.menu-categories::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, Opera */
}

.menu-categories .nav-item {
    flex: 0 0 auto;              /* prevent pills from shrinking */
    scroll-snap-align: start;
}

.menu-categories .nav-link {
    background: var(--bg-light-dark);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;         /* keep pill text on one line */
    font-size: 0.875rem;
}

.menu-categories .nav-link.active,
.menu-categories .nav-link:hover {
    background: var(--fire-gradient);
    color: var(--text-white);
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.menu-item {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 0;
    max-width: 100%;
    overflow-x: hidden;
    /* stretch to fill the Bootstrap flex column for equal row heights */
    flex: 1;
    width: 100%;
}

.menu-item:hover {
    border-color: rgba(255, 122, 24, 0.55);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.menu-item-header .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.menu-item p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.menu-item-media {
    display: none;
}

/* ─── Equal-height rows: Bootstrap cols become flex columns ─── */
.menu-category .row.g-4 > [class*="col"] {
    display: flex;
    flex-direction: column;
}

/* Non-photo cards: flex column so content stretches properly */
.menu-item:not(.menu-item--with-photo) {
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

/* Description fills available space so mvi-wrap sits at the bottom */
.menu-item:not(.menu-item--with-photo) > p {
    flex: 1;
}

/* mvi-wrap pushed to bottom in flex (non-photo) cards */
.menu-item:not(.menu-item--with-photo) > .mvi-wrap {
    margin-top: auto;
}

/* Photo cards: grid keeps image in one column, text stacked in the other. */
.menu-item--with-photo {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    /* override the flex: 1 from the parent col but stay a flex item */
    align-self: stretch;
}

@media (min-width: 768px) {
    .menu-item--with-photo {
        grid-template-columns: min(220px, 36%) minmax(0, 1fr);
        column-gap: 1.1rem;
        row-gap: 0.4rem;
        align-content: start;
    }

    .menu-item--with-photo .menu-item-media.has-photo {
        grid-column: 1;
        grid-row: 1 / -1;
        max-width: none;
        width: 100%;
        /* image fills the full card height as text column grows */
        align-self: stretch;
        min-height: 180px;
    }

    .menu-item--with-photo .menu-item-header {
        grid-column: 2;
        grid-row: auto;
    }

    .menu-item--with-photo > p {
        grid-column: 2;
    }

    .menu-item--with-photo > .menu-item-options {
        grid-column: 2;
    }

    /* Interactive UI stays in the text column, not under the image */
    .menu-item--with-photo > .mvi-wrap {
        grid-column: 2;
        margin-top: 0;
    }
}

.menu-item-media.has-photo {
    display: block !important;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 122, 24, 0.28);
    background: rgba(0, 0, 0, 0.25);
}

.menu-item-media.has-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;          /* consistent ratio on mobile / single-col */
    object-fit: cover;
    display: block;
}

/* On desktop, image fills full card height (text column drives card height) */
@media (min-width: 768px) {
    .menu-item--with-photo .menu-item-media.has-photo img {
        height: 100%;
        min-height: 190px;
        aspect-ratio: unset;       /* let the container height decide */
    }
}

@media (max-width: 767px) {
    body.page-menu .menu-item-header {
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        row-gap: 0.25rem;
    }

    body.page-menu .menu-item-header h3 {
        flex: 1 1 auto;
        min-width: 0;
    }

    body.page-menu .menu-item-header .price {
        flex: 0 0 auto;
    }
}

/* Order online (menu page — Toast link) — flame-toned text for contrast */
.menu-delivery-apps {
    text-align: center;
    scroll-margin-top: 6.5rem;
}

.menu-delivery-apps .section-title {
    margin-left: auto;
    margin-right: auto;
    background: var(--fire-gradient);
    background-size: 130% 130%;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(255, 122, 24, 0.45));
}

.menu-delivery-intro {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.55;
    font-weight: 600;
    background: linear-gradient(
        120deg,
        #fffef0 0%,
        #ffe066 28%,
        #ff9a3c 58%,
        #ff7a18 85%
    );
    background-size: 140% 100%;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 8px rgba(255, 122, 24, 0.3));
}

.menu-delivery-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    min-height: 5.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 2px solid rgba(255, 122, 24, 0.22);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 224, 102, 0.06);
}

.menu-delivery-card:hover {
    border-color: rgba(255, 122, 24, 0.65);
    transform: translateY(-4px);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(255, 122, 24, 0.22);
}

.menu-delivery-card:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 3px;
}

.menu-delivery-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.menu-delivery-card-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.menu-delivery-brand {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--fire-gradient);
    background-size: 145% 145%;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 60, 30, 0.35));
}

.menu-delivery-hint {
    font-size: 0.8rem;
    line-height: 1.35;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #ffcf8a;
    text-shadow: 0 0 14px rgba(255, 122, 24, 0.35);
}

.menu-delivery-card:hover .menu-delivery-hint {
    color: #ffe8b8;
    text-shadow: 0 0 18px rgba(255, 200, 80, 0.45);
}

.menu-delivery-external {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #ffb347;
    opacity: 0.95;
    transition:
        opacity 0.2s ease,
        color 0.2s ease,
        filter 0.2s ease;
    filter: drop-shadow(0 0 8px rgba(255, 122, 24, 0.4));
}

.menu-delivery-card:hover .menu-delivery-external {
    opacity: 1;
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 12px rgba(255, 224, 102, 0.55));
}

body.page-themed .menu-delivery-card {
    background: linear-gradient(160deg, rgba(255, 122, 24, 0.07), rgba(255, 45, 45, 0.04));
    border: 1px solid rgba(255, 122, 24, 0.28);
}

body.page-themed .menu-delivery-card:hover {
    border-color: rgba(255, 224, 102, 0.42);
}

/* Toast CTA row — reinforced brand frame + icon badge */
.menu-delivery-card--toast {
    border-width: 2px;
    border-color: rgba(255, 122, 24, 0.45);
    background: linear-gradient(
        155deg,
        rgba(255, 122, 24, 0.12),
        rgba(255, 45, 45, 0.08),
        rgba(26, 16, 10, 0.85)
    );
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 224, 102, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.menu-delivery-card--toast:hover {
    border-color: rgba(255, 224, 102, 0.55);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.46),
        0 0 28px rgba(255, 122, 24, 0.3),
        0 0 0 1px rgba(255, 224, 102, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-delivery-icon-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.35rem;
    color: var(--text-white);
    background: var(--fire-gradient);
    background-size: 145% 145%;
    border: 1px solid rgba(255, 224, 102, 0.4);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 16px rgba(255, 90, 30, 0.35);
}

.menu-delivery-card--toast:hover .menu-delivery-icon-badge {
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 22px rgba(255, 122, 24, 0.42);
}

/* Static menu option lists (browse-only; order via Toast or in store) */
.menu-item-options {
    margin: 0.75rem 0 0;
    padding: 0.65rem 0.85rem;
    list-style: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.menu-item-options li + li {
    margin-top: 0.45rem;
}

.menu-item-options strong {
    color: var(--accent-yellow);
    font-weight: 700;
}

.spice-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.spice-level.mild {
    background: rgba(255, 209, 102, 0.2);
    color: var(--accent-yellow);
}

.spice-level.medium {
    background: rgba(255, 165, 0, 0.2);
    color: orange;
}

.spice-level.hot {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

.spice-level.extreme {
    background: rgba(230, 57, 70, 0.2);
    color: var(--primary-red);
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */
.about-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.about-content {
    padding: 2rem 0;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-visual {
    text-align: center;
    font-size: 10rem;
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

.values-section {
    background-color: var(--bg-light-dark);
    padding: 4rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-orange);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
}

.stats-section {
    background: var(--fire-gradient);
    padding: 4rem 0;
}

.stat-item {
    padding: 2rem;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ================================
   OUR STORY PAGE STYLES
   ================================ */
.franchise-hero {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95), rgba(18, 18, 18, 0.95));
    padding: 8rem 0 4rem;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.franchise-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.12), transparent 30%);
    pointer-events: none;
}

.franchise-hero .container,
.franchise-section .container,
.support-section .container,
.ideal-section .container,
.franchise-form-section .container,
.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    color: var(--accent-yellow);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.franchise-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.3rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 620px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-highlights {
    display: grid;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
}

.hero-highlights strong {
    color: #fff;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.hero-panel h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.hero-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-panel-list li::before {
    content: '•';
    color: var(--primary-orange);
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 0.25rem;
}

.franchise-section,
.support-section,
.ideal-section,
.franchise-form-section,
.final-cta-section {
    padding: 4rem 0;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto;
}

.section-intro p {
    color: var(--text-gray);
    margin-top: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: var(--glow-orange);
}

.feature-card h4 {
    margin-bottom: 0.85rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-gray);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.investment-card {
    background: var(--bg-dark);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.investment-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.investment-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Franchise page — why invest + process showcase */
.franchise-showcase {
    position: relative;
    overflow: hidden;
}

.franchise-showcase::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 55%;
    background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 107, 53, 0.14), transparent 72%);
    pointer-events: none;
}

.franchise-showcase .container {
    position: relative;
    z-index: 1;
}

.fi-showcase-head {
    margin-bottom: 2.25rem;
}

.fi-showcase-kicker {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.fi-showcase-title {
    background: linear-gradient(120deg, #fff 0%, #fff 35%, rgba(255, 180, 120, 0.95) 55%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.08;
}

.fi-showcase-intro {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.fi-showcase-intro p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.fi-showcase-intro p:last-child {
    margin-bottom: 0;
}

.fi-showcase-pullquote {
    margin-top: 1.35rem !important;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-orange);
    background: rgba(255, 107, 53, 0.08);
    color: #fff !important;
    font-size: 1.12rem !important;
    font-weight: 600;
    line-height: 1.55 !important;
    text-align: left;
}

.fi-reasons-heading {
    text-align: center;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
}

.fi-reasons-heading::after {
    content: ":";
}

.fi-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
    margin-bottom: 3rem;
}

.fi-reason-card {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 1.65rem 1.5rem 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fi-reason-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), #ff4d4d, #ffb347);
    opacity: 0.85;
}

.fi-reason-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.45);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 107, 53, 0.12);
}

.fi-reason-emoji {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.fi-reason-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.55rem;
    letter-spacing: 0.02em;
}

.fi-reason-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.fi-process-panel {
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(ellipse 90% 80% at 10% 0%, rgba(255, 107, 53, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(230, 57, 70, 0.1), transparent 45%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.fi-process-kicker {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 0.35rem;
}

.fi-process-title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.65rem;
}

.fi-process-lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.fi-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.fi-step {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 1rem 1.25rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.5rem;
}

.fi-step:last-child {
    padding-bottom: 0;
}

.fi-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.55rem;
    top: 3.1rem;
    bottom: 0.35rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.55), rgba(255, 107, 53, 0.08));
    border-radius: 2px;
}

.fi-step-num {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.05rem;
    color: #0d0d0d;
    background: linear-gradient(145deg, var(--primary-orange), #ff8a4a);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 1;
}

.fi-step-finale .fi-step-num {
    border-radius: 14px;
    font-size: 1.35rem;
    line-height: 1;
    background: linear-gradient(145deg, #ffb347, var(--primary-orange));
}

.fi-step-finale::after {
    display: none;
}

.fi-step-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.fi-step-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 575.98px) {
    .fi-process-panel {
        padding: 1.75rem 1.25rem;
    }

    .fi-step {
        grid-template-columns: 2.85rem 1fr;
        gap: 0.75rem 1rem;
    }

    .fi-step-num {
        width: 2.85rem;
        height: 2.85rem;
        font-size: 0.95rem;
    }

    .fi-step:not(:last-child)::after {
        left: 1.35rem;
        top: 2.75rem;
    }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--bg-darker);
    border-radius: 22px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-orange);
}

.support-card i {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.support-card h4 {
    margin-bottom: 0.75rem;
}

.support-card p {
    color: var(--text-gray);
}

.ideal-section {
    background: linear-gradient(135deg, rgba(13, 13, 13, 1), rgba(26, 26, 26, 1));
}

.ideal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.ideal-list li {
    position: relative;
    padding-left: 2.5rem;
    color: var(--text-gray);
}

.ideal-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-orange);
}

.ideal-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ideal-visual i {
    font-size: 5rem;
    color: var(--primary-orange);
}

.franchise-form-section {
    background-color: var(--bg-dark);
}

.form-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-gray);
}

.franchise-form .form-group {
    margin-bottom: 1.25rem;
}

.franchise-form label {
    display: block;
    margin-bottom: 0.65rem;
    font-weight: 600;
    color: var(--text-white);
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
    width: 100%;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    color: var(--text-white);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.franchise-form textarea {
    resize: vertical;
}

.franchise-form-block {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.franchise-form-block:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.franchise-form-block-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
}

.franchise-form-block-emoji {
    font-style: normal;
    line-height: 1;
}

.franchise-form-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d0d0d;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a5c);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    vertical-align: middle;
}

.franchise-form-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    font-style: italic;
}

.franchise-form-lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    margin: -0.35rem 0 1.25rem;
    max-width: 40rem;
}

.franchise-form-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.franchise-form-legend {
    float: none;
    width: 100%;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.85rem;
    padding: 0;
    line-height: 1.4;
}

.franchise-form-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem 1rem;
}

.franchise-form-options-inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.franchise-form .form-check {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.franchise-form .form-check-inline {
    display: inline-flex;
    margin-right: 1.25rem;
}

.franchise-form .form-check-input {
    float: none;
    margin: 0.15rem 0 0;
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
    background-color: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.franchise-form .form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.franchise-form .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.franchise-form .form-check-label {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    line-height: 1.45;
    cursor: pointer;
}

.franchise-form label .text-muted {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.88em;
}

.final-cta-section {
    padding: 4rem 0 6rem;
}

.final-cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(230, 57, 70, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 30px;
    padding: 3rem 2.5rem;
}

.final-cta-card h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta-card p {
    color: var(--text-gray);
    margin-bottom: 1.75rem;
}

@media (max-width: 991px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-panel {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .franchise-hero {
        padding-top: 6rem;
    }

    .franchise-hero h1 {
        font-size: 2.8rem;
    }

    .final-cta-card {
        padding: 2rem;
    }
}

/* ================================
   FIND US PAGE STYLES
   ================================ */
.locations-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.location-card {
    background: var(--bg-light-dark);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-dark);
}

.location-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.location-header h3 i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status.open {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.location-details p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details i {
    color: var(--primary-orange);
    width: 20px;
}

.location-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.location-actions .btn {
    flex: 1;
    text-align: center;
}

.map-section {
    background-color: var(--bg-darker);
    padding: 4rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    background: var(--bg-light-dark);
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.find-us-map-container {
    background: var(--bg-light-dark);
    border-radius: 15px;
    overflow: hidden;
}

.find-us-map-embed {
    display: block;
    width: 100%;
    max-width: 100%;
    height: clamp(320px, 50vh, 520px);
    min-height: 320px;
    border: 0;
}

/* Find Us — hours & flagship location */
.find-us-primary-info {
    background-color: var(--bg-darker);
    padding: 3rem 0 2.5rem;
}

.find-us-info-card {
    position: relative;
    height: 100%;
    padding: 2rem 2rem 2.25rem;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.find-us-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), #ff4d2d, #ffb347);
    opacity: 0.95;
}

.find-us-info-card:hover {
    border-color: rgba(255, 122, 24, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 122, 24, 0.12);
}

.find-us-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.28);
    color: var(--primary-orange);
    font-size: 1.25rem;
}

.find-us-card-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.find-us-card-title {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.find-us-card-lead {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
    max-width: 28rem;
}

.find-us-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.find-us-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.find-us-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.find-us-hours-day {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.find-us-hours-time {
    color: var(--primary-orange);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.find-us-location-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.find-us-location-block--top {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.find-us-location-block--bottom {
    padding-top: 1.5rem;
}

.find-us-address-lines {
    margin: 0.45rem 0 0.75rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    max-width: 36rem;
}

.find-us-daily-hours {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.find-us-phone-strip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.find-us-phone-strip-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.find-us-phone-strip-body {
    min-width: 0;
}

.find-us-phone-strip-body .find-us-card-eyebrow {
    margin-bottom: 0.2rem;
}

.find-us-phone-number {
    display: inline-block;
    margin-top: 0.15rem;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.find-us-phone-number:hover {
    color: var(--primary-orange);
}

@media (max-width: 575.98px) {
    .find-us-hours-list li {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.75rem 0;
    }

    .find-us-hours-time {
        white-space: normal;
    }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */
.contact-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 2rem;
    background: var(--bg-light-dark);
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-control,
.form-select {
    background: var(--bg-dark);
    border: 2px solid var(--bg-dark);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: none;
    background: var(--bg-darker);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-dark);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--fire-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-dark);
}

.social-connect h4 {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-darker);
    padding: 4rem 0;
}

.faq-item {
    background: var(--bg-light-dark);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

.faq-item h3 i {
    margin-right: 10px;
}

.faq-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ================================
   HOME PAGE REDESIGN
   ================================ */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}

/* Full-bleed alternating hero videos */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Hero scrim removed: video shows as uploaded (no darken overlay). */

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Make hero copy sit flush to the left edge */
.home-hero .container.hero-inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.home-hero .container.hero-inner .row {
    margin-left: 0;
    margin-right: 0;
}

.home-hero .container.hero-inner .home-hero-copy {
    padding-left: 0;
}

.hero-eyebrow {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-grid-glow {
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    z-index: 2;
}

.hero-embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.hero-ember {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd166 0%, #ff6b35 60%, rgba(255, 107, 53, 0) 100%);
    opacity: 0;
    animation: emberRise linear forwards;
}

@keyframes emberRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-280px) translateX(35px) scale(1.25);
        opacity: 0;
    }
}

.fire-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.fire-orb-left {
    width: 320px;
    height: 320px;
    background: rgba(255, 107, 53, 0.22);
    top: -90px;
    left: -90px;
    z-index: 2;
}

.fire-orb-right {
    width: 280px;
    height: 280px;
    background: rgba(230, 57, 70, 0.18);
    bottom: -90px;
    right: -50px;
    z-index: 2;
}

.home-hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.02;
    margin-bottom: 1.3rem;
    background: linear-gradient(120deg, #ffd166, #ff6b35, #e63946);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-title .title-line {
    display: block;
}

.home-hero-title .title-line.accent {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 10px 26px rgba(255, 107, 53, 0.35);
    position: relative;
}

.home-hero-title .title-line.accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ffd166, #ff6b35, transparent);
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(12, 8, 8, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-kicker i {
    color: var(--accent-yellow);
}

.home-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin-bottom: 1.7rem;
    font-size: 1.08rem;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

/* Home hero: tighter, left-aligned copy so the video stays the hero */
.home-hero .home-hero-copy {
    text-align: left;
}

.home-hero .hero-eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
}

.home-hero .hero-kicker {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
}

.home-hero .hero-kicker span {
    font-size: 0.62rem;
    padding: 0.28rem 0.65rem;
}

.home-hero .home-hero-title {
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
}

.home-hero .home-hero-title .title-line.accent::after {
    width: min(9rem, 42vw);
    height: 3px;
    bottom: -5px;
}

.home-hero .home-hero-subtitle {
    max-width: min(26rem, 100%);
    margin-left: 0;
    margin-right: auto;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.home-hero .hero-actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: min(26rem, 100%);
    gap: 0.65rem;
}

.home-hero .hero-actions .btn {
    width: 100%;
}

.home-hero .hero-actions .hero-order-btn {
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.home-hero .hero-actions .hero-order-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 14px 34px rgba(255, 79, 43, 0.48), 0 0 0 1px rgba(255, 203, 92, 0.35);
    filter: saturate(1.14) brightness(1.05);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: opacity 0.65s ease-in-out;
    box-shadow: none;
    filter: none;
    transform: none;
}

.hero-video-visible {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.hero-video-hidden {
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    pointer-events: none;
}

/* Phones / touch devices: stable compositing layer + shorter crossfade = less GPU work while decoding */
@media (max-width: 991px), (hover: none) and (pointer: coarse) {
    .hero-video-bg {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .hero-video {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: opacity 0.28s ease-in-out;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        transition: opacity 0.35s ease;
    }
}

.hero-micro-proof {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-micro-proof div {
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-micro-proof strong {
    color: var(--accent-yellow);
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-scroll-cue i {
    animation: bounceY 1.4s infinite;
}

@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Legacy helpers (unused on current pages; kept for reuse) */
.section-divider {
    height: 90px;
    background: linear-gradient(90deg, #ffe066, #ff7a18, #ff2d2d);
    opacity: 0.15;
}

.section-divider-down {
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}

.section-divider-up {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

/* Home: hero → storefront — marquee bar only (sole divider) */
.home-section-bridge {
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.home-section-bridge-marquee {
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(18, 10, 8, 0.65) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 107, 53, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-section-bridge-marquee-inner {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2.25rem;
    padding-left: 2rem;
    white-space: nowrap;
    animation: homeBridgeMarquee 38s linear infinite;
}

.home-section-bridge-marquee-inner > span:not(.home-section-bridge-sep) {
    font-size: clamp(0.62rem, 1.1vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 209, 102, 0.98);
}

.home-section-bridge-sep {
    font-size: 0.45rem;
    color: rgba(255, 107, 53, 0.85);
    line-height: 1;
}

@keyframes homeBridgeMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-section-bridge-marquee-inner {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 0.5rem;
        max-width: 42rem;
        margin: 0 auto;
        padding-left: 0;
        text-align: center;
    }

    /* Hide duplicated loop copy (second half of inner) when marquee is static */
    .home-section-bridge-marquee-inner > :nth-child(n + 9) {
        display: none;
    }
}

.home-brand-strip {
    background: #0d0d0d;
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-storefront {
    background: linear-gradient(170deg, #090909 0%, #121212 55%, #1a0d09 100%);
    position: relative;
    overflow: hidden;
}

.storefront-stage {
    position: relative;
    height: 590px;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.storefront-neon {
    position: absolute;
    width: 78%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, rgba(255, 107, 53, 0.2) 42%, rgba(255, 107, 53, 0) 78%);
    filter: blur(20px);
    animation: storefrontNeonPulse 2.8s ease-in-out infinite;
}

.storefront-visual {
    position: relative;
    z-index: 2;
    max-height: 820px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
    transform: translateY(10px) scale(0.92);
    opacity: 0;
}

.storefront-stage.is-visible .storefront-visual {
    animation: storefrontRise 0.95s cubic-bezier(0.2, 0.65, 0.2, 1) forwards, storefrontFloat 4.3s ease-in-out 1s infinite;
}

@keyframes storefrontRise {
    from {
        transform: translateY(28px) scale(0.92);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes storefrontFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1); }
}

@keyframes storefrontNeonPulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.brand-marquee {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 20s linear infinite;
    will-change: transform;
}

.marquee-inner {
    display: inline-flex;
    min-width: max-content;
    gap: 2.5rem;
}

.marquee-group {
    flex: 0 0 auto;
    padding-right: 2.5rem;
}

.marquee-inner span {
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    font-weight: 700;
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home-signature {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 122, 24, 0.28), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 45, 45, 0.32), transparent 35%),
        linear-gradient(160deg, #0b0b0b 0%, #141414 45%, #2a1008 100%);
}

.home-signature > .fire-orb,
.home-signature > .hero-grid-glow {
    z-index: 0;
}

.home-signature > .hero-embers {
    z-index: 1;
}

.home-signature-content {
    position: relative;
    z-index: 2;
}

.home-section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.1;
    max-width: 760px;
}

.home-section-copy {
    color: var(--text-light);
    font-size: 1.03rem;
    margin-top: 1.2rem;
}

.signature-stack {
    position: relative;
    min-height: 430px;
}

.signature-crossfade-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-crossfade {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    max-height: 520px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 122, 24, 0.12);
}

.signature-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.signature-slide-a {
    animation: signatureCrossfadeA 10s ease-in-out infinite;
}

.signature-slide-b {
    animation: signatureCrossfadeB 10s ease-in-out infinite;
}

@keyframes signatureCrossfadeA {
    0%, 40% { opacity: 1; }
    50%, 90% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes signatureCrossfadeB {
    0%, 40% { opacity: 0; }
    50%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

.signature-points {
    margin-top: 1.3rem;
    display: grid;
    gap: 0.8rem;
    color: var(--text-white);
}

.signature-points i {
    color: var(--primary-orange);
    margin-right: 0.55rem;
}

.home-stats {
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.16), rgba(230, 57, 70, 0.2));
}

.stat-box {
    padding: 1.2rem;
}

.stat-box h3 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.84);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.home-reviews {
    background: linear-gradient(180deg, #121212, #0b0b0b);
}

.reviews-live-wrap {
    overflow: hidden;
    padding: 0.4rem 0 0.8rem;
    min-height: 340px;
}

.reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.review-card {
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.6rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 107, 53, 0.4);
}

.review-real {
    width: min(360px, 85vw);
    flex: 0 0 auto;
    background: linear-gradient(160deg, #1a1a1a, #131313);
}

.review-tab {
    min-height: 320px;
    width: calc((100vw - 2rem - min(100vw, 1320px) + min(100vw, 1320px) - 2rem) / 3);
    max-width: 390px;
    min-width: 320px;
    flex: 0 0 calc((min(100vw, 1320px) - 2rem) / 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, #ff6b35, #e63946);
}

.review-top h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
}

.review-top small {
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: normal;
}

.review-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stars {
    margin-bottom: 0.85rem;
    color: #ffd166;
}

.review-card p {
    color: var(--text-light);
    margin-bottom: 0.95rem;
}

.review-card h4 {
    color: var(--primary-orange);
    font-size: 0.95rem;
    margin: 0;
}

.review-source {
    margin-top: auto;
    text-align: right;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.source-google {
    color: #4285F4;
}

.source-yelp {
    color: #ff1a1a;
}

@media (max-width: 991px) {
    .review-tab {
        flex: 0 0 calc((min(100vw, 960px) - 1.5rem) / 2);
        min-width: 290px;
    }
}

@media (max-width: 767px) {
    .reviews-live-wrap {
        min-height: 300px;
    }

    .review-tab {
        flex: 0 0 calc(min(100vw, 540px) - 1rem);
        min-width: 260px;
        min-height: 285px;
    }
}

/* ================================
   CROSS-PAGE THEME REFINEMENTS
   ================================ */
body.page-themed .page-header {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 24, 0.26), transparent 45%),
        radial-gradient(circle at 80% 15%, rgba(255, 45, 45, 0.18), transparent 40%),
        linear-gradient(160deg, #0a0a0a, #151515 55%, #241109);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.page-themed .page-header h1 {
    letter-spacing: 0.04em;
}

body.page-themed .page-header p {
    color: rgba(255, 255, 255, 0.78);
}

body.page-themed .about-section,
body.page-themed .contact-section,
body.page-themed .locations-section,
body.page-themed .menu-section,
body.page-themed .franchise-section,
body.page-themed .support-section,
body.page-themed .franchise-form-section {
    background:
        linear-gradient(180deg, rgba(255, 122, 24, 0.03), transparent 25%),
        var(--bg-dark);
}

body.page-themed .values-section,
body.page-themed .faq-section,
body.page-themed .map-section,
body.page-themed .ideal-section,
body.page-themed .find-us-primary-info {
    background:
        linear-gradient(180deg, rgba(255, 45, 45, 0.06), transparent 30%),
        var(--bg-darker);
}

body.page-themed .fi-reason-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

body.page-themed .fi-reason-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.45);
}

body.page-themed .menu-item-media.has-photo {
    border-color: rgba(255, 155, 80, 0.45);
    background: rgba(0, 0, 0, 0.32);
}

body.page-themed .value-card,
body.page-themed .location-card,
body.page-themed .faq-item,
body.page-themed .support-card,
body.page-themed .feature-card,
body.page-themed .menu-item,
body.page-themed .contact-form-wrapper,
body.page-themed .contact-info-wrapper,
body.page-themed .investment-card,
body.page-themed .form-panel,
body.page-themed .hero-panel,
body.page-themed .ideal-visual,
body.page-themed .find-us-info-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

body.page-themed .value-card:hover,
body.page-themed .location-card:hover,
body.page-themed .find-us-info-card:hover,
body.page-themed .support-card:hover,
body.page-themed .feature-card:hover,
body.page-themed .faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.45);
}

/* Menu cards: avoid translate stacking / overlap next to images on small screens */
body.page-themed .menu-item:hover {
    transform: none;
    border-color: rgba(255, 122, 24, 0.5);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 122, 24, 0.15);
}

body.page-themed .menu-categories .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-themed .menu-categories .nav-link.active,
body.page-themed .menu-categories .nav-link:hover {
    border-color: transparent;
}

body.page-themed .section-header h2,
body.page-themed .section-intro h2 {
    color: #fff;
}

body.page-themed .section-header p,
body.page-themed .section-intro p {
    color: rgba(255, 255, 255, 0.74);
}

/* ================================
   FINAL MOBILE POLISH (EXCLUDES OUR STORY)
   ================================ */
@media (max-width: 1199px) {
    body:not(.our-story-page) .navbar-logo {
        max-height: 52px;
    }

    body:not(.our-story-page) .page-header h1,
    body:not(.our-story-page) .home-section-title {
        word-break: normal;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 991px) {
    body:not(.our-story-page) section {
        padding: 4rem 0;
    }

    body:not(.our-story-page) .page-header {
        padding: 7.2rem 0 3rem;
    }

    body:not(.our-story-page) .navbar {
        padding: 0.65rem 0;
    }

    body:not(.our-story-page) .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 0.8rem 1rem;
        margin-top: 0.6rem;
    }

    body:not(.our-story-page) .navbar-nav .nav-link {
        padding: 0.65rem 0.4rem !important;
    }

    body:not(.our-story-page) .home-hero {
        min-height: 100svh;
        min-height: 100dvh;
    }

    body:not(.our-story-page) .home-hero .hero-inner {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    body:not(.our-story-page) .hero-actions .btn {
        width: 100%;
        margin-right: 0;
    }

    body:not(.our-story-page) .storefront-stage {
        height: 350px;
        min-height: 350px;
    }

    body:not(.our-story-page) .storefront-visual {
        max-height: 560px;
    }

    body:not(.our-story-page) .home-storefront .home-section-copy,
    body:not(.our-story-page) .home-signature .home-section-copy {
        font-size: 0.98rem;
    }

    body:not(.our-story-page) .menu-categories {
        justify-content: flex-start !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.4rem;
    }

    body:not(.our-story-page) .menu-categories .nav-item {
        flex: 0 0 auto;
    }

    body:not(.our-story-page) .contact-form-wrapper,
    body:not(.our-story-page) .contact-info-wrapper,
    body:not(.our-story-page) .form-panel,
    body:not(.our-story-page) .hero-panel,
    body:not(.our-story-page) .final-cta-card {
        padding: 1.6rem;
    }

    body:not(.our-story-page) .investment-grid,
    body:not(.our-story-page) .feature-grid,
    body:not(.our-story-page) .support-grid,
    body:not(.our-story-page) .fi-reasons-grid {
        gap: 0.85rem;
    }

    body:not(.our-story-page) .reviews-live-wrap {
        min-height: 310px;
    }

    body:not(.our-story-page) .review-tab {
        min-height: 290px;
    }

    body:not(.our-story-page) .site-footer {
        padding-top: 3rem;
    }
}

@media (max-width: 767px) {
    body:not(.our-story-page) section {
        padding: 3.25rem 0;
    }

    body:not(.our-story-page) .page-header {
        padding: 6.4rem 0 2.5rem;
    }

    body:not(.our-story-page) .page-header h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
        line-height: 1.08;
    }

    body:not(.our-story-page) .page-header p {
        font-size: 0.98rem;
    }

    body:not(.our-story-page) .section-title,
    body:not(.our-story-page) .home-section-title {
        font-size: clamp(1.55rem, 8vw, 2.1rem);
        line-height: 1.15;
    }

    body:not(.our-story-page) .section-title::after {
        width: 46px;
        height: 3px;
    }

    body:not(.our-story-page) .hero-kicker {
        gap: 0.45rem;
    }

    body:not(.our-story-page) .hero-kicker span {
        font-size: 0.63rem;
        padding: 0.35rem 0.65rem;
    }

    body:not(.our-story-page) .home-hero-title .title-line.accent::after {
        width: 140px;
        bottom: -6px;
    }

    body:not(.our-story-page) .home-section-bridge-marquee {
        padding: 0.65rem 0;
    }

    body:not(.our-story-page) .home-section-bridge-marquee-inner {
        gap: 1.6rem;
    }

    body:not(.our-story-page) .brand-marquee {
        padding-inline: 0.5rem;
    }

    body:not(.our-story-page) .marquee-inner {
        gap: 1.2rem;
    }

    body:not(.our-story-page) .marquee-inner span {
        letter-spacing: 0.14em;
        font-size: 0.69rem;
    }

    body:not(.our-story-page) .signature-crossfade-wrap {
        padding-bottom: 0;
    }

    body:not(.our-story-page) .storefront-stage {
        height: 290px;
        min-height: 290px;
    }

    body:not(.our-story-page) .storefront-visual {
        max-height: 420px;
    }

    body:not(.our-story-page) .menu-item,
    body:not(.our-story-page) .value-card,
    body:not(.our-story-page) .location-card,
    body:not(.our-story-page) .faq-item,
    body:not(.our-story-page) .support-card,
    body:not(.our-story-page) .feature-card,
    body:not(.our-story-page) .review-card {
        padding: 1.2rem;
    }

    body:not(.our-story-page) .menu-item-header h3 {
        font-size: 1.02rem;
    }

    body:not(.our-story-page) .menu-item-header .price {
        font-size: 1.03rem;
    }

    body:not(.our-story-page) .contact-info-item {
        gap: 0.75rem;
        margin-bottom: 1.1rem;
        padding-bottom: 1.1rem;
    }

    body:not(.our-story-page) .contact-icon {
        width: 44px;
        height: 44px;
    }

    body:not(.our-story-page) .review-tab {
        min-height: 270px;
    }

    body:not(.our-story-page) .google-reviews-summary {
        padding: 1.15rem;
    }

    body:not(.our-story-page) .site-footer .col-lg-4,
    body:not(.our-story-page) .site-footer .col-lg-2,
    body:not(.our-story-page) .site-footer .col-lg-3 {
        margin-bottom: 0.35rem;
    }

    body:not(.our-story-page) .footer-bottom {
        margin-top: 1.4rem;
        padding-top: 1.2rem;
    }
}

@media (max-width: 480px) {
    body:not(.our-story-page) .navbar-logo {
        max-height: 46px;
    }

    body:not(.our-story-page) .home-hero .hero-inner {
        padding-top: 98px;
        padding-bottom: 56px;
    }

    body:not(.our-story-page) .home-hero-subtitle {
        font-size: 0.95rem;
    }

    body:not(.our-story-page) .btn,
    body:not(.our-story-page) .btn-lg,
    body:not(.our-story-page) .btn-xl {
        width: 100%;
        justify-content: center;
    }

    body:not(.our-story-page) .review-tab {
        min-width: 235px;
        min-height: 255px;
    }

    body:not(.our-story-page) .stat-box h3 {
        font-size: 2.2rem;
    }
}

.google-reviews-summary {
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.google-wordmark {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.google-wordmark .g1 { color: #4285F4; }
.google-wordmark .g2 { color: #EA4335; }
.google-wordmark .g3 { color: #FBBC05; }
.google-wordmark .g4 { color: #34A853; }

.google-reviews-summary h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.summary-stars {
    color: #ffd166;
    margin-bottom: 0.45rem;
}

.google-reviews-summary p {
    margin-bottom: 0.9rem;
    color: var(--text-light);
}

.home-final-cta {
    background: #0d0d0d;
    padding-top: 1.5rem;
}

.home-final-cta .final-cta-card {
    background: linear-gradient(130deg, rgba(255, 107, 53, 0.22), rgba(230, 57, 70, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* reveal + scroll movement */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    will-change: transform, opacity;
}

[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="up"] { transform: translateY(45px); }

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 991px) {
    .hero-actions .btn {
        width: 100%;
    }

    .signature-stack {
        min-height: auto;
        padding-bottom: 0;
    }

    .signature-crossfade {
        max-height: 440px;
    }

    .hero-scroll-cue {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-hero .hero-inner {
        padding-top: 90px;
    }

    .home-section-bridge-marquee-inner > span:not(.home-section-bridge-sep) {
        letter-spacing: 0.18em;
    }

    .signature-crossfade {
        max-width: 100%;
        max-height: 400px;
    }
}

/* Legal pages (privacy policy, etc.) */
.legal-document-section {
    padding-bottom: 5rem;
}

body.page-themed .legal-document-section {
    padding-top: 2.5rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 40%, var(--bg-dark) 100%);
}

.legal-document {
    max-width: 52rem;
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(232, 232, 232, 0.92);
}

.legal-document__effective {
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 122, 24, 0.28);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-light);
}

.legal-document__block {
    margin-bottom: 2.5rem;
}

.legal-document__block h2 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-white);
    scroll-margin-top: 6rem;
}

.legal-document__h3 {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--accent-yellow);
}

.legal-document p {
    margin-bottom: 1rem;
}

.legal-document a {
    color: var(--accent-yellow);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.legal-document a:hover {
    color: var(--primary-orange);
}

.legal-document__dl {
    margin: 0;
}

.legal-document__dl dt {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--primary-orange);
    margin-top: 1.15rem;
}

.legal-document__dl dt:first-child {
    margin-top: 0;
}

.legal-document__dl dd {
    margin: 0.35rem 0 0;
    padding-left: 0;
    color: rgba(232, 232, 232, 0.9);
}

.legal-document__list,
.legal-document__sublist {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
}

.legal-document__list > li,
.legal-document__sublist > li {
    position: relative;
    padding-left: 2.85rem;
    margin-bottom: 0.65rem;
}

.legal-document__sublist {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.legal-document__sublist > li {
    padding-left: 2.85rem;
}

.legal-document__list--contact > li {
    padding-left: 0;
    margin-bottom: 0.4rem;
}

.legal-document__list--contact .legal-doc-li-num {
    display: none;
}

.legal-doc-li-num {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 0.03em;
    min-width: 2.4rem;
}
