/* ---------------------------------------------------------------------------
   dafinarootsband.com - shared stylesheet for / and /press/
   Paths here are relative to this file, so assets resolve as ../images/...
   --------------------------------------------------------------------------- */

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

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #faf8f5;
    }

    /* Header */
    header {
        background: linear-gradient(135deg, #4b2d0c 0%, #6b4423 100%);
        color: #fdd835;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    nav a {
        color: #fdd835;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    nav a:hover {
        background: rgba(253, 216, 53, 0.2);
        transform: translateY(-2px);
    }

    /* Mobile menu */
    .mobile-menu {
        display: none;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu span {
        width: 25px;
        height: 3px;
        background: #fdd835;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        margin-top: 80px;
        height: 70vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(75, 45, 12, 0.3), rgba(107, 68, 35, 0.3));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        color: white;
        max-width: 800px;
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 30px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        text-align: center;
    }

    .btn-primary {
        background: #fdd835;
        color: #4b2d0c;
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid #fdd835;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section Styling */
    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: #4b2d0c;
        position: relative;
    }

    .section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #fdd835, #964b00);
        border-radius: 2px;
    }

    /* Music Section */
    .music-section {
        background: linear-gradient(135deg, #4b2d0c 0%, #6b4423 100%);
        color: white;
    }

    .music-section h2 {
        color: #fdd835;
    }

    .album-showcase {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        align-items: center;
        margin-bottom: 3rem;
    }

    .album-art {
        text-align: center;
    }

    .album-cover {
        width: 250px;
        height: 250px;
        border-radius: 15px;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        overflow: hidden;
    }

    .album-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    .album-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #fdd835;
    }

    .album-info p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .streaming-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .streaming-btn {
        background: #fdd835;
        color: #4b2d0c;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .streaming-btn:hover {
        background: white;
        transform: translateY(-2px);
    }

    /* Band Members Section */
    .band-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .member-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .member-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .member-image {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .member-content {
        padding: 2rem;
    }

    .member-content h3 {
        font-size: 1.5rem;
        color: #4b2d0c;
        margin-bottom: 0.5rem;
    }

    .member-content .role {
        color: #964b00;
        font-style: italic;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .member-content p {
        color: #666;
        line-height: 1.6;
    }

    /* Events Section */
    .events-section {
        background: #f9f7f4;
    }

    .section-intro {
        max-width: 820px;
        margin: -1.5rem auto 2.5rem;
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.8;
        color: #666;
    }

    .about-copy {
        max-width: 820px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.9;
        color: #555;
    }

    .about-copy p + p {
        margin-top: 1.5rem;
    }

    /* Mailing list */
    .newsletter-section {
        background: linear-gradient(135deg, #4b2d0c 0%, #6b4423 100%);
        color: #fff;
        padding: 3.5rem 0;
    }

    .newsletter-inner {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }

    .newsletter-inner h2 {
        color: #fdd835;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .newsletter-inner h2::after { display: none; }

    .newsletter-inner p.newsletter-intro {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
        opacity: 0.92;
    }

    .newsletter-form {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        align-items: flex-end;
    }

    .newsletter-field {
        flex: 1 1 220px;
        text-align: left;
    }

    .newsletter-field label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: #fdd835;
        margin-bottom: 0.35rem;
        letter-spacing: 0.3px;
    }

    .newsletter-field input {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid rgba(253, 216, 53, 0.35);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        font-family: inherit;
        color: #333;
    }

    .newsletter-field input:focus {
        outline: none;
        border-color: #fdd835;
        background: #fff;
    }

    .newsletter-captcha { flex: 0 1 190px; }

    .newsletter-form button {
        flex: 0 0 auto;
        background: #fdd835;
        color: #4b2d0c;
        border: none;
        padding: 0.78rem 2rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover:not(:disabled) {
        background: #fff;
        transform: translateY(-2px);
    }

    .newsletter-form button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Honeypot: off-screen for bots, invisible and unreachable for humans. */
    .newsletter-hp {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    #newsletter-status {
        margin-top: 1.1rem;
        min-height: 1.4rem;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .newsletter-privacy {
        margin-top: 0.9rem;
        font-size: 0.82rem;
        opacity: 0.7;
    }

    @media (max-width: 600px) {
        .newsletter-form { flex-direction: column; align-items: stretch; }
        .newsletter-form button { width: 100%; }
    }

    .residency-note {
        background: #fff8e1;
        border-left: 4px solid #fdd835;
        padding: 0.8rem 1rem;
        border-radius: 0 8px 8px 0;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        color: #5d4037;
    }

    /* Media / Press Kit Section */
    .media-section {
        background: #f9f7f4;
    }

    .media-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        color: #666;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .media-category {
        margin-bottom: 2.5rem;
    }

    .media-category:last-child {
        margin-bottom: 0;
    }

    .media-category h3 {
        color: #4b2d0c;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e0d6cc;
    }

    .media-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .media-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }

    .media-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .media-download {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: linear-gradient(135deg, #4b2d0c, #6b4423);
        color: #fdd835;
        padding: 0.4rem 0.9rem;
        border-radius: 6px;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .media-download:hover {
        background: linear-gradient(135deg, #6b4423, #964b00);
        transform: translateY(-1px);
        color: #fdd835;
    }

    /* Contact Form */
    .contact-form-wrap {
        max-width: 640px;
        margin: 0 auto;
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }

    .contact-form-wrap p.form-intro {
        text-align: center;
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #4b2d0c;
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.7rem 1rem;
        border: 2px solid #e0d6cc;
        border-radius: 8px;
        font-size: 0.95rem;
        font-family: inherit;
        color: #333;
        background: #faf8f5;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #964b00;
        background: white;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-submit {
        text-align: center;
        margin-top: 0.5rem;
    }

    .form-submit button {
        background: linear-gradient(135deg, #4b2d0c, #6b4423);
        color: #fdd835;
        border: none;
        padding: 0.85rem 2.5rem;
        border-radius: 30px;
        font-size: 1.05rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .form-submit button:hover {
        background: linear-gradient(135deg, #6b4423, #964b00);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(75, 45, 12, 0.3);
    }

    .form-alt {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 0.9rem;
        color: #888;
    }

    .form-alt a {
        color: #964b00;
        font-weight: 600;
    }

    /* Social Links */
    .social-section {
        text-align: center;
        padding: 3rem 0;
        background: linear-gradient(135deg, #6b4423, #4b2d0c);
    }

    .social-section h2 {
        color: #fdd835;
        margin-bottom: 2rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(253, 216, 53, 0.1);
        padding: 1rem 2rem;
        border-radius: 50px;
        color: #fdd835;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid rgba(253, 216, 53, 0.3);
    }

    .social-link:hover {
        background: #fdd835;
        color: #4b2d0c;
        transform: translateY(-3px);
    }

    .social-icon {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        overflow: hidden;
    }

    /* Videos Section */
    .video-container {
        max-width: 800px;
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .video-container iframe {
        width: 100%;
        height: 450px;
        border: none;
    }

    /* Footer */
    footer {
        background: #4b2d0c;
        color: #fdd835;
        text-align: center;
        padding: 3rem 0;
    }

    footer a {
        color: #fdd835;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .header-content {
            padding: 0 1rem;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .album-showcase {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .album-cover {
            width: 200px;
            height: 200px;
        }

        .media-grid {
            grid-template-columns: 1fr 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-form-wrap {
            padding: 1.5rem;
        }

        .social-links {
            flex-direction: column;
            align-items: center;
        }

        .band-grid {
            grid-template-columns: 1fr;
        }

        .member-image {
            object-position: center 20%;
        }

        .container {
            padding: 0 1rem;
        }

        .section {
            padding: 2rem 0;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.5rem;
        }

        .hero {
            height: 60vh;
        }

        .album-cover {
            width: 150px;
            height: 150px;
        }

        .member-image {
            object-position: center 15%;
        }

        .video-container iframe {
            height: 250px;
        }

        .media-grid {
            grid-template-columns: 1fr;
        }
    }


/* ===========================================================================
   Accessibility primitives
   =========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 2000;
    background: #fdd835;
    color: #4b2d0c;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

/* A single visible focus treatment everywhere. :focus-visible keeps it off
   mouse clicks but guarantees it for keyboard and switch users. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #fdd835;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Dark-on-light sections need a darker ring to stay visible. */
.section:not(.music-section):not(.newsletter-section) a:focus-visible,
.section:not(.music-section):not(.newsletter-section) button:focus-visible,
.section:not(.music-section):not(.newsletter-section) summary:focus-visible {
    outline-color: #6b4423;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================================================================
   Icons
   =========================================================================== */

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    vertical-align: -0.18em;
}

.icon-sm { width: 1em; height: 1em; }

/* ===========================================================================
   Header, nav, scroll-spy
   =========================================================================== */

header {
    position: sticky;
}

.wordmark {
    font-size: 1.8rem;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    line-height: 1;
}

nav ul {
    gap: 0.35rem;
    align-items: center;
}

nav a {
    padding: 0.55rem 0.85rem;
    display: block;
    min-height: 44px;
    line-height: 1.7;
    white-space: nowrap;
}

/* Scroll-spy: JS sets aria-current on the link for the section in view. */
#navMenu a[aria-current] {
    background: rgba(253, 216, 53, 0.22);
    box-shadow: inset 0 -2px 0 #fdd835;
}

.nav-book {
    background: #fdd835;
    color: #4b2d0c !important;
    font-weight: bold;
}

.nav-book:hover,
.nav-book:focus-visible {
    background: #fff;
    color: #4b2d0c !important;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-bars span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fdd835;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu[aria-expanded="true"] .mobile-menu-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu[aria-expanded="true"] .mobile-menu-bars span:nth-child(2) {
    opacity: 0;
}

.mobile-menu[aria-expanded="true"] .mobile-menu-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================================================
   Hero
   =========================================================================== */

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    background: linear-gradient(rgba(75, 45, 12, 0.55), rgba(107, 68, 35, 0.55));
}

/* ===========================================================================
   Music section extras
   =========================================================================== */

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
}

.social-link .icon.social-icon {
    width: 24px;
    height: 24px;
}

.social-link {
    min-height: 44px;
}

/* ===========================================================================
   Events - CSS grid list
   =========================================================================== */

.event-heading {
    font-size: 1.35rem;
    color: #4b2d0c;
    margin: 0 0 1rem;
    letter-spacing: 0.2px;
}

.event-heading--past {
    margin-top: 2.5rem;
    color: #7a6a5c;
    font-size: 1.15rem;
}

.event-grid {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    border-top: 1px solid #e6ddd3;
}

.event-row {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr) auto auto;
    gap: 0 1.25rem;
    align-items: center;
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid #e6ddd3;
    background: #fff;
    transition: background 0.2s ease;
}

.event-row:hover {
    background: #fffaf0;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    padding: 0.3rem 0;
    border-right: 2px solid #f0e6da;
}

.event-dow {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #87735b;
}

.event-day {
    font-size: 1.55rem;
    font-weight: bold;
    color: #4b2d0c;
}

.event-mon {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #964b00;
    font-weight: 600;
}

.event-year {
    font-size: 0.68rem;
    color: #82735f;
}

.event-where {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.event-venue a,
.event-venue span {
    color: #4b2d0c;
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
}

.event-venue a:hover {
    color: #964b00;
    text-decoration: underline;
}

.event-city {
    font-size: 0.85rem;
    color: #7a6753;
}

.event-note {
    font-size: 0.82rem;
    color: #7d6a4e;
    font-style: italic;
}

.event-time {
    font-size: 0.9rem;
    color: #5d4037;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.event-cta {
    display: flex;
    justify-content: flex-end;
}

.event-tickets {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #4b2d0c, #6b4423);
    color: #fdd835;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.event-tickets:hover {
    background: linear-gradient(135deg, #6b4423, #964b00);
    color: #fdd835;
}

.event-tickets--muted {
    background: none;
    border: 1.5px solid #d8cabb;
    color: #6b4423;
    font-weight: 600;
}

.event-tickets--muted:hover {
    background: #f5ece1;
    color: #4b2d0c;
}

.event-tickets--none {
    color: #7a6753;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

/* Featured / headlining variant */
.event-row--featured {
    background: linear-gradient(135deg, #fffdf5, #fff6d9);
    border-left: 4px solid #fdd835;
    padding-left: 1rem;
}

.event-row--featured:hover {
    background: linear-gradient(135deg, #fff6d9, #ffefc0);
}

.event-row--featured .event-day {
    color: #7a4a00;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-start;
    background: linear-gradient(135deg, #4b2d0c, #964b00);
    color: #fdd835;
    font-size: 0.62rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.15rem;
}

.event-empty {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    color: #6b5a48;
}

/* Disclosure for the remaining dates */
.event-more {
    background: #fff;
    border: 1px solid #e6ddd3;
    border-radius: 10px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.event-more > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    min-height: 44px;
    cursor: pointer;
    font-weight: 600;
    color: #4b2d0c;
    font-size: 0.95rem;
    list-style: none;
    user-select: none;
}

.event-more > summary::-webkit-details-marker { display: none; }

.event-more > summary:hover { background: #faf5ee; }

.summary-chevron {
    transition: transform 0.25s ease;
    color: #964b00;
}

.event-more[open] > summary .summary-chevron {
    transform: rotate(90deg);
}

.event-more .event-grid {
    border-top: 1px solid #e6ddd3;
    margin: 0;
}

.event-more .event-row:last-child { border-bottom: none; }

.event-more--past > summary { color: #7a6a5c; }

.event-grid--past .event-day,
.event-grid--past .event-venue a,
.event-grid--past .event-venue span {
    color: #7a6a5c;
}

.event-grid--past .event-row { background: #fdfcfa; }

@media (max-width: 720px) {
    .event-row {
        grid-template-columns: 3.9rem minmax(0, 1fr);
        gap: 0.35rem 1rem;
        padding: 0.9rem 0.5rem;
    }

    .event-date { grid-row: span 3; align-self: start; }
    .event-time { grid-column: 2; }
    .event-cta { grid-column: 2; justify-content: flex-start; }
}

/* ===========================================================================
   Press teaser (homepage)
   =========================================================================== */

.press-teaser-section {
    background: #f9f7f4;
    text-align: center;
}

.press-teaser {
    max-width: 640px;
    margin: 0 auto 1.75rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #666;
}

.press-teaser-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================================================================
   Video facade (click to load YouTube)
   =========================================================================== */

.video-facade {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: none;
    background: #1a1008;
    cursor: pointer;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.video-facade:hover .video-poster,
.video-facade:focus-visible .video-poster {
    transform: scale(1.03);
    filter: brightness(1.08);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(75, 45, 12, 0.88);
    border: 3px solid #fdd835;
    color: #fdd835;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.video-play .icon-play {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.video-facade:hover .video-play,
.video-facade:focus-visible .video-play {
    background: #fdd835;
    color: #4b2d0c;
    transform: translate(-50%, -50%) scale(1.08);
}

.video-facade-hint {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #f5e9c8;
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
}

.video-container iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* ===========================================================================
   Press page
   =========================================================================== */

.press-page-header {
    background: linear-gradient(135deg, #4b2d0c 0%, #6b4423 100%);
    color: #fff;
    padding: 7rem 0 3rem;
    text-align: center;
}

.press-page-header h1 {
    color: #fdd835;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.press-page-header p {
    max-width: 620px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.75;
}

.presskit-btn {
    margin-top: 1.75rem;
}

.presskit-pending {
    max-width: 620px;
    margin: 1.75rem auto 0;
    padding: 0.9rem 1.2rem;
    background: rgba(253, 216, 53, 0.14);
    border: 1px solid rgba(253, 216, 53, 0.4);
    border-radius: 10px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.presskit-pending a { color: #fdd835; }

.media-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #4b2d0c;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0d6cc;
}

.media-note {
    color: #7a6753;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.media-grid {
    list-style: none;
    padding: 0;
}

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

.media-grid--print .media-img {
    aspect-ratio: 3 / 2;
}

.media-card-body {
    padding: 0.9rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.media-label {
    font-size: 0.9rem;
    color: #4b2d0c;
    font-weight: 600;
    min-width: 0;
}

.media-label small {
    display: block;
    font-weight: normal;
    color: #7a6753;
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.media-download {
    min-height: 44px;
    padding: 0.5rem 0.9rem;
}

.press-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    color: #964b00;
    font-weight: 600;
    text-decoration: none;
}

.press-back:hover { text-decoration: underline; }

/* ===========================================================================
   Mobile breakpoint moved to 720px
   =========================================================================== */

@media (max-width: 720px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4b2d0c;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.15rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    nav ul.show { display: flex; }

    nav a {
        border-radius: 8px;
        padding: 0.7rem 1rem;
    }

    .mobile-menu { display: inline-flex; }

    .header-content { position: relative; }

    .nav-book { margin-top: 0.35rem; text-align: center; }
}

/* Sticky header condenses once the page scrolls (class set by js/site.js). */
#site-header.is-scrolled {
    background: rgba(75, 45, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
