/* ===================================================
   SPICE & SIZZLE DINDIGUL — RESTAURANT WEBSITE
   Theme: #8A3E2C  #BD6C34  #FFD980  #8E1A22
   Full-Page Scroll Layout — Premium Cinematic Edition
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --terracotta: #8A3E2C;
    --copper: #BD6C34;
    --gold: #FFD980;
    --crimson: #8E1A22;
    --dark: #1a0e09;
    --dark-card: #2a1610;
    --dark-surface: #1e120d;
    --cream: #FFF8EE;
    --text-light: #f5ece3;
    --text-muted: #c4a98d;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .45);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================================
   VIDEO INTRO — CINEMATIC EXPERIENCE
   ============================================================ */
#video-intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Iris-wipe exit via clip-path */
    clip-path: circle(150% at 50% 50%);
    transition: clip-path 1.2s cubic-bezier(.77, 0, .18, 1),
        opacity .6s ease .8s;
}

#video-intro.hidden {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
}

/* Cinematic letterbox bars */
#video-intro::before,
#video-intro::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background: #000;
    z-index: 2;
    transition: height .6s cubic-bezier(.4, 0, .2, 1);
}

#video-intro::before {
    top: 0;
}

#video-intro::after {
    bottom: 0;
}

#video-intro.letterbox::before,
#video-intro.letterbox::after {
    height: 8vh;
}

/* Vignette overlay on video */
.video-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .6) 100%);
}

/* Golden border frame */
.video-border-frame {
    position: absolute;
    inset: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 217, 128, 0);
    border-radius: 4px;
    pointer-events: none;
    transition: border-color 1.5s ease .3s;
}

#video-intro.letterbox .video-border-frame {
    border-color: rgba(255, 217, 128, .15);
}

/* Intro Logo Watermark */
.intro-logo {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.8);
    text-align: center;
    opacity: 0;
    font-family: var(--font-heading);
    pointer-events: none;
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.4, 0, .2, 1);
}

.intro-logo.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.intro-logo .logo-main {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 217, 128, .4),
        0 0 60px rgba(189, 108, 52, .2);
    letter-spacing: 4px;
}

.intro-logo .logo-sub {
    font-size: clamp(.85rem, 2vw, 1.2rem);
    color: var(--copper);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 400;
}

/* Progress bar */
.intro-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold), var(--copper));
    z-index: 5;
    transition: width .3s linear;
    box-shadow: 0 0 12px rgba(255, 217, 128, .5);
}

/* Video element */
#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.9) contrast(1.05) saturate(1.1);
}

/* Skip button */
#skip-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 12px 28px;
    background: rgba(255, 217, 128, .08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 217, 128, .25);
    color: var(--gold);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all .4s ease;
    letter-spacing: 1.5px;
    z-index: 10001;
    text-transform: uppercase;
    opacity: 0;
    animation: skipFadeIn 1s ease 1.5s forwards;
}

@keyframes skipFadeIn {
    to {
        opacity: 1;
    }
}

#skip-intro:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 24px rgba(255, 217, 128, .4);
    transform: scale(1.05);
}

#skip-intro span {
    display: inline-block;
    transition: transform .3s ease;
}

#skip-intro:hover span {
    transform: translateX(4px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: rgba(26, 14, 9, .7);
    backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 217, 128, .08);
    transition: background .4s, transform .6s cubic-bezier(.4, 0, .2, 1);
    transform: translateY(-100%);
}

#main-nav.nav-visible {
    transform: translateY(0);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.logo-amp {
    color: var(--copper);
    font-style: italic;
    margin: 0 2px;
}

.logo-sizzle {
    color: var(--crimson);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 50%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- PAGE SECTIONS (scroll-snap) ---------- */
.page {
    min-height: 100vh;
    position: relative;
    scroll-snap-align: start;
    display: block;
}

.page.active {
    display: block;
}

/* ---------- Scroll Progress Dots (side nav) ---------- */
.scroll-dots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8000;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease .3s;
}

