/* ============================================
   VARIABLES — CSS Custom Properties
   ============================================ */

/* ============================================
   TRẠM DỪNG CHILL - Premium Design
   Theme: Sunset Gold + Night Warmth
   ============================================ */

:root {
    /* Sunset palette */
    --gold: #D4A853;
    --gold-light: #F0D48A;
    --gold-dark: #B8922E;
    --sunset: #E8814F;
    --sunset-deep: #C8572A;
    --ember: #A5451F;

    /* Night palette */
    --night: #0F0D0A;
    --night-soft: #1A1612;
    --charcoal: #2C2420;
    --wood: #3D3229;
    --smoke: #8B7D6B;

    /* Light palette */
    --cream: #FDF8F3;
    --linen: #F5EDE3;
    --parchment: #EDE4D8;
    --white: #FFFFFF;
    --border: #E0D5C7;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Dancing Script', cursive;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(15, 13, 10, 0.08);
    --shadow-medium: 0 8px 30px rgba(15, 13, 10, 0.12);
    --shadow-heavy: 0 12px 50px rgba(15, 13, 10, 0.2);
    --shadow-gold: 0 4px 25px rgba(212, 168, 83, 0.3);
    --glow-gold: 0 0 40px rgba(212, 168, 83, 0.15);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
/* ============================================
   BASE — Reset & Base Styles
   ============================================ */

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

/* Screen reader only — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* Selection color */
::selection { background: var(--gold); color: var(--night); }
/* ============================================
   COMPONENTS — Buttons & Section Headers
   ============================================ */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-golden {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--night);
    border-color: var(--gold);
}

.btn-golden:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.1);
}

.btn-glass {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(212,168,83,0.05));
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,168,83,0.2);
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--gold-light);
    border-color: rgba(212,168,83,0.3);
    background: rgba(212,168,83,0.1);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--night-soft);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--sunset-deep);
}

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-desc {
    font-size: 1.05rem;
    color: var(--smoke);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}
/* ============================================
   NAVBAR — Navigation
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(15, 13, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.4rem;
}

.logo-text-wrapper { display: flex; flex-direction: column; }

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: var(--night) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease);
}

.nav-phone:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--sunset));
    z-index: 1001;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(212, 168, 83, 0.5);
}

/* Language toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 168, 83, 0.4);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.lang-toggle:hover {
    background: rgba(212, 168, 83, 0.18);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(212, 168, 83, 0.2);
}

.lang-toggle:active {
    transform: scale(0.95);
}

.lang-globe {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.lang-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Language transition overlay */
.lang-transitioning [data-i18n] {
    transition: opacity 0.2s ease;
    opacity: 0.3;
}

.lang-flag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}
/* ============================================
   HERO — Hero Section & Related Animations
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: slowZoom 10s ease-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15, 13, 10, 0.5) 0%,
            rgba(15, 13, 10, 0.15) 35%,
            rgba(15, 13, 10, 0.1) 50%,
            rgba(15, 13, 10, 0.5) 85%,
            rgba(15, 13, 10, 0.8) 100%
        );
    z-index: 1;
}

/* Firefly particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold), 0 0 12px rgba(212,168,83,0.3);
    animation: float var(--duration) ease-in-out infinite;
    opacity: 0;
}

@keyframes float {
    0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
    25% { opacity: 0.8; }
    50% { opacity: 0.4; transform: translateY(calc(var(--dy))) translateX(calc(var(--dx))); }
    75% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title { margin-bottom: 20px; }

.hero-title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}

.hero-title-main {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(3.2rem, 9vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Time indicator dots */
.hero-time-bar {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.time-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
}

.time-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,168,83,0.5);
}

.time-dot::after {
    content: attr(data-label);
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.time-dot:hover::after,
.time-dot.active::after { opacity: 1; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

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

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
/* ============================================
   EXPERIENCE — Experience Section
   ============================================ */

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    padding: 110px 0;
    background: var(--cream);
}

.exp-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--border);
    max-width: 100%;
}

.exp-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-4px);
}

.exp-card-img {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.exp-card:hover .exp-card-img img {
    transform: scale(1.05);
}

.exp-time-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(15,13,10,0.7);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.exp-card-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--parchment);
    line-height: 1;
    margin-bottom: 12px;
}

.exp-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--night-soft);
    margin-bottom: 16px;
}

