:root {
    --color-bg: #FDFBF7;
    --color-surface: #F3EDE5;
    --color-surface-hover: #EAE2D8;
    --color-accent: #C49A6C;
    --color-accent-light: #D8B48E;
    --color-accent-soft: rgba(196, 154, 108, 0.1);
    --color-text: #2E2A26;
    --color-text-muted: #7D746B;
    --color-text-light: #A69C92;
    --color-rose: #C8A0A0;
    --color-sage: #9AAF96;
    --color-lavender: #A8A0B8;
    --color-border: rgba(196, 154, 108, 0.18);
    --color-white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(46, 42, 38, 0.06);
    --shadow-md: 0 8px 30px rgba(46, 42, 38, 0.08);
    --shadow-lg: 0 16px 50px rgba(46, 42, 38, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s;
}
nav.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}
.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.9rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.4s;
}
.logo span { color: var(--color-accent-light); }
nav.scrolled .logo { color: var(--color-text); }
nav.scrolled .logo span { color: var(--color-accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-accent-light); }
nav.scrolled .nav-links a { color: var(--color-text-muted); }
nav.scrolled .nav-links a:hover { color: var(--color-accent); }

.nav-flags { display: flex; gap: 0.5rem; margin-left: 1rem; }
.nav-flags img { height: 18px; opacity: 0.7; transition: opacity 0.3s; }
.nav-flags img:hover { opacity: 1; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--color-text); }

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(46,42,38,0.55) 0%, rgba(46,42,38,0.2) 50%, rgba(46,42,38,0.55) 100%),
        url('../images/1.jpg') center/cover no-repeat;
    filter: brightness(0.65) saturate(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease-out;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    color: var(--color-accent-light);
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.hero-hosts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-hosts img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-light);
}
.hero-hosts span {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
    background: #B68A5E;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 154, 108, 0.3);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-accent);
    color: var(--color-accent);
}
.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
}

/* SECTIONS */
section { padding: 7rem 4rem; }
.section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.about-text p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}
.about-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--color-accent);
    border-radius: var(--radius);
    opacity: 0.25;
    z-index: -1;
}

/* PLATFORMS */
.platforms {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}
.platform-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s;
    background: var(--color-white);
}
.platform-link:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}
.platform-link img { height: 76px; }
.platform-link span {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FEATURES */
.features-section { background: var(--color-surface); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}
.feature-card {
    padding: 2.5rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    background: var(--color-white);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-sage));
    transform: scaleX(0);
    transition: transform 0.6s;
    border-radius: var(--radius) var(--radius) 0 0;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    border-color: rgba(196, 154, 108, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}
.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* SATISFACTION */
.satisfaction-section { background: var(--color-surface); }
.satisfaction-header-block {
    text-align: center;
    margin-bottom: 3rem;
}
.satisfaction-score-big {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.2rem 2.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.satisfaction-score-big .score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-accent);
}
.satisfaction-score-big .score-label {
    text-align: left;
}
.satisfaction-score-big .score-label strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}
.satisfaction-score-big .score-label span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.satisfaction-grid {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
.satisfaction-item { margin-bottom: 1.5rem; }
.satisfaction-item:last-child { margin-bottom: 0; }
.satisfaction-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.satisfaction-header strong {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
}
.satisfaction-header span {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
}
.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: var(--color-surface);
    overflow: hidden;
    border-radius: 3px;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 0;
    border-radius: 3px;
}

/* REVIEWS */
.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.reviews-subtitle {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}
.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}
.review-author-info {
    flex: 1;
}
.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}
.review-meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 2px;
}
.review-score {
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    flex-shrink: 0;
}
.review-text {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}
.review-text::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent-light);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
}
.review-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.reviews-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews-nav button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 0.8rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-sm);
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46,42,38,0.4) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--radius-sm);
}
.gallery-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
    letter-spacing: 0.05em;
}

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(46, 42, 38, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1001;
}
.lightbox-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 1001;
}

/* CONTACT FORM */
.contact-section { background: var(--color-surface); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-text-light); }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.contact-info-side h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.contact-info-side p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.contact-info-side a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-side a:hover { color: #B68A5E; }
.contact-channels {
    list-style: none;
    margin-top: 2rem;
}
.contact-channels li {
    padding: 0.8rem 0;
    border-bottom: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.contact-channels li:last-child { border-bottom: none; }
.contact-channels li span { font-size: 1.2rem; }
.contact-channels li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* LOCATION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 3rem auto 0;
    align-items: center;
}
.location-info p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.location-details {
    list-style: none;
    margin: 2rem 0;
}
.location-details li {
    padding: 0.8rem 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1.5px solid var(--color-border);
}
.location-details li:last-child { border-bottom: none; }
.location-details li span:first-child { font-size: 1.2rem; }
.map-container {
    aspect-ratio: 1;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.85) brightness(1.02);
    transition: filter 0.5s;
}
.map-container:hover iframe {
    filter: saturate(1) brightness(1);
}