.scroll-dots.visible {
    opacity: 1;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.scroll-dot::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 14, 9, .9);
    color: var(--gold);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    border: 1px solid rgba(255, 217, 128, .15);
}

.scroll-dot:hover::before {
    opacity: 1;
}

.scroll-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 217, 128, .4);
    transform: scale(1.25);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-sub {
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--gold);
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--copper));
    margin: 16px auto 0;
    border-radius: 3px;
}

/* ============================================================
   SCROLL REVEAL SYSTEM (replays every scroll)
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1),
        transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

/* Different reveal directions */
.scroll-reveal--up {
    transform: translateY(60px);
}

.scroll-reveal--down {
    transform: translateY(-60px);
}

.scroll-reveal--left {
    transform: translateX(-60px);
}

.scroll-reveal--right {
    transform: translateX(60px);
}

.scroll-reveal--scale {
    transform: scale(0.85);
}

.scroll-reveal--rotate {
    transform: rotate(-5deg) translateY(40px);
}

/* Active state — visible */
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Stagger delays */
.scroll-reveal--d1 {
    transition-delay: 0.05s;
}

.scroll-reveal--d2 {
    transition-delay: 0.12s;
}

.scroll-reveal--d3 {
    transition-delay: 0.2s;
}

.scroll-reveal--d4 {
    transition-delay: 0.28s;
}

.scroll-reveal--d5 {
    transition-delay: 0.36s;
}

.scroll-reveal--d6 {
    transition-delay: 0.44s;
}

/* Legacy reveal classes (keep for compatibility) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

/* ============================================================
   HOME PAGE — CINEMATIC ENTRANCE
   ============================================================ */
.page-home {
    overflow: hidden;
}

.home-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    transform: scale(1.15);
    transition: opacity 1.8s ease, transform 8s cubic-bezier(.25, .46, .45, .94);
}

.home-bg.animate-in {
    opacity: .35;
    transform: scale(1);
}

.home-content {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 40px 60px;
    gap: 40px;
}

.home-left {
    flex: 1;
    max-width: 580px;
}

/* --- HOME ELEMENTS: hidden by default, revealed by JS --- */
.home-tagline {
    font-size: .85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1),
        transform .8s cubic-bezier(.4, 0, .2, 1);
}

.home-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .9s cubic-bezier(.4, 0, .2, 1) .1s,
        transform .9s cubic-bezier(.4, 0, .2, 1) .1s;
}

.home-title span {
    color: var(--gold);
}

.home-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1) .25s,
        transform .8s cubic-bezier(.4, 0, .2, 1) .25s;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--crimson), var(--terracotta));
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 6px 28px rgba(142, 26, 34, .4);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1) .4s,
        transform .7s cubic-bezier(.4, 0, .2, 1) .4s,
        box-shadow .35s ease,
        background .35s ease;
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 36px rgba(142, 26, 34, .55);
    background: linear-gradient(135deg, #a8202a, var(--copper));
}

.home-right {
    flex: 0 0 auto;
    opacity: 0;
    transform: scale(.7) rotate(-5deg);
    transition: opacity 1s cubic-bezier(.4, 0, .2, 1) .15s,
        transform 1s cubic-bezier(.16, 1, .3, 1) .15s;
}

/* Animate-in classes (applied by JS after intro dismisses) */
.home-tagline.animate-in,
.home-title.animate-in,
.home-desc.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.btn-call.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-right.animate-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.home-img-wrapper {
    width: clamp(260px, 30vw, 440px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 217, 128, .25);
    box-shadow: 0 0 60px rgba(189, 108, 52, .25), 0 0 120px rgba(142, 26, 34, .15);
    position: relative;
}

/* Glowing ring animation on hero image */
.home-img-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, transparent, var(--gold), transparent, var(--crimson), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 1.5s ease .6s;
}

