@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/fonts/oswald-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/oswald-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/oswald-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Permanent Marker';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/permanent-marker-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Cousine';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/cousine-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Cousine';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/cousine-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/roboto-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/fonts/roboto-700.woff2') format('woff2');
}

/*
 * FIT Band — styles.css
 * ---------------------------------------------------------------------------
 * BREAKPOINT GUIDE (desktop → mobile)
 *
 *   Default (no @media)     Desktop — full nav, 40px container padding, 115px logo
 *   max-width: 1149px        Tablet / mobile nav — hamburger, 60px header, 30px padding
 *   max-width: 1024px        Tablet — smaller titles, section bars, news cards
 *   max-width: 960px         Tablet — photo grid 4 columns
 *   max-width: 767px         Mobile (phone) — hero split boxes, stacked news, gallery masonry
 *   max-width: 480px         Small phone — gallery column tweak
 *   min-width: 768px         Desktop-only — home photos max-height cap
 *   min-width: 850px         Desktop-only — article 2-column layout (image + body)
 *
 * Rules ABOVE the "RESPONSIVE" section = base styles (desktop-first).
 * @media blocks below override those base rules per breakpoint.
 * ---------------------------------------------------------------------------
 */

:root {
    --accent: #ccda00;
    --accent-hover: #ccd900;
    --teal: #63818e;
    --black: #000000;
    --near-black: #121214;
    --white: #ffffff;
    --container: 1230px;
    --content: 1150px;
    --menu-letter: 3px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: var(--white);
    background-color: var(--black);
    background-image: var(--fit-page-bg, none);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    -webkit-font-smoothing: antialiased;
}

/* Live fit-band.nl: fixed viewport overlay paints side gutters at viewport scale */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 15;
    pointer-events: none;
    opacity: 1;
    will-change: scroll-position;
    perspective: 1000px;
    background-color: var(--black);
    background-image: var(--fit-page-bg, none);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
}

    #overlay .perspective {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 10;
        transform-origin: 35% center;
        pointer-events: none;
        background-color: transparent;
    }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .2s, background-color .2s;
}

    a:hover {
        color: var(--white);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Page shell — centered black column over room background */
.page-shell {
    position: relative;
    z-index: 20;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    opacity: 1;
    will-change: opacity;
}

body.page-transitioning {
    pointer-events: none;
    cursor: wait;
}

    body.page-transitioning .page-shell,
    body.page-transitioning #overlay .perspective {
        will-change: opacity;
    }

.site-container {
    max-width: var(--container);
    margin: 0 auto;
    background: var(--black);
    position: relative;
    padding: 0 40px;
}

/* ========== HEADER — desktop nav (hidden ≤1149px, see RESPONSIVE) ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: transparent;
    transition: background .4s ease, padding .4s ease;
}

    .site-header .menu-container {
        max-width: var(--container);
        margin: 0 auto;
        background: var(--black);
    }

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: var(--container);
    margin: 0 auto;
    background: var(--black);
    padding: 60px 10px;
    gap: 0;
    transition: padding .4s ease;
}

.header-spacer {
    height: 234px;
    background: var(--black);
    margin: 0 -40px;
}

.site-header.mini {
    background: var(--black);
}

    .site-header.mini .menu-container,
    .site-header.mini .menu-bar {
        background: var(--black);
        max-width: none;
    }

    .site-header.mini .menu-bar {
        padding: 8px 16px;
    }

        .site-header.mini .menu-bar .logo {
            padding: 0 20px;
        }

            .site-header.mini .menu-bar .logo img {
                height: 30px;
                max-height: 30px;
            }

.menu-bar a.nav-link.active {
    color: #ccd900;
}

.menu-bar a.nav-link {
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: var(--menu-letter);
    color: var(--white);
    padding: 15px 25px;
    line-height: 26px;
    text-align: center;
    white-space: nowrap;
}

    .menu-bar a.nav-link:hover {
        background: rgb(204, 217, 0);
        color: var(--white);
    }

.menu-bar .logo {
    padding: 0 30px;
    flex-shrink: 0;
    line-height: 0;
    letter-spacing: 3px;
    text-align: center;
}

    .menu-bar .logo img {
        height: 115px;
        width: auto;
        display: block;
    }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    padding: 0 10px;
    width: 40px;
    height: 60px;
    line-height: 59px;
}

    .menu-toggle:hover {
        color: var(--white);
    }

/* Mobile header + sandwich — hidden on desktop, shown ≤1149px */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 33px 0 15px;
    background: var(--black);
    position: relative;
    z-index: 9002;
}

    .mobile-header .logo {
        display: block;
        line-height: 0;
    }

        .mobile-header .logo img,
        .mobile-header .mobile-logo {
            width: 60px;
            height: 60px;
            max-height: 60px;
            padding: 5px;
            display: block;
            object-fit: contain;
        }

/* Live mobile sandwich icon */
.sandwich-icon {
    float: right;
    width: 40px;
    height: 40px;
    margin: 0;
    position: relative;
    display: block;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
    align-self: center;
}

    .sandwich-icon::before {
        content: "";
        position: absolute;
        left: 5px;
        right: 5px;
        top: 10px;
        height: 3px;
        background: currentColor;
        box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
        transition: transform 0.35s ease, box-shadow 0.2s ease, top 0.35s ease;
    }

    .sandwich-icon.opened::before {
        top: 18px;
        box-shadow: none;
        transform: rotate(45deg);
    }

    .sandwich-icon.opened::after {
        content: "";
        position: absolute;
        left: 5px;
        right: 5px;
        top: 18px;
        height: 3px;
        background: currentColor;
        transform: rotate(-45deg);
        transition: transform 0.35s ease;
    }

/* Mobile drawer menu — shown ≤1149px when sandwich is opened */
.mobile-drawer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9001;
    background: var(--black);
    padding: 72px 0 40px;
    overflow-y: auto;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .mobile-drawer.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-drawer .close-btn {
        display: none;
    }

    .mobile-drawer .drawer-link,
    .mobile-drawer a:not(.social) {
        display: block;
        font-family: "Times New Roman", Times, serif;
        font-weight: 700;
        font-size: 48px;
        line-height: 60px;
        text-transform: uppercase;
        letter-spacing: var(--menu-letter);
        color: var(--white);
        padding: 0 20px;
        opacity: 0;
        transform: translate3d(0, -16px, 0);
        transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s ease;
    }

    .mobile-drawer.open .drawer-link,
    .mobile-drawer.open a:not(.social) {
        opacity: 1;
        transform: none;
    }

        .mobile-drawer.open a:not(.social):nth-of-type(1) {
            transition-delay: 0.075s;
        }

        .mobile-drawer.open a:not(.social):nth-of-type(2) {
            transition-delay: 0.15s;
        }

        .mobile-drawer.open a:not(.social):nth-of-type(3) {
            transition-delay: 0.225s;
        }

        .mobile-drawer.open a:not(.social):nth-of-type(4) {
            transition-delay: 0.3s;
        }

        .mobile-drawer.open a:not(.social):nth-of-type(5) {
            transition-delay: 0.375s;
        }

    .mobile-drawer a:not(.social).active {
        position: relative;
        color: #ccd900;
    }

        .mobile-drawer a:not(.social).active::before {
            content: "";
            width: 25px;
            height: 1px;
            display: block;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: #ccd900;
        }

    .mobile-drawer a:not(.social):hover {
        color: var(--white);
    }

    .mobile-drawer .social {
        display: block;
        margin-top: 40px;
        padding: 0 20px;
        font-size: 18px;
        letter-spacing: 2px;
        color: var(--white);
        opacity: 0;
        transform: translate3d(0, -16px, 0);
        transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
    }

    .mobile-drawer.open .social {
        opacity: 1;
        transform: none;
    }

