/* ============================================
   MAKI MAGIC Sushi Rest & Bar
   Japanese Modern Luxury — Dark Premium Theme
   BlueWavePixel — 2026
   ============================================ */

/* --- Custom Font Stacks (no external imports) --- */
@font-face {
    font-family: 'MakiSerif';
    src: local('Didot'), local('Bodoni MT'), local('Noto Serif Display'),
         local('Playfair Display'), local('Georgia');
    font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --dark-mid: #222222;
    --dark-light: #2A2A2A;
    --dark-border: #333333;
    --dark-border-light: #444444;

    --red: #C41E3A;
    --red-dark: #A01830;
    --red-glow: rgba(196, 30, 58, 0.25);

    --gold: #D4AF37;
    --gold-light: #E0C45C;
    --gold-dark: #B8962E;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.08);

    --white: #F5F5F0;
    --white-pure: #FFFFFF;
    --grey: #999999;
    --grey-light: #CCCCCC;
    --grey-dark: #666666;

    --font-display: 'MakiSerif', 'Didot', 'Bodoni MT', 'Noto Serif Display', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-jp: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Noto Sans JP', sans-serif;

    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.12);
    --shadow-red: 0 4px 24px rgba(196, 30, 58, 0.2);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--red), var(--gold), var(--red)) 1;
}

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

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

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

::selection {
    background: var(--red);
    color: var(--white-pure);
}

/* --- Focus & Accessibility --- */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* --- Utility --- */
.gold { color: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 2rem;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 0.65rem 2rem;
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
}

.brand-jp {
    font-family: var(--font-jp);
    font-size: 1.4rem;
    color: var(--red);
    opacity: 0.9;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.brand-accent {
    color: var(--gold);
    font-weight: 400;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-link {
    color: var(--grey-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    position: relative;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--gold);
    background: var(--gold-muted);
}

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

/* Nav CTA */
.btn-nav-cta {
    padding: 0.55rem 1.4rem;
    font-size: 0.82rem;
    border-radius: 50px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.55rem 1.3rem;
    font-size: 0.82rem;
}

.btn-red {
    background: var(--red);
    color: var(--white-pure);
}

.btn-red:hover {
    background: var(--red-dark);
    color: var(--white-pure);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245, 245, 240, 0.3);
}

.btn-outline:hover {
    background: rgba(245, 245, 240, 0.08);
    color: var(--white);
    border-color: rgba(245, 245, 240, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white-pure);
}

.btn-whatsapp:hover {
    background: #1EBE5B;
    color: var(--white-pure);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1A1A1A 0%, #0D0D0D 40%, #1A0A0D 70%, #0D0D0D 100%);
    z-index: 0;
}

/* Japanese wave pattern overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c10 0 10-20 20-20s10 20 20 20 10-20 20-20 10 20 20 20' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Cpath d='M0 80c10 0 10-20 20-20s10 20 20 20 10-20 20-20 10 20 20 20' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Cpath d='M0 0c10 0 10-20 20-20s10 20 20 20 10-20 20-20 10 20 20 20' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(196, 30, 58, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 20s infinite ease-in-out;
}

.p1 { width: 4px; height: 4px; background: var(--gold); top: 20%; left: 15%; animation-delay: 0s; }
.p2 { width: 3px; height: 3px; background: var(--red); top: 60%; left: 80%; animation-delay: -4s; }
.p3 { width: 5px; height: 5px; background: var(--gold); top: 80%; left: 30%; animation-delay: -8s; }
.p4 { width: 3px; height: 3px; background: var(--gold); top: 30%; left: 70%; animation-delay: -12s; }
.p5 { width: 4px; height: 4px; background: var(--red); top: 50%; left: 50%; animation-delay: -16s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.3; }
    50% { transform: translate(-20px, -80px) scale(1); opacity: 0.1; }
    75% { transform: translate(40px, -40px) scale(1.3); opacity: 0.25; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.04);
}

.badge-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title-line {
    display: block;
    color: var(--white);
}

.hero-title-line.accent {
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 6px;
    font-size: 0.85em;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--grey-light);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 0.85rem;
    color: var(--grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-loc {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--grey);
    letter-spacing: 0.5px;
}

.hero-loc svg { color: var(--gold); opacity: 0.6; }

.hero-loc.coming-soon {
    color: var(--grey-dark);
    font-style: italic;
}

.hero-loc-sep {
    color: var(--dark-border);
    font-size: 0.6rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.section {
    padding: 6rem 2rem;
}

.section-dark { background: var(--dark); }
.section-black { background: var(--black); }

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey);
    margin-top: 0.8rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Chopstick divider */
.divider-chopsticks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.chop {
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 1px;
}

.chop-left {
    background: linear-gradient(to right, transparent, var(--gold));
}

.chop-right {
    background: linear-gradient(to left, transparent, var(--gold));
}

.chop-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

/* ============================================
   SOBRE NÓS
   ============================================ */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text p {
    color: var(--grey-light);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.85;
}

.sobre-text p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    float: left;
    line-height: 1;
    margin-right: 0.6rem;
    margin-top: 0.15rem;
}