/* FOOTER */
footer {
    padding: 3rem 4rem;
    border-top: 1.5px solid var(--color-border);
    text-align: center;
    background: var(--color-bg);
}
footer p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .nav-links.open { display: flex; z-index: 101; }
    .nav-links.open a { color: var(--color-text) !important; }
    .nav-links a { font-size: 1.1rem; }
    .hamburger { display: flex; z-index: 102; }
    section { padding: 4rem 1.5rem; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .about-image::after { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .contact-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .platforms { flex-direction: column; }
    footer { padding: 2rem 1.5rem; }
    .review-card { flex: 0 0 290px; }
    .satisfaction-grid { padding: 1.5rem; }
    .contact-form { padding: 1.5rem; }
    .lightbox-arrow { width: 42px; height: 42px; font-size: 1.1rem; }
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.cf-turnstile { margin-top: 0.5rem; }

/* CALENDAR PAGE */
.calendar-hero {
    padding: 10rem 4rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}
.calendar-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--color-text);
    font-weight: 400;
    margin-bottom: 1rem;
}
.calendar-hero h1 em {
    font-family: 'Dancing Script', cursive;
    color: var(--color-accent);
    font-style: normal;
    font-weight: 700;
}
.calendar-hero p {
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 1.25rem;
    font-size: 1rem;
}
.calendar-hero .contact-quick {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}
.calendar-hero .contact-quick a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}
.calendar-hero .contact-quick a:hover { color: var(--color-text); }
.calendar-hero .contact-quick img { vertical-align: middle; height: 18px; }

.calendar-section {
    padding: 1rem 1.5rem 5rem;
}
#calendar-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 2.25rem 2rem;
}
#calendar-wrapper h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.9rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 0.4rem;
}
.calendar-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    user-select: none;
}
.cal-nav button {
    background: var(--color-surface);
    color: var(--color-accent);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-nav button:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.cal-nav .cal-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text);
    min-width: 220px;
    text-align: center;
    text-transform: capitalize;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.cal-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    text-transform: uppercase;
}
.cal-day {
    position: relative;
    min-height: 58px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.cal-day:not(.cal-day--empty):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.cal-day .day-num {
    font-size: 1.1rem;
    line-height: 1;
}
.cal-day .day-icon {
    font-size: 0.7rem;
    margin-top: 4px;
    opacity: 0.85;
}
.cal-day--empty { background: transparent; min-height: 0; }
.cal-day--available {
    background: rgba(110, 180, 90, 0.7);
    color: #1f4416;
    border: 1px solid rgba(110, 180, 90, 0.95);
}
.cal-day--available .day-icon::after { content: '\2713'; }
.cal-day--booked {
    background: rgba(225, 95, 95, 0.65);
    color: #6e1f1f;
    border: 1px solid rgba(225, 95, 95, 0.9);
}
.cal-day--booked .day-icon::after { content: '\2717'; }
.cal-day--past {
    background: var(--color-surface);
    color: var(--color-text-light);
}
.cal-day--past .day-num {
    text-decoration: line-through;
}
.cal-day--today {
    box-shadow: inset 0 0 0 2px var(--color-accent);
}
.cal-day--today .badge-today {
    position: absolute;
    top: 3px;
    right: 4px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 1.2;
}

.cal-legend {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; }
.cal-legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.cal-loading {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .calendar-hero { padding: 8rem 1.5rem 2rem; }
    .calendar-section { padding: 0.5rem 1rem 3rem; }
    #calendar-wrapper { padding: 1.5rem 1rem; }
    .cal-grid { gap: 4px; }
    .cal-day { min-height: 46px; font-size: 0.85rem; }
    .cal-day .day-num { font-size: 0.95rem; }
    .cal-nav .cal-title { font-size: 1.1rem; min-width: 160px; }
    .cal-day--today .badge-today { font-size: 0.5rem; padding: 1px 3px; }
}

/* MAPA PAGE */
.map-hero {
    padding: 9rem 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}
.map-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.map-hero h1 em {
    font-family: 'Dancing Script', cursive;
    color: var(--color-accent);
    font-style: normal;
    font-weight: 700;
}
.map-hero p {
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
}

.map-section {
    padding: 2rem 4rem 5rem;
}
.map-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}
.poi-list {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem 1.5rem;
}
.poi-category-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-accent);
    text-align: center;
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-border);
}
.poi-category-title:first-child { margin-top: 0; }
.poi-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.45;
}
.poi-item svg { flex-shrink: 0; margin-top: 1px; }
.poi-item span { flex: 1; }

.map-embed {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    overflow: hidden;
}
.map-embed iframe {
    width: 100%;
    height: 600px;
    border: 0;
    border-radius: var(--radius-sm);
    display: block;
}
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.map-link:hover { color: var(--color-text); }
.map-link img { height: 22px; }

@media (max-width: 900px) {
    .map-hero { padding: 7rem 1.5rem 1.5rem; }
    .map-section { padding: 1.5rem 1rem 3rem; }
    .map-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .map-embed iframe { height: 420px; }
    .poi-list { padding: 1.25rem 1rem; }
}
