/* ============================================
   会员制餐厅 — 电影摄影 × 玻璃叠层
   ============================================ */

/* --- Custom Properties --- */
:root {
    /* Cinema Palette */
    --cinema-black: #0d0d0f;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-inner-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
    --glass-text: #ffffff;
    --glass-text-muted: rgba(255, 255, 255, 0.7);
    --glass-text-dim: rgba(255, 255, 255, 0.5);

    /* Parchment Palette */
    --parchment: #faf8f3;
    --warm-black: #1a1614;
    --charcoal: #3d3632;
    --stone: #6b635d;
    --paper-edge: #e3ded5;

    /* Accent */
    --amber: #c8963e;
    --amber-hover: #b0852f;
    --amber-light: rgba(200, 150, 62, 0.12);
    --cinema-red: #8b2e3a;

    /* Fonts */
    --font-display: 'Playfair Display', 'Cormorant Garamond', 'Lora', serif;
    --font-body: 'Inter', 'DM Sans', system-ui, sans-serif;
    --font-mono: 'DM Mono', 'Space Mono', monospace;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 64px;
    --marquee-height: 48px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--parchment);
    padding-bottom: var(--marquee-height);
    overflow-x: hidden;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 300ms ease, box-shadow 300ms ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 15, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: color 200ms ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: var(--amber);
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 200ms ease, transform 200ms ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--amber-hover);
    transform: scale(1.03);
}

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

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    transition: transform 200ms ease, opacity 200ms ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 13, 15, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    padding: 16px 32px 24px;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 250ms ease, opacity 250ms ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 200ms ease;
}

.mobile-link:hover {
    color: #ffffff;
}

.mobile-cta {
    color: var(--amber);
    font-weight: 500;
    margin-top: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cinema-black);
}

/* Cinematic Ambient Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(60, 30, 10, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(40, 20, 40, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(30, 20, 10, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d0f 0%, #1a1210 50%, #0d0d0f 100%);
    z-index: 0;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(120, 60, 20, 0.5), transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(80, 40, 60, 0.4), transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(100, 70, 30, 0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
    animation-duration: 18s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-text {
    flex: 0 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.6px;
    color: var(--glass-text);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--glass-text-muted);
    letter-spacing: 0.3px;
}

/* Glass Cards */
.glass-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 380px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-inner-shadow), 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px 28px;
    transition: background 200ms ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.2);
}

.glass-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--glass-text-dim);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.glass-dish {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--glass-text);
    line-height: 1.15;
    margin-bottom: 4px;
}

.glass-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--glass-text-muted);
    margin-bottom: 8px;
}

.glass-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 400;
    color: var(--amber);
    line-height: 1.2;
}

.glass-info {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--glass-text-muted);
    line-height: 1.6;
}

.glass-info-accent {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--amber);
    line-height: 1.6;
}

.glass-info-muted {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--glass-text-dim);
    margin-top: 4px;
}

/* Floating Booking Button */
.floating-btn {
    position: fixed;
    right: 32px;
    bottom: calc(var(--marquee-height) + 32px);
    z-index: 100;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--amber);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 200ms ease, box-shadow 200ms ease;
    cursor: pointer;
}

.floating-btn span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* ============================================
   MAIN CONTENT — PARCHMENT
   ============================================ */
.main-content {
    background: var(--parchment);
    position: relative;
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--warm-black);
    text-align: center;
    line-height: 1.08;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--stone);
    text-align: center;
    margin-bottom: 0;
}

/* Menu Section Intro */
.menu-section {
    padding: 80px 32px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================
   MENU ACT — Card Script Layout
   ============================================ */
.menu-act {
    padding: 48px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.act-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--warm-black);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: 0;
}

.act-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Menu Hero Card (atmosphere) */
.menu-hero-card {
    flex: 0 0 35%;
    min-height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: var(--card-bg, linear-gradient(135deg, #2c1810, #1a0f0a));
    cursor: default;
}

.menu-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 70%, rgba(255, 200, 100, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    z-index: 0;
    transition: transform 400ms ease-out;
}

.menu-hero-card:hover::before {
    transform: scale(1.03);
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.menu-hero-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.menu-hero-label {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    line-height: 1.15;
}

.menu-hero-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    display: block;
}

/* Lock overlay for hidden menu */
.lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.lock-overlay span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
}

/* Menu Items Column */
.menu-items-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Menu Item Card */
.menu-item-card {
    background: #ffffff;
    border: 1px solid var(--paper-edge);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: box-shadow 200ms ease, border-color 200ms ease;
    position: relative;
}

.menu-item-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(200, 150, 62, 0.3);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.dish-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--warm-black);
    line-height: 1.2;
    letter-spacing: -0.1px;
}

.dish-price {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    color: var(--amber);
    line-height: 1.2;
    white-space: nowrap;
}

.dish-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--stone);
    line-height: 1.6;
}

/* Badges */
.badge-chef,
.badge-seasonal,
.lock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.badge-chef {
    background: rgba(139, 46, 58, 0.1);
    color: var(--cinema-red);
}

.badge-seasonal {
    background: rgba(122, 140, 92, 0.12);
    color: #5a6e3c;
}

.lock-badge {
    background: rgba(0, 0, 0, 0.06);
    color: var(--stone);
}

/* Locked card style */
.menu-item-card--locked {
    opacity: 0.6;
}

.menu-item-card--locked .dish-name {
    color: var(--stone);
}