.sobre-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--dark-mid);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1.3rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--red));
    opacity: 0;
    transition: opacity var(--transition);
}

.highlight-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

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

.highlight-icon {
    margin-bottom: 0.5rem;
}

.highlight-icon svg { color: var(--gold); margin: 0 auto; display: block; }

.highlight-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.highlight-label {
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sobre images */
.sobre-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 1rem;
    height: 100%;
    min-height: 500px;
}

.sobre-img-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
}

.sobre-img-small {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-mid) 50%, var(--dark) 100%);
    border: 1px solid var(--dark-border);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 150px;
}

.img-placeholder svg { color: var(--dark-border-light); }
.img-placeholder span {
    font-size: 0.75rem;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   EMENTA / MENU
   ============================================ */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-cat-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: 1px solid var(--dark-border);
    background: transparent;
    color: var(--grey);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
}

.menu-cat-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-muted);
}

.menu-cat-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.menu-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.menu-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.menu-card-img {
    aspect-ratio: 16/10;
    background: linear-gradient(145deg, #201818 0%, #150F0F 100%);
    position: relative;
    overflow: hidden;
}

.menu-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-placeholder svg { color: var(--dark-border); opacity: 0.5; }

.menu-card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--red);
    color: var(--white-pure);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-badge.best {
    background: var(--gold);
    color: var(--black);
}

.menu-card-body {
    padding: 1.3rem;
}

.menu-card-cat {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.menu-card-desc {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.55;
    margin-bottom: 1rem;
}

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

.menu-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.menu-card-order {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-order:hover {
    background: var(--red);
    color: var(--white-pure);
}

.menu-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--grey-dark);
    font-size: 0.82rem;
    font-style: italic;
}

/* ============================================
   LOCALIZAÇÕES
   ============================================ */
.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.loc-tab {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    border: 1px solid var(--dark-border);
    background: transparent;
    color: var(--grey);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.loc-tab:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.loc-tab.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.loc-panel {
    display: none;
}

.loc-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.loc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: var(--dark-mid);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 2rem;
}

.loc-card-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-height: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 300px;
}

.map-placeholder svg { color: var(--gold); opacity: 0.3; }
.map-placeholder span { color: var(--grey); font-size: 0.85rem; }
.map-placeholder small { color: var(--grey-dark); font-size: 0.75rem; }

.loc-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.loc-icon svg { color: var(--gold); }

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.loc-detail {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.loc-detail svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.loc-detail strong {
    display: block;
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.loc-detail p {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.5;
}

.loc-closed {
    color: var(--red) !important;
    font-size: 0.82rem !important;
    font-weight: 500;
}

.loc-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Coming soon card */
.loc-card-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    background: linear-gradient(145deg, var(--dark-mid) 0%, var(--dark) 100%);
}

.loc-soon-content {
    max-width: 400px;
    padding: 2rem;
}

.loc-soon-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-top: 1rem;
}

.loc-soon-content p {
    color: var(--grey);
    font-size: 0.95rem;
    margin-top: 0.8rem;
    line-height: 1.6;
}

