/* ============================================================
   TRÉ — Design System & Global Styles
   Premium Fine Dining Restaurant
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
    /* Brand Colors — Soft Orange */
    --gold: #E8855A;
    --gold-light: #F0A07A;
    --gold-dark: #D06A3E;
    --gold-glow: rgba(232, 133, 90, 0.15);
    --gold-glow-strong: rgba(232, 133, 90, 0.3);

    /* Neutrals — Dark Theme */
    --bg-primary: #0C0C0C;
    --bg-secondary: #131313;
    --bg-tertiary: #1C1C1C;
    --bg-card: #161616;
    --bg-card-hover: #1E1E1E;

    --text-primary: #F2F0ED;
    --text-secondary: #B5AFA6;
    --text-muted: #706B63;
    --text-dark: #0C0C0C;

    --border-subtle: rgba(232, 133, 90, 0.1);
    --border-light: rgba(232, 133, 90, 0.2);
    --border-medium: rgba(232, 133, 90, 0.35);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 900px;
    --nav-height: 80px;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(232, 133, 90, 0.2);
}


/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    cursor: none;
}

/* ── Custom Cursor ── */
body, html {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.custom-cursor.hovering {
    width: 50px;
    height: 50px;
}

input, textarea, select {
    font-family: inherit;
    color: inherit;
}

::selection {
    background-color: var(--gold);
    color: #FFFFFF;
}


/* ── Utility Classes ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.section-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}


/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: #FFFFFF;
    border: 1px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--duration-slow) var(--ease-out-expo);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.9rem;
}


/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--duration-normal) var(--ease-out-expo);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    height: 70px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
}

.nav-logo img {
    transition: filter 0.3s ease-in-out;
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.85));
}

.logo-accent {
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--gold);
    padding: 0.65rem 1.5rem;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--duration-normal) var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-primary); /* Fallback */
}

.hero-bg-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Fast fade-in triggered precisely at the start of the zoom-out sequence */
    animation: videoFadeIn 0.6s ease-out 1.3s forwards;
}

@keyframes videoFadeIn {
    to {
        opacity: 1;
    }
}

.hero-bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-bg-video-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8855A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-xl);
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-welcome-text {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
}


.hero-preheading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.hero-line {
    display: block;
}

.hero-line-accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
    font-size: 1.15em;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-3xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4xl);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}


/* ── Animations ── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-grow {
    opacity: 0;
    transform: scale(0.6);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
    /* Sequential two-step animation: Zoom in quickly (1s), then zoom out slightly to settle (2s) */
    animation: 
        fadeGrowIn 1s cubic-bezier(0.05, 0.85, 0.15, 1) 0.3s forwards,
        fadeGrowOut 2s cubic-bezier(0.05, 0.85, 0.15, 1) 1.3s forwards;
}

@keyframes fadeGrowIn {
    to {
        opacity: 1;
        transform: scale(1.15); /* Zooms up to 115% size */
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.45));
    }
}

@keyframes fadeGrowOut {
    from {
        opacity: 1;
        transform: scale(1.15);
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.45));
    }
    to {
        opacity: 1;
        transform: scale(0.85); /* Retracts gracefully back to even smaller resting size */
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.45));
    }
}

.animate-slide-up-fade {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 2s cubic-bezier(0.05, 0.95, 0.1, 1.0) 1.3s forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ── About Section ── */
.about-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-origin: bottom center;
    transition: transform var(--duration-slow) var(--ease-out-expo),
                box-shadow var(--duration-slow) var(--ease-out-expo),
                border-color var(--duration-slow) var(--ease-out-expo);
}

.about-image-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-light);
    z-index: -1;
    transform-origin: bottom center;
    transition: transform var(--duration-slow) var(--ease-out-expo),
                border-color var(--duration-slow) var(--ease-out-expo),
                box-shadow var(--duration-slow) var(--ease-out-expo);
}

/* Card-fanning hover effect */
.about-image-wrapper:hover .about-image {
    transform: rotate(-3deg);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(232, 133, 90, 0.25), var(--shadow-lg);
}

.about-image-wrapper:hover .about-image-accent {
    transform: rotate(3deg);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(232, 133, 90, 0.25);
}

.about-gallery-text {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    z-index: -2;
    transition: all var(--duration-slow) var(--ease-out-expo);
    white-space: nowrap;
    pointer-events: none;
}

.about-image-wrapper:hover .about-gallery-text {
    opacity: 1;
    transform: translateX(-50%) translateY(40px);
}

.about-text-col {
    padding-left: var(--space-xl);
}