/* ============================================
   SIGNATURE DISHES — Movie Poster Cards
   ============================================ */
.signatures-section {
    padding: 80px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.signatures-section .section-title {
    margin-bottom: 8px;
}

.signatures-section .section-subtitle {
    margin-bottom: 48px;
}

.signature-card {
    display: flex;
    max-width: 80%;
    margin: 0 auto 32px;
    background: #ffffff;
    border: 1px solid var(--paper-edge);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: box-shadow 200ms ease;
}

.signature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.signature-card--locked {
    opacity: 0.65;
}

.signature-img {
    flex: 0 0 40%;
    min-height: 280px;
    background: var(--img-bg, linear-gradient(135deg, #2c1810, #1a0f0a));
    position: relative;
    overflow: hidden;
}

.signature-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 40% 60%, rgba(255, 200, 100, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 60% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.signature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.03) 100%);
}

.signature-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.signature-body {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signature-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.badge-soup {
    background: rgba(200, 150, 62, 0.12);
    color: var(--amber);
}

.badge-mystery {
    background: rgba(139, 46, 58, 0.1);
    color: var(--cinema-red);
}

.badge-locked {
    background: rgba(0, 0, 0, 0.06);
    color: var(--stone);
}

.badge-chef-rec {
    background: rgba(139, 46, 58, 0.1);
    color: var(--cinema-red);
}

.badge-wine {
    background: rgba(139, 46, 58, 0.1);
    color: var(--cinema-red);
}

.signature-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--warm-black);
    line-height: 1.1;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.signature-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}

.signature-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 400;
    color: var(--amber);
    line-height: 1.2;
}

.signature-price--locked {
    color: var(--stone);
}

/* ============================================
   BOOKING PANEL
   ============================================ */
.booking-section {
    padding: 80px 32px;
    background: var(--parchment);
}

.booking-panel {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--paper-edge);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.booking-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--warm-black);
    line-height: 1.15;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 28px;
}

.booking-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: var(--amber);
    padding: 16px 40px;
    border-radius: 8px;
    transition: background 200ms ease, transform 200ms ease;
    cursor: pointer;
}

.booking-btn:hover {
    background: var(--amber-hover);
    transform: scale(1.02);
}

.booking-btn:active {
    transform: scale(0.98);
}

.booking-divider {
    width: 48px;
    height: 1px;
    background: var(--paper-edge);
    margin: 32px auto;
}

.booking-info {
    display: flex;
    gap: 40px;
    text-align: left;
}

.booking-info-block {
    flex: 1;
}

.booking-info-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--warm-black);
    margin-bottom: 8px;
}

.booking-info-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.6;
}

.booking-info-accent {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--amber);
    line-height: 1.6;
}

.map-placeholder {
    margin-top: 12px;
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px dashed var(--paper-edge);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-placeholder span {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--stone);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--parchment);
    border-top: 1px solid var(--paper-edge);
    padding: 32px;
    margin-bottom: var(--marquee-height);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--warm-black);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--stone);
    transition: color 200ms ease;
}

.footer-links a:hover {
    color: var(--amber);
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--stone);
}

/* ============================================
   TESTIMONIAL MARQUEE
   ============================================ */
.marquee-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--marquee-height);
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 900;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.marquee-bar:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding-right: 48px;
}

.marquee-content span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 24px;
}

.marquee-sep {
    color: var(--amber) !important;
    font-size: 10px !important;
    padding: 0 8px !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding-top: 80px;
    }

    .hero-text {
        order: 1;
    }

    .glass-cards {
        order: 2;
        flex: none;
        width: 100%;
        max-width: 420px;
    }

    .hero-title {
        font-size: 40px;
    }

    .act-grid {
        flex-direction: column;
    }

    .menu-hero-card {
        flex: none;
        min-height: 280px;
    }

    .signature-card {
        max-width: 95%;
    }

    .booking-info {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
    :root {
        --marquee-height: 40px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .glass-cards {
        max-width: 100%;
    }

    .glass-panel {
        padding: 20px 22px;
    }

    .glass-dish {
        font-size: 22px;
    }

    .menu-section {
        padding: 60px 20px 32px;
    }

    .menu-act {
        padding: 32px 20px;
    }

    .act-title {
        font-size: 22px;
    }

    .menu-hero-card {
        min-height: 220px;
    }

    .dish-name {
        font-size: 17px;
    }

    .dish-price {
        font-size: 14px;
    }

    .signatures-section {
        padding: 60px 20px;
    }

    .signature-card {
        flex-direction: column;
        max-width: 100%;
    }

    .signature-img {
        flex: none;
        min-height: 200px;
    }

    .signature-body {
        padding: 24px;
    }

    .signature-name {
        font-size: 24px;
    }

    .booking-section {
        padding: 60px 20px;
    }

    .booking-panel {
        padding: 28px 24px;
    }

    .booking-title {
        font-size: 22px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        right: 20px;
        bottom: calc(var(--marquee-height) + 20px);
    }

    .floating-btn svg {
        width: 18px;
        height: 18px;
    }

    .floating-btn span {
        font-size: 8px;
    }

    .marquee-content span {
        font-size: 11px;
        padding: 0 16px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection */
::selection {
    background: rgba(200, 150, 62, 0.25);
    color: var(--warm-black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--parchment);
}

::-webkit-scrollbar-thumb {
    background: var(--paper-edge);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--stone);
}
