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

:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --charcoal-mid: #3a3a55;
    --coral: #E07A5F;
    --coral-dark: #c4624a;
    --coral-light: #f0a088;
    --cream: #f5f0eb;
    --cream-dark: #e8e0d8;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #7a7a9a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ── Section Shared ── */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--coral);
}

.section-header.center .section-tag::before {
    display: none;
}

.section-header.center .section-tag {
    padding-left: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.35);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ══════════════════════════════════════
   SIDE NAVIGATION
   ══════════════════════════════════════ */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0;
    overflow-y: auto;
}

.side-nav-inner {
    width: 100%;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
}

.side-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.side-logo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.side-logo-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-top: 2px;
}

.side-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.side-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.side-link.active {
    color: var(--coral);
}

.side-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.side-link:hover svg,
.side-link.active svg {
    opacity: 1;
}

.side-contact {
    margin-top: auto;
    padding-top: 24px;
}

.side-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.side-phone:hover {
    color: var(--coral);
}

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
.main-content {
    margin-left: 260px;
}

/* ══════════════════════════════════════
   MOBILE HEADER
   ══════════════════════════════════════ */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--charcoal);
    z-index: 999;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.97);
    z-index: 998;
    align-items: center;
    justify-content: center;
}

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

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

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
    transition: var(--transition);
}

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

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.82) 0%,
        rgba(26, 26, 46, 0.55) 50%,
        rgba(26, 26, 46, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-left: 80px;
    padding: 0 40px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(224, 122, 95, 0.4);
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

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

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about {
    background: var(--white);
}

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-img-secondary img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--coral);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.about-badge svg {
    opacity: 0.9;
}

.about-badge span {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.about-text .section-tag {
    padding-left: 0;
}

.about-text .section-tag::before {
    display: none;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   CARTA
   ══════════════════════════════════════ */
.carta {
    background: var(--cream);
}

.carta-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.carta-cat {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
}

.carta-cat:hover,
.carta-cat.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.carta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.carta-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.carta-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.carta-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}

.carta-item-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(224, 122, 95, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.carta-item-body p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   GALERIA
   ══════════════════════════════════════ */
.galeria {
    background: var(--white);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-item--wide {
    grid-column: span 7;
}

/* ══════════════════════════════════════
   RESERVAS
   ══════════════════════════════════════ */
.reservas {
    background: var(--charcoal);
    color: var(--white);
}

.reservas .section-tag {
    color: var(--coral-light);
}

.reservas .section-tag::before {
    background: var(--coral-light);
}

.reservas .section-title {
    color: var(--white);
}

.reservas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reserva-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.reserva-detail svg {
    flex-shrink: 0;
    color: var(--coral);
    margin-top: 2px;
}

.reserva-detail strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--white);
}

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

.reserva-detail a {
    color: var(--coral-light);
    transition: var(--transition);
}

.reserva-detail a:hover {
    color: var(--coral);
}

.reservas-form-wrap {
    background: var(--charcoal-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.reservas-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

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

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

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: rgba(224, 122, 95, 0.08);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: var(--white);
}

.form-success svg {
    color: #4ade80;
    margin: 0 auto 16px;
}

.form-success p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════ */
.contacto {
    background: var(--cream);
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contacto-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contacto-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.contacto-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.contacto-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.contacto-card a {
    color: var(--coral);
    transition: var(--transition);
}

.contacto-card a:hover {
    color: var(--coral-dark);
}

.mapa-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    max-width: 280px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1200px) {
    .side-nav {
        width: 220px;
    }
    .main-content {
        margin-left: 220px;
    }
    .hero-content {
        margin-left: 40px;
    }
    .about-grid {
        gap: 48px;
    }
    .reservas-wrapper {
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .side-nav {
        width: 200px;
    }
    .main-content {
        margin-left: 200px;
    }
    .hero-content {
        margin-left: 30px;
        padding: 0 24px;
    }
    .contacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .side-nav {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .side-nav.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .mobile-header {
        display: flex;
    }
    .hero-content {
        margin-left: 0;
        padding-top: 80px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }
    .reservas-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .reservas-form-wrap {
        padding: 32px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
    .gallery-item {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .carta-grid {
        grid-template-columns: 1fr;
    }
    .carta-categories {
        gap: 6px;
    }
    .carta-cat {
        padding: 8px 16px;
        font-size: 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: span 1;
    }
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--wide {
        grid-column: span 1;
    }
    .about-stats {
        gap: 24px;
    }
    .about-img-secondary img {
        width: 160px;
        height: 160px;
    }
}