body.menu-open {
    overflow: hidden;
}

    body.menu-open .site-header {
        z-index: 9002;
        background: var(--black);
    }

    body.menu-open .mobile-header {
        background: var(--black);
    }

/* ========== MAIN CONTENT — desktop + mobile base ========== */
.site-main {
    max-width: var(--content);
    margin: 0 auto;
    padding: 0 0 40px;
}

/* Hero — desktop base (split white boxes applied at ≤767px) */
.hero {
    position: relative;
    min-height: 586px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.62) 88%, #000 100%);
        pointer-events: none;
    }

.hero-label {
    position: relative;
    z-index: 2;
    margin-left: 0;
    align-self: center;
}

    .hero-label .hero-stack {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: fit-content;
        max-width: 500px;
        background: transparent;
        padding: 0;
        margin: 0;
    }

    .hero-label .we-are {
        display: block;
        width: fit-content;
        background: var(--white);
        color: var(--black);
        font-family: "Times New Roman", Times, serif;
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 15px;
        margin: 0;
        line-height: 25px;
    }

    .hero-label .fit-name {
        display: block;
        width: fit-content;
        max-width: 500px;
        background: var(--white);
        color: var(--black);
        font-family: "Times New Roman", Times, serif;
        font-size: 58px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 5px 15px 10px;
        margin: 0;
        line-height: 58px;
    }

/* Intro — live .elementor-element-b092a2a: Times 22/500/26, 1130px (10px column gap) */
.intro {
    padding: 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: normal;
    color: var(--white);
    max-width: 100%;
}

    .intro p {
        margin: 0.67em 0;
    }

/* Live empty teal bar .elementor-element-0e68e4b — 1130×1, fadeInUp 1.25s */
.intro-rule {
    height: 1px;
    margin: 10px 10px 0;
    padding: 0;
    background: var(--teal);
    transform-origin: center bottom;
}

    .intro-rule.anim-fade-in-up.is-visible {
        animation: fadeInUpLine 1.25s both;
    }

@keyframes fadeInUpLine {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Events empty — live .concerts-list .nothing-found */
.events-block {
    padding: 0 10px;
    background: #000;
}

.concerts-list {
    background: #000;
}

    .events-empty,
    .nothing-found,
    .concerts-list .nothing-found {
        display: block;
        text-align: left;
        padding: 50px;
        margin: 0;
        font-family: Cousine, monospace;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        color: var(--accent);
    }

/* Band photo */
.band-photo {
    padding: 0;
    text-align: center;
}

    .band-photo img {
        width: 100%;
        max-width: 1024px;
        margin: 0 auto;
        height: auto;
    }

/* Section title bars — live .mainheading 1150x73 */
.section-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    padding: 0;
    min-height: 73px;
}

    .section-bar.teal {
        background: var(--teal);
    }

    .section-bar.lime {
        background: var(--accent);
    }

.section-title-wrap {
    display: inline-block;
    background: var(--near-black);
    padding: 2px 30px;
}

.section-title {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: "Times New Roman", Times, serif;
    font-size: 69px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    line-height: 69px;
    text-align: center;
}

/* News grid — live ESG masonry: 3 / 2 / 1 cols, 25px space, fade */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    padding: 0 0 20px;
}

    .news-grid[data-cols="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid[data-cols="1"] {
        grid-template-columns: minmax(0, 1fr);
    }

.news-card {
    min-width: 0;
}

    .news-card.esg-anim {
        animation: esgFade 1s ease;
    }

@keyframes esgFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.news-card .thumb {
    position: relative;
    aspect-ratio: auto;
    overflow: hidden;
    background: #111;
}

    .news-card .thumb img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform .4s ease;
    }

.news-card:hover .thumb img {
    transform: scale(1.04);
}

.news-card .date {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
    color: var(--accent);
    font-family: Oswald, sans-serif;
    font-weight: 700;
    transition: transform .4s ease, opacity .4s ease;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 20px;
    z-index: 2;
}

.news-card h3 {
    margin: 30px 0 0;
    font-family: Oswald, sans-serif;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

    .news-card h3 a {
        color: var(--white);
    }

        .news-card h3 a:hover {
            color: var(--accent);
        }

.news-card .excerpt {
    margin: 30px 0 0;
    font-family: Cousine, monospace;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--white);
}

.news-card .more {
    display: inline-block;
    margin: 30px 0 50px;
    font-family: Oswald, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--accent);
}

    .news-card .more:hover {
        color: var(--white);
    }

.news-card:hover .date {
    transform: translateY(-16px);
    opacity: 0;
}

.pagination {
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0;
}

    .pagination button {
        cursor: pointer;
        padding: 10px;
        border: solid 1px var(--accent);
        border-radius: 5px;
        line-height: 20px;
        font-size: 16px;
        font-weight: 300;
        font-family: Oswald, sans-serif;
        letter-spacing: 1px;
        display: inline-block;
        background: transparent;
        color: var(--accent);
        margin: 30px 5px 5px 0;
        min-width: 0;
        height: auto;
        vertical-align: middle;
        text-decoration: none;
    }

        .pagination button span {
            color: inherit;
        }

        .pagination button.active,
        .pagination button.selected {
            background-color: #fff;
            color: #000;
            border-color: #000;
            text-decoration: none;
        }

        .pagination button:hover:not(.active):not(:disabled) {
            background-color: #fff;
            color: #444;
            text-decoration: none;
        }

        .pagination button:disabled {
            opacity: 1;
            cursor: default;
            color: var(--accent);
        }

/* Instagram + Photos columns — live 50/50, bars margin 15/25, no stretch */
.media-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0 24px;
    padding: 8px 0 0;
}

.media-col .section-bar.lime {
    margin: 15px 0 25px;
}

.insta-body {
    padding: 0 8px 20px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 14px;
}

.insta-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease, opacity .35s ease;
    }

    .insta-item:hover img {
        transform: scale(1.06);
        opacity: .75;
    }

.insta-fallback {
    margin: 0;
    font-size: 18px;
    letter-spacing: .02em;
}

    .insta-fallback a {
        color: var(--accent);
    }

        .insta-fallback a:hover {
            text-decoration: underline;
        }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 60px;
    gap: 5px;
    padding: 0 8px 20px;
    max-height: 560px;
    overflow: hidden;
}

    .photo-grid a,
    .photo-grid .photo-item {
        display: block;
        overflow: hidden;
        background: #3f424a;
        min-height: 70px;
    }

    .photo-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease, filter .4s ease;
    }

    .photo-grid a:hover img {
        transform: scale(1.04);
        filter: brightness(1.05);
    }

/* Footer — desktop + mobile base (padding reduced at ≤767px) */
.site-footer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    min-height: 330px;
    background: #000;
    padding: 110px 20px 60px;
    text-align: center;
}

.footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 0 35px;
        max-width: 100%;
        flex: 0 1 auto;
        font-family: "Times New Roman", Times, serif;
        font-weight: 600;
        font-size: 21px;
        line-height: 26px;
        letter-spacing: normal;
        text-transform: none;
        text-align: left;
        padding: 0;
        color: var(--accent);
    }

        .footer-social a:hover {
            color: var(--white);
        }

    .footer-social svg {
        width: 21px;
        height: 21px;
        fill: currentColor;
    }

.copyright {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
    margin: 120px 0 0;
}

    .copyright a {
        color: var(--white);
    }

        .copyright a:hover {
            color: var(--accent);
        }

/* Back to top — live .footer-wrapper-backtotop */
#back-to-top,
#back-to-top-mobile,
.footer-wrapper-backtotop,
.footer-wrapper-backtotop-mobile {
    z-index: 200;
    color: var(--accent);
}

.footer-wrapper-backtotop {
    position: fixed;
    bottom: -40px;
    right: 20px;
    padding: 7px 10px;
    border-radius: 0;
    opacity: 0;
    font-size: 16px;
    line-height: 26px;
    transform: translate3d(0, 0, 0);
    transition: opacity .35s ease, bottom .35s ease;
}

    .footer-wrapper-backtotop.active {
        opacity: 1;
        bottom: 100px;
    }

    .footer-wrapper-backtotop:hover {
        text-decoration: none;
        color: var(--accent);
    }

    .footer-wrapper-backtotop svg {
        display: inline-block;
        width: 16px;
        height: 16px;
        vertical-align: -2px;
    }

.footer-wrapper-backtotop-mobile {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    font-size: 16px;
    padding: 10px;
    border-radius: 0;
}

/* Sonaar sticky player — live #sonaar-player.srt_sticky-player */
#sonaar-player.srt_sticky-player,
.player-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.90);
    border-top: 2px solid var(--accent);
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

    #sonaar-player .player,
    #sonaar-player .player-row,
    .player-bar .player-row {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 18px;
    }

    #sonaar-player .control,
    .player-bar .controls,
    .player-bar .control {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    #sonaar-player button,
    .player-bar button {
        background: none;
        border: 0;
        color: var(--white);
        cursor: pointer;
        padding: 6px;
        display: flex;
        align-items: center;
    }

        #sonaar-player button svg,
        .player-bar button svg {
            fill: currentColor;
            width: 18px;
            height: 20px;
        }

    #sonaar-player .play svg,
    .player-bar .play-btn svg {
        width: 22px;
        height: 25px;
    }

    #sonaar-player .wavesurfer,
    .player-bar .wavesurfer,
    .player-bar .wave {
        flex: 1;
        height: 4px;
        position: relative;
        max-width: 520px;
        margin-left: auto;
    }

    #sonaar-player .progress_totalTime,
    .player-bar .progress_totalTime,
    .player-bar .wave {
        background: rgba(66, 68, 0, 0.5);
        height: 4px;
    }

#sonaar-player .wave-progress-bar {
    position: relative;
    height: 4px;
    background: rgba(66, 68, 0, 0.5);
}

#sonaar-player .progress_currentTime,
.player-bar .progress,
.player-bar .progress_currentTime {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--accent);
}
/* player-bar removed — hide if leftover markup exists */
#sonaar-player,
.player-bar {
    display: none !important;
}

body {
    padding-bottom: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .lightbox.open {
        display: flex;
    }

    .lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
    }

    .lightbox .lb-close {
        position: absolute;
        top: 20px;
        right: 28px;
        background: none;
        border: 0;
        color: var(--white);
        font-size: 40px;
        cursor: pointer;
    }

/* Inner pages */
.page-hero-space {
    height: 20px;
}