.exp-card-content p {
    color: var(--smoke);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.exp-tag-list { display: flex; gap: 8px; flex-wrap: wrap; }

.exp-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 14px;
    background: var(--linen);
    color: var(--sunset-deep);
    border-radius: var(--radius-full);
    border: 1px solid var(--parchment);
}

/* Occasions banner */
.occasions-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--night-soft), var(--charcoal));
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.occasions-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,168,83,0.1) 0%, transparent 60%);
}

.occasions-content {
    position: relative;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
}

.occasions-content svg {
    flex-shrink: 0;
    color: var(--sunset);
}

.occasions-content h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.occasions-content p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.occasions-content .btn {
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}
/* ============================================
   MENU — Menu Section
   ============================================ */

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 110px 0;
    background: var(--linen);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--cream), var(--linen));
}

.menu-section .container { position: relative; }

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 6px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.menu-tab {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--smoke);
    transition: all 0.3s var(--ease);
}

.menu-tab:hover { color: var(--sunset-deep); }

.menu-tab.active {
    background: var(--sunset-deep);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(200,87,42,0.3);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadePanel 0.4s ease; }

@keyframes fadePanel {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.menu-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    transform: translateX(4px);
}

.menu-item-info { display: flex; align-items: center; gap: 10px; flex: 1; }

.menu-item-info h4 {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--night-soft);
}

.menu-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.menu-badge.hot {
    background: linear-gradient(135deg, var(--sunset), var(--sunset-deep));
    color: var(--white);
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sunset-deep);
    white-space: nowrap;
    margin-left: 16px;
}

.menu-note, .menu-drink-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--smoke);
    font-style: italic;
}
/* ============================================
   GALLERY — Gallery Section
   ============================================ */

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    padding: 110px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
}

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,13,10,0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

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

.gallery-caption span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}
/* ============================================
   REVIEW — Review / QR Section
   ============================================ */

/* ============================================
   REVIEW / QR SECTION
   ============================================ */
.review-section {
    padding: 100px 0;
    background: var(--linen);
}

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

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

.review-desc {
    font-size: 1rem;
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

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

.review-qr {
    display: flex;
    justify-content: center;
}

.qr-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 1px solid var(--border);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.qr-code img, .qr-code canvas { max-width: 100%; }

.qr-card p {
    font-size: 0.9rem;
    color: var(--smoke);
    font-weight: 500;
}
/* ============================================
   BOOKING — Booking Section & Form
   ============================================ */

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    padding: 110px 0;
    background: var(--night-soft);
    position: relative;
    overflow: hidden;
}

.booking-bg-layer {
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-night.jpg') center/cover no-repeat;
    background: url('assets/images/hero-night.webp') center/cover no-repeat;
    opacity: 0.12;
    filter: blur(2px);
}

.booking-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.booking-info { color: var(--white); padding-top: 20px; }

.booking-desc {
    font-size: 1rem;
    opacity: 0.75;
    line-height: 1.8;
    margin-bottom: 32px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

.booking-contact-cards {
    display: flex;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    flex: 1;
}

.contact-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.contact-card svg { color: var(--gold); flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.75rem; opacity: 0.6; font-weight: 500; }
.contact-card span { font-size: 0.95rem; }

/* Booking Form */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-heavy);
}

.booking-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--night-soft);
    margin-bottom: 4px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 0.88rem;
    color: var(--smoke);
    margin-bottom: 28px;
}

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

.form-group { display: flex; flex-direction: column; }
.form-group.full-width { margin-bottom: 20px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--wood);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--night-soft);
    transition: all 0.3s var(--ease);
    background: var(--cream);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
    background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--smoke);
    margin-top: 12px;
}
/* ============================================
   MAP — Map Section
   ============================================ */

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 90px 0;
    background: var(--cream);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
}

.map-info-card {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--night-soft);
    margin-bottom: 20px;
    line-height: 1.4;
}

.map-address {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--smoke);
}

.map-address svg { flex-shrink: 0; margin-top: 2px; color: var(--sunset-deep); }
.map-address p { font-size: 0.95rem; line-height: 1.6; }

