/* ============================================================
   IN THE JUNGLE BY CHARLY — Landing Page Styles
   Paleta: negro profundo, verdes oscuros, dorados cálidos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */

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

:root {
    --black:       #0a0a0a;
    --deep:        #0d0d0d;
    --surface:     #131313;
    --surface-2:   #1a1a1a;
    --green-deep:  #0e2010;
    --green-dark:  #162b18;
    --green-mid:   #1f4022;
    --green-acc:   #2d5a2e;
    --green-light: #3d7a3f;
    --gold:        #c8a84b;
    --gold-light:  #e2c06a;
    --gold-pale:   #f0d88a;
    --white:       #ffffff;
    --off-white:   #f5f0e8;
    --text-muted:  #9a9a8a;
    --border:      rgba(200, 168, 75, 0.18);
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Utilities ─────────────────────────────────────────────── */

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

.gold-line {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.25rem 0;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.06);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(200, 168, 75, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

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

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(200, 168, 75, 0.25);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%) !important;
    color: var(--black) !important;
    box-shadow: 0 4px 20px rgba(200, 168, 75, 0.35);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--off-white);
    transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    border-top: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color var(--transition);
}

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

.nav-mobile .nav-cta-mobile {
    margin-top: 1.5rem;
    display: inline-flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    border-bottom: none;
}

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 18, 8, 0.88) 0%,
        rgba(14, 32, 16, 0.72) 40%,
        rgba(8, 12, 8, 0.80) 100%
    );
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(1.5rem, 6vw, 8rem);
    max-width: 820px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.75rem;
    max-width: 520px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ─── ABOUT STRIP ───────────────────────────────────────────── */

.about-strip {
    background: var(--green-deep);
    border-top: 1px solid rgba(200,168,75,0.12);
    border-bottom: 1px solid rgba(200,168,75,0.12);
    padding: 3.5rem clamp(1.5rem, 6vw, 8rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.about-item + .about-item {
    border-left: 1px solid rgba(200,168,75,0.15);
}

.about-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    filter: sepia(1) saturate(2) hue-rotate(10deg);
}

.about-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.about-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 220px;
}

/* ─── MENÚ ──────────────────────────────────────────────────── */

.section-menu {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 8rem);
    background: var(--black);
}

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

.section-header.centered {
    text-align: center;
}

.section-header.centered .gold-line {
    margin: 1.25rem auto;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

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

.menu-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.menu-card:first-child,
.menu-card:nth-child(4) {
    aspect-ratio: 4/5;
}

.menu-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-bg {
    transform: scale(1.08);
}

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 14, 6, 0.94) 0%,
        rgba(6, 14, 6, 0.5) 40%,
        rgba(6, 14, 6, 0.1) 100%
    );
    transition: background var(--transition);
}

.menu-card:hover .menu-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6, 14, 6, 0.97) 0%,
        rgba(6, 14, 6, 0.65) 50%,
        rgba(6, 14, 6, 0.2) 100%
    );
}

.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem;
    transform: translateY(4px);
    transition: transform var(--transition);
}

.menu-card:hover .menu-card-content {
    transform: translateY(0);
}

.menu-card-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.menu-card:hover .menu-card-tag {
    opacity: 1;
    transform: translateY(0);
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.menu-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.menu-card:hover .menu-card-desc {
    max-height: 80px;
    opacity: 1;
}

.menu-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.menu-card:hover .menu-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.menu-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    transition: transform 0.2s ease;
}

.menu-card:hover .menu-card-arrow svg {
    transform: translateX(3px);
}

/* ─── EVENTOS ───────────────────────────────────────────────── */

.section-eventos {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 8rem);
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.section-eventos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.eventos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eventos-image-wrap {
    position: relative;
}

.eventos-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.eventos-accent-img {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 48%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
    border: 3px solid var(--black);
}

.eventos-badge {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 1px;
}

.eventos-content {
    padding-right: 1rem;
}

.eventos-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.evento-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,168,75,0.1);
    border-radius: 2px;
    transition: border-color var(--transition), background var(--transition);
}

.evento-item:hover {
    border-color: rgba(200,168,75,0.3);
    background: rgba(200,168,75,0.04);
}

.evento-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.evento-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.evento-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.eventos-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── AUTOFACTURADOR ────────────────────────────────────────── */

.section-factura {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 8rem);
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.section-factura::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(30,60,32,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.factura-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.factura-info .section-subtitle {
    margin-top: 1rem;
}

.factura-steps {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.factura-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.factura-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 4px;
}

.factura-step p strong {
    color: var(--off-white);
    font-weight: 500;
}

/* Formulario */
.factura-form-wrap {
    background: var(--surface-2);
    border: 1px solid rgba(200,168,75,0.15);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
}

.factura-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    border-radius: 4px 4px 0 0;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.form-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--off-white);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(200,168,75,0.05);
}

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

select.form-input option {
    background: var(--surface-2);
    color: var(--off-white);
}

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

.btn-factura {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.78rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    text-align: center;
    line-height: 1.5;
}

/* ─── CONTACTO ──────────────────────────────────────────────── */

.section-contacto {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 8rem);
    background: var(--black);
    position: relative;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contacto-info {
    padding-right: 1rem;
}

.contacto-info .section-subtitle {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.contacto-datos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dato-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dato-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: var(--surface);
}

.dato-item h4 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.dato-item p, .dato-item a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    transition: color var(--transition);
}

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

.contacto-ctas {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mapa placeholder */
.contacto-map {
    position: relative;
}

.map-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid var(--border);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.6);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(14,32,16,0.5), rgba(10,10,10,0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-pin {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200,168,75,0.4);
}

.map-pin span {
    transform: rotate(45deg);
    font-size: 1.2rem;
}

.map-label {
    background: rgba(10,10,10,0.9);
    border: 1px solid var(--border);
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--off-white);
    text-align: center;
}

.horarios-card {
    margin-top: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.5rem;
}

.horarios-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.horario-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.8rem;
}

.horario-row:last-child {
    border-bottom: none;
}

.horario-row .dias {
    color: rgba(255,255,255,0.6);
}

.horario-row .horas {
    color: var(--gold);
    font-weight: 500;
}

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer {
    background: var(--deep);
    border-top: 1px solid rgba(200,168,75,0.12);
    padding: 3rem clamp(1.5rem, 6vw, 8rem) 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .brand-main {
    font-size: 1.4rem;
}

.footer-brand .brand-sub {
    margin-top: 4px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

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

.footer-col ul li a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--off-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--text-muted);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eventos-layout {
        gap: 2.5rem;
    }

    .factura-layout {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-item + .about-item {
        border-left: none;
        border-top: 1px solid rgba(200,168,75,0.15);
        padding-top: 1.5rem;
    }

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

    .menu-card {
        aspect-ratio: 16/9;
    }

    .menu-card-desc {
        max-height: 80px;
        opacity: 1;
    }

    .menu-card-tag {
        opacity: 1;
        transform: none;
    }

    .eventos-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .eventos-accent-img {
        width: 40%;
        right: -1rem;
        bottom: -1rem;
    }

    .factura-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

    .eventos-cta,
    .contacto-ctas {
        flex-direction: column;
    }

    .eventos-cta .btn,
    .contacto-ctas .btn {
        justify-content: center;
    }
}

/* ─── Animaciones de entrada ────────────────────────────────── */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }
