/* ============================================
   RESTAURANT ECLUSE 13 — DESIGN SYSTEM
   ============================================ */

:root {
    /* Colors */
    --red: #8B1A1A;
    --red-light: #B22222;
    --red-dark: #5C0E0E;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --cream: #F5F0EB;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --dark-lighter: #1A1A1A;
    --dark-border: #2A2A2A;
    --text: #E8E4E0;
    --text-muted: #9A9590;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --section-padding: clamp(5rem, 10vw, 8rem);
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--dark);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-red { color: var(--red-light); }

/* ============================================
   LOADER
   ============================================ */

#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--dark-border);
    border-top-color: var(--red-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: 0.2em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white) !important;
    display: flex;
    align-items: baseline;
    gap: 0.15em;
}

.logo-ecluse { color: var(--red-light); font-weight: 700; }
.logo-13 { color: var(--white); font-style: italic; font-size: 1.1em; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-light);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.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); }

/* ============================================
   HERO
   ============================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 26, 26, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(30, 20, 20, 0.8) 0%, transparent 70%),
        var(--dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--red-light);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-bull {
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-restaurant {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
}

.logo-name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-number {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-style: italic;
    color: var(--white);
    line-height: 1;
    margin-top: -0.2em;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-light), transparent);
    margin: 2rem auto;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--red-light);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: -1;
}

.hero-cta:hover { border-color: var(--red-light); }
.hero-cta:hover::before { transform: scaleX(1); }
.hero-cta svg { transition: transform 0.3s var(--ease-out); }
.hero-cta:hover svg { transform: translate(3px, -3px); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red-light), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section:not(.section-dark) {
    background: var(--dark-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.section-label.light { color: var(--gold); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.section-title.light { color: var(--white); }

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--red-light);
    margin: 1.5rem auto 0;
}

.section-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line {
    width: 40px;
    height: 1px;
    background: var(--red-light);
}

.signature-text {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--red-light);
    transition: height 0.4s var(--ease-out);
}

.feature-card:hover { border-color: var(--dark-border); transform: translateX(5px); }
.feature-card:hover::before { height: 100%; }

.feature-icon {
    color: var(--red-light);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   HOURS PARALLAX BANNER
   ============================================ */

.parallax-section {
    position: relative;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(135deg, rgba(139, 26, 26, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(139, 26, 26, 0.05) 0%, transparent 50%),
        var(--dark);
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><line x1="0" y1="60" x2="60" y2="0" stroke="rgba(139,26,26,0.06)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
}

.hours-grid {
    position: relative;
    z-index: 1;
}

.hours-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.hours-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hour-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
}

.hour-card:hover {
    border-color: var(--red);
    background: rgba(139, 26, 26, 0.05);
    transform: translateY(-5px);
}

.hour-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hour-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hour-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red-light);
    font-weight: 600;
}

.hour-value {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold);
}

.hour-card.closed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.closed-tag {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.menu-tab:hover {
    border-color: var(--red-light);
    color: var(--white);
}

.menu-tab.active {
    background: var(--red-light);
    border-color: var(--red-light);
    color: var(--white);
}

.menu-panel {
    display: none;
    animation: fadeInMenu 0.5s var(--ease-out);
}

.menu-panel.active { display: block; }

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-category {
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-out);
}

.menu-item:hover {
    padding-left: 0.5rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.menu-item-header.supplement {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.menu-item-name {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--dark-border);
    min-width: 20px;
    margin-bottom: 0.3em;
}

.menu-item-price {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gold);
    white-space: nowrap;
    font-weight: 600;
}

.menu-item-price em {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.2rem;
}

.menu-item-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    white-space: nowrap;
}

.menu-item-prices .menu-item-price em {
    margin-right: 0.5rem;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.3rem;
    padding-left: 0;
}

.menu-item-supplement {
    opacity: 0.7;
}

.menu-item-special {
    background: rgba(139, 26, 26, 0.08);
    border: 1px solid rgba(139, 26, 26, 0.2);
    border-radius: 4px;
    padding: 1.5rem !important;
    margin: 1rem 0;
}

.menu-special-badge {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.veg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-body);
    font-style: normal;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.weight {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.menu-suggestion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px dashed var(--dark-border);
    border-radius: 4px;
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

.suggestion-icon {
    color: var(--red-light);
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.menu-note .veg-badge {
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
}

/* ============================================
   DESSERTS SECTION
   ============================================ */

.desserts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.dessert-category-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--red-light);
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--dark-border);
}

.dessert-column .menu-item {
    padding: 0.8rem 0;
}

.dessert-column .menu-item-name {
    font-size: 1rem;
}

.dessert-column .menu-item-price {
    font-size: 1rem;
}

/* ============================================
   BCN BANNER
   ============================================ */

.bcn-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    position: relative;
    overflow: hidden;
}

.bcn-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.bcn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.bcn-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--white);
}

.bcn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.bcn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
}

.contact-card:hover {
    border-color: var(--red);
    transform: translateX(5px);
}

.contact-icon {
    color: var(--red-light);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--gold);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) invert(0.92) contrast(0.85);
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-border);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .logo-ecluse { font-size: 1.4rem; }
.footer-brand .logo-13 { font-size: 1.3rem; }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    color: var(--white);
    border-color: var(--red-light);
    background: rgba(139, 26, 26, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   BACK TO TOP
   ============================================ */

#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    border-color: var(--red-light);
    color: var(--white);
    background: rgba(139, 26, 26, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="scale-x"] {
    transform: scaleX(0);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scaleX(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-text { padding-right: 0; }

    .desserts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-card);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--dark-border);
    }

    .nav-links.open { right: 0; }

    .hours-cards {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: 0.3rem;
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .menu-item-name {
        white-space: normal;
        font-size: 1rem;
    }

    .menu-item-header {
        flex-wrap: wrap;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }

    .hero-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.75rem;
    }

    .menu-item-prices {
        flex-direction: row;
        gap: 0.8rem;
    }
}

/* ============================================
   ORIGIN BADGE
   ============================================ */

.origin-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 0.1em 0.45em;
    border-radius: 3px;
    letter-spacing: 0.05em;
    vertical-align: middle;
    margin-left: 0.3rem;
    font-style: normal;
}

/* ============================================
   VIANDES MATURÉES
   ============================================ */

.maturees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.maturee-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.maturee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.maturee-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.maturee-card:hover::before {
    transform: scaleX(1);
}

.maturee-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.maturee-breed {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
}

.maturee-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 1rem 0;
    padding: 0.8rem 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.maturee-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.maturee-price strong {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--red-light);
    font-weight: 600;
}

.maturee-price strong em {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.maturee-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .maturees-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 1.2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: var(--red);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--red-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--dark-border);
}

.cookie-btn-decline:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        padding: 1rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    #navbar, #loader, .hero-scroll, #backToTop, .bcn-banner, .cookie-banner { display: none; }
    body { background: white; color: #333; }
    .section-dark { background: white; }
    .section-title, .menu-item-name { color: #333; }
    .menu-item-price { color: #8B1A1A; }
}