.map-embed { min-height: 400px; }
.map-embed iframe { width: 100%; height: 100%; display: block; }
/* ============================================
   FOOTER — Footer Section
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--night);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--night);
    transform: translateY(-3px);
}

.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-nav li { margin-bottom: 10px; }

.footer-nav a {
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
}

.footer-nav a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
}
/* ============================================
   BLOG — Blog Page Styles
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--night);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--smoke);
}

.breadcrumb li::after {
    content: '›';
    color: var(--smoke);
    font-size: 1.1rem;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    color: var(--gold);
}

.breadcrumb a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Blog Hero */
.blog-hero {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, var(--night) 0%, var(--night-soft) 50%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero .section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.blog-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-hero-title em {
    font-style: italic;
    color: var(--gold);
}

.blog-hero-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--smoke);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 80px 0 100px;
    background: var(--cream);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

/* Featured Card — Full Width */
.blog-card.blog-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card.blog-featured .blog-card-img {
    min-height: 400px;
}

/* Card Image */
.blog-card-img {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

/* Card Content */
.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card.blog-featured .blog-card-content {
    padding: 36px;
    justify-content: center;
}

/* Meta (date + category) */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--smoke);
}

.blog-meta time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-meta time::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7D6B' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat center / contain;
}

.blog-category {
    background: var(--linen);
    color: var(--wood);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.78rem;
}

/* Card Title */
.blog-card-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--night);
}

.blog-card.blog-featured .blog-card-content h2 {
    font-size: 1.6rem;
}

.blog-card-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.blog-card-content h2 a:hover {
    color: var(--gold-dark);
}

/* Card Excerpt */
.blog-card-content > p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 16px;
    flex: 1;
}

/* Full Content (hidden by default) */
.blog-full-content {
    display: none;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.blog-card.expanded .blog-full-content {
    display: block;
    animation: blogFadeIn 0.4s var(--ease);
}

@keyframes blogFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.blog-full-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--night);
    margin: 20px 0 10px;
}

.blog-full-content h3:first-child {
    margin-top: 8px;
}

.blog-full-content p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.blog-full-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px 0;
    display: block;
}

.blog-full-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.blog-full-content a:hover {
    color: var(--sunset);
}

/* Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s, gap 0.3s;
    cursor: pointer;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--sunset);
    gap: 10px;
}

.blog-card.expanded .blog-read-more::after {
    content: ' ← Thu gọn';
}

.blog-card.expanded .blog-read-more {
    font-size: 0;
}

.blog-card.expanded .blog-read-more::after {
    font-size: 0.88rem;
}

/* Share Buttons */
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
}

.blog-share-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--smoke);
    font-weight: 500;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    text-decoration: none;
}

.blog-share-btn:hover {
    transform: scale(1.15);
}

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

.blog-share-fb {
    background: #1877F2;
    color: white;
}

.blog-share-fb:hover {
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.blog-share-zalo {
    background: #0068FF;
    color: white;
}

.blog-share-zalo:hover {
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.4);
}

.blog-share-copy {
    background: var(--linen);
    color: var(--charcoal);
}

.blog-share-copy:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--parchment);
}

.blog-share-copy.copied {
    background: #22c55e;
    color: white;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--night), var(--night-soft));
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 12px;
    position: relative;
}

.blog-cta p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--smoke);
    margin-bottom: 28px;
    position: relative;
}

.blog-cta .btn-golden {
    position: relative;
}

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

@media (max-width: 1024px) {
    .blog-card.blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-card.blog-featured .blog-card-img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 130px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-content h2 {
        font-size: 1.2rem;
    }

    .blog-card.blog-featured .blog-card-content h2 {
        font-size: 1.3rem;
    }

    .blog-card-img {
        min-height: 200px;
    }

    .blog-cta {
        padding: 40px 24px;
    }

    .blog-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 120px 0 50px;
    }

    .blog-hero-title {
        font-size: 1.6rem;
    }

    .blog-hero-desc {
        font-size: 0.95rem;
    }

    .blog-card-content {
        padding: 18px;
    }

    .blog-card-content h2 {
        font-size: 1.1rem;
    }

    .blog-cta h3 {
        font-size: 1.25rem;
    }
}
/* ============================================
   MENU PAGE — Dedicated Menu Page Styles
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--night);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--smoke);
}

.breadcrumb li::after {
    content: '›';
    color: var(--smoke);
    font-size: 1.1rem;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    color: var(--gold);
}

.breadcrumb a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Menu Hero */
.menu-hero {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, var(--night) 0%, var(--night-soft) 50%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.menu-hero .section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.menu-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.menu-hero-title em {
    font-style: italic;
    color: var(--gold);
}

.menu-hero-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--smoke);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu-hero-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.menu-hero-info span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--smoke);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-hero-info svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* Menu Content */
.menu-content {
    padding: 60px 0 80px;
    background: var(--cream);
}

