

/* --------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------- */
:root {
    /* Brand Palette */
    --cream: #fbf7f2;
    --cream-light: #fffdfa;
    --cream-warm: #f4ece1;
    --cream-dark: #e8ddd0;
    
    --white: #ffffff;
    
    --terracotta: #c25934;
    --terracotta-hover: #a34827;
    --terracotta-light: rgba(194, 89, 52, 0.1);
    
    --burnt-orange: #d96b27;
    --amber: #e09f3e;
    --gold: #d4af37;
    --olive: #556b2f;
    --olive-light: rgba(85, 107, 47, 0.12);
    
    --charcoal: #1a1817;
    --charcoal-soft: #2b2623;
    --charcoal-muted: #57504a;
    
    --border: #e6ddd3;
    --border-dark: #3a3430;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Elevation & Shadows */
    --shadow-sm: 0 4px 12px rgba(26, 24, 23, 0.05);
    --shadow-md: 0 12px 30px rgba(26, 24, 23, 0.08);
    --shadow-lg: 0 24px 60px rgba(26, 24, 23, 0.12);
    --shadow-glow: 0 15px 35px rgba(194, 89, 52, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

/* Texture Overlay */
.bg-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scroll Progress Line */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--amber), var(--burnt-orange));
    width: 0%;
    z-index: 10001;
    transition: width 0.1s linear;
}

/* Containers & Layout Helpers */
.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.section {
    padding: 130px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--terracotta);
}

.editorial-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.italic-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--charcoal-muted);
    max-width: 620px;
    margin: 0 auto 50px;
}

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

.text-gold { color: var(--gold); }
.text-terracotta { color: var(--terracotta); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(194, 89, 52, 0.25);
    align-self: center;
    display: flex;
    justify-self: center;
}

.btn.primary:hover {
    background: var(--terracotta-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(194, 89, 52, 0.35);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--charcoal-soft);
    border: 1px solid var(--burnt-orange);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-3px);
}

/* Scroll Reveals */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal="fade-up"] { transform: translateY(50px); }
[data-reveal="slide-right"] { transform: translateX(-50px); }
[data-reveal="slide-left"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --------------------------------------------------
   3. NAVIGATION
   -------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-base);
}

#header.scrolled {
    padding: 14px 0;
    background: rgba(251, 247, 242, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 10px 40px rgba(26, 24, 23, 0.08);
    border-bottom: 1px solid rgba(230, 221, 211, 0.6);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

#header.scrolled .logo {
    color: var(--charcoal);
}

.logo-dot {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

#header.scrolled .nav-item {
    color: var(--charcoal-soft);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--white);
}

#header.scrolled .nav-item:hover,
#header.scrolled .nav-item.active {
    color: var(--terracotta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
    transition: var(--transition-fast);
}

#header.scrolled .hamburger span {
    background: var(--charcoal);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 23, 0.96);
    backdrop-filter: blur(20px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    width: min(400px, 85%);
    height: 100%;
    background: var(--charcoal);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: var(--transition-base);
}

.mobile-menu.active .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-link:hover {
    color: var(--terracotta);
}

