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

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf8f5;
    color: #2c2c2c;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.decor {
    position: absolute;
    width: 104px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.decor-copa {
    top: 55%;
    right: 20%;
}

.decor-naranja {
    top: 40%;
    right: 10%;
    transform: translateY(-50%);
}

.decor-gilda {
    top: 35%;
    left: 10%;
    transform: translateY(-50%);
}

.decor-bola {
    top: 65%;
    left: 5%;
}

.decor-vaca {
    bottom: 10%;
    left: 25%;
    transform: translateX(-50%);
}

/* ========== HERO ========== */

.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf8f5;
    background-image: url('high.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
}

.hero-invertido {
    background-color: #731919;
    background-image: none;
}

.hero-invertido::before {
    opacity: 0.08;
}

.hero-invertido .hero-text p {
    color: #f5f0ea;
}

.hero-invertido .scroll-indicator {
    color: #D9B991;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-text p {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.5;
    color: #5a1b1c;
}

.hero-line {
    display: block;
}

.hero-line + .hero-line {
    margin-top: 0.8em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: #A66E4E;
    animation: bounce 2s infinite;
    opacity: 0.5;
    z-index: 1;
}

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

/* ========== INFO SECTION ========== */

.info-section {
    background-color: #faf8f5;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #D9B991;
    border-radius: 1px;
}

.info {
    max-width: 700px;
    margin: 0 auto;
}

.names {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(3rem, 7vw, 4.8rem);
    color: #731919;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
}

.names .y {
    font-weight: 400;
    color: #731919;
    font-size: 0.85em;
    padding: 0 0.15em;
}

.date {
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: #731919;
    margin-bottom: 0.2rem;
}

.date .num {
    font-weight: 600;
    color: #731919;
}

.place {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #731919;
}

/* ========== MENU SECTION ========== */

.menu-section {
    position: relative;
    background-color: #faf8f5;
    padding: 3rem 2rem 5rem;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    text-decoration: none;
    color: #731919;
    border: 1px solid rgba(166, 110, 78, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    backdrop-filter: blur(2px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 185, 145, 0.08), rgba(150, 45, 46, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 6px 24px rgba(115, 25, 25, 0.06);
    border-color: rgba(150, 45, 46, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-icon {
    width: 34px;
    height: 34px;
    color: #D9B991;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.menu-item:hover .menu-icon {
    color: #962D2E;
    transform: scale(1.1);
}

.menu-label {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.4;
    color: #2c2c2c;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.menu-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6 Q15 1 30 6 T58 6 T86 6 T114 6' stroke='%23962D2E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item:hover .menu-label {
    color: #731919;
}

.menu-item:hover .menu-label::after {
    width: 100%;
}

/* ========== SUBPAGES ========== */

.subpage {
    background-color: #faf8f5;
    min-height: 100vh;
}

.subpage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(166, 110, 78, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-link {
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: 1.1rem;
    color: #A66E4E;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.back-link:hover {
    color: #962D2E;
}

.subpage-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: #731919;
}

.subpage-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.placeholder {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(166, 110, 78, 0.1);
    border-radius: 16px;
}

.placeholder h2 {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 2.5rem;
    color: #962D2E;
    margin-bottom: 0.8rem;
}

.placeholder p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
}

/* ========== HERO SPLIT (GRAN DÍA) ========== */

.hero-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 3rem;
}

.hero-split-text {
    flex: 1;
    max-width: 500px;
}

.hero-split-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #731919;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-split-message {
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #2c2c2c;
    line-height: 1.6;
}

.hero-split-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-split-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(115, 25, 25, 0.1);
}

/* ========== ALOJAMIENTOS ========== */

.alojamientos-subtitle {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    color: #962D2E;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.alojamientos-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.alojamientos-codigo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(166, 110, 78, 0.15);
    border-radius: 12px;
}

.alojamientos-codigo-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alojamientos-codigo-valor {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: #731919;
    letter-spacing: 0.02em;
}

/* ========== CEREMONIA ========== */

.ceremonia-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
    text-align: center;
}

.ceremonia-image {
    margin-bottom: 2.5rem;
}