/* Category Section */
.menu-category {
    margin-bottom: 56px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.menu-category-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.menu-category-name::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Best Seller special styling */
.menu-category--bestseller .menu-category-name {
    color: var(--gold-dark);
}

.menu-category--bestseller .menu-category-name::before {
    content: '\2605 ';
    color: var(--gold);
}

.menu-category--bestseller {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, rgba(240, 212, 138, 0.04) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    border: 1px solid rgba(212, 168, 83, 0.15);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Menu Item Card */
.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(212, 168, 83, 0.3);
}

.menu-item:hover .menu-item-name {
    color: var(--gold-dark);
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s var(--ease);
    line-height: 1.4;
}

.menu-item-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.menu-item-badge--best {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--night);
}

.menu-item-badge--hot {
    background: linear-gradient(135deg, var(--sunset), var(--sunset-deep));
    color: var(--white);
}

.menu-item-badge--new {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: var(--white);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Menu Note */
.menu-note {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.menu-note p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--smoke);
    font-style: italic;
}

/* CTA Section */
.menu-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--night) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.menu-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 16px;
    font-weight: 700;
}

.menu-cta p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--smoke);
    margin-bottom: 32px;
    line-height: 1.7;
}

.menu-cta .btn-golden {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--night);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-gold);
}

.menu-cta .btn-golden:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.menu-cta-phone {
    display: block;
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--smoke);
}

.menu-cta-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.menu-cta-phone a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        padding: 140px 0 60px;
    }

    .menu-hero-info {
        gap: 16px;
    }

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

    .menu-item {
        padding: 16px 18px;
    }

    .menu-item-name {
        font-size: 0.95rem;
    }

    .menu-item-price {
        font-size: 1.05rem;
    }

    .menu-category--bestseller {
        padding: 28px 16px;
    }

    .menu-content {
        padding: 40px 0 60px;
    }

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

@media (max-width: 480px) {
    .menu-hero-info {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        width: fit-content;
        font-size: 0.6rem;
    }
}
/* ============================================
   UI-OVERLAYS — Preloader, FAB, Back-to-top, Lightbox, Modal, Nav Overlay
   ============================================ */

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--night);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    color: var(--gold);
}

.preloader-flame {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 3px solid rgba(212, 168, 83, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.preloader-inner p {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ============================================
   FLOATING CONTACT BUTTONS (FAB)
   ============================================ */
.fab-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    pointer-events: none;
}

.fab-contact.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    position: relative;
    z-index: 2;
    animation: fabPulseGold 2.5s infinite;
}

.fab-main:hover {
    transform: scale(1.1);
}

.fab-main svg {
    width: 24px;
    height: 24px;
    stroke: var(--night);
    transition: all 0.3s var(--ease);
}

.fab-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.fab-contact.open .fab-icon-contact {
    opacity: 0;
    transform: rotate(90deg);
}

.fab-contact.open .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.fab-contact.open .fab-main {
    animation: none;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.6);
}

@keyframes fabPulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4), 0 4px 20px rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212, 168, 83, 0), 0 4px 20px rgba(212, 168, 83, 0.4); }
}

.fab-options {
    position: absolute;
    bottom: 68px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
}

.fab-contact.open .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--night);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.fab-option:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.fab-opt-zalo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0068FF;
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fab-opt-phone svg {
    color: #28a745;
    flex-shrink: 0;
}

.fab-opt-fb svg {
    fill: #1877F2;
    flex-shrink: 0;
}

/* Legacy fab-container (kept for backward compat with scroll-ui.js) */
.fab-container { display: none; }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--night-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--gold); color: var(--night); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s;
    line-height: 1;
    z-index: 1;
}

.lightbox-close:hover { transform: scale(1.2); color: var(--gold); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: var(--radius);
    transition: all 0.3s;
    z-index: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.15); }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-heavy);
    animation: modalIn 0.4s var(--ease);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #059669, #10B981);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--night-soft);
}