.page-content {
    max-width: var(--content);
    margin: 0 auto;
    padding: 0 0 80px;
}

    .page-content h1, .page-content h2, .page-content h3 {
        font-family: "Times New Roman", Times, serif;
        text-transform: uppercase;
    }

    .page-content h1 {
        font-size: 48px;
        margin: 0 0 24px;
    }

    .page-content h2 {
        font-size: 36px;
        margin: 32px 0 12px;
    }

    .page-content h3 {
        font-size: 28px;
        margin: 28px 0 10px;
    }

        .page-content h3.eyebrow {
            font-size: 13px;
            line-height: 13px;
            margin: 24px 0 8px;
        }

    .page-content.grid-content-page {
        padding: 0 0 80px;
    }
        /* Text blocks share the same 10px inset as videos */
        .page-content.grid-content-page > h3.eyebrow.eyebrow-plain,
        .page-content.grid-content-page > h3.marker-title,
        .page-content.grid-content-page > p,
        .page-content.grid-content-page > .years-list {
            width: calc(100% - 20px);
            max-width: calc(100% - 20px);
            margin-left: 10px;
            margin-right: 10px;
            box-sizing: border-box;
        }

        .page-content.grid-content-page h3.eyebrow.eyebrow-plain {
            text-transform: none;
            margin-top: 0;
            margin-bottom: 0;
        }

        .page-content.grid-content-page h3.marker-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 38px;
            margin-top: 20px;
            margin-bottom: 0;
        }

        .page-content.grid-content-page > h3.marker-title + p {
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .page-content.grid-content-page > p + .years-list {
            margin-top: 35px;
        }

        .page-content.grid-content-page h1.book-heading {
            font-size: 36px;
            font-weight: 700;
            line-height: 34px;
            margin: 52px 0 0;
            text-align: center;
        }

        .page-content.grid-content-page h2.play-every {
            font-family: "Permanent Marker", cursive;
            font-size: 36px;
            font-weight: 400;
            line-height: 34px;
            text-transform: uppercase;
            text-align: center;
            margin: 9px 0 0;
            color: var(--white);
        }

        .page-content.grid-content-page .about-cta h3.eyebrow {
            text-transform: uppercase;
            margin: 0;
            text-align: center;
        }

    .page-content p {
        margin: 0 0 18px;
    }

    .page-content .marker-title,
    h3.marker-title,
    h2.marker-title {
        font-family: "Permanent Marker", cursive;
        font-size: 36px;
        font-weight: 400;
        text-transform: uppercase;
        margin: 0;
        color: var(--white);
        line-height: 36px;
    }

    .page-content h1.article-title,
    .page-content h1.event-boldtitle,
    .page-content h1.press-main,
    .page-content h1.book-heading {
        text-transform: uppercase;
    }

    .page-content h1.press-main {
        font-size: 69px;
        line-height: 69px;
        text-align: center;
        margin: 0;
    }

    .page-content h1.article-title {
        font-size: 54px;
        font-weight: 700;
        line-height: 53px;
        margin: 36px 0;
        text-align: left;
    }

    .page-content h1.event-boldtitle {
        font-size: 54px;
        font-weight: 700;
        line-height: 1.1;
        margin: 0 0 28px;
        text-align: left;
    }

    .page-content h1.shows-heading,
    .page-content h2.shows-heading {
        font-size: 36px;
        font-weight: 700;
        line-height: 36px;
        text-transform: none;
        text-align: center;
        margin: 0;
    }

.contact-block {
    margin-bottom: 28px;
}

    .contact-block strong {
        display: block;
        font-family: Oswald, sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
        color: var(--accent);
    }

.events-list {
    margin-top: 0;
}

.press-cta {
    text-align: center;
    padding: 60px 20px;
}

    .press-cta h1 {
        font-size: 56px;
        margin: 8px 0;
        letter-spacing: 1px;
    }

    .press-cta .logo-lg {
        margin: 30px auto;
        height: 230px;
        width: auto;
    }

.download-box {
    background: var(--accent);
    color: var(--black);
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
}

    .download-box h2 {
        color: var(--black);
        font-size: 42px;
        margin: 0 0 8px;
    }

    .download-box p {
        color: var(--black);
        margin: 0;
        font-size: 18px;
    }

    .download-box a.btn {
        display: inline-block;
        margin-top: 20px;
        background: var(--black);
        color: var(--accent);
        font-family: Oswald, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 14px 28px;
    }

.about-logo {
    text-align: center;
    margin: 0;
}

    .about-logo img {
        display: inline-block;
        margin: 0 auto;
        height: 231px;
        width: 230px;
    }

/* ========== RESPONSIVE — overrides by breakpoint ========== */

/* ≤1149px — TABLET / MOBILE NAV: swap desktop menu for mobile header + sandwich */
@media (max-width: 1149px) {
    .menu-bar {
        display: none;
    }

    .menu-container {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .sandwich-icon {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .site-header {
        background: var(--black);
    }

    .header-spacer {
        height: 60px;
        margin: 0 -30px;
    }

    .site-container {
        padding: 0 30px;
    }
}
/* ≤1024px — TABLET: scale down hero, sections, article titles, footer */
@media (max-width: 1024px) {
    .hero-label .fit-name {
        font-size: 62px;
        line-height: 62px;
    }

    .section-title {
        font-size: 36px;
        line-height: 1.5;
    }

    .news-card h3 {
        font-size: 32px;
        line-height: 1.15;
    }

    .footer-social a {
        margin: 0 16px;
    }

    .download-cta {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .article-title, .event-boldtitle {
        font-size: 36px;
    }

    .press-main {
        font-size: 36px;
        line-height: 1.5;
    }

    .photo-grid {
        max-height: none;
    }
}
/* ≤960px — TABLET: photo grid 4 columns */
@media (max-width: 960px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 70px;
    }

        .photo-grid a:nth-child(6n+1) {
            grid-column: span 4;
            grid-row: span 3;
        }

        .photo-grid a:nth-child(6n+2) {
            grid-column: span 2;
            grid-row: span 3;
        }

        .photo-grid a:nth-child(6n+3),
        .photo-grid a:nth-child(6n+4),
        .photo-grid a:nth-child(6n+5),
        .photo-grid a:nth-child(6n+6) {
            grid-column: span 2;
            grid-row: span 2;
        }
}
/* ≤767px — MOBILE (phone): hero, news cards, pagination, shows, contact, footer */
@media (max-width: 767px) {
    body {
        background-attachment: scroll;
        font-size: 22px;
    }

    .header-spacer {
        height: 60px;
        margin: 0 -30px;
    }

    .site-container {
        padding: 0 30px;
    }

    .hero {
        margin-top: 69px;
        min-height: 586px;
        align-items: flex-start;
    }

    .hero-label {
        margin-left: 0;
        align-self: flex-start;
        padding-top: 244px;
    }

        .hero-label .hero-stack {
            background: transparent;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .hero-label .we-are {
            background: var(--white);
            padding: 15px;
            margin: 0;
        }

        .hero-label .fit-name {
            background: var(--white);
            padding: 5px 15px 10px;
            margin: 0;
            font-size: 36px;
            line-height: 36px;
            letter-spacing: -1px;
        }

        .hero-label .we-are {
            font-size: 18px;
            line-height: 18px;
        }

    .intro {
        padding: 10px;
        margin-top: 25px;
        font-size: 22px;
        line-height: 26px;
    }

    .intro-rule {
        margin: 10px 10px 0;
    }

    .events-block {
        padding: 0;
    }

    .nothing-found,
    .concerts-list .nothing-found {
        padding: 50px;
        font-weight: 500;
    }

    .band-photo {
        padding: 0 10px;
    }

    .section-bar {
        min-height: 58px;
        margin: 25px 0;
        width: auto;
        max-width: 100%;
    }

    .media-col .section-bar.lime {
        margin: 15px 0 25px;
    }

    .grid-content-page .section-bar {
        margin: 50px 0;
    }

    .grid-content-page > .section-bar:first-of-type {
        margin-bottom: 70px;
    }

    .section-title {
        font-size: 36px;
    }

    .media-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
    }

    .site-main .pagination {
        display: block;
        text-align: center;
        padding: 0 0 20px;
    }
    /* Live mobile home news: stacked card — natural image height, no date badge */
    .site-main .news-grid {
        width: 100%;
        max-width: 100%;
    }

        .site-main .news-grid .news-card {
            width: 100%;
            max-width: 100%;
        }

            .site-main .news-grid .news-card .thumb {
                aspect-ratio: auto;
                min-height: 0;
                overflow: hidden;
            }

                .site-main .news-grid .news-card .thumb img {
                    width: 100%;
                    height: auto;
                    object-fit: contain;
                    display: block;
                }

            .site-main .news-grid .news-card .date {
                display: none;
            }

            .site-main .news-grid .news-card h3 {
                position: static;
                margin: 30px 0 0;
                font-family: Oswald, sans-serif;
                font-size: 42px;
                line-height: 48px;
                font-weight: 700;
                text-transform: uppercase;
            }

            .site-main .news-grid .news-card .excerpt {
                position: static;
                margin: 30px 0 0;
                font-family: Cousine, monospace;
                font-size: 14px;
                line-height: 24px;
                color: var(--white);
            }

            .site-main .news-grid .news-card .more {
                display: inline-block;
                margin: 30px 0 50px;
                font-family: Oswald, sans-serif;
                font-size: 16px;
                line-height: 24px;
                color: var(--accent);
                text-decoration: underline;
                text-transform: uppercase;
                font-weight: 700;
            }

            .site-main .news-grid .news-card:hover .date {
                transform: none;
                opacity: 1;
            }

    .site-footer {
        padding: 80px 16px 50px;
        min-height: 0;
    }

    .copyright {
        margin-top: 80px;
    }

    .footer-social a {
        margin: 0 12px;
    }

    .event-date .day {
        font-size: 26px;
    }

    .press-cta h1 {
        font-size: 32px;
    }

    .years-list {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0 10px;
    }

        .years-list p,
        .page-content.grid-content-page > p {
            font-size: 22px;
            font-weight: 500;
            line-height: 26px;
        }

    .page-content.grid-content-page {
        padding: 0;
    }

    .grid-content-page .video-embed,
    .grid-content-page .video-embed:first-of-type {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0 10px;
        aspect-ratio: 16 / 9;
        height: auto;
        padding-bottom: 0;
    }

        .grid-content-page .video-embed:first-of-type {
            margin-bottom: 119px;
        }

    .page-content.grid-content-page > h3.eyebrow.eyebrow-plain + h3.marker-title {
        margin-top: 40px;
    }

    .page-content.grid-content-page > h3.marker-title + p {
        margin-top: 35px;
    }

    .page-content.grid-content-page > p + .years-list {
        margin-top: 30px;
    }

    .grid-content-page .years-list ~ .video-embed {
        margin-top: 36px;
    }

    .grid-content-page .video-embed:has(~ .about-cta):last-of-type {
        margin-bottom: 0;
    }

    .grid-content-page .video-embed ~ .about-cta {
        margin-top: 70px;
    }

    .years-list {
        min-height: 0;
    }

    .page-content.grid-content-page h1.book-heading,
    .about-cta .book-heading {
        font-size: 28px;
        line-height: 34px;
        margin-top: 50px;
    }

    .page-content.grid-content-page h2.play-every,
    .about-cta .play-every {
        font-size: 17px;
        line-height: 34px;
        font-style: italic;
        font-weight: 400;
    }

    .page-content.grid-content-page h3.marker-title {
        font-size: 25px;
        font-weight: 700;
        line-height: 30px;
    }

    .download-cta .marker-title {
        font-size: 16px;
        line-height: 32px;
        font-weight: 700;
    }

    .btn-outline,
    .grid-content-page .btn-outline,
    .grid-content-page .section-bar + .about-cta .btn-outline {
        min-width: 0;
        width: 100%;
        max-width: 397px;
        padding: 22px 16px;
        height: auto;
        min-height: 64px;
        white-space: normal;
    }

    .about-cta .btn-outline {
        max-width: 334px;
    }

    .grid-content-page .section-bar + .about-cta {
        padding: 40px 10px 0;
    }

        .grid-content-page .section-bar + .about-cta p.intro-center,
        .about-cta p.intro-center {
            max-width: calc(100% - 20px);
            width: calc(100% - 20px);
            margin-left: 10px;
            margin-right: 10px;
            text-align: start;
            box-sizing: border-box;
        }

    .contact-page {
        padding: 8px 0 60px;
    }

    .contact-panel {
        padding: 20px;
        border-width: 8px;
        margin: 0;
        max-width: none;
    }

    .event-row {
        grid-template-columns: 70px 1px 1fr;
        gap: 12px;
    }

    .news-blog {
        grid-template-columns: 1fr;
    }

    .news-page-head h1 {
        font-size: 54px;
        line-height: 53px;
    }

    .shows-page {
        padding: 8px 0 0;
    }

        .shows-page .shows-heading {
            font-size: 36px;
            line-height: 36px;
        }

        .shows-page .event-row {
            padding: 0 12px;
        }

        .shows-page .nothing-found {
            padding: 50px;
        }

    .news-page-head {
        padding: 20px 0 36px;
    }

        .news-page-head h1 {
            padding: 0;
        }

    .home-photos,
    .press-masonry {
        --cobble-pad: 18px;
    }
}


/* === PAGE STYLES — desktop + mobile base (rebuild) === */
.eyebrow {
    font-family: "Times New Roman", Times, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    text-transform: uppercase;
    margin: 24px 0 8px;
    color: var(--white);
}

    .eyebrow.center {
        text-align: center;
    }

.marker-title {
    font-family: "Permanent Marker", cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--white);
}

    .marker-title.center {
        text-align: center;
    }

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 20px 0 40px;
    background: #111;
    overflow: hidden;
}

    .video-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.years-list {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
}

@media (min-width: 768px) {
    .page-content.grid-content-page > p + .years-list {
        margin-top: 49px;
    }

    .page-content.grid-content-page > .years-list,
    .years-list {
        width: 525px;
        max-width: 50%;
        margin: 35px 10px 0 30px;
        min-height: 0;
    }
}

.years-list p {
    margin: 15px 0;
}

.about-cta {
    text-align: center;
    max-width: none;
    width: auto;
    margin: 0;
    padding: 0 0 3px;
    box-sizing: border-box;
}

    .about-cta .eyebrow {
        margin: 0;
        text-align: center;
    }

    .about-cta .logo-lg,
    .about-cta .about-logo img {
        display: block;
        width: 230px;
        height: auto;
        margin: 0 auto 20px;
    }

    .about-cta .press-sub,
    .about-cta .book-heading {
        margin: 52px 0 0;
    }

    .about-cta .marker-title,
    .about-cta .play-every {
        margin: 9px 0 0;
        line-height: 34px;
        text-align: center;
    }

    .about-cta p {
        max-width: none;
        width: auto;
        margin: 0.67em 0;
        text-align: start;
        font-family: "Times New Roman", Times, serif;
        font-size: 22px;
        font-weight: 500;
        line-height: 26px;
    }

        .about-cta p.intro-center {
            max-width: 580px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

            .about-cta p.intro-center:first-of-type {
                margin-top: 80px;
            }

.divider-line {
    width: 100%;
    max-width: none;
    height: 77px;
    margin: 0;
    background: transparent;
    position: relative;
}

    .divider-line::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 60px;
        height: 1px;
        margin-left: -30px;
        background: #000;
    }

.book-heading {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 34px;
    margin: 54px 0 0;
    text-align: center;
}

.play-every {
    font-family: "Permanent Marker", cursive;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 34px;
    margin: 9px 0 0;
    text-align: center;
    color: var(--white);
}

a.btn-outline,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    width: auto;
    min-width: 397px;
    height: 82px;
    min-height: 82px;
    border: 2px solid var(--accent);
    color: var(--white);
    background: transparent;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 30px;
    margin: 16px 0 0;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, color .2s;
}

    a.btn-outline:hover,
    .btn-outline:hover {
        background: var(--accent);
        color: var(--black);
    }

    .btn-outline .arrow {
        font-size: 18px;
        line-height: 18px;
        color: inherit;
        font-family: inherit;
    }

