/* ============================================
   SMASHYO BURGERS - Style Sheet
   Dark/moody food truck vibe, gold accents
   ============================================ */

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --dark-2: #1c1c1c;
    --dark-3: #252525;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --gold-dark: #b8922e;
    --white: #f5f5f5;
    --gray: #999;
    --gray-light: #ccc;
    --red: #c0392b;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- SECTION TITLES ---- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 36px;
    border-radius: 4px;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-logo img {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.nav-logo:hover {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: var(--gray-light);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-order-btn {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.nav-order-btn:hover {
    background: var(--gold-light) !important;
}

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

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/DSC07618.jpeg') center/cover no-repeat;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.7) 40%,
        rgba(10,10,10,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.25);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.badge-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FEATURED PHOTO STRIP
   ============================================ */
.featured {
    background: var(--dark);
    padding: 4px 0;
    overflow: hidden;
}

.featured-scroll {
    display: flex;
    gap: 4px;
}

.featured-item {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    overflow: hidden;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: 80px 0;
    background: var(--black);
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.menu-card {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 168, 67, 0.2);
}

.featured-card {
    border-color: var(--gold);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
}

.menu-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.menu-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.menu-desc em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.sauce-list {
    color: var(--gold-light) !important;
    font-weight: 500;
}

.menu-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.menu-prices {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-prices span {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.menu-prices strong {
    color: var(--gold);
    font-weight: 600;
}

.menu-prices.stacked {
    flex-direction: column;
    gap: 6px;
}

.menu-prices.stacked span {
    display: flex;
    justify-content: space-between;
}

.menu-footer-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

.menu-cta {
    text-align: center;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 80px 0;
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.value {
    text-align: center;
    padding: 16px;
}

.value-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.value h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.value p {
    font-size: 0.85rem !important;
    color: var(--gray) !important;
    margin-bottom: 0 !important;
}

/* ============================================
   HOURS
   ============================================ */
.hours {
    padding: 50px 0;
    background: var(--black);
}

.hours-box {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hours-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hours-grid {
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-days {
    color: var(--white);
    font-weight: 500;
}

.hours-time {
    color: var(--gold);
    font-weight: 600;
}

.hours-address {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 80px 0;
    background: var(--dark);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 40px;
}

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

.review-count {
    display: block;
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
}

.review-card .review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
    display: block;
}

.review-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 14px;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HOT SAUCE - SHOWCASE
   ============================================ */
.hot-sauce {
    padding: 70px 0;
    background: linear-gradient(160deg, #1a0a0a 0%, #2d0808 40%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hot-sauce::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 60%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hot-sauce-layout {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hot-sauce-bottle {
    flex-shrink: 0;
    position: relative;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.25) 0%, rgba(212, 168, 67, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: bottlePulse 4s ease-in-out infinite;
}

@keyframes bottlePulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hot-sauce-bottle img {
    width: 240px;
    height: 360px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 8px 32px rgba(220, 38, 38, 0.3));
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hot-sauce-bottle:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.hot-sauce-info {
    flex: 1;
    min-width: 280px;
}

.hot-sauce-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hot-sauce .coming-soon-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--red), #dc2626);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 12px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.hot-sauce-tagline {
    color: var(--gray-light);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
}

.sauce-lineup {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.sauce-chip {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid rgba(212, 168, 67, 0.35);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.06);
    transition: all 0.2s ease;
}

.sauce-chip:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.hot-sauce-cta-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hot-sauce .notify-form {
    max-width: 400px;
    margin: 0;
}

@media (max-width: 768px) {
    .hot-sauce-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hot-sauce-title {
        font-size: 1.8rem;
    }
    .sauce-lineup {
        justify-content: center;
    }
    .hot-sauce .notify-form {
        margin: 0 auto;
    }
    .hot-sauce-bottle img {
        width: 180px;
        height: 280px;
    }
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    padding: 80px 0;
    background: var(--black);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-text p {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.events-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.events-list li {
    color: var(--gray-light);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.events-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.events-note {
    font-size: 0.9rem !important;
    color: var(--gray) !important;
    font-style: italic;
    margin-bottom: 1.5rem !important;
}

.events-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 80px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-item p, .contact-item a {
    color: var(--gray-light);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-links a {
    color: var(--gray-light);
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    border-radius: 50%;
    margin-bottom: 4px;
}

.footer-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.8rem !important;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        transition: transform 0.3s;
        border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-order-btn {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 20px 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-badges {
        gap: 20px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .featured-item {
        width: 200px;
        height: 200px;
    }

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

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

    .about-image {
        order: -1;
    }

    .section-title.left {
        text-align: center;
    }

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

    .notify-form {
        flex-direction: column;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .events-image {
        order: -1;
    }

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

    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

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

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

/* ---- MOBILE NAV ANIMATION ---- */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- MENU ITEM IMAGES ---- */
.menu-item-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .menu-item-img {
        height: 150px;
    }
}

/* ============================================
   BOOKING FORM (events section)
   ============================================ */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 540px;
    margin-top: 8px;
}

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

.booking-form .form-row:has(input[name="budget"]) {
    grid-template-columns: 1fr;
}

.booking-form input,
.booking-form textarea {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--gray);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--dark-3);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.booking-form button {
    margin-top: 6px;
    transition: background 0.3s, border-color 0.3s, transform 0.15s;
}

.booking-form button:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

.form-note {
    font-size: 0.85rem !important;
    color: var(--gray) !important;
    margin-top: 8px !important;
}

.form-note a {
    color: var(--gold);
    text-decoration: none;
}

.form-note a:hover {
    color: var(--gold-light);
}

@media (max-width: 640px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE STICKY ORDER/CALL BAR
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(10, 10, 10, 0.97);
    border-top: 2px solid var(--gold);
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-cta-btn {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.1s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-cta-call {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.mobile-cta-call:hover {
    background: rgba(212, 168, 67, 0.1);
}

.mobile-cta-order {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.mobile-cta-order:hover {
    background: var(--gold-light);
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
    body {
        padding-bottom: 76px;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 10px;
    padding: 0;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
    letter-spacing: 0.3px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: translateY(-50%);
}

.faq-item summary:hover {
    color: var(--gold);
}

.faq-item p {
    padding: 0 22px 20px;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .faq-item summary {
        font-size: 0.95rem;
        padding: 14px 18px;
        padding-right: 44px;
    }
    .faq-item p {
        padding: 0 18px 16px;
        font-size: 0.92rem;
    }
}