.modal-content p {
    color: var(--smoke);
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-phone {
    margin-bottom: 24px !important;
    font-weight: 600;
    color: var(--night-soft) !important;
}

.modal-phone a { color: var(--sunset-deep); }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.nav-overlay.active { display: block; }
/* ============================================
   ANIMATIONS — Scroll Reveal & Shared Animations
   ============================================ */

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================
   RESPONSIVE — All Media Queries
   ============================================ */

/* Large desktop */
@media (min-width: 1440px) {
    .container { padding: 0 40px; }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .booking-wrapper {
        grid-template-columns: 1fr 1.3fr;
        gap: 32px;
    }
}

/* Tablet & below */
@media (max-width: 1024px) {
    .review-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .map-wrapper { grid-template-columns: 1fr; }
    .map-embed { min-height: 350px; }
}

/* Experience cards — stack at 1024px for readable text */
@media (max-width: 1024px) {
    .exp-card { grid-template-columns: 1fr; overflow: visible; }
    .exp-card-img { min-height: 280px; overflow: hidden; }
    .exp-train .exp-card-content { order: 2; }
    .exp-train .exp-card-img { order: 1; }
    .exp-card-content { word-wrap: break-word; overflow-wrap: break-word; }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-tall { grid-row: span 2; }
    .gallery-wide { grid-column: span 2; }
}

/* ============================================
   MOBILE — 768px and below
   ============================================ */
@media (max-width: 768px) {

    /* === NAVIGATION === */
    .nav-toggle { display: flex; }
    .nav-phone span { display: none; }
    .nav-phone { padding: 8px; border: none; }

    .nav-right {
        position: relative;
        z-index: 1003;
        gap: 8px;
    }

    .lang-toggle {
        padding: 0 10px;
        height: 34px;
    }

    /* Logo — prevent overflow on small screens */
    .logo-main {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        white-space: nowrap;
    }
    .logo-sub {
        font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    }

    /* Full-screen mobile menu overlay */
    .nav-menu {
        display: flex !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(15, 13, 10, 0.98) !important;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 32px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 1002;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
    }

    .nav-menu.open {
        transform: translateX(0) !important;
    }

    /* Menu items — centered, spaced out */
    .nav-menu li {
        width: 100%;
        max-width: 300px;
        list-style: none;
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        width: 100%;
        border-radius: var(--radius);
        font-size: 1.15rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0.5px;
        transition: all 0.3s var(--ease);
    }

    .nav-link:hover,
    .nav-link:active {
        color: var(--gold);
        background: rgba(212, 168, 83, 0.1);
    }

    /* CTA button in mobile menu */
    .nav-menu li:last-child {
        margin-top: 20px;
    }

    .nav-cta {
        padding: 16px 48px !important;
        border-radius: var(--radius-full) !important;
        font-size: 1.1rem !important;
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: block;
    }

    /* Hamburger toggle */
    .nav-toggle {
        position: relative;
        z-index: 1003;
    }

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

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* === HERO === */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-content { padding: 0 20px; }
    .hero-description br { display: none; }
    .hero-description { font-size: 1.05rem; line-height: 1.75; }
    .hero-time-bar { bottom: 70px; }
    .hero-scroll-hint { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }

    /* === SECTIONS — tighter padding === */
    .experience,
    .menu-section,
    .gallery-section,
    .review-section,
    .booking-section {
        padding: 70px 0;
    }
    .section-header { margin-bottom: 44px; }
    .container { padding: 0 20px; }

    /* === EXPERIENCE === */
    .exp-card-content {
        padding: 28px 22px;
    }
    .exp-card-content h3 { font-size: 1.35rem; }
    .exp-card-content p { font-size: 0.9rem; }
    .occasions-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 16px;
    }
    .occasions-content .btn { margin-left: 0; width: 100%; max-width: 260px; }

    /* === MENU TABS — horizontal scroll === */
    .menu-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        border-radius: var(--radius);
        padding: 4px;
        justify-content: flex-start;
        max-width: 100%;
        scrollbar-width: none;
        mask-image: linear-gradient(to right, transparent, black 5%, black 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 92%, transparent);
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item { padding: 14px 16px; }

    /* === GALLERY === */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 8px;
    }
    .gallery-tall { grid-row: span 2; }
    .gallery-wide { grid-column: span 2; }

    /* === REVIEW === */
    .review-left .section-title { text-align: center; }
    .review-desc { text-align: center; }
    .review-stars { justify-content: center; }
    .review-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* QR card — fit mobile viewport */
    .qr-card { padding: 24px; }
    .qr-code { width: 160px; height: 160px; }

    /* === BOOKING === */
    .booking-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .booking-info { padding-top: 0; text-align: center; }
    .booking-info .section-title { text-align: center; }
    .booking-features { align-items: center; }
    .booking-form-wrapper { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .booking-contact-cards { flex-direction: column; }
    .contact-card { justify-content: center; }
    .form-group textarea { min-height: 100px; }
    .form-group.full-width .btn { width: 100%; }

    /* iOS Safari: prevent auto-zoom on input focus */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
    }

    /* === MAP === */
    .map-info-card { padding: 28px; }

    /* === FOOTER === */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-social { justify-content: center; }
    .footer-nav ul { padding: 0; }
    /* Space for FAB buttons at bottom */
    .footer { padding-bottom: 80px; }

    /* === FAB Contact === */
    .fab-contact { bottom: 16px; right: 16px; }
    .fab-main { width: 50px; height: 50px; }
    .fab-option { padding: 8px 14px; font-size: 0.85rem; }

    /* === LIGHTBOX === */
    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 2rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lightbox-prev, .lightbox-next {
        padding: 12px 16px;
        min-width: 48px;
        min-height: 48px;
    }

    /* === BLOG — body images responsive === */
    .blog-full-content img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        margin: 12px 0;
    }
}

