:root {
    --peach: #ff9a7b;
    --soft-peach: #fff5f0;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --border: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
}

/* Header */
.main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 8%; background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 1000;
}
.brand { font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; }
.main-nav a { text-decoration: none; color: var(--text-dark); font-size: 0.8rem; font-weight: 700; margin-left: 25px; }

/* Hero */
.events-hero {
    padding: 100px 8% 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--white), var(--soft-peach));
}
.eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; color: var(--peach); display: block; margin-bottom: 15px; }
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1; margin-bottom: 20px; }
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; color: var(--peach); }
.events-hero p { max-width: 600px; margin: 0 auto; color: var(--text-grey); font-size: 1.1rem; }

/* Event Strips - The "Anti-Clog" Layout */
.signature-events { padding: 40px 8%; }

.event-strip {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.event-strip.alternate { flex-direction: row-reverse; }

.event-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-strip:hover .event-image img { transform: scale(1.05); }

.event-content { flex: 1; }

.event-type { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; color: var(--peach); display: block; margin-bottom: 15px; }
.event-content h2 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.1; }
.event-meta { font-size: 0.8rem; font-weight: 800; color: var(--text-grey); margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; display: inline-block; }
.event-description { font-size: 1rem; color: var(--text-grey); line-height: 1.8; }

/* Weekly Rhythm Section */
.schedule-section {
    background: var(--black);
    color: var(--white);
    padding: 100px 8%;
}

.schedule-container { max-width: 1000px; margin: 0 auto; }
.schedule-header h3 { font-size: 0.7rem; letter-spacing: 4px; color: var(--peach); margin-bottom: 50px; text-align: center; }

.schedule-box { border-top: 1px solid rgba(255,255,255,0.1); }

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day { font-size: 0.7rem; font-weight: 800; opacity: 0.5; }
.item-details h4 { font-size: 1.2rem; margin-bottom: 5px; }
.item-details p { font-size: 0.9rem; opacity: 0.6; }
.time { font-size: 0.9rem; font-weight: 800; text-align: right; color: var(--peach); }

/* MOBILE (Un-clogged Fixes) */
@media (max-width: 968px) {
    .event-strip, .event-strip.alternate { flex-direction: column; gap: 30px; text-align: center; }
    
    .event-image {
        width: 100%;
        height: 300px; /* Force image to stay small on mobile */
    }

    .event-content h2 { font-size: 1.8rem; }
    .event-meta { display: block; }

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    .time { text-align: center; }
}

.event-footer { padding: 60px; text-align: center; font-size: 0.8rem; color: var(--text-grey); background: var(--white); }