.ceremonia-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(115, 25, 25, 0.1);
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.ceremonia-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #731919;
    margin-bottom: 2rem;
}

.ceremonia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.ceremonia-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(166, 110, 78, 0.12);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ceremonia-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(115, 25, 25, 0.06);
    border-color: rgba(150, 45, 46, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.ceremonia-card-icon {
    width: 40px;
    height: 40px;
    color: #D9B991;
    margin: 0 auto 1rem;
    transition: color 0.3s ease;
}

.ceremonia-card:hover .ceremonia-card-icon {
    color: #962D2E;
}

.ceremonia-card-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: #731919;
    margin-bottom: 0.5rem;
}

.ceremonia-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #2c2c2c;
    line-height: 1.6;
}

.ceremonia-card-text strong {
    font-weight: 500;
    color: #962D2E;
}

.ceremonia-note {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* ========== CELEBRACIÓN ========== */

.celebracion-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
    text-align: center;
}

.celebracion-section::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #D9B991;
    border-radius: 1px;
    margin: 0 auto 3rem;
}

.celebracion-image {
    margin-bottom: 2.5rem;
}

.celebracion-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(115, 25, 25, 0.1);
}

.celebracion-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #731919;
    margin-bottom: 2rem;
}

.celebracion-card {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(166, 110, 78, 0.12);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.celebracion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(115, 25, 25, 0.06);
    border-color: rgba(150, 45, 46, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.celebracion-card-icon {
    width: 44px;
    height: 44px;
    color: #D9B991;
    margin: 0 auto 1rem;
    transition: color 0.3s ease;
}

.celebracion-card:hover .celebracion-card-icon {
    color: #962D2E;
}

.celebracion-card-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.7rem;
    color: #731919;
    margin-bottom: 0.6rem;
}

.celebracion-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #2c2c2c;
    line-height: 1.6;
}

.celebracion-note {
    display: block;
    margin-top: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #962D2E;
}

/* ========== UBICACIÓN (ALOJAMIENTOS) ========== */

.ubicacion-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 2rem 5rem;
    text-align: center;
}

/* ========== MAPA ========== */

.map-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(115, 25, 25, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ========== TRANSPORTE ========== */

.transporte-intro {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.transporte-image {
    margin: 1.5rem 0 2rem;
}

.transporte-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(115, 25, 25, 0.1);
}

.transporte-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    color: #731919;
    margin-bottom: 0.5rem;
}

.transporte-subtitle {
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #962D2E;
    margin-bottom: 0.8rem;
}

.transporte-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
}

.transporte-rutas {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.transporte-dropdown {
    border-bottom: 1px solid rgba(166, 110, 78, 0.15);
}

.transporte-dropdown:first-child {
    border-top: 1px solid rgba(166, 110, 78, 0.15);
}

.transporte-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c2c2c;
    user-select: none;
}

.transporte-dropdown-header::-webkit-details-marker {
    display: none;
}

.transporte-dropdown-arrow {
    font-size: 0.9rem;
    color: #A66E4E;
    transition: transform 0.3s ease;
}

.transporte-dropdown[open] .transporte-dropdown-arrow {
    transform: rotate(180deg);
}

.transporte-dropdown-body {
    padding: 0 1.5rem 1.2rem;
}

.transporte-parada {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.transporte-parada-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #962D2E;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}

.transporte-parada-label:first-of-type {
    margin-top: 0;
}

.transporte-horarios {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.transporte-horarios li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #2c2c2c;
    padding: 0.3rem 0;
}

.hora {
    font-weight: 500;
    color: #731919;
    display: inline-block;
    min-width: 4.5rem;
}

.transporte-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    text-align: center;
}

.transporte-info-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.6rem;
    color: #731919;
    margin-bottom: 0.5rem;
}

.transporte-info-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #2c2c2c;
    line-height: 1.7;
}

/* ========== FALLAS SECTION ========== */

.fallas-section .celebracion-section {
    padding-bottom: 1rem;
}

/* ========== HOTELES LIST ========== */