.about-cta .btn-outline {
    border-color: #fff;
    width: auto;
    min-width: 334px;
    margin: 76px 0 0;
    gap: 23px;
}

.about-cta a.btn-outline:hover,
.about-cta a.btn-outline:focus,
.grid-content-page a.btn-outline:hover,
.grid-content-page a.btn-outline:focus {
    background: #fff;
    color: #000;
    border-color: transparent;
}

.grid-content-page .video-embed {
    width: calc(100% - 20px);
    max-width: none;
    margin: 0 10px 20px;
    aspect-ratio: 16 / 9;
    height: auto;
    padding-bottom: 0;
    background: transparent;
}

    .grid-content-page .video-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (min-width: 768px) {
    .grid-content-page .section-bar + .video-embed {
        margin-top: 60px;
    }
    /* Page title bar must not steal first-video top spacing from the export layout */
    .grid-content-page > .section-bar:first-of-type + .video-embed {
        margin-top: 0;
    }

    .grid-content-page .video-embed ~ .video-embed {
        margin-top: 0;
    }
    /* ~ not + : JSON-LD scripts sit between block siblings on Umbraco pages */
    .grid-content-page .years-list ~ .video-embed {
        margin-top: 55px;
    }

    .grid-content-page .video-embed:has(~ .about-cta):last-of-type {
        margin-bottom: 0;
    }

    .grid-content-page .video-embed ~ .about-cta {
        margin-top: 90px;
    }

    .grid-content-page .video-embed:has(~ .section-bar) {
        margin-bottom: 60px;
    }

    .grid-content-page .video-embed:first-of-type {
        margin: 69px 10px 119px;
    }
}
/* Live Elementor hover-only bob (not a loop at rest) */
@keyframes elementor-animation-bob-float {
    100% {
        transform: translateY(-8px);
    }
}

@keyframes elementor-animation-bob {
    0% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(-8px);
    }
}

.bob {
    animation: none;
}

    .bob:hover,
    .bob:focus {
        animation-name: elementor-animation-bob-float, elementor-animation-bob;
        animation-duration: 0.3s, 1.5s;
        animation-delay: 0s, 0.3s;
        animation-timing-function: ease-out, ease-in-out;
        animation-iteration-count: 1, infinite;
        animation-fill-mode: forwards;
        animation-direction: normal, alternate;
    }

