:root {
    --nsy-black: #111111;
    --nsy-white: #ffffff;
    --nsy-grey-light: #f5f5f5;
    --nsy-grey-mid: #e0e0e0;
    --nsy-grey-text: #666666;
}

body {
    background-color: var(--nsy-white);
    font-family: 'DM Sans', sans-serif;
    color: var(--nsy-black);
}

.nsy-fullwidth {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* ── Hero ─────────────────────────────────────── */
.nsy-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--nsy-black);
}

.nsy-hero-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.nsy-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
}

.nsy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.nsy-hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    animation: fadeUp 0.7s 0.15s ease both;
}

.nsy-hero-meta {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.25s ease both;
}

.nsy-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── Section base ─────────────────────────────── */
.nsy-section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nsy-grey-text);
    margin-bottom: 10px;
}

.nsy-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

/* ── Schedule ─────────────────────────────────── */
.nsy-schedule {
    background: var(--nsy-black);
    color: var(--nsy-white);
    padding: 80px 0;
}

.nsy-schedule .nsy-section-title { color: var(--nsy-white); }
.nsy-schedule .nsy-section-label { color: rgba(255,255,255,0.4); }

.nsy-schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nsy-schedule-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.nsy-schedule-row:hover { background: rgba(255,255,255,0.09); }

.nsy-schedule-date {
    padding: 18px 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
}

.nsy-schedule-event-wrap {
    display: flex;
    flex-direction: column;
}

.nsy-schedule-event {
    padding: 18px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.nsy-schedule-extra {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 0 24px;
    padding: 10px 0 14px;
}

/* Special event row */
/* Special event row */
.nsy-schedule-row.special {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.35);
    border-left: 4px solid #ffffff;
    box-shadow: 0 0 24px rgba(255,255,255,0.04);
}

.nsy-schedule-row.special:hover {
    background: rgba(255,255,255,0.1);
}

.nsy-schedule-row.special .nsy-schedule-date {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.nsy-special-header {
    padding: 18px 24px 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nsy-special-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.nsy-special-badge {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    padding: 3px 10px;
    white-space: nowrap;
}

.nsy-special-detail {
    margin: 4px 24px 16px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid rgba(255,255,255,0.2);
}

/* ── Feature rows ─────────────────────────────── */
.nsy-feature {
    padding: 80px 0;
    border-top: 1px solid var(--nsy-grey-mid);
}

.nsy-feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.nsy-feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
}

.nsy-feature-body p {
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.75;
    color: #444;
    margin-bottom: 32px;
}

.nsy-btn {
    display: inline-block;
    padding: 13px 36px;
    background: var(--nsy-black);
    color: var(--nsy-white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--nsy-black);
    transition: background 0.2s, color 0.2s;
    width: fit-content;
}

.nsy-btn:hover {
    background: transparent;
    color: var(--nsy-black);
    text-decoration: none;
}

/* ── Verse block ──────────────────────────────── */
.nsy-verse {
    background: var(--nsy-grey-light);
    border-top: 1px solid var(--nsy-grey-mid);
    border-bottom: 1px solid var(--nsy-grey-mid);
    padding: 80px 24px;
    text-align: center;
}

.nsy-verse-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
    max-width: 780px;
    margin: 0 auto 16px;
}

.nsy-verse-ref {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nsy-grey-text);
}

/* ── Animations ───────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nsy-feature-body { padding: 32px 16px; }

    /* The date cell needs most of its width for text — with the desktop
       padding + letter-spacing, special-event ranges ("OCT 7 – OCT 9")
       wrap into a cramped mess. */
    .nsy-schedule-row { grid-template-columns: 96px 1fr; }

    .nsy-schedule-date {
        padding: 16px 10px;
        padding-top: 20px;
        letter-spacing: 0.08em;
    }

    .nsy-schedule-footer {
        gap: 20px 32px;
    }
}

/* ── Schedule footer ──────────────────────────── */
.nsy-schedule-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.nsy-schedule-footer-item {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.nsy-schedule-footer-item strong {
    display: block;
    color: rgba(255,255,255,0.85);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    font-weight: 400;
}

/* ── Mobile centering ─────────────────────────────
   On phones all front-end content is centered. Kept after the
   schedule-footer base rules so these win on source order. */
@media (max-width: 768px) {
    .nsy-section-label,
    .nsy-section-title {
        text-align: center;
    }

    .nsy-schedule,
    .nsy-feature {
        text-align: center;
    }

    .nsy-feature-body {
        align-items: center;
    }

    .nsy-schedule-date {
        justify-content: center;
    }

    .nsy-special-header {
        justify-content: center;
    }

    .nsy-schedule-footer {
        justify-content: center;
    }
}