/* ============================================
   ANDRÉS RESTAURANTE — STYLESHEET
   Palette: Burgundy (#7B2D3B) + Blush (#F4C2C2)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F4C2C2;
    --blush-light: #FDE8E8;
    --blush-dark: #E8A0A0;
    --cream: #FFF8F5;
    --cream-dark: #FDF0EB;
    --dark: #1A0A0E;
    --dark-soft: #2D1518;
    --text: #3D1F26;
    --text-light: #7A4A52;
    --text-muted: #A07078;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

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

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--burgundy);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ---------- SECTION TAG ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

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

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

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--burgundy);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.nav.scrolled .nav-logo-icon {
    background: var(--burgundy);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav.scrolled .nav-link {
    color: var(--text);
}

.nav-link:hover {
    color: var(--blush);
}

.nav.scrolled .nav-link:hover {
    color: var(--burgundy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blush);
    transition: width var(--transition);
}

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

.nav-link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--burgundy-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

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

.nav.scrolled .nav-toggle span {
    background: var(--burgundy);
}

.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);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    transition: color var(--transition);
}

.mobile-link:hover {
    color: var(--blush);
}

.mobile-link--cta {
    color: var(--blush);
    font-size: 1.4rem;
    margin-top: 8px;
}

.mobile-contact {
    margin-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 2;
}

.mobile-contact svg {
    vertical-align: middle;
    margin-right: 6px;
    opacity: 0.7;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    background: var(--burgundy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape--1 {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -200px;
    right: -100px;
}

.hero-shape--2 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    bottom: -100px;
    left: -100px;
}

.hero-shape--3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 40%;
    left: 35%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.05;
}

.hero-shape--4 {
    width: 120px;
    height: 120px;
    background: var(--blush);
    top: 20%;
    left: 20%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.06;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--blush);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
}

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

.hero-title-accent {
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--blush);
    opacity: 0.3;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-actions .btn--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn--ghost:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blush);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image Grid */
.hero-right {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-template-rows: auto auto;
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 59, 0.3), transparent);
    border-radius: inherit;
}

.hero-img--1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.hero-img--1 img {
    min-height: 520px;
}

.hero-img--2 {
    grid-column: 2;
}

.hero-img--2 img {
    min-height: 248px;
}

.hero-img--3 {
    grid-column: 2;
    grid-row: 2;
}

.hero-img--3 img {
    min-height: 248px;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.floating-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: var(--burgundy-dark);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.marquee-content span:first-child::before {
    content: '★';
    color: var(--blush);
    margin-right: 8px;
}

.marquee-content span:not(:first-child)::before {
    content: '★';
    color: var(--blush);
    margin-right: 8px;
    opacity: 0.5;
}

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

/* ---------- NOSOTROS ---------- */
.nosotros {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.nosotros-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--blush-light);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.5;
    pointer-events: none;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.nosotros-visual {
    position: relative;
}

.nosotros-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nosotros-img-main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.nosotros-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
}

.nosotros-img-accent img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.nosotros-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-lg);
}

.nosotros-exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blush);
    line-height: 1;
}

.nosotros-exp-text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.8;
    line-height: 1.4;
}

.nosotros-content {
    padding: 20px 0;
}

.nosotros-content .section-tag {
    margin-bottom: 16px;
}

.nosotros-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.nosotros-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.nosotros-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.nosotros-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.nosotros-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.nosotros-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- CARTA ---------- */
.carta {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.carta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.carta-shape {
    position: absolute;
    border-radius: 50%;
}

.carta-shape--1 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    opacity: 0.05;
    top: -100px;
    left: -100px;
}

.carta-shape--2 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    opacity: 0.05;
    bottom: -100px;
    right: -50px;
}

.carta-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.carta-header .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--blush);
}

.carta-header .section-title {
    margin-bottom: 16px;
}

.carta-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.carta-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.carta-cat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.carta-cat:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.carta-cat.active {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    font-weight: 600;
}

.carta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.carta-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.carta-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.carta-item-img {
    height: 200px;
    overflow: hidden;
}