.press-hero {
    text-align: center;
    margin: 30px 0 10px;
}

.press-main {
    font-family: "Times New Roman", Times, serif;
    font-size: 69px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 69px;
    margin: 0;
    text-align: center;
}

.grid-content-page .section-bar + .about-cta {
    padding: 30px 10px 0;
    margin: 0 auto 50px;
}

    .grid-content-page .section-bar + .about-cta .btn-outline {
        border-color: #fff;
        width: 397px;
        min-width: 397px;
        margin: 60px 0 0;
        gap: 23px;
    }

    .grid-content-page .section-bar + .about-cta a.btn-outline:hover,
    .grid-content-page .section-bar + .about-cta a.btn-outline:focus {
        background: #fff;
        color: #000;
        border-color: transparent;
    }
/* ≤767px — MOBILE: about page CTA button full width */
@media (max-width: 767px) {
    .grid-content-page .section-bar + .about-cta .btn-outline {
        width: 100%;
        min-width: 0;
        max-width: 397px;
    }
}

.page-content h2.press-files,
.download-cta .press-files,
.press-files {
    display: block !important;
    visibility: visible !important;
    font-family: "Times New Roman", Times, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 55.2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin: 20px 0 0;
    opacity: 1 !important;
}

.download-cta {
    position: relative;
    display: block;
    width: 100%;
    max-width: var(--content);
    margin: 70px auto 0;
    min-height: 541px;
    padding: 50px;
    box-sizing: border-box;
    text-align: center;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1 !important;
    visibility: visible !important;
}

    .download-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #000;
        opacity: 0.69;
        pointer-events: none;
    }

.download-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 441px;
}

.download-cta .marker-title {
    margin: 0;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: var(--white);
}

.download-cta .download-cta-link {
    margin: 30px 0 0;
}

    .download-cta .download-cta-link + .marker-title {
        margin: 0 0 30px;
    }

.download-cta .marker-title a {
    color: var(--white);
    text-decoration: none;
}

    .download-cta .marker-title a:hover {
        color: var(--accent);
    }

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 136px;
    margin: 16px auto;
    padding: 40px;
    box-sizing: border-box;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

    .download-icon:hover,
    .download-icon:focus {
        color: var(--white);
        border-color: var(--white);
        animation-name: elementor-animation-pulse;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .download-icon svg {
        width: 50px;
        height: 50px;
        display: block;
    }

@keyframes elementor-animation-pulse {
    25% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.9);
    }
}

.press-photos {
    max-height: none;
    overflow: visible;
    margin-bottom: 40px;
}

.shows-page {
    padding-top: 8px;
    padding-bottom: 10px;
}

.contact-page > .section-bar:first-child ~ .contact-panel .marker-title {
    display: none;
}

.contact-page > .section-bar:first-child ~ .contact-panel {
    margin-top: 0;
}

.page-content h1.shows-heading,
.page-content h2.shows-heading,
.shows-heading {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    text-transform: none;
    text-align: center;
    margin: 0;
}

.shows-rule {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 31px;
    margin: 20px 0 0;
    padding: 15px 0;
    border: 0;
    background: transparent;
    box-sizing: border-box;
}

    .shows-rule::after {
        content: "";
        display: block;
        width: 40px;
        border-top: 1px solid #000;
    }

.shows-page .nothing-found {
    padding: 50px;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-align: left;
}

.shows-page .shows-heading:nth-of-type(2) {
    margin-top: 120px;
}

.events-list {
    margin-top: 0;
    padding-top: 0;
    border-top: 2px solid #fff;
}

.event-row {
    display: grid;
    grid-template-columns: 82px 1px 1fr;
    gap: 20px;
    background: transparent;
    margin-bottom: 0;
    padding: 30px 0;
    min-height: 130px;
    align-items: center;
    border-bottom: 2px solid #fff;
    color: inherit;
    text-decoration: none;
    transition: background .2s, color .2s;
}

    .event-row:hover {
        background: rgb(31, 31, 31);
        opacity: 1;
    }

.event-sep {
    width: 1px;
    height: 52px;
    background: #fff;
}

.event-date {
    text-align: right;
}

    .event-date .day {
        font-family: Cousine, monospace;
        font-size: 26px;
        font-weight: 500;
        line-height: 31.2px;
        letter-spacing: 0;
        color: var(--white);
        text-transform: none;
        margin: 0 0 4px;
    }

    .event-date .my {
        font-family: Cousine, monospace;
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        letter-spacing: 0;
        text-transform: none;
        color: var(--white);
    }

.event-info .title {
    font-family: Cousine, monospace;
    font-size: 26px;
    font-weight: 700;
    line-height: 31.2px;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: none;
}

.event-info .venue {
    font-family: Cousine, monospace;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: rgb(204, 218, 0);
    margin-top: 0;
}

.event-row:hover .event-date .day,
.event-row:hover .event-date .my,
.event-row:hover .event-info .title,
.event-row:hover .event-info .venue {
    color: var(--white);
}

/* ≤767px — MOBILE shows: stacked layout like live (not 3-column grid) */
@media (max-width: 767px) {
    .shows-page {
        padding-top: 79px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

    .page-shell:has(.shows-page) .site-footer {
        padding-top: 110px;
    }

    .shows-page .shows-rule + .events-list {
        border-top: none !important;
        margin-top: 20px;
    }

    .shows-page .shows-heading:nth-of-type(2) + .shows-rule + .events-list {
        margin-top: 20px;
    }

    .shows-page .event-row {
        display: block;
        grid-template-columns: none;
        gap: 0;
        min-height: 0;
        padding: 30px 12px;
        align-items: stretch;
    }

    .shows-page .event-sep {
        display: none;
    }

    .shows-page .event-date {
        text-align: left;
        margin-bottom: 4px;
    }

        .shows-page .event-date .day,
        .shows-page .event-date .my {
            display: inline-block;
            vertical-align: baseline;
        }

        .shows-page .event-date .day {
            margin: 0 6px 0 0;
        }

        .shows-page .event-date .my {
            margin: 0;
        }

    .shows-page .event-info .title {
        display: inline-block;
        width: 100%;
        max-width: 100%;
        margin-bottom: 4px;
    }

    .shows-page .event-info .venue {
        display: block;
    }
}

.contact-page {
    padding: 8px 0 80px;
}

.contact-panel .contact-body {
    display: flow-root;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
}

.contact-panel p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: 0;
    margin: 14.74px 0;
    color: inherit;
}

.contact-panel {
    position: relative;
    box-sizing: border-box;
    border: 8px solid #818181;
    padding: 50px;
    max-width: 1090px;
    margin: 20px auto;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

    .contact-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #000;
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
    }

    .contact-panel > * {
        position: relative;
        z-index: 1;
    }

.page-content.contact-page .contact-panel h3.marker-title {
    font-family: "Permanent Marker", cursive;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    color: var(--white);
}

.contact-panel b,
.contact-panel strong,
.contact-panel .contact-label {
    display: inline;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--white);
    margin: 0;
}

.contact-panel .contact-detail {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--white);
}

.contact-panel a {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--accent);
    text-decoration: none;
}

    .contact-panel a:hover {
        color: var(--accent);
    }

/* Legacy CMS contact-block markup inside panel */
.contact-panel .contact-block {
    margin-bottom: 0;
}

    .contact-panel .contact-block strong {
        display: inline;
        font-family: Roboto, sans-serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 26px;
        text-transform: none;
        letter-spacing: 0;
        color: var(--white);
        margin: 0;
    }