.mobile-menu-footer {
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.mobile-phone {
    color: var(--amber);
    display: block;
    margin-top: 6px;
    font-weight: 600;
}

/* --------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
    overflow: hidden;
    color: var(--white);
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.15);
    transform: scale(1.04);
    transition: transform 10s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(26, 24, 23, 0.8) 0%, 
        rgba(26, 24, 23, 0.55) 50%, 
        rgba(26, 24, 23, 0.92) 100%
    );
}

.hero-ambient-glow {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(194, 89, 52, 0.22) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(1240px, 90%);
    margin: 0 auto;
    padding: 0 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* Left Hero Column */
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 12px #25d366;
    animation: pulseDot 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5.8vw, 5.4rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.title-dot {
    color: var(--terracotta);
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    display: block;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.72;
    color: rgba(251, 247, 242, 0.88);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.hero-btn {
    padding: 18px 36px;
    font-size: 0.98rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
}

/* Right Hero Visual Column */
.hero-comp-wrapper {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(26, 24, 23, 0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

.reservation-teaser {
    top: -15px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.vibe-teaser {
    bottom: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.teaser-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.icon-terracotta {
    background: var(--terracotta-light);
    color: var(--terracotta);
}

.teaser-title {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--white);
}

.teaser-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
}
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.teaser-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.chef-stamp {
    bottom: 30px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 89, 52, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stamp-center {
    position: absolute;
    font-size: 1.4rem;
    color: var(--gold);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* --------------------------------------------------
   5. PRESS MARQUEE TICKER
   -------------------------------------------------- */
.marquee-section {
    background: var(--charcoal);
    color: var(--cream);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    white-space: nowrap;
    padding-right: 40px;
}

.marquee-content .dot {
    color: var(--terracotta);
}

/* --------------------------------------------------
   6. BRAND STORY / ABOUT SECTION
   -------------------------------------------------- */
.story {
    background: var(--cream);
}

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

.lead-p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 20px;
}

.body-p {
    font-size: 1.02rem;
    color: var(--charcoal-muted);
    margin-bottom: 24px;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--terracotta);
    padding-left: 24px;
    border-left: 3px solid var(--terracotta);
    margin: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--charcoal-muted);
    font-weight: 500;
}

.story-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img-main {
    width: 100%;
    height: 580px;
    transition: transform 0.8s ease;
}

.story-img-wrapper:hover .story-img-main {
    transform: scale(1.04);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(251, 247, 242, 0.92);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.badge-txt {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
}

/* --------------------------------------------------
   7. SIGNATURE MENU SECTION
   -------------------------------------------------- */
.menu {
    background: var(--cream-warm);
}

.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.menu-tabs {
    display: inline-flex;
    padding: 6px;
    background: rgba(230, 221, 211, 0.6);
    border-radius: var(--radius-full);
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 12px 26px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--white);
    color: var(--terracotta);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Featured Spotlight Dish */
.featured-dish-spotlight {
    margin-bottom: 60px;
}

.spotlight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.spotlight-img-col {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.spotlight-img-col img {
    width: 100%;
    height: 100%;
}

.spotlight-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.spotlight-info-col {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dish-cat {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
}

.dish-price, .spotlight-header .dish-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.spotlight-desc {
    color: var(--charcoal-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.ingredient-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.ingredient-chips span {
    background: var(--cream);
    color: var(--charcoal-soft);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.spotlight-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    gap: 20px;
}

.chef-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--charcoal-muted);
}
.open-dish-modal-btn{
    width: 100%;
}

/* Menu Editorial Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

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

.price-chip {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 24, 23, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin: 8px 0 12px;
}

.card-excerpt {
    font-size: 0.93rem;
    color: var(--charcoal-muted);
    margin-bottom: 20px;
}

.card-footer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}

.card-action-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--cream);
    color: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-base);
    cursor: pointer;
}

.menu-card:hover .card-action-btn,
.card-action-btn:hover {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
    box-shadow: 0 8px 20px rgba(194, 89, 52, 0.25);
}

.card-action-btn i {
    transition: transform var(--transition-fast);
}

.menu-card:hover .card-action-btn i {
    transform: translateX(4px);
}

/* --------------------------------------------------
   8. GALLERY / ATMOSPHERE SECTION
   -------------------------------------------------- */
.gallery {
    background: var(--cream);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 30px;
    justify-content: center;
    /* justify-items: center; */
    /* margin-left: 100px; */
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}
.item-tallest{
        grid-column: span 1;
    grid-row: span 2;
    top: -380px;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.item-normal {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(26, 24, 23, 0.85) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-badge {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.gallery-info h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

/* --------------------------------------------------
   9. CHEF FEATURE SECTION
   -------------------------------------------------- */
.chef {
    background: var(--cream-light);
    overflow: hidden;
}

.chef-editorial-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.chef-portrait-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.chef-portrait-card img {
    width: 100%;
    height: 560px;
    object-position: center top;
}

.chef-portrait-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(26, 24, 23, 0.9) 100%);
    color: var(--white);
}

.chef-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
}

.chef-title {
    font-size: 0.85rem;
    color: var(--amber);
}

.chef-text-col {
    position: relative;
}

.chef-watermark {
    position: absolute;
    top: -50px;
    right: -20px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(194, 89, 52, 0.05);
    pointer-events: none;
    letter-spacing: -0.05em;
}

.chef-pull-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.35;
    color: var(--terracotta);
    margin: 28px 0;
}

.chef-signature-wrap {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sig-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal-muted);
}

/* --------------------------------------------------
   10. RESERVATIONS SECTION
   -------------------------------------------------- */
.reservation {
    background: var(--cream-warm);
}

.reservation-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 70px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terracotta);
    font-size: 1rem;
}

.textarea-icon {
    top: 22px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px var(--terracotta-light);
    background: var(--white);
}

.form-submit-wrap {
    margin-top: 10px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 1.05rem;
}

.direct-call {
    text-align: center;
    margin-top: 28px;
    font-size: 0.92rem;
    color: var(--charcoal-muted);
}

.direct-call a {
    color: var(--terracotta);
    font-weight: 700;
}

/* --------------------------------------------------
   11. LOCATION & CONTACT
   -------------------------------------------------- */
.location {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terracotta-light);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.info-block p {
    color: var(--charcoal-muted);
    font-size: 0.95rem;
}

.location-actions {
    margin-top: 40px;
}

.map-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 480px;
    border: 1px solid var(--border);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------
   12. FOOTER
   -------------------------------------------------- */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-dark);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--terracotta);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------
   13. MODALS (DISH, CONCEPT, RESERVATION, LIGHTBOX)
   -------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 15, 0.75);
    backdrop-filter: blur(14px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    position: relative;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.96);
    transition: var(--transition-base);
}

.modal-backdrop.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    /* top: 20px; */
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 24, 23, 0.08);
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--terracotta);
    color: var(--white);
}