.about-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ── Features Section ── */
.features-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.feature-card {
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-xl);
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ── CTA Section ── */
.cta-section {
    padding: var(--space-5xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(232, 133, 90, 0.05) 0%, transparent 60%),
        var(--bg-secondary);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='none' stroke='%23E8855A' stroke-opacity='0.04' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.cta-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.cta-text {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .section-label {
    padding-left: 0;
}

.cta-section .section-label::before {
    display: none;
}


/* ── Page Hero (Menu & Contact) ── */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(232, 133, 90, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding-top: var(--nav-height);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8855A' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-4xl) var(--space-xl);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.page-hero-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.page-hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}


/* ── Menu Section ── */
.menu-section {
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: var(--bg-primary);
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.filter-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-dark);
}

.menu-category {
    margin-bottom: var(--space-4xl);
    transition: opacity var(--duration-normal), transform var(--duration-normal);
}

.menu-category.hidden {
    display: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    cursor: none;
}

.menu-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-card-content {
    flex: 1;
    min-width: 0;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-body {
    display: flex;
    flex-direction: column;
}

.menu-card-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    align-self: center;
    margin: var(--space-md);
    margin-left: 0;
    border-radius: 8px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}

.menu-card-text {
    flex: 1;
    min-width: 0;
}

.menu-card-header {
    margin-bottom: var(--space-xs);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.menu-item-price {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    margin-top: var(--space-sm);
    display: block;
}

.menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-note {
    text-align: center;
    padding: var(--space-3xl);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    margin-top: var(--space-2xl);
}

.menu-note p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.menu-note p + p {
    margin-top: var(--space-sm);
}


/* ── Contact Section ── */
.contact-section {
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-form-wrapper {
    padding: var(--space-3xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

.contact-form-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.form-group {
    margin-bottom: var(--space-xl);
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color var(--duration-normal);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.form-input:focus ~ .form-line {
    width: 100%;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%237A7268'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    cursor: none;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: var(--space-md);
    position: relative;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.btn-loader svg {
    width: 100%;
    height: 100%;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: block;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    animation: fadeUp 0.5s var(--ease-out-expo);
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.form-success p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-secondary);
}


/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    padding: var(--space-xl) var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.contact-info-card:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.info-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}


/* ── Map Section ── */
.contact-map-wrapper {
    margin-top: var(--space-4xl);
    padding: var(--space-3xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.contact-map-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

.contact-map-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
}

.map-embed-container {
    width: 100%;
    height: 450px;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    transition: filter var(--duration-slow);
}




/* ── Footer ── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: all var(--duration-normal) var(--ease-out-expo);
    padding: 8px;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-address,
.footer-phone {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-phone {
    margin-top: var(--space-md);
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}


/* ── Particle ── */
.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1);
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-150px) scale(0.5);
    }
}


/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-text-col {
        padding-left: 0;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        padding: var(--space-3xl);
        transition: right var(--duration-slow) var(--ease-out-expo);
        border-left: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-btn {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .menu-filter {
        gap: var(--space-xs);
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .contact-form-wrapper {
        padding: var(--space-xl);
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ── Item Expanded Modal ── */
.item-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
    padding: var(--space-xl);
}

.item-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.item-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform var(--duration-normal) var(--ease-out-expo);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.item-modal-overlay.open .item-modal {
    transform: translateY(0) scale(1);
}

.item-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: background var(--duration-fast);
}

.item-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
}

.item-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: background var(--duration-fast), color var(--duration-fast);
}

.item-modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
}

.item-modal-prev {
    left: var(--space-md);
}

.item-modal-next {
    right: var(--space-md);
}

.item-modal-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    max-height: 80vh;
}

.item-modal-image-col {
    flex: 1.2;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.item-modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.item-modal-placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: none;
}

.item-modal-info-col {
    flex: 1;
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.item-modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.item-modal-price {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.item-modal-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .item-modal-content {
        flex-direction: column;
        max-height: 90vh;
    }
    
    .item-modal-image-col {
        height: 300px;
        flex: none;
    }
    
    .item-modal-info-col {
        padding: var(--space-xl);
    }
    
    .item-modal-title {
        font-size: 1.5rem;
    }
    
    .item-modal-nav {
        width: 40px;
        height: 40px;
    }
    .item-modal-prev { left: var(--space-sm); }
    .item-modal-next { right: var(--space-sm); }
}

/* ── Item Glow Effect ── */
@keyframes itemGlow {
    0% {
        box-shadow: 0 0 20px rgba(232, 133, 90, 0.8);
        border-color: var(--gold);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0px rgba(232, 133, 90, 0);
        border-color: var(--border-subtle);
        transform: scale(1);
    }
}

.menu-card.glow-active {
    animation: itemGlow 3s var(--ease-out-expo) forwards;
}
