body {
    background-color: #cfbfbf;
}

/* ---- Hero load animations ---- */
@keyframes schedule-img-focus {
    from { filter: blur(20px); opacity: 0.5; }
    to   { filter: blur(0);    opacity: 1; }
}

@keyframes schedule-title-fade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero ---- */
#schedule-hero {
    position: sticky;
    top: 0;
    z-index: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    min-height: 55vh;
}

#schedule-hero-img {
    width: 100%;
    min-height: 55vh;
    display: block;
    object-fit: cover;
    animation: schedule-img-focus 1.4s ease-out both;
}

#schedule-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

#schedule-hero-title {
    position: absolute;
    bottom: 35%;
    right: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    animation: schedule-title-fade 1.2s ease 0.6s both;
}

/* ---- Schedule Sections ---- */
.schedule-section {
    position: relative;
    z-index: 1;
    background-color: #cfbfbf;
    padding: 6rem 0 7rem;
    display: flex;
    justify-content: center;
}

.schedule-section + .schedule-section {
    padding-top: 0;
}

.schedule-wrapper {
    width: 65%;
    max-width: 900px;
}

/* ---- Season Title ---- */
.season-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #654242;
    margin: 0 0 2.5rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 0.5px solid rgba(101, 66, 66, 0.4);
}

/* ---- Performance Entries ---- */
.performance-list {
    display: flex;
    flex-direction: column;
}

.performance {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.85rem 0;
    border-bottom: 0.5px solid rgba(101, 66, 66, 0.2);
}

.performance-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.performance-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    letter-spacing: 0.04em;
    color: #2e1a1a;
    line-height: 1.1;
}

.performance-opera {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #654242;
}

.performance-company {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #654242;
    opacity: 0.75;
}

.performance-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #654242;
    padding-top: 0.6rem;
    white-space: nowrap;
    opacity: 0.65;
}

/* ---- Placeholder entries ---- */
.performance.placeholder .performance-role,
.performance.placeholder .performance-opera,
.performance.placeholder .performance-company,
.performance.placeholder .performance-date {
    color: rgba(101, 66, 66, 0.58);
}

.performance.placeholder .performance-date {
    color: rgba(101, 66, 66);
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    #schedule-hero-title {
        bottom: 2rem;
        right: 1.5rem;
    }
}