.loc-soon-badge {
    display: inline-block;
    background: var(--gold-muted);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 0.6rem;
}

.loc-soon-icon svg { color: var(--gold); opacity: 0.2; }

.loc-soon-cta {
    font-size: 0.85rem !important;
    color: var(--grey-light) !important;
    margin-bottom: 1rem !important;
}

/* ============================================
   ENCOMENDAR
   ============================================ */
.order-options {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.order-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.order-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.order-card-featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.04) 0%, var(--dark) 100%);
}

.order-card-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1.2rem;
    border-radius: 0 0 8px 8px;
}

.order-card-icon {
    margin-bottom: 1rem;
}

.order-card-icon svg { color: var(--gold); margin: 0 auto; }

.order-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.order-card-highlight {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.order-card-sub {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.order-card p {
    color: var(--grey-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.order-card-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.order-card .call-cost {
    display: block;
    color: var(--grey-dark);
    font-size: 0.72rem;
    margin-top: 0.5rem;
}

.order-card-note {
    font-size: 0.8rem !important;
    color: var(--grey-dark) !important;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Platform buttons */
.order-platforms {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-border);
    background: var(--dark-light);
    text-decoration: none;
    transition: all var(--transition);
    min-width: 140px;
}

.platform-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    background: var(--dark-mid);
}

.platform-logo {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.platform-uber .platform-logo { color: #06C167; }
.platform-glovo .platform-logo { color: #FFC244; }

/* ============================================
   GALERIA
   ============================================ */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.galeria-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}

.galeria-item:hover {
    transform: scale(1.03);
    z-index: 2;
}

.galeria-item:hover .galeria-placeholder {
    border-color: var(--gold);
}

.galeria-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-mid) 50%, var(--dark) 100%);
    border: 1px solid var(--dark-border);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: border-color var(--transition);
}

.galeria-placeholder svg { color: var(--dark-border-light); opacity: 0.4; }
.galeria-placeholder span {
    font-size: 0.7rem;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTACTOS
   ============================================ */
.contactos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.contacto-card {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.contacto-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--red));
    opacity: 0;
    transition: opacity var(--transition);
}

.contacto-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

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

.contacto-icon {
    margin-bottom: 1rem;
}

.contacto-icon svg { color: var(--gold); margin: 0 auto; }

.contacto-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contacto-card p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.5;
}

.contacto-card a { color: var(--grey-light); }
.contacto-card a:hover { color: var(--gold); }

.contacto-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--grey-dark);
    margin-top: 0.2rem;
}

.call-cost {
    display: block;
    font-size: 0.7rem;
    color: var(--grey-dark);
    margin-top: 0.4rem;
    font-style: italic;
}

/* ============================================
   RESERVATION FORM
   ============================================ */
.reserva-section {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.reserva-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.reserva-desc {
    text-align: center;
    color: var(--grey);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--grey-light);
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-light);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xs);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* RGPD Checkbox */
.form-rgpd {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--grey);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--gold);
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.reserva-form .btn {
    align-self: center;
    margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .brand-jp {
    font-family: var(--font-jp);
    color: var(--red);
    font-size: 1.2rem;
}

.footer-brand-accent { color: var(--gold); font-weight: 400; }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 0.3rem;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 0.8rem;
    line-height: 1.6;
}

.footer-links-col h4,
.footer-social-col h4 {
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-col li a {
    color: var(--grey);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links-col li a:hover { color: var(--gold); }

.footer-links-col .call-cost {
    margin-top: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-muted);
}

/* Legal bar */
.footer-legal-bar {
    border-top: 1px solid var(--dark-border);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.78rem;
}

.footer-legal-links a {
    color: var(--grey);
    padding: 0.2rem 0.5rem;
    transition: color var(--transition-fast);
}

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

.footer-sep {
    color: var(--dark-border);
    font-size: 0.7rem;
}

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

.footer-company p {
    font-size: 0.78rem;
    color: var(--grey-dark);
    line-height: 1.5;
}

.footer-credit p {
    font-size: 0.78rem;
    color: var(--grey-dark);
    letter-spacing: 0.3px;
}

.footer-credit a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2s infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    border: 1px solid var(--dark-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   LEGAL MODALS
   ============================================ */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.legal-modal-content {
    position: relative;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.legal-modal-content::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: var(--dark-light);
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

.legal-modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--dark-light);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--grey);
    cursor: pointer;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
    z-index: 10;
}