/* Article / news detail — desktop + mobile base */
.article-page {
    padding-top: 30px;
    padding-bottom: 40px;
}

.article-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 53px;
    text-transform: uppercase;
    margin: 36px 0;
    text-align: left;
}

.article-featured {
    margin: 15px 0;
}

    .article-featured img {
        width: 100%;
        height: auto;
        display: block;
    }

.article-meta {
    font-family: "Times New Roman", Times, serif;
    font-size: 13px;
    line-height: 16px;
    margin: 0 0 15px;
    padding-top: 11px;
    color: var(--white);
}

    .article-meta .article-date,
    .article-meta time {
        font-size: 12px;
        line-height: 20px;
        color: var(--accent);
        padding-right: 10px;
    }

    .article-meta a {
        color: var(--accent);
        text-decoration: none;
    }

        .article-meta a:hover {
            text-decoration: underline;
        }

.article-category {
    display: inline;
    margin-left: 6px;
}

    .article-category .category-icon {
        width: 13px;
        height: 13px;
        display: inline-block;
        vertical-align: -1px;
        margin-right: 4px;
        color: var(--accent);
    }

.article-layout {
    display: block;
    margin-top: 20px;
}

.article-body-inner {
    padding: 0 20px;
}

.article-inline-media {
    margin: 0 0 20px;
    text-align: center;
}

    .article-inline-media img {
        width: 100%;
        max-width: 290px;
        height: auto;
        display: inline-block;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

.article-body,
.article-body-inner {
    font-size: 22px;
    line-height: 26px;
}

    .article-body p,
    .article-body-inner p {
        margin: 0 0 18px;
    }

    .article-body h2,
    .article-body-inner h2 {
        font-family: "Times New Roman", Times, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 700;
        margin: 24px 0;
        text-transform: none;
    }

        .article-body h2 a,
        .article-body-inner h2 a {
            color: var(--white);
            text-decoration: underline;
        }

    .article-body a,
    .article-body-inner a {
        color: var(--accent);
        text-decoration: underline;
    }

        .article-body a:hover,
        .article-body-inner a:hover {
            color: var(--white);
        }

    .article-body iframe,
    .article-body-inner iframe {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        border: 0;
        border-radius: 12px;
    }

.article-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}

.article-page .back-btn {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}
/* ≥850px — DESKTOP ONLY: article 2-column layout (inline image + body side by side) */
@media (min-width: 850px) {
    .article-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .article-body-inner {
        padding: 0;
    }

    .article-inline-media {
        margin: 0;
    }

        .article-inline-media img {
            max-width: 100%;
        }
}

/* Event detail */
.event-detail-page {
    padding-top: 40px;
    padding-bottom: 80px;
}

.event-wrapper {
    margin-top: 60px;
}

    .event-wrapper::after,
    .event-wrapper .clear {
        content: "";
        display: block;
        clear: both;
    }

    .event-wrapper .lefthalf {
        float: left;
        width: 46.5%;
        margin-right: 4.5%;
        min-height: 1px;
    }

        .event-wrapper .lefthalf img {
            display: block;
            width: 100%;
            height: auto;
        }

    .event-wrapper .righthalf {
        float: left;
        width: 49%;
    }

    /* Full-width column when there is no sidebar image (body band-photo matches home page) */
    .event-wrapper:not(:has(.lefthalf)) .righthalf {
        float: none;
        width: 100%;
    }

/* Band-photo inside event body — slightly smaller than home page band-photo */
.event-body .band-photo {
    clear: both;
    padding: 0;
    text-align: center;
    margin: 20px 0;
}

    .event-body .band-photo img {
        display: block;
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        height: auto;
    }

@media (min-width: 768px) {
    .event-wrapper:has(.lefthalf) .righthalf .event-body .band-photo {
        width: 204.08%;
        margin-left: -104.08%;
    }
}

.event-body,
.event-body-content {
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    margin-top: 20px;
}

    .event-body p,
    .event-body-content p {
        margin: 0 0 18px;
    }

    .event-body h2,
    .event-body-content h2 {
        font-family: "Times New Roman", Times, serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        margin: 28px 0 12px;
        color: var(--white);
    }

    .event-body a,
    .event-body-content a {
        color: var(--accent);
    }

    .event-body ul,
    .event-body-content ul {
        margin: 0 0 18px;
        padding-left: 24px;
    }

.links-block.event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0 0;
    padding: 10px 0;
}

.event-boldtitle {
    font-family: "Times New Roman", Times, serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 28px;
}

.event-meta {
    border-collapse: collapse;
    margin: 20px 0 20px -10px;
    font-size: 16px;
    line-height: 26px;
}

    .event-meta td {
        font-family: "Times New Roman", Times, serif;
        font-size: 16px;
        line-height: 26px;
        padding: 0 0 0 10px;
        vertical-align: middle;
        color: var(--white);
    }

    .event-meta .event-icon {
        width: 30px;
        text-align: center;
        color: var(--white);
        padding: 0;
    }

        .event-meta .event-icon svg {
            width: 16px;
            height: 16px;
            display: block;
            margin: 0 auto;
        }

.event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .event-wrapper .lefthalf,
    .event-wrapper .righthalf {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .event-wrapper .lefthalf {
        margin-bottom: 20px;
    }
}

.back-btn {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 26px;
    padding: 5px 40px;
    background: transparent;
}

    .back-btn:hover {
        background: var(--accent);
        color: var(--black);
    }

.share-btns {
    display: flex;
    gap: 4px;
}

    .share-btns a {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: #000;
        text-decoration: none;
    }

        .share-btns a svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
            display: block;
        }

        .share-btns a:hover {
            background: var(--white);
            color: #000;
        }

/* Sitemap */
.sitemap-page {
    padding-bottom: 80px;
}

.sitemap-nav {
    max-width: var(--content);
    margin: 40px auto 0;
    font-family: "Times New Roman", Times, serif;
    color: var(--white);
}

    .sitemap-nav ul {
        list-style-type: disc;
        margin: 0;
        padding-left: 20px;
    }

        .sitemap-nav ul ul {
            list-style-type: circle;
            padding-left: 30px;
            margin-top: 5px;
            margin-bottom: 10px;
        }

    .sitemap-nav li {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 26px;
    }

        .sitemap-nav ul ul li {
            margin-bottom: 5px;
            font-size: 15px;
        }

    .sitemap-nav > ul > li > a {
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
    }

    .sitemap-nav a {
        color: var(--accent);
        text-decoration: underline;
    }

        .sitemap-nav a:hover {
            color: var(--white);
        }

/* Animations — live Elementor: 0.75s hero, 0.8s scroll, 1.25s page content */
.anim-fade-in-up, .anim-fade-in-down, .anim-fade-in {
    opacity: 0;
}

    .anim-fade-in-up.is-visible {
        animation: fadeInUp 0.8s ease both;
    }

    .anim-fade-in-down.is-visible {
        animation: fadeInDown 0.8s ease both;
    }

    .anim-fade-in.is-visible {
        animation: fadeIn 0.8s ease both;
    }

.anim-fast.anim-fade-in-up.is-visible,
.anim-fast.anim-fade-in-down.is-visible,
.anim-fast.anim-fade-in.is-visible {
    animation-duration: 0.75s;
}