.hoteles-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(166, 110, 78, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(115, 25, 25, 0.06);
    border-color: rgba(150, 45, 46, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.hotel-card-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.7rem;
    color: #731919;
    margin-bottom: 0.6rem;
}

.hotel-card .alojamientos-desc {
    margin-bottom: 1rem;
}

.hotel-card .alojamientos-codigo {
    margin-top: 0;
}

.hotel-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #962D2E;
    text-decoration: none;
    border-bottom: 1px solid rgba(150, 45, 46, 0.3);
    transition: all 0.3s ease;
}

.hotel-link:hover {
    color: #731919;
    border-bottom-color: #731919;
}

/* ========== CONTACT NOTE ========== */

.contact-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    text-align: center;
}

.contact-section .celebracion-card {
    max-width: 100%;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .decor {
        width: 70px;
        opacity: 0.4;
    }

    .decor-copa {
        top: 60%;
        right: 12%;
    }

    .decor-bola {
        top: 56%;
        left: 8%;
    }

    .decor-gilda {
        top: 42%;
        left: 1%;
    }

    .decor-naranja {
        top: 30%;
        right: 1%;
    }

    .decor-vaca {
        bottom: 2%;
        left: 30%;
    }

    .hero {
        height: 75vh;
        min-height: 420px;
        padding: 1.2rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 2rem 0.5rem;
    }

    .hero-text p {
        font-size: clamp(1.7rem, 5.5vw, 2rem);
        line-height: 1.5;
    }

    .hero-line + .hero-line {
        margin-top: 1em;
    }

    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .info-section {
        padding: 2.5rem 1.5rem 2rem;
    }

    .names {
        font-size: clamp(2.8rem, 9vw, 3.5rem);
    }

    .date {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
    }

    .place {
        font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    }

    .menu-section {
        padding: 2rem 1.2rem 3.5rem;
    }

    .menu {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .menu-item {
        padding: 1.5rem 1rem;
        min-height: 140px;
        border-radius: 14px;
    }

    .menu-icon {
        width: 30px;
        height: 30px;
    }

    .menu-label {
        font-size: 1.2rem;
    }

    .subpage-header {
        padding: 1rem 1.5rem;
    }

    .subpage-content {
        padding: 2.5rem 1.5rem;
    }

    .placeholder {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }

    .placeholder h2 {
        font-size: 2rem;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: auto;
        gap: 2rem;
    }

    .hero-split-text {
        max-width: 100%;
    }

    .hero-split-image img {
        max-width: 100%;
    }

    .alojamientos-codigo {
        align-items: center;
        text-align: center;
    }

    .ceremonia-section {
        padding: 3rem 1.5rem;
    }

    .ceremonia-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .map-container iframe {
        height: 280px;
    }

    .celebracion-section {
        padding: 3rem 1.5rem;
    }

    .transporte-intro {
        padding: 2rem 1.5rem 0.5rem;
    }

    .transporte-rutas {
        padding: 1.5rem 1.5rem 2rem;
    }

    .transporte-dropdown-header {
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
    }

    .transporte-dropdown-body {
        padding: 0 1.2rem 1rem;
    }

    .celebracion-card {
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .decor {
        width: 30px;
        opacity: 0.1;
    }

    .decor {
        width: 55px;
        opacity: 0.35;
    }

    .decor-copa {
        top: 58%;
        right: 10%;
    }

    .decor-bola {
        top: 54%;
        left: 6%;
    }

    .decor-gilda {
        top: 40%;
        left: 1%;
    }

    .decor-naranja {
        top: 30%;
        right: 1%;
    }

    .decor-vaca {
        bottom: 1%;
        left: 30%;
    }

    .hero {
        height: 70vh;
        min-height: 360px;
        padding: 0.8rem;
    }

    .hero-text {
        padding: 1.5rem 0.3rem;
    }

    .hero-text p {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }

    .hero-line + .hero-line {
        margin-top: 0.9em;
    }

    .names {
        font-size: clamp(2.4rem, 10vw, 3rem);
    }

    .date {
        font-size: clamp(1.4rem, 5.5vw, 1.7rem);
    }

    .place {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .menu {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .menu-item {
        min-height: 120px;
        padding: 1rem 0.6rem;
    }

    .menu-icon {
        width: 26px;
        height: 26px;
    }

    .menu-label {
        font-size: 1.05rem;
    }
}