.legal-modal-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.legal-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    padding-right: 3rem;
}

.legal-modal-content > p:first-of-type {
    margin-bottom: 1.5rem;
}

.legal-modal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 0.6rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--dark-border);
}

.legal-modal-content p {
    font-size: 0.87rem;
    color: var(--grey-light);
    line-height: 1.75;
    margin-bottom: 0.6rem;
}

.legal-modal-content ul {
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
}

.legal-modal-content li {
    font-size: 0.87rem;
    color: var(--grey-light);
    line-height: 1.65;
    margin-bottom: 0.3rem;
}

.legal-modal-content a {
    color: var(--gold);
}

.legal-modal-content em {
    color: var(--grey);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for grids */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }

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

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sobre-images {
        min-height: 350px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .galeria-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contactos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-card {
        grid-template-columns: 1fr;
    }

    .order-options {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 5;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--dark-border);
        border-radius: 0;
    }

    .nav-link:hover {
        background: transparent;
    }

    .btn-nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-title-line.accent {
        font-size: 0.8em;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-locations {
        flex-direction: column;
        gap: 0.4rem;
    }

    .hero-loc-sep { display: none; }

    .hero-scroll { display: none; }

    /* Sections */
    .section {
        padding: 4rem 1.5rem;
    }

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

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

    .menu-categories {
        gap: 0.3rem;
    }

    .menu-cat-btn {
        padding: 0.45rem 1rem;
        font-size: 0.78rem;
    }

    /* Gallery */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-large {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    /* Contactos */
    .contactos-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .reserva-section {
        padding: 2rem 1.5rem;
    }

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

    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-col ul {
        align-items: center;
    }

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

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-sep { display: none; }

    /* Locations */
    .locations-tabs {
        flex-wrap: wrap;
    }

    .loc-tab {
        font-size: 0.82rem;
        padding: 0.5rem 1.2rem;
    }

    .loc-actions {
        flex-direction: column;
    }

    .loc-actions .btn {
        width: 100%;
    }

    /* Orders */
    .order-card-actions {
        flex-direction: column;
    }

    .order-card-actions .btn {
        width: 100%;
    }

    .order-platforms {
        flex-direction: column;
    }

    /* Sobre */
    .sobre-images {
        min-height: 300px;
    }

    .sobre-highlights {
        grid-template-columns: 1fr 1fr;
    }

    /* Legal modal */
    .legal-modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

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

    .sobre-highlights {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .galeria-large {
        grid-column: span 2;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .navbar, .whatsapp-float, .hero-particles, .hero-scroll,
    .nav-toggle, .legal-modal { display: none !important; }

    body { background: white; color: black; border-top: none; }
    .section { padding: 2rem 0; }
}

/* ============================================
   ENHANCED PREMIUM TOUCHES
   ============================================ */

/* Subtle gold shimmer on section labels */
.section-label {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Improved card hover glow for menu items */
.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.menu-card:hover::after {
    opacity: 1;
}

/* Subtle text-shadow for hero heading */
.hero h1 .hero-title-line.accent {
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

/* Better transition on contact cards */
.contacto-card {
    backdrop-filter: blur(4px);
}

/* Smooth gradient transition between sections */
.section-dark + .section-black,
.section-black + .section-dark {
    margin-top: -1px;
}

/* --- Ladda Button Overrides --- */
.ladda-button {
    overflow: hidden;
    position: relative;
}

.ladda-button .ladda-spinner {
    position: absolute;
}

.ladda-button[data-loading] .ladda-label {
    opacity: 0.5;
}

.reserva-form .ladda-button {
    min-width: 200px;
}
