.home-hero {
    --hero-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=80');
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(22, 16, 10, 0.75), rgba(176, 19, 42, 0.62)),
        var(--hero-image) center/cover no-repeat;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 13, 9, 0.66), rgba(0, 0, 0, 0.12));
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff5ea;
    max-width: 920px;
}

.hero-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(176, 19, 42, 0.26);
    border: 1px solid rgba(255, 244, 228, 0.35);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 14px 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5.2vw, 4.8rem);
    line-height: 1.08;
}

.home-hero h1 span {
    color: #ffd98a;
}

.home-hero p {
    margin: 14px auto 0;
    max-width: 720px;
    color: rgba(255, 245, 231, 0.86);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home-hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border-radius: 999px;
    border: 2px solid rgba(255, 244, 228, 0.45);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 5px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 244, 228, 0.7);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.6; }
    100% { transform: translateY(0); opacity: 1; }
}

.home-section {
    padding: clamp(68px, 8vh, 98px) 0;
}

.section-light {
    background: transparent;
}

.section-soft {
    background: linear-gradient(180deg, #fff7e7 0%, #fffaf2 100%);
    border-top: 1px solid rgba(24, 21, 19, 0.04);
    border-bottom: 1px solid rgba(24, 21, 19, 0.04);
}

.section-heading {
    margin-bottom: 28px;
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    margin: 8px 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 3.1rem);
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.event-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.09);
}

.event-image-wrap {
    aspect-ratio: 4 / 5;
    background: #fff1db;
}

.event-image-wrap img {
    height: 100%;
    object-fit: cover;
}

.event-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--red);
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.event-card-body {
    padding: 16px;
    display: grid;
    align-content: start;
    min-height: 205px;
}

.event-card-body h3 {
    margin: 0;
    font-size: 1.08rem;
}

.event-card-body p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.event-card-body i {
    color: var(--red);
    margin-right: 6px;
}

.event-card-body .btn {
    margin-top: 12px;
    width: 100%;
    align-self: end;
}

.event-inline-link {
    margin-top: 8px;
    display: inline-flex;
    color: var(--red);
    font-size: 0.82rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.highlight-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--red);
    background: #fff2d8;
}

.highlight-card h3 {
    margin: 0;
    font-size: 1rem;
}

.highlight-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border: 1px solid var(--line);
    background: #fff;
}

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

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

.gallery-cta {
    margin-top: 18px;
    text-align: center;
}

.category-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.category-strip span {
    border: 1px solid rgba(24, 21, 19, 0.16);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.77rem;
    letter-spacing: 0.04em;
}

.merch-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.merch-preview-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    position: relative;
}

.merch-preview-image {
    aspect-ratio: 1 / 1;
    background: #fff2dd;
}

.merch-preview-image img {
    height: 100%;
    object-fit: cover;
}

.merch-preview-body {
    padding: 15px;
    min-height: 156px;
    display: grid;
    align-content: start;
}

.merch-preview-card .quick-cart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(24, 21, 19, 0.14);
    border-radius: 50%;
    background: #fff;
    color: #2f2a26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.merch-preview-card .quick-cart-btn:hover {
    background: linear-gradient(90deg, var(--red), #d13a48);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

.merch-preview-card .discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: #fff;
    border-radius: 999px;
    font-size: 0.7rem;
    padding: 3px 8px;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 2;
}

.merch-preview-body h3 {
    margin: 0;
    font-size: 1.03rem;
}

.merch-preview-body p {
    color: var(--muted);
    margin: 7px 0 0;
    font-size: 0.93rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 20px;
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    margin: 0;
    color: var(--muted);
    font-style: italic;
}

.testimonial-card h4 {
    margin: 12px 0 0;
    font-size: 0.94rem;
}

.event-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1600;
    padding: 16px;
}

.event-modal.open {
    display: flex;
}

.event-modal-card {
    width: min(900px, 96vw);
    max-height: 90vh;
    overflow: auto;
    border-radius: 14px;
    background: #fff;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.event-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(24, 21, 19, 0.2);
    background: #fff;
    cursor: pointer;
    z-index: 1;
}

.event-modal-image-wrap {
    min-height: 360px;
    background: #fff1db;
}

.event-modal-image-wrap img {
    height: 100%;
    object-fit: cover;
}

.event-modal-content {
    padding: 24px;
}

.event-modal-content h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
}

.event-modal-content p {
    color: var(--muted);
}

.event-modal-content ul {
    padding-left: 18px;
    margin: 14px 0;
    display: grid;
    gap: 8px;
}

.event-modal-content li {
    color: var(--muted);
}

.empty-note {
    color: var(--muted);
    margin: 0;
}

@media (max-width: 1080px) {
    .events-grid,
    .merch-preview-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .event-modal-card {
        grid-template-columns: 1fr;
    }

    .event-modal-image-wrap {
        min-height: 260px;
    }
}

@media (max-width: 720px) {
    .home-hero {
    --hero-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=80');
        min-height: 82vh;
    }

    .events-grid,
    .merch-preview-grid,
    .gallery-grid,
    .testimonials-grid,
    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-hero-actions {
        width: 100%;
    }

    .home-hero-actions .btn {
        width: 100%;
    }

    .testimonials-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .event-card-body {
        min-height: 186px;
        padding: 12px;
    }

    .merch-preview-body {
        min-height: 138px;
        padding: 12px;
    }
}