.anim-slow.anim-fade-in-up.is-visible,
.anim-slow.anim-fade-in-down.is-visible,
.anim-slow.anim-fade-in.is-visible {
    animation-duration: 1.25s;
}

.grid-content-page .anim-fade-in-up.is-visible,
.contact-page .anim-fade-in-up.is-visible,
.contact-panel.anim-fade-in-up.is-visible {
    animation-duration: 1.25s;
    animation-name: fadeInUpElementor;
}

.anim-delay-500.is-visible {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpElementor {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .anim-fade-in-up, .anim-fade-in-down, .anim-fade-in,
    .intro-rule.anim-fade-in-up.is-visible {
        opacity: 1;
        animation: none;
        animation-delay: 0s;
    }

    .bob, .download-icon, .news-card.esg-anim, .news-blog-card.esg-anim {
        animation: none;
    }
}

/* ≤767px — MOBILE: 404 page title size */
@media (max-width: 767px) {
    .page-content.notfound-page h1.notfound-title {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* News overview page — desktop base (2-col grid; stacked at ≤767px above) */
.news-page-head {
    text-align: center;
    padding: 20px 0 36px;
}

    .news-page-head h1 {
        font-family: "Times New Roman", Times, serif;
        font-size: 54px;
        font-weight: 700;
        line-height: 1.1;
        text-transform: uppercase;
        margin: 0 0 14px;
        text-align: center;
    }

.news-underline {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.news-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-bottom: 40px;
}

    .news-blog[data-cols="1"] {
        grid-template-columns: 1fr;
    }

.news-blog-card.esg-anim {
    animation: esgFade 1s ease;
}

.news-blog-card a {
    color: inherit;
    display: block;
}

.news-blog-card .thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
}

    .news-blog-card .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-blog-card .date {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.82);
    color: var(--white);
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    transition: transform .4s ease, opacity .4s ease;
}

.news-blog-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0) 100%);
    transition: transform .4s ease, opacity .4s ease;
}

.news-blog-card h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: none;
    color: var(--white);
    margin: 0 0 10px;
    text-align: left;
}

.news-blog-card .excerpt {
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    margin: 0;
}

.news-blog-card .thumb img {
    transition: transform .4s ease;
}

.news-blog-card:hover .thumb img {
    transform: scale(1.06);
}

.news-blog-card:hover .date {
    transform: translateY(-16px);
    opacity: 0;
}

.news-blog-card:hover .overlay {
    transform: translateY(20px);
    opacity: 0;
}

/* Presskit + home FOTO'S gallery — desktop base (6-col cobble grid) */
.media-col,
.grid-content-page {
    container-type: inline-size;
}

.press-masonry,
.home-photos {
    --cobble-gap: 18px;
    --cobble-pad: 18px;
    --cobble-cols: 6;
    --cobble-unit: calc((100cqi - (2 * var(--cobble-pad)) - ((var(--cobble-cols) - 1) * var(--cobble-gap))) / var(--cobble-cols));
    display: grid;
    grid-template-columns: repeat(var(--cobble-cols), minmax(0, 1fr));
    gap: var(--cobble-gap);
    padding: 0 var(--cobble-pad);
    grid-auto-flow: row;
    grid-auto-rows: var(--cobble-unit);
}

    .press-masonry .cobble-item,
    .home-photos .cobble-item,
    .press-masonry .masonry-item,
    .home-photos .masonry-item {
        display: block;
        position: relative;
        overflow: hidden;
        background: #3f424a;
        min-width: 0;
        min-height: 0;
        grid-column: span var(--cw, 2);
        grid-row: span var(--ch, 2);
    }

    .press-masonry img,
    .home-photos img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.cobble-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s linear;
    pointer-events: none;
}

.cobble-item:hover .cobble-overlay {
    opacity: 1;
}
/* ≥768px — DESKTOP ONLY: cap home photos preview height */
@media (min-width: 768px) {
    .home-photos {
        max-height: calc(12 * var(--cobble-unit) + 11 * var(--cobble-gap));
        overflow: hidden;
    }
}
/* ≤1170px — TABLET: gallery 4 columns */
@media (max-width: 1170px) {
    .press-masonry,
    .home-photos {
        --cobble-cols: 4;
    }
}
/* ≤480px — SMALL PHONE: gallery stays 4 columns */
@media (max-width: 480px) {
    .press-masonry,
    .home-photos {
        --cobble-cols: 4;
    }
}
/* ≤767px — MOBILE: FOTO'S masonry — 6 tiles, 2-up layout, hide 7+ */
@media (max-width: 767px) {
    .media-col,
    .home-photos {
        width: 100%;
        max-width: 100%;
    }
        /* Live mobile FOTO'S: 6-image 2-up masonry in 4-col grid (~918px preview) */
        .home-photos .cobble-item:nth-child(n+7) {
            display: none;
        }

    .home-photos {
        grid-auto-flow: dense;
        max-height: calc(12 * var(--cobble-unit) + 11 * var(--cobble-gap));
        overflow: hidden;
    }
        /* Live mobile FOTO'S masonry (6 tiles, 918px) */
        .home-photos .cobble-item:nth-child(1) {
            grid-column: 1 / span 3;
            grid-row: 1 / span 2;
        }

        .home-photos .cobble-item:nth-child(2) {
            grid-column: 1 / span 2;
            grid-row: 3 / span 3;
        }

        .home-photos .cobble-item:nth-child(3) {
            grid-column: 1 / span 3;
            grid-row: 6 / span 2;
        }

        .home-photos .cobble-item:nth-child(4) {
            grid-column: 3 / span 2;
            grid-row: 3 / span 3;
        }

        .home-photos .cobble-item:nth-child(5) {
            grid-column: 1 / span 3;
            grid-row: 8 / span 2;
        }

        .home-photos .cobble-item:nth-child(6) {
            grid-column: 1 / span 2;
            grid-row: 10 / span 3;
        }
}

.grid-content-page .section-bar {
    margin: 50px 0;
}

.grid-content-page > .section-bar:first-of-type {
    margin-bottom: 70px;
}

.shows-page > .section-bar:first-child,
.news-page > .section-bar:first-child,
.contact-page > .section-bar:first-child {
    margin: 50px 0 70px;
}

.page-content h2.section-title {
    font-size: 69px;
    line-height: 69px;
    text-transform: uppercase;
    margin: 0;
}
/* ≤1024px — TABLET: section titles, 404, section bar height */
@media (max-width: 1024px) {
    .section-title,
    .page-content h2.section-title {
        font-size: 36px;
        line-height: 1.5;
    }

    .section-bar {
        min-height: 0;
    }

    .page-content.notfound-page h1.notfound-title {
        font-size: 36px;
        line-height: 1.2;
    }
}

.page-content.notfound-page {
    text-align: center;
    padding: 0 0 80px;
}

    .page-content.notfound-page h1.notfound-title {
        font-family: "Times New Roman", Times, serif;
        font-size: 54px;
        font-weight: 700;
        line-height: 53px;
        text-transform: uppercase;
        text-align: center;
        margin: 36px 0;
        color: var(--white);
    }

.notfound-rule {
    display: block;
    width: 45px;
    height: 3px;
    margin: 0 auto 75px;
    background: var(--accent);
}

.page-content.notfound-page p {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    margin: 0.67em 0;
}

.page-content.notfound-page a {
    color: var(--accent);
    text-decoration: none;
}

    .page-content.notfound-page a:hover {
        color: var(--accent);
    }
