/* ===========================
   REBALANCE EXPERIENCE
   Design System & Styles
   Mobile-First Responsive
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    --teal: #1a8a7d;
    --teal-dark: #136b61;
    --teal-light: #e0f5f2;
    --gold: #e8a838;
    --gold-light: #fdf3e0;
    --coral: #c94a2a;
    --coral-light: #fde8e2;
    --sand: #faf6f0;
    --sand-dark: #f0e8da;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #868e96;
    --gray-800: #343a40;
    --gray-900: #212529;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 130px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--teal);
    background: var(--teal-light);
}

.nav-link--cta {
    background: var(--teal);
    color: var(--white) !important;
    font-weight: 600;
}

.nav-link--cta:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 138, 125, 0.65) 0%,
            rgba(19, 107, 97, 0.5) 40%,
            rgba(201, 74, 42, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 22px;
        opacity: 0.3;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--gray-900);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: #d49530;
    border-color: #d49530;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.3);
}

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

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

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

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

/* --- SECTION COMMON --- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- EVENTI (Prominent Section) --- */
.eventi {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.eventi::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 168, 56, 0.15);
}

.eventi::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.eventi .section-tag {
    color: var(--gold);
}

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

.eventi .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.eventi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.evento-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: cardIn 0.6s ease forwards;
}

.evento-card:nth-child(1) {
    animation-delay: 0.1s;
}

.evento-card:nth-child(2) {
    animation-delay: 0.2s;
}

.evento-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.evento-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.evento-card.next {
    background: rgba(232, 168, 56, 0.2);
    border-color: rgba(232, 168, 56, 0.4);
}

.evento-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--gray-900);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evento-date {
    flex-shrink: 0;
    text-align: center;
    color: var(--white);
    min-width: 70px;
}

.evento-date .day {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-display);
}

.evento-date .month {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: var(--gold);
}

.evento-info {
    flex: 1;
    color: var(--white);
}

.evento-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.evento-info .evento-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.evento-info .evento-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.evento-action {
    flex-shrink: 0;
}

.evento-action .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.eventi-cta {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.eventi-cta strong {
    color: var(--gold);
}

.eventi-cta .btn {
    margin-top: 16px;
}

/* --- CHI SIAMO --- */
.chi-siamo {
    padding: 80px 0;
    background: var(--sand);
}

.chi-siamo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.chi-siamo-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.chi-siamo-text .section-tag {
    display: block;
    margin-bottom: 8px;
}

.chi-siamo-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.chi-siamo-text p {
    margin-bottom: 16px;
    color: var(--gray-800);
    font-size: 1rem;
}

.quote {
    position: relative;
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--white);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--teal-dark);
    box-shadow: var(--shadow-sm);
}

.quote--large {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    border-left: none;
    border-bottom: 3px solid var(--gold);
    max-width: 700px;
    margin: 0 auto 32px;
    background: var(--sand);
}

/* --- COS'È --- */
.cosa {
    padding: 80px 0;
    background: var(--white);
}

.cosa-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.cosa-content p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.highlight-text {
    font-weight: 600;
    color: var(--teal) !important;
    font-size: 1.15rem !important;
    text-align: center;
    padding: 16px;
    background: var(--teal-light);
    border-radius: var(--radius-md);
    margin-top: 24px !important;
}

.cosa-nome {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--sand);
    border-radius: var(--radius-lg);
}

.cosa-nome h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.cosa-nome p {
    color: var(--gray-800);
    margin-bottom: 12px;
}

/* --- PERCORSO (Timeline) --- */
.percorso {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
}

.percorso-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.percorso-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal), var(--gold), var(--coral));
    border-radius: 2px;
}

.percorso-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.step-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--teal);
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.percorso-step[data-step="2"] .step-icon {
    border-color: #2da898;
}

.percorso-step[data-step="3"] .step-icon {
    border-color: var(--gold);
}

.percorso-step[data-step="4"] .step-icon {
    border-color: var(--coral);
}

.percorso-step[data-step="5"] .step-icon {
    border-color: #7c6bb5;
}

.step-content {
    flex: 1;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.step-lead {
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.step-content p:last-child {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --- PER CHI È --- */
.perchi {
    padding: 80px 0;
    background: var(--white);
}

.perchi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.perchi-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--sand);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
}

.perchi-card:hover {
    border-color: var(--teal-light);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.perchi-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.perchi-card p {
    font-size: 1rem;
    color: var(--gray-800);
}

/* --- BENEFICI --- */
.benefici {
    padding: 80px 0;
    background: var(--sand);
}

.benefici-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefici-col {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.benefici-col:hover {
    box-shadow: var(--shadow-md);
}

.benefici-col h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefici-col>p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.benefici-list {
    margin-bottom: 20px;
}

.benefici-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 0.95rem;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}

.benefici-list li:last-child {
    border-bottom: none;
}

.benefici-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--teal);
}

.benefici-note {
    font-style: italic;
    color: var(--gray-600);
    font-size: 0.9rem;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
}

/* --- HOTEL --- */
.hotel {
    padding: 80px 0;
    background: var(--white);
}

.hotel-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hotel-text .section-tag {
    display: block;
    margin-bottom: 8px;
}

.hotel-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.hotel-text p {
    margin-bottom: 16px;
    color: var(--gray-800);
}

.hotel-list {
    margin: 20px 0 28px;
}

.hotel-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--gray-800);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hotel-list li:last-child {
    border-bottom: none;
}

/* --- PRENOTA FORM --- */
.page-prenota .header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.prenota-section {
    padding: 140px 0 80px;
    background: var(--sand);
    min-height: calc(100vh - 100px);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.booking-form .form-group {
    margin-bottom: 24px;
}

.booking-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-light);
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 767px) {
    .form-container {
        padding: 32px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.btn--full {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 16px;
    font-size: 1.1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 16px;
}

/* --- FOOTER --- */
.footer {
    padding: 60px 0 24px;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 160px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gray-600);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ================================
   RESPONSIVE — TABLET (768px+)
   ================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .eventi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evento-card {
        flex-direction: column;
        text-align: center;
    }

    .evento-date {
        min-width: auto;
    }

    .evento-info .evento-meta {
        justify-content: center;
    }

    .chi-siamo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .perchi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefici-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ================================
   RESPONSIVE — DESKTOP (1024px+)
   ================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .eventi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .percorso-timeline::before {
        left: 28px;
    }

    section {
        padding: 100px 0;
    }

    .eventi {
        padding: 100px 0 80px;
    }
}

/* ================================
   RESPONSIVE — MOBILE NAV (<768px)
   ================================ */
@media (max-width: 767px) {
    .header-inner {
        height: 160px;
        position: relative;
        justify-content: flex-end;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .logo img {
        height: 160px;
    }

    .footer-logo {
        height: 120px;
        margin: 0 auto 16px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 32px 32px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav-link--cta {
        text-align: center;
        margin-top: 12px;
    }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Evento card on mobile */
    .evento-card {
        flex-direction: column;
        text-align: center;
    }

    .evento-date {
        min-width: auto;
    }

    .evento-info .evento-meta {
        justify-content: center;
    }

    .evento-action {
        width: 100%;
    }

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

    /* Hotel section padding */
    .hotel-inner {
        padding: 28px 20px;
    }
}

/* ================================
   ACCESSIBILITY & ANIMATIONS
   ================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}