/* ============================================
   SMALL MOBILE — 480px and below
   ============================================ */
@media (max-width: 480px) {

    /* Sections — reduce padding further */
    .experience,
    .menu-section,
    .gallery-section,
    .review-section,
    .booking-section {
        padding: 50px 0;
    }
    .section-header { margin-bottom: 32px; }

    /* Hero adjustments */
    .hero-title-sub {
        letter-spacing: 4px;
        font-size: 0.82rem;
    }
    .hero-title-main { font-size: 2.6rem; }
    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
        max-width: 90%;
    }
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-time-bar { bottom: 50px; }

    /* Gallery — single column */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-tall, .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Experience */
    .exp-number { font-size: 2rem; }
    .exp-card-img { min-height: 220px; }
    .exp-card-content { padding: 24px 18px; }
    .exp-card-content h3 { font-size: 1.2rem; }

    /* Booking */
    .booking-form-wrapper { padding: 24px 16px; }
    .booking-desc { font-size: 0.9rem; }

    /* Contact cards — stack centered */
    .contact-card {
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Blog cards */
    .blog-card-content { padding: 18px; }
    .blog-card-content h2 { font-size: 1.1rem; }
    .blog-card-img { min-height: 180px; }

    /* Footer */
    .footer { padding: 48px 0 80px; }
    .footer-logo { font-size: 1.5rem; }

    /* Map — shorter on small screens */
    .map-embed { min-height: 280px; }

    /* Menu tabs mask — wider visible area */
    .menu-tabs {
        mask-image: linear-gradient(to right, transparent, black 8%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 85%, transparent);
    }

    /* Lightbox: buttons below image on small screens */
    .lightbox-img {
        max-width: 100%;
        max-height: 70vh;
    }
    .lightbox-prev, .lightbox-next {
        top: auto;
        bottom: 60px;
        transform: none;
    }
    .lightbox-prev { left: calc(50% - 70px); }
    .lightbox-next { right: auto; left: calc(50% + 20px); }

    /* Nav menu — tighter on small screens */
    .nav-menu { padding: 0 24px; gap: 6px; }
    .nav-link { font-size: 1.05rem; padding: 14px 20px; }
}

/* ============================================
   EXTRA SMALL — 360px and below
   ============================================ */
@media (max-width: 360px) {
    .booking-form-wrapper { padding: 20px 12px; }
    .hero-title-main { font-size: 2.2rem; }
    .hero-content { padding: 0 16px; }
    .container { padding: 0 14px; }
    .exp-card-content { padding: 20px 14px; }
    .nav-link { font-size: 1rem; padding: 14px 16px; }
    .form-group label { font-size: 0.78rem; }
}

/* ============================================
   LANDSCAPE on small phones
   ============================================ */
@media (max-width: 768px) and (max-height: 500px) {
    .hero { min-height: 100vh; }
    .hero-time-bar { display: none; }
    .hero-scroll-hint { display: none; }
    .map-embed { min-height: 200px; }
    .nav-menu { padding: 0 32px; gap: 4px; }
    .nav-link { padding: 10px 20px; font-size: 0.95rem; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-slide.active { animation: none; }
    .particle { display: none; }
    .fab-main { animation: none; }
    .scroll-arrow, .mouse-wheel { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