.home-right.animate-in .home-img-wrapper::after {
    opacity: .6;
}

/* Glow burst behind hero image */
.home-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 128, .3) 0%, rgba(189, 108, 52, .15) 40%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transform: scale(.5);
    transition: opacity 1.2s ease .3s, transform 1.2s cubic-bezier(.16, 1, .3, 1) .3s;
}

.home-right.animate-in .home-img-wrapper::before {
    opacity: 1;
    transform: scale(1);
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

.home-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Color bars */
.color-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 6px;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease 1s;
}

.color-bars.animate-in {
    opacity: 1;
}

.color-bars span {
    flex: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.color-bars.animate-in span:nth-child(1) {
    transform: scaleX(1);
    transition-delay: 1s;
}

.color-bars.animate-in span:nth-child(2) {
    transform: scaleX(1);
    transition-delay: 1.15s;
}

.color-bars.animate-in span:nth-child(3) {
    transform: scaleX(1);
    transition-delay: 1.3s;
}

.color-bars.animate-in span:nth-child(4) {
    transform: scaleX(1);
    transition-delay: 1.45s;
}

/* Scroll-down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: opacity 1s ease;
}

.scroll-indicator.animate-in {
    opacity: 1;
    animation: pulseDown 2s ease infinite 1.5s;
}

.scroll-indicator svg {
    stroke: var(--gold);
}

.scroll-indicator.animate-in svg {
    animation: bounceDown 1.5s ease infinite 1.5s;
}

@keyframes bounceDown {

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

    50% {
        transform: translateY(8px);
    }
}

@keyframes pulseDown {

    0%,
    100% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }
}

/* Floating golden particles on home */
.home-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 6s ease-in-out infinite;
}

.home-particle:nth-child(1) {
    left: 10%;
    bottom: -5%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.home-particle:nth-child(2) {
    left: 25%;
    bottom: -5%;
    animation-delay: 1s;
    width: 2px;
    height: 2px;
    animation-duration: 8s;
}

.home-particle:nth-child(3) {
    left: 45%;
    bottom: -5%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.home-particle:nth-child(4) {
    left: 65%;
    bottom: -5%;
    animation-delay: .5s;
    width: 4px;
    height: 4px;
    animation-duration: 9s;
}

.home-particle:nth-child(5) {
    left: 80%;
    bottom: -5%;
    animation-delay: 1.5s;
    width: 2px;
    height: 2px;
    animation-duration: 7s;
}

.home-particle:nth-child(6) {
    left: 90%;
    bottom: -5%;
    animation-delay: 3s;
    animation-duration: 8s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    50% {
        opacity: .3;
    }

    90% {
        opacity: 0;
    }

    100% {
        transform: translateY(-100vh) translateX(30px);
        opacity: 0;
    }
}

/* ========== ABOUT PAGE ========== */
.page-about {
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 14, 9, .88);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: rgba(42, 22, 16, .65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 217, 128, .1);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Shimmer glow on hover */
.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 217, 128, .08), transparent 70%);
    opacity: 0;
    transition: opacity .5s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 217, 128, .3);
    box-shadow: 0 12px 48px rgba(142, 26, 34, .25);
}

.about-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .95rem;
    position: relative;
    z-index: 1;
}

/* ========== MENU PAGE ========== */
.page-menu {
    background: var(--dark);
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Category buttons */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.cat-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid rgba(255, 217, 128, .15);
    background: rgba(42, 22, 16, .5);
    transition: var(--transition);
    letter-spacing: .5px;
}

.cat-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.cat-btn.active {
    background: linear-gradient(135deg, var(--crimson), var(--terracotta));
    color: var(--cream);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(142, 26, 34, .35);
}

/* Menu grid */
.menu-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    animation: fadeInUp .5s ease both;
}

.menu-grid.active {
    display: grid;
}

.menu-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 217, 128, .06);
    transition: var(--transition);
    cursor: default;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(189, 108, 52, .2);
    border-color: rgba(255, 217, 128, .2);
}