.carta-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.carta-item-body {
    padding: 20px;
}

.carta-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.carta-item-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.carta-item-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blush);
    background: rgba(244, 194, 194, 0.15);
    padding: 4px 10px;
    border-radius: 50px;
}

.carta-item-body p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.carta-item.hidden {
    display: none;
}

.carta-note {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.carta-note p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.carta-note svg {
    color: var(--blush);
    opacity: 0.7;
}

/* ---------- GALERÍA ---------- */
.galeria {
    padding: 120px 0;
    background: var(--cream-dark);
    position: relative;
}

.galeria-header {
    text-align: center;
    margin-bottom: 60px;
}

.galeria-header .section-tag {
    background: var(--blush-light);
}

.galeria-header .section-title {
    color: var(--text);
}

.galeria-header .section-title em {
    color: var(--burgundy);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

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

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 45, 59, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--white);
}

.galeria-item:hover .galeria-item-overlay {
    opacity: 1;
}

.galeria-item--1 {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
}

.galeria-item--2 {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}

.galeria-item--3 {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.galeria-item--4 {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
}

.galeria-item--5 {
    grid-column: 4 / 9;
    grid-row: 2 / 3;
}

/* ---------- RESERVAS ---------- */
.reservas {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.reservas-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.reservas-shape {
    position: absolute;
    border-radius: 50%;
}

.reservas-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--blush);
    opacity: 0.06;
    top: -200px;
    right: -150px;
}

.reservas-shape--2 {
    width: 300px;
    height: 300px;
    background: var(--blush);
    opacity: 0.06;
    bottom: -100px;
    left: -100px;
}

.reservas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.reservas-info .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--blush);
}

.reservas-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.reservas-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.reservas-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reservas-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush);
}

.reservas-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.reservas-detail p,
.reservas-detail a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.reservas-detail a:hover {
    color: var(--blush);
}

/* Form */
.reservas-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.reservas-form h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--blush);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.reservas-form.hidden {
    display: none;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    background: var(--blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--burgundy);
}

.form-success h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ---------- MAPA ---------- */
.mapa {
    background: var(--cream-dark);
    padding: 80px 0;
}

.mapa-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--burgundy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mapa-info {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mapa-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

.mapa-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.mapa-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.mapa-info .btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.mapa-embed {
    min-height: 400px;
}

.mapa-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer-contact svg {
    margin-top: 3px;
    min-width: 16px;
    opacity: 0.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-right {
        max-width: 500px;
    }
    
    .hero-img--1 img {
        min-height: 400px;
    }
    
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nosotros-img-main img {
        height: 480px;
    }
    
    .reservas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .galeria-item--1,
    .galeria-item--2,
    .galeria-item--3,
    .galeria-item--4,
    .galeria-item--5 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .galeria-item {
        height: 260px;
    }
    
    .mapa-container {
        grid-template-columns: 1fr;
    }
    
    .mapa-info {
        padding: 40px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-img--1 {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    
    .hero-img--1 img {
        min-height: 280px;
    }
    
    .hero-img--2 img {
        min-height: 200px;
    }
    
    .hero-img--3 img {
        min-height: 200px;
    }
    
    .hero-floating-card {
        left: 16px;
        bottom: -10px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .nosotros {
        padding: 80px 0;
    }
    
    .nosotros-img-accent {
        right: 16px;
        bottom: -20px;
        width: 200px;
    }
    
    .nosotros-img-accent img {
        height: 240px;
    }
    
    .nosotros-experience {
        left: 16px;
        top: -16px;
        padding: 16px;
    }
    
    .nosotros-exp-number {
        font-size: 2rem;
    }
    
    .carta {
        padding: 80px 0;
    }
    
    .carta-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria {
        padding: 80px 0;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-item {
        height: 240px;
    }
    
    .reservas {
        padding: 80px 0;
    }
    
    .reservas-form-wrap {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mapa {
        padding: 40px 0;
    }
    
    .mapa-info {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .carta-categories {
        gap: 8px;
    }
    
    .carta-cat {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}
