/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warm, earthy color palette - completely different from SnappyWeb */
    --primary-brown: #8B6F47;
    --secondary-gold: #D4A574;
    --accent-rust: #C17B5C;
    --dark-charcoal: #2C2416;
    --warm-cream: #F5F1E8;
    --soft-beige: #E8DCC4;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 8rem 2rem;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--warm-cream);
    color: var(--dark-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* ===== DECORATIVE ELEMENTS ===== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-brown);
    font-weight: 500;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-rust);
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

.nav-right a:hover {
    color: var(--accent-rust);
}

.nav-cta {
    background: var(--primary-brown);
    color: var(--warm-cream) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-rust);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-charcoal);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 12rem 4rem 4rem;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-beige) 100%);
    overflow: hidden;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-title .line {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title .line[data-delay="0"] {
    animation-delay: 0.2s;
}

.hero-title .line[data-delay="1"] {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--primary-brown);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-brown);
    color: var(--warm-cream);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.2);
}

.btn-primary:hover {
    background: var(--accent-rust);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--primary-brown);
}

.btn-secondary:hover {
    background: var(--primary-brown);
    color: var(--warm-cream);
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    height: 600px;
    animation: slideInRight 1s ease-out;
    max-width: 100%;
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image-frame {
    transform: rotate(0deg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: block;
}

.hero-accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-gold);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ===== SECTIONS ===== */
.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-rust);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    line-height: 1.2;
}

/* ===== FEATURED DISHES ===== */
.featured {
    padding: var(--section-padding);
    background: var(--warm-cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.featured-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.featured-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.featured-card[data-index="0"].in-view {
    transition-delay: 0s;
}

.featured-card[data-index="1"].in-view {
    transition-delay: 0.1s;
}

.featured-card[data-index="2"].in-view {
    transition-delay: 0.2s;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: var(--primary-brown);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-rust);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--soft-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-text.in-view {
    opacity: 1;
    transform: translateX(0);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--primary-brown);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-brown);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-rust);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-brown);
    font-weight: 600;
}

.about-image {
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about-image.in-view {
    opacity: 1;
    transform: translateX(0);
}

.about-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: block;
}

.about-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--secondary-gold);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: -1;
    opacity: 0.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--warm-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--secondary-gold);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--primary-brown);
}

.stars {
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

/* ===== RESERVATIONS ===== */
.reservations {
    padding: var(--section-padding);
    background: var(--soft-beige);
}

.reservations-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.reservations-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reservations-info.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reservations-info p {
    color: var(--primary-brown);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--dark-charcoal);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--primary-brown);
    margin: 0;
    line-height: 1.6;
}

.reservations-form-container {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reservations-form-container.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reservations-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--soft-beige);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-charcoal);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-rust);
    box-shadow: 0 0 0 3px rgba(193, 123, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.full-width {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-charcoal);
    color: var(--soft-beige);
    padding: 4rem 4rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: var(--soft-beige);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: var(--secondary-gold);
}

.footer-logo .logo-sub {
    color: var(--soft-beige);
}

.footer-tagline {
    max-width: 300px;
    margin-bottom: 1.5rem;
    color: var(--soft-beige);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin: 0;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--soft-beige);
    opacity: 0.7;
}

.footer-credit strong {
    color: var(--secondary-gold);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 10rem 2rem 4rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-image-container {
        height: 450px;
        margin: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reservations-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .main-nav {
        padding: 1rem 1.5rem;
    }
    
    .logo-main {
        font-size: 1.4rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav-right {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--warm-cream);
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        transition: right 0.3s ease;
        width: 250px;
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-right.active {
        right: 1.5rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1.5rem 1.5rem;
        gap: 1rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .hero-label {
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image-container {
        height: 300px;
        margin: 0;
        width: 100%;
        flex-shrink: 0;
    }
    
    .hero-image-frame {
        transform: rotate(0deg);
        width: 100%;
        height: 100%;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-accent-circle {
        width: 150px;
        height: 150px;
        top: auto;
        bottom: -30px;
        right: -30px;
    }
    
    .featured {
        padding-top: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-content {
        text-align: center;
    }
    
    .card-image {
        height: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .about-content {
        padding: 0;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image {
        height: 350px;
        margin: 2rem -1.5rem 0;
        width: calc(100% + 3rem);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservations-info {
        text-align: center;
    }
    
    .info-items {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .reservations-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5.5rem 1.5rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-label {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-image-container {
        height: 260px;
        margin-top: 0;
    }
    
    .card-image {
        height: 220px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 0.75rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ===== ORDER ONLINE NAV LINK ===== */
.nav-order-link {
    color: var(--accent-rust) !important;
    font-weight: 600 !important;
}
.nav-order-link::after {
    background: var(--accent-rust) !important;
}

/* ===== MENU CTA BANNER ===== */
.menu-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 4rem auto 0;
    max-width: 1100px;
    padding: 3rem 3.5rem;
    background: var(--dark-charcoal);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.menu-cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-rust), var(--secondary-gold), var(--accent-rust));
}

.menu-cta-banner::after {
    content: '🔥';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 10rem;
    opacity: 0.04;
    pointer-events: none;
}

.menu-cta-left {
    flex: 1;
}

.menu-cta-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.menu-cta-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--warm-cream);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.menu-cta-desc {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.6);
    line-height: 1.7;
    max-width: 380px;
}

.menu-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    flex-shrink: 0;
}

.menu-cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.menu-pill {
    background: rgba(245, 241, 232, 0.08);
    color: rgba(245, 241, 232, 0.75);
    border: 1px solid rgba(245, 241, 232, 0.12);
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.menu-pill:hover {
    background: rgba(193, 123, 92, 0.25);
    color: var(--warm-cream);
    border-color: var(--accent-rust);
    transform: translateY(-2px);
}

.menu-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.menu-cta-btns .btn-primary {
    background: var(--primary-brown);
    color: var(--warm-cream);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-cta-btns .btn-primary:hover {
    background: var(--accent-rust);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 123, 92, 0.4);
}

.btn-order-secondary {
    color: var(--secondary-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-order-secondary:hover {
    color: var(--warm-cream);
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .menu-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
    }
    .menu-cta-right {
        align-items: flex-start;
        width: 100%;
    }
    .menu-cta-pills {
        justify-content: flex-start;
    }
    .menu-cta-btns {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .menu-cta-title {
        font-size: 1.5rem;
    }
}

/* ===== SNAPPYWEB DEMO BADGE ===== */
.snappyweb-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 10px;
    background: linear-gradient(135deg, #1E88E5 0%, #26C6DA 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(30, 136, 229, 0.4), 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
    overflow: hidden;
    max-width: 48px; /* collapsed: just the icon */
    cursor: pointer;
}

.snappyweb-badge:hover {
    max-width: 200px;
    padding: 10px 18px 10px 10px;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(30, 136, 229, 0.5), 0 4px 10px rgba(0,0,0,0.2);
}

.snappyweb-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.snappyweb-badge__icon svg {
    width: 15px;
    height: 15px;
}

.snappyweb-badge__text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease 0.05s, transform 0.2s ease 0.05s;
}

.snappyweb-badge:hover .snappyweb-badge__text {
    opacity: 1;
    transform: translateX(0);
}

.snappyweb-badge__label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.snappyweb-badge__name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Mobile: always show expanded state */
@media (max-width: 768px) {
    .snappyweb-badge {
        bottom: 16px;
        right: 16px;
        max-width: 200px;
        padding: 10px 18px 10px 10px;
    }

    .snappyweb-badge__text {
        opacity: 1;
        transform: translateX(0);
    }
}