.menu-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dark-surface);
}

/* CRISP MENU IMAGES */
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

.menu-card-info {
    padding: 20px 24px 24px;
}

.menu-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.menu-card-info p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #e6b84d);
    color: var(--dark);
    font-weight: 700;
    font-size: .95rem;
    padding: 5px 16px;
    border-radius: 50px;
}

/* ========== CONTACT PAGE ========== */
.page-contact {
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 14, 9, .9);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: rgba(42, 22, 16, .6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 217, 128, .1);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(255, 217, 128, .3);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 14px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-card a,
.contact-card p {
    color: var(--text-muted);
    font-size: .95rem;
    transition: color .3s;
}

.contact-card a:hover {
    color: var(--gold);
}

/* Contact form */
.contact-form {
    background: rgba(42, 22, 16, .55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 217, 128, .1);
    border-radius: var(--radius);
    padding: 40px 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(26, 14, 9, .6);
    border: 1px solid rgba(255, 217, 128, .12);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(189, 108, 52, .15);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--crimson), var(--terracotta));
    color: var(--cream);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(142, 26, 34, .3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(142, 26, 34, .45);
    background: linear-gradient(135deg, #a8202a, var(--copper));
}

/* ---------- FOOTER ---------- */
#main-footer {
    text-align: center;
    padding: 24px;
    background: var(--dark-surface);
    border-top: 1px solid rgba(255, 217, 128, .06);
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: .5px;
    scroll-snap-align: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating particle effect on sections */
.page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 217, 128, .15) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(189, 108, 52, .1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 50%, rgba(142, 26, 34, .08) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above particles */
.home-content,
.about-content,
.menu-content,
.contact-content {
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .home-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
    }

    .home-left {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .home-desc {
        max-width: 100%;
    }

    .home-img-wrapper {
        width: clamp(220px, 45vw, 340px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .scroll-dots {
        right: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 64px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: rgba(26, 14, 9, .96);
        backdrop-filter: blur(24px);
        padding: 32px 20px;
        gap: 8px;
        transform: translateY(-120%);
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
        border-bottom: 1px solid rgba(255, 217, 128, .08);
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }

    .home-content {
        padding: 90px 24px 50px;
        gap: 30px;
    }

    .home-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .home-desc {
        font-size: .95rem;
    }

    .home-img-wrapper {
        width: clamp(200px, 55vw, 280px);
    }

    .about-content {
        padding: 100px 20px 60px;
    }

    .about-card {
        padding: 30px 24px;
    }

    .menu-content {
        padding: 100px 16px 60px;
    }

    .menu-categories {
        gap: 8px;
    }

    .cat-btn {
        padding: 10px 18px;
        font-size: .82rem;
    }

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

    .contact-content {
        padding: 100px 20px 60px;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .scroll-dots {
        right: 10px;
        gap: 14px;
    }

    .scroll-dot {
        width: 10px;
        height: 10px;
    }

    /* Allow menu page to scroll beyond viewport on mobile */
    .page-menu {
        min-height: 100vh;
        height: auto;
        scroll-snap-align: start;
    }

    .video-border-frame {
        inset: 10px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .home-content {
        padding: 85px 16px 40px;
    }

    .home-title {
        font-size: 1.9rem;
    }

    .btn-call {
        padding: 14px 28px;
        font-size: .95rem;
    }

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

    .menu-card-info {
        padding: 16px 18px 20px;
    }

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

    .contact-form {
        padding: 24px 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
    }

    #skip-intro {
        bottom: 24px;
        right: 24px;
        padding: 10px 22px;
        font-size: .85rem;
    }

    .scroll-dots {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .video-border-frame {
        inset: 6px;
    }

    .intro-logo .logo-main {
        font-size: 1.8rem;
    }

    .intro-logo .logo-sub {
        letter-spacing: 4px;
        font-size: .75rem;
    }
}