/* Dish Modal */
.dish-modal-card {
    max-width: 860px;
}

.dish-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dish-modal-img {
    height: 100%;
    min-height: 380px;
}

.dish-modal-img img {
    width: 100%;
    height: 100%;
}

.dish-modal-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dish-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 8px 0;
}

.dish-modal-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.dish-modal-desc {
    color: var(--charcoal-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.dish-modal-section {
    margin-bottom: 16px;
}

.dish-modal-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal-soft);
    margin-bottom: 8px;
}

.dish-modal-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    gap: 14px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--charcoal);
}

.qty-val {
    font-weight: 600;
}

/* Concept Modal */
.concept-modal-card {
    padding: 50px 40px;
    text-align: center;
    max-width: 580px;
}

.concept-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--terracotta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.concept-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.concept-text {
    font-size: 0.98rem;
    color: var(--charcoal-muted);
    margin-bottom: 16px;
    line-height: 1.65;
}

.concept-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}

/* Reservation Review Modal */
.review-modal-card {
    padding: 44px;
    max-width: 580px;
}

.review-header {
    text-align: center;
    margin-bottom: 28px;
}

.review-wa-icon {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 12px;
}

.review-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.review-header p {
    font-size: 0.9rem;
    color: var(--charcoal-muted);
}

.review-summary-box {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.review-label {
    color: var(--charcoal-muted);
}

.review-val {
    font-weight: 600;
    color: var(--charcoal);
}

.review-actions {
    display: flex;
    gap: 14px;
}

.review-actions button {
    flex: 1;
}
.review-edit-btn{
    color: black;
    background-color: red;
}

/* Lightbox Modal */
.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.94);
    z-index: 25000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.lightbox-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption-bar {
    margin-top: 16px;
    color: var(--white);
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.95rem;
}

.lightbox-close, .lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close {
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover, .lightbox-nav:hover {
    background: var(--terracotta);
}

/* --------------------------------------------------
   14. KEYFRAMES & ANIMATIONS
   -------------------------------------------------- */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-slow { animation: floatSlow 6s ease-in-out infinite; }
.spin-slow { animation: spinSlow 20s linear infinite; }

/* --------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (MOBILE POLISH)
   -------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid,
    .story-grid,
    .chef-editorial-grid,
    .location-grid,
    .spotlight-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-comp-wrapper {
        height: 420px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .item-large, .item-wide {
        grid-column: span 2;
    }
    
    .item-tall, .item-normal {
        grid-column: span 1;
    }
}

/* Button Active Microinteractions */
.btn:active, button:active {
    transform: scale(0.96) !important;
}

/* Staggered Scroll Reveal Delays */
.menu-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.menu-grid [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.menu-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.menu-grid [data-reveal]:nth-child(4) { transition-delay: 0.28s; }
.menu-grid [data-reveal]:nth-child(5) { transition-delay: 0.36s; }
.menu-grid [data-reveal]:nth-child(6) { transition-delay: 0.44s; }
.menu-grid [data-reveal]:nth-child(7) { transition-delay: 0.52s; }
.menu-grid [data-reveal]:nth-child(8) { transition-delay: 0.6s; }

.gallery-masonry [data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.gallery-masonry [data-reveal]:nth-child(2) { transition-delay: 0.22s; }
.gallery-masonry [data-reveal]:nth-child(3) { transition-delay: 0.34s; }
.gallery-masonry [data-reveal]:nth-child(4) { transition-delay: 0.46s; }

@media (max-width: 768px) {
    .nav-links, .btn-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        padding-top: 135px;
        padding-bottom: 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-text-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .eyebrow-pill {
        margin: 0 auto 20px;
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8.5vw, 3.2rem);
        text-align: center;
    }

    .hero-tagline {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 14px;
    }

    .hero-description {
        font-size: 0.98rem;
        text-align: center;
        margin: 0 auto 28px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-badges {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }

    .badge-divider {
        display: none;
    }

    .hero-comp-wrapper {
        height: 300px;
        margin-top: 20px;
    }

    .hero-image-card {
        height: 260px;
    }

    .reservation-teaser {
        top: -10px;
        left: 0;
        padding: 10px 14px;
    }

    .vibe-teaser {
        bottom: -10px;
        right: 0;
        padding: 10px 14px;
    }

    .menu-tabs-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .menu-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .menu-tabs {
        white-space: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* .card-footer{
        display: flex;
    } */
    .item-tallest{
        display: none;
    }
    .story-img-main {
        height: 350px;
    }

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

    .form-row, .form-row.three-cols {
        grid-template-columns: 1fr;
    }

    .reservation-wrapper {
        padding: 30px 20px;
    }

    .dish-modal-grid {
        grid-template-columns: 1fr;
    }

    .dish-modal-img {
        min-height: 220px;
    }

    .lightbox-nav {
        display: none;
    }

    .review-actions, .concept-actions {
        flex-direction: column;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}