@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Work+Sans:wght@300;400;500;600;800&display=swap');
:root {
    --rd-black: #020303;
    --rd-surface: #08090a;
    --rd-red: #ff2736;
    --rd-deep-red: #8f1018;
    --rd-white: #f4f3f1;
    --rd-muted: #aaa8a8;
    --rd-line: #343536;
    --rd-display: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
    --rd-body: 'Work Sans', Arial, sans-serif;
    --rd-gutter: clamp(24px, 5vw, 54px);
    --rd-header-height: 64px;
    --rd-container-width: 1440px;
    --rd-container-offset: max(0px, calc((100% - var(--rd-container-width)) / 2));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rd-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--rd-black);
    color: var(--rd-white);
    font-family: var(--rd-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.rd-site img {
    display: block;
    max-width: 100%;
}

.rd-site a {
    color: inherit;
    text-decoration: none;
}

.rd-site button,
.rd-site a {
    -webkit-tap-highlight-color: transparent;
}

.rd-site button {
    font: inherit;
}

.rd-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;
}

.rd-shell {
    width: 100%;
}

.rd-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    height: var(--rd-header-height);
    padding: 0 37px 0 43px;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent);
}

/* Keep the legacy mobile-header class from shifting the shared navigation down. */
header.rd-header.header-mobile {
    padding-top: 0;
}

.rd-event-page .rd-header {
    position: relative;
    left: auto;
    transform: none;
    background: #020303;
}

.rd-logo {
    display: inline-flex;
    align-items: center;
    width: 109px;
}

.rd-logo img {
    width: 109px;
    height: auto;
}

.rd-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: flex-start;
    padding-left: 32px;
    gap: clamp(22px, 3.8vw, 48px);
}

.rd-nav a,
.rd-footer-nav a {
    position: relative;
    color: #d5d4d4;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rd-nav a::after {
    position: absolute;
    right: 0;
    bottom: -19px;
    left: 0;
    height: 1px;
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    background: var(--rd-red);
    transition: transform 180ms ease;
}

.rd-nav a:hover::after,
.rd-nav a:focus-visible::after,
.rd-nav a.is-active::after {
    transform: scaleX(1);
}

.rd-header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.rd-button {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 0 27px;
    border: 1px solid var(--rd-line);
    background: transparent;
    color: var(--rd-white);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.rd-button:hover,
.rd-button:focus-visible {
    border-color: var(--rd-red);
    background: var(--rd-red);
    color: #050505;
}

.rd-button--compact {
    min-width: 118px;
    min-height: 36px;
    padding: 0 18px;
}

.rd-button--outline {
    border-color: #65686a;
}

.rd-site .rd-button--red {
    border-color: var(--rd-red);
    background: var(--rd-red);
    color: #070707;
    box-shadow: 0 0 24px rgba(255, 39, 54, 0.26);
}

.rd-button--red:hover,
.rd-button--red:focus-visible {
    background: #ff4653;
}

.rd-menu-toggle {
    position: relative;
    display: none;
    width: 23px;
    height: 20px;
    padding: 1px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rd-menu-toggle span:not(.rd-sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--rd-white);
    transition: transform 180ms ease, opacity 180ms ease;
}

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

.rd-menu-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
}

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

.rd-eyebrow {
    margin: 0 0 18px;
    color: #c4c2c2;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.rd-site .rd-text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 39, 54, 0.5);
    color: var(--rd-red);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-arrow {
    width: 15px;
    height: 8px;
    flex-shrink: 0;
}


/* Additional homepage sections share the full-width surface and centered content. */

.rd-home-section {
    padding: 76px 0;
    border-top: 1px solid var(--rd-line);
    scroll-margin-top: 24px;
}

.rd-home-container {
    width: 100%;
    max-width: var(--rd-container-width);
    margin-inline: auto;
    padding-inline: 49px;
}

.rd-home-about {
    background: #080a0b;
}

.rd-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.rd-about-grid article {
    border-top: 1px solid var(--rd-line);
    padding-top: 24px;
}

.rd-about-number {
    color: var(--rd-red);
    font-size: 10px;
    letter-spacing: 3px;
}

.rd-about-grid h3 {
    max-width: 280px;
    min-height: 72px;
    margin: 22px 0;
    font: 600 34px/1.05 var(--rd-display);
    text-transform: uppercase;
}

.rd-about-grid p,
.rd-contact-copy>p,
.rd-contact-copy address {
    color: var(--rd-muted);
    font-size: 14px;
    line-height: 1.8;
    font-style: normal;
}

.rd-home-gallery {
    background: var(--rd-black);
}

.rd-gallery-count {
    color: var(--rd-muted);
    font-size: 11px;
    letter-spacing: 3px;
    white-space: nowrap;
}

.rd-gallery-stage {
    position: relative;
    margin-top: 32px;
    background: transparent;
}

.rd-gallery-stage>img {
    width: 100%;
    height: clamp(260px, 46vw, 600px);
    object-fit: contain;
}

.rd-gallery-controls {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.rd-gallery-controls .rd-button {
    background: #08090ae6;
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}

.rd-gallery-controls .rd-button:hover,
.rd-gallery-controls .rd-button:focus-visible {
    color: var(--rd-white);
}

.rd-gallery-thumbnails {
    display: flex;
    overflow-x: hidden;
    gap: 10px;
    padding: 16px 0;
    scrollbar-color: var(--rd-red) #151719;
}

.rd-gallery-thumbnails button {
    flex: 0 0 100px;
    padding: 0;
    border: 2px solid transparent;
    background: #111;
    opacity: .55;
    cursor: pointer;
}

.rd-gallery-thumbnails button[aria-pressed='true'],
.rd-gallery-thumbnails button:hover {
    border-color: var(--rd-red);
    opacity: 1;
}

.rd-gallery-thumbnails img {
    width: 100%;
    height: 66px;
    object-fit: cover;
}

.rd-home-contact {
    background: linear-gradient(120deg, #12090b, #060809 60%);
}

.rd-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 80px;
}

.rd-contact-copy .rd-section-heading h2 {
    max-width: 370px;
}

.rd-contact-copy>p {
    max-width: 340px;
    margin: 28px 0;
}

.rd-contact-copy address {
    margin-bottom: 32px;
}

.rd-home-contact-form {
    min-width: 0;
}

.rd-home-contact-form>.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rd-home-contact-form .col-md-12 {
    grid-column: 1 / -1;
}

.rd-home-contact-form h3 {
    margin: 0 0 8px;
    font: 600 30px/1.1 var(--rd-display);
    text-transform: uppercase;
}

.rd-home-contact-form .form-control {
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #393638;
    border-radius: 0;
    background: #101113;
    color: var(--rd-white);
    font: 14px/1.5 var(--rd-body);
}

.rd-home-contact-form .form-control::placeholder {
    color: #aaa;
}

.rd-home-contact-form textarea.form-control {
    min-height: 188px;
    resize: vertical;
}

.rd-home-contact-form .form-control:focus {
    outline: 1px solid var(--rd-red);
    border-color: var(--rd-red);
}

.rd-home-contact-form .error,
.rd-home-contact-form .success,
.rd-home-contact-form .d-none {
    display: none;
}

.rd-home-contact-form #submit {
    margin: 0;
}

.rd-home-contact-form .g-recaptcha {
    margin-bottom: 20px;
}

.rd-home-contact-form [type=submit] {
    min-height: 48px;
    padding: 14px 28px;
    border: 1px solid var(--rd-red);
    border-radius: 0;
    background: var(--rd-red);
    color: #070707;
    font: 600 10px/1.5 var(--rd-body);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.rd-home-contact-form [type=submit]:disabled,
.rd-home-contact-form .disabled {
    opacity: .5;
    cursor: not-allowed;
}

.rd-home-section button:focus-visible,
.rd-home-section a:focus-visible {
    outline: 2px solid var(--rd-red);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .rd-about-grid {
        gap: 24px;
    }
    .rd-about-grid h3 {
        font-size: 28px;
    }
    .rd-contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 680px) {
    .rd-home-section {
        padding-block: 48px;
    }
    .rd-home-container {
        padding-inline: 22px;
    }
    .rd-about-grid {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
    .rd-about-grid h3 {
        max-width: none;
        min-height: 0;
    }
    .rd-home-contact-form>.row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .rd-home-contact-form h3 {
        margin-bottom: 24px;
    }
    .rd-home-contact-form .form-control {
        font-size: 16px;
    }
    .rd-gallery-controls {
        right: 10px;
        bottom: 10px;
    }
    .rd-gallery-thumbnails button {
        flex-basis: 80px;
    }
}


/* Homepage */

.rd-home-hero {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    border-bottom: 1px solid var(--rd-line);
    background: #020303;
    display: flex;
    align-items: center;
    padding-bottom: 5rem;
}

.rd-home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rd-home-hero::after {
    position: absolute;
    inset: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 55%), linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 35%);
}

.rd-home-hero__content {
    position: relative;
    z-index: 2;
    width: 455px;
    padding: 108px 0 0 var(--rd-gutter);
}

.rd-home-hero__location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #aeadad;
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.rd-home-hero__location::after {
    width: 65px;
    height: 1px;
    content: '';
    background: #8d8e90;
}

.rd-home-title {
    margin: 0;
    font-family: var(--rd-display);
    font-size: clamp(90px, 10vw, 108px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 0.8;
    text-transform: uppercase;
}

.rd-home-title span {
    display: block;
    color: var(--rd-red);
}

.rd-home-hero__subtitle {
    margin: 18px 0 15px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 7px;
    line-height: 1.5;
    text-transform: uppercase;
}

.rd-home-hero__body {
    max-width: 330px;
    margin: 0 0 24px;
    color: #b7b4b4;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.8px;
}

.rd-home-hero__actions {
    display: flex;
    gap: 23px;
}

.rd-home-hero__actions .rd-button {
    min-width: 157px;
    padding: 0 20px;
}

.rd-home-hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 22px;
    left: var(--rd-gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a6a4a4;
    font-size: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-home-hero__scroll svg {
    width: 10px;
}

.rd-home-hero__manifesto {
    position: absolute;
    z-index: 3;
    top: 106px;
    right: 35px;
    display: flex;
    height: 230px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    color: #888;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-home-hero__coordinates {
    position: absolute;
    z-index: 3;
    right: 36px;
    bottom: 42px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    color: #aaa;
    font-size: 8px;
    letter-spacing: 2px;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
}

.rd-next-event {
    display: grid;
    height: 80px;
    grid-template-columns: 222px 112px minmax(0, 1fr) 160px;
    align-items: center;
    padding: 0 43px;
    border-bottom: 1px solid var(--rd-line);
    background: linear-gradient(90deg, #040606, #080909 52%, #040404);
}

.rd-next-event__label {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.rd-next-event__label::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: '';
    background: var(--rd-red);
}

.rd-next-event__date {
    align-self: stretch;
    padding: 20px 28px;
    border-left: 1px solid var(--rd-line);
    font-family: var(--rd-display);
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
}

.rd-next-event__date small {
    display: block;
    margin-top: 5px;
    font-family: var(--rd-body);
    color: #aaa;
    font-size: 8px;
    letter-spacing: 4px;
}

.rd-next-event__artist {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
}

.rd-next-event__artist img {
    width: 87px;
    height: 79px;
    object-fit: cover;
    object-position: 35% 35%;
    filter: grayscale(1) contrast(1.2);
    mask-image: linear-gradient(90deg, transparent, #000 25%, #000 85%, transparent);
}

.rd-next-event__artist strong {
    display: block;
    font-family: var(--rd-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.rd-next-event__artist span {
    color: #aaa;
    font-size: 9px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.rd-featured {
    min-height: 483px;
    padding: 34px var(--rd-gutter) 30px;
    background: radial-gradient(circle at 50% 15%, #0b0d0e 0%, #030404 52%, #010202 100%);
}

.rd-featured .rd-eyebrow {
    margin-bottom: 6px;
}

.rd-site .rd-featured__calendar-mobile {
    display: none;
}

.rd-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
}

.rd-section-heading h2 {
    margin: 0;
    font-family: var(--rd-display);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0.95;
    text-transform: uppercase;
}

.rd-section-heading h2 span {
    color: var(--rd-red);
}

.rd-event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rd-event-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #090909;
}

.rd-event-card__flyer {
    display: block;
    position: relative;
    width: 100%;
    min-height: 330px;
    aspect-ratio: 0.9;
    overflow: hidden;
    border: 1px solid rgba(255, 39, 54, 0.62);
}

.rd-event-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 450ms ease, filter 450ms ease;
}

.rd-event-card:hover .rd-event-card__image {
    transform: scale(1.025);
    filter: saturate(1);
}

.rd-event-card__date {
    display: block;
    margin: 0;
    color: #e8e6e4;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
}

.rd-event-card__mobile-date {
    display: none;
}

.rd-event-card__date strong {
    display: block;
    margin: 5px 0 4px;
    font-family: var(--rd-display);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
}

.rd-event-card__content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 22px 22px 16px;
}

@media (min-width: 681px) {
    .rd-event-card__content {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .rd-event-card__heading {
        grid-column: 1;
        grid-row: 1;
    }
    .rd-event-card__date {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }
}

.rd-event-card__content h3 {
    margin: 0;
    font-family: var(--rd-display);
    font-size: clamp(24px, 2.7vw, 36px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.rd-event-card__content p {
    margin: 3px 0 0;
    color: #bbb;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rd-event-card__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
}

.rd-event-card__actions .rd-button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 8px;
    letter-spacing: 1px;
    gap: 6px;
}

.rd-event-card__actions .rd-button:last-child,
.rd-next-event>.rd-button,
.rd-event-hero__actions .rd-button,
.rd-event-page .rd-header-actions .rd-button {
    border-color: rgba(255, 39, 54, 0.75);
}

.rd-experience {
    position: relative;
    display: grid;
    min-height: 414px;
    grid-template-columns: 37% 63%;
    overflow: hidden;
    border-top: 1px solid #161718;
    background: #040505;
}

.rd-experience__copy {
    position: relative;
    z-index: 2;
    padding: 35px 26px 40px var(--rd-gutter);
    background: linear-gradient(90deg, #050606 76%, rgba(5, 6, 6, 0));
}

.rd-experience__count {
    color: #d2d0ce;
    font-size: 9px;
    letter-spacing: 3px;
}

.rd-experience__copy .rd-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rd-experience__copy .rd-experience__label {
    color: var(--rd-red);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rd-experience__panels {
    display: grid;
}

.rd-experience__panels>article {
    grid-area: 1 / 1;
    min-width: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 280ms ease, transform 280ms ease, visibility 0s;
}

.rd-experience__panels>article[hidden] {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 280ms ease, transform 280ms ease, visibility 0s 280ms;
}

.rd-experience__panels>article>p {
    line-height: 1.7;
    white-space: normal;
}

.rd-experience__controls {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.rd-experience__controls button {
    width: 44px;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid #343434;
    color: #bbb;
    font: 500 11px var(--rd-body);
    cursor: pointer;
}

.rd-experience__controls button.is-active,
.rd-experience__controls button:hover {
    color: #fff;
    border-color: var(--rd-red);
}

.rd-experience__controls button:focus-visible {
    outline: 2px solid var(--rd-red);
    outline-offset: 3px;
}

.rd-experience__media>img {
    position: absolute;
    inset: 0;
}

.rd-experience__copy h2 {
    max-width: 300px;
    margin: 17px 0 23px;
    font-family: var(--rd-display);
    font-size: 52px;
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
}

.rd-experience__copy p {
    margin: 0 0 22px;
    color: #cecccc;
    font-size: 14px;
    line-height: 1.35;
    white-space: pre-line;
}

.rd-experience__copy .rd-text-link::before {
    position: absolute;
    top: -22px;
    left: 0;
    display: block;
    width: 55px;
    height: 1px;
    content: '';
    background: var(--rd-red);
}

.rd-experience__copy .rd-text-link {
    position: relative;
    margin-top: 24px;
}

.rd-experience__media {
    position: relative;
    min-width: 0;
}

.rd-experience__media::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(90deg, #050606 0%, transparent 23%, transparent 80%, rgba(0, 0, 0, 0.42));
}

.rd-experience__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transition: opacity 220ms ease;
}

.rd-experience__caption {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 44px;
    color: #b9b7b7;
    font-size: 8px;
    letter-spacing: 2.5px;
    line-height: 1.6;
    text-transform: uppercase;
}

.rd-experience__pagination {
    position: absolute;
    z-index: 3;
    top: 102px;
    right: 22px;
    display: grid;
    gap: 9px;
}

.rd-experience__pagination button {
    position: relative;
    padding: 0;
    border: 0;
    background: none;
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
}

.rd-experience__pagination button.is-active {
    color: var(--rd-white);
}

.rd-experience__pagination button.is-active::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 14px;
    height: 1px;
    content: '';
    background: var(--rd-red);
}


/* Event detail */

.rd-event-page {
    background: #020303;
}

.rd-breadcrumbs {
    display: flex;
    height: 39px;
    align-items: center;
    gap: 10px;
    padding: 0 44px;
    color: #a9a6a6;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rd-breadcrumbs a:hover {
    color: var(--rd-red);
}

.rd-breadcrumbs strong {
    color: var(--rd-red);
    font-weight: 500;
}

.rd-event-hero {
    display: grid;
    height: 562px;
    grid-template-columns: minmax(0, 72.5%) minmax(256px, 27.5%);
    border-bottom: 1px solid var(--rd-line);
}

.rd-event-hero__art {
    position: relative;
    overflow: hidden;
}

.rd-event-hero__art>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rd-event-hero__art::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 42%);
}

.rd-event-hero__presenter {
    position: absolute;
    z-index: 2;
    top: 39px;
    left: 49px;
}

.rd-event-hero__presenter img {
    width: 113px;
}

.rd-event-hero__presenter span {
    display: block;
    margin-top: 2px;
    color: #a7a5a5;
    font-size: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-event-hero__manifesto {
    position: absolute;
    z-index: 2;
    top: 137px;
    left: 50px;
    display: grid;
    gap: 11px;
    color: #bab8b8;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-event-hero__title {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 76px;
    left: 48px;
}

.rd-event-hero__title h1 {
    max-width: 540px;
    margin: 0;
    font-family: var(--rd-body);
    font-size: 90px;
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.78;
    text-transform: uppercase;
    transform: scaleX(1.2);
    transform-origin: left center;
}

.rd-event-hero__title h1 span {
    display: block;
}

.rd-event-hero__title h1 span:first-child {
    margin-bottom: 5px;
    transform: scaleX(1.15);
    transform-origin: left;
}

.rd-event-hero__title p {
    margin: 12px 0 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 9px;
    line-height: 1;
    text-transform: uppercase;
}

.rd-event-hero__location-label {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b7b4b4;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.rd-event-hero__location-label::before {
    width: 14px;
    height: 1px;
    content: '';
    background: var(--rd-white);
}

.rd-event-hero__details {
    display: flex;
    flex-direction: column;
    padding: 15px 45px 22px 39px;
    background: linear-gradient(rgba(1, 2, 2, 0.97), rgba(1, 2, 2, 0.98)), url('/images/gallery/5.jpg') center / cover;
}

.rd-event-date-label {
    margin: 0;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rd-event-date {
    margin: 2px 0 13px;
    font-family: var(--rd-display);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 0.9;
    text-transform: uppercase;
}

.rd-event-year {
    margin: 0 0 21px;
    font-size: 12px;
    letter-spacing: 4px;
}

.rd-event-hero__details hr {
    width: 37px;
    height: 1px;
    margin: 0 0 14px;
    border: 0;
    background: var(--rd-red);
}

.rd-event-hero__details h2 {
    margin: 0 0 20px;
    font-family: var(--rd-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.05;
    text-transform: uppercase;
}

.rd-event-meta {
    display: grid;
    gap: 13px;
    margin-bottom: 20px;
}

.rd-event-meta__item {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 10px;
}

.rd-event-meta__item svg {
    width: 16px;
    height: 16px;
    color: var(--rd-red);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.rd-event-meta__item strong,
.rd-event-meta__item span {
    display: block;
}

.rd-event-meta__item strong {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rd-event-meta__item span {
    color: #c0bebe;
    font-size: 12px;
    line-height: 1.45;
}

.rd-event-hero__actions {
    display: grid;
    gap: 14px;
}

.rd-event-hero__actions .rd-button {
    width: 100%;
    min-height: 45px;
}

.rd-share {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: auto;
    color: #aaa;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rd-share a {
    color: var(--rd-white);
    font-size: 18px;
    font-weight: 500;
}

.rd-event-about {
    display: grid;
    min-height: 316px;
    grid-template-columns: 49% 51%;
    padding: 22px 47px 0;
    border-bottom: 1px solid var(--rd-line);
    background: linear-gradient(110deg, #060707 0%, #040505 54%, #070808 100%);
}

.rd-event-about__copy {
    padding-right: 44px;
}

.rd-event-about h2,
.rd-upcoming h2 {
    margin: 0 0 12px;
    font-family: var(--rd-display);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1;
    text-transform: uppercase;
}

.rd-event-about p {
    margin: 0 0 16px;
    color: #c5c2c2;
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.55;
}

.rd-event-about__media {
    position: relative;
    overflow: hidden;
}

.rd-event-about__media img {
    width: 100%;
    height: 292px;
    object-fit: cover;
    object-position: center 52%;
    filter: grayscale(1);
}

.rd-event-about__media::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(90deg, #050606 0%, transparent 24%, transparent 78%, rgba(0, 0, 0, 0.35));
}

.rd-event-about__caption {
    position: absolute;
    z-index: 2;
    right: 27px;
    bottom: 35px;
    color: #ddd;
    font-size: 9px;
    letter-spacing: 3px;
    line-height: 1.7;
    text-transform: uppercase;
}

.rd-event-about .rd-event-about__caption {
    font-size: 9px;
    letter-spacing: 3px;
    line-height: 1.7;
}

.rd-feature-rail {
    display: grid;
    height: 90px;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 0 48px;
    border-bottom: 1px solid var(--rd-line);
}

.rd-feature-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.rd-feature-item svg {
    width: 47px;
    height: 47px;
    color: var(--rd-red);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.rd-feature-item span {
    color: #c7c4c4;
    font-size: 8px;
    letter-spacing: 2px;
    line-height: 1.7;
    text-transform: uppercase;
}

.rd-upcoming {
    position: relative;
    min-height: 267px;
    padding: 29px 52px 28px;
    border-bottom: 1px solid var(--rd-line);
    background: #040505;
}

.rd-upcoming .rd-section-heading {
    margin-bottom: 10px;
}

.rd-upcoming .rd-section-heading h2 {
    margin-bottom: 0;
}

.rd-upcoming-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    overflow: auto hidden;
    scrollbar-width: none;
}

.rd-upcoming-rail::-webkit-scrollbar {
    display: none;
}

.rd-upcoming-card {
    position: relative;
    width: 100%;
    min-height: 168px;
    aspect-ratio: 1.08;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 39, 54, 0.58);
}

.rd-upcoming-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
}

.rd-upcoming-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(105deg, rgba(126, 0, 10, 0.2), transparent 58%), linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.9));
}

.rd-upcoming-card__date {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    color: #eee;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
}

.rd-upcoming-card__date strong {
    display: block;
    margin-top: 2px;
    font-family: var(--rd-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.rd-upcoming-card__title {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 10px;
    left: 12px;
}

.rd-upcoming-card__title strong {
    display: block;
    overflow: hidden;
    font-family: var(--rd-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.rd-upcoming-card__title span {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: #bbb;
    font-size: 7px;
    letter-spacing: 1px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.rd-rail-button {
    position: absolute;
    z-index: 4;
    top: calc(50% + 16px);
    width: 28px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--rd-white);
    cursor: pointer;
}

.rd-rail-button svg {
    width: 14px;
}

.rd-rail-button--prev {
    left: 16px;
}

.rd-rail-button--next {
    right: 13px;
}


/* Footer */

.rd-footer {
    height: 198px;
    padding: 34px 0 20px;
    background: linear-gradient(180deg, #050606, #020303);
}

.rd-footer-main,
.rd-footer-base__inner {
    width: 100%;
    max-width: var(--rd-container-width);
    margin-inline: auto;
    padding-inline: 49px;
}

.rd-footer-main {
    display: grid;
    grid-template-columns: 258px 1fr 200px;
    align-items: center;
    min-height: 91px;
}

.rd-footer-brand {
    align-self: start;
}

.rd-footer-brand img {
    width: 115px;
    height: auto;
}

.rd-footer-brand p,
.rd-footer-contact p {
    margin: 12px 0 0;
    color: #aaa;
    font-size: 8px;
    letter-spacing: 2.1px;
    line-height: 1.7;
    text-transform: uppercase;
}

.rd-footer-nav {
    display: flex;
    min-height: 52px;
    flex-wrap: wrap;
    gap: 16px 22px;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 22px;
    border-right: 1px solid var(--rd-line);
    border-left: 1px solid var(--rd-line);
}

.rd-footer-nav a {
    font-size: 7px;
    letter-spacing: 2.2px;
}

.rd-footer-contact {
    padding-left: 54px;
}

.rd-socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.rd-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rd-socials svg,
.rd-share a svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.rd-footer-base {
    border-top: 1px solid var(--rd-line);
    color: #858585;
    font-size: 7px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.rd-footer-base__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 49px;
}


/* Full-width section backgrounds with the existing composition centered inside. */

@media (min-width: 1441px) {
    .rd-header {
        padding-left: calc(var(--rd-container-offset) + 43px);
        padding-right: calc(var(--rd-container-offset) + 37px);
    }
    .rd-home-hero__content {
        margin-left: var(--rd-container-offset);
    }
    .rd-home-hero__scroll {
        left: calc(var(--rd-container-offset) + var(--rd-gutter));
    }
    .rd-home-hero__manifesto {
        right: calc(var(--rd-container-offset) + 35px);
    }
    .rd-home-hero__coordinates {
        right: calc(var(--rd-container-offset) + 36px);
    }
    .rd-next-event {
        padding-inline: calc(var(--rd-container-offset) + 43px);
    }
    .rd-featured {
        padding-inline: calc(var(--rd-container-offset) + var(--rd-gutter));
    }
    .rd-experience,
    .rd-event-hero {
        padding-inline: var(--rd-container-offset);
    }
    .rd-breadcrumbs {
        padding-inline: calc(var(--rd-container-offset) + 44px);
    }
    .rd-event-about {
        padding-inline: calc(var(--rd-container-offset) + 47px);
    }
    .rd-feature-rail {
        padding-inline: calc(var(--rd-container-offset) + 48px);
    }
    .rd-upcoming {
        padding-inline: calc(var(--rd-container-offset) + 52px);
    }
    .rd-rail-button--prev {
        left: calc(var(--rd-container-offset) + 16px);
    }
    .rd-rail-button--next {
        right: calc(var(--rd-container-offset) + 13px);
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .rd-event-card__actions .rd-button {
        padding-inline: 6px;
        font-size: 7px;
        letter-spacing: 0.5px;
        gap: 5px;
    }
}

@media (max-width: 900px) {
    .rd-site header.rd-header {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        background: var(--rd-black);
    }
    .rd-content-page #wrapper,
    .rd-event-page .rd-shell {
        padding-top: var(--rd-header-height);
    }
    .rd-menu-toggle {
        display: grid;
    }
    .rd-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
     :root {
        --rd-gutter: 30px;
    }
    .rd-header {
        grid-template-columns: 130px 1fr auto;
        padding: 0 24px;
    }
    .rd-nav {
        position: absolute;
        top: var(--rd-header-height);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 20px;
        border-bottom: 1px solid var(--rd-line);
        background: rgba(2, 3, 3, 0.98);
    }
    .rd-nav.is-open {
        display: flex;
    }
    .rd-nav a {
        padding: 13px 0;
    }
    .rd-nav a::after {
        bottom: 7px;
        width: 35px;
    }
    .rd-header-actions {
        grid-column: 3;
    }
    .rd-home-hero__manifesto {
        display: none;
    }
    .rd-next-event {
        grid-template-columns: 160px 95px minmax(0, 1fr) 140px;
        padding: 0 25px;
    }
    .rd-next-event__label {
        gap: 12px;
        font-size: 9px;
        letter-spacing: 3px;
    }
    .rd-next-event__date {
        padding-right: 14px;
        padding-left: 18px;
    }
    .rd-next-event__artist img {
        display: none;
    }
    .rd-next-event__artist strong {
        font-size: 28px;
    }
    .rd-next-event__artist {
        padding-left: 12px;
    }
    .rd-next-event__artist span {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .rd-event-card__content {
        padding-right: 14px;
        padding-left: 14px;
    }
    .rd-event-card__content h3 {
        font-size: 30px;
    }
    .rd-event-card__actions {
        gap: 8px;
    }
    .rd-event-card__actions .rd-button {
        gap: 6px;
        padding: 0 8px;
        font-size: 7px;
        letter-spacing: 1px;
    }
    .rd-experience__copy h2 {
        font-size: 42px;
    }
    .rd-feature-rail {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 24px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .rd-event-hero {
        height: auto;
        grid-template-columns: 1fr;
    }
    .rd-event-hero__art {
        min-height: 590px;
    }
    .rd-event-hero__details {
        min-height: 480px;
    }
    .rd-event-about {
        height: auto;
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }
    .rd-event-about__copy {
        padding-right: 0;
        padding-bottom: 28px;
    }
    .rd-upcoming-rail {
        grid-template-columns: repeat(5, 190px);
    }
    .rd-footer {
        height: auto;
    }
    .rd-footer-main {
        grid-template-columns: 180px 1fr;
    }
    .rd-footer-contact {
        display: none;
    }
}

@media (max-width: 680px) {
     :root {
        --rd-gutter: 22px;
        --rd-header-height: 62px;
    }
    .rd-header {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }
    .rd-logo,
    .rd-logo img {
        width: 105px;
    }
    .rd-header-actions {
        grid-column: auto;
        gap: 16px;
    }
    .rd-header-actions .rd-button {
        display: none;
    }
    .rd-home-hero {
        height: 660px;
    }
    .rd-home-hero__image {
        object-position: 65% center;
    }
    .rd-home-hero::after {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12)), linear-gradient(0deg, #020303 0%, transparent 38%);
    }
    .rd-home-hero__content {
        width: auto;
        padding-top: 118px;
        padding-right: var(--rd-gutter);
    }
    .rd-home-title {
        font-size: clamp(78px, 22vw, 102px);
        transform: none;
    }
    .rd-home-hero__subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .rd-home-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }
    .rd-home-hero__actions .rd-button {
        width: min(100%, 240px);
    }
    .rd-home-hero__coordinates {
        display: none;
    }
    .rd-next-event {
        height: auto;
        min-height: 184px;
        grid-template-columns: 1fr 84px;
        gap: 12px;
        padding: 20px 22px;
    }
    .rd-next-event__label {
        font-size: 9px;
    }
    .rd-next-event__date {
        padding: 12px 18px;
    }
    .rd-next-event__artist {
        grid-column: 1 / -1;
        padding-left: 0;
    }
    .rd-next-event__artist img {
        display: block;
        width: 66px;
        height: 66px;
    }
    .rd-next-event>.rd-button {
        grid-column: 1 / -1;
    }
    .rd-featured {
        height: auto;
        padding-top: 48px;
        padding-bottom: 52px;
    }
    .rd-site .rd-featured__calendar-desktop {
        display: none;
    }
    .rd-site .rd-featured__calendar-mobile {
        display: inline-flex;
        margin-top: 24px;
    }
    .rd-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
    .rd-section-heading h2 {
        font-size: 49px;
    }
    .rd-event-grid {
        gap: 12px;
    }
    .rd-event-card__flyer {
        min-height: 240px;
        aspect-ratio: 1.2;
    }
    .rd-event-card__content {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px 8px;
        padding: 12px 10px;
    }
    .rd-event-card__content h3 {
        font-size: clamp(20px, 5.6vw, 28px);
    }
    .rd-event-card__content p {
        display: none;
    }
    .rd-event-card__date {
        display: none;
    }
    .rd-event-card__mobile-date {
        display: block;
        margin-top: 6px;
        color: #e8e6e4;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.4;
        white-space: nowrap;
        text-transform: none;
    }
    .rd-event-card__actions {
        grid-template-columns: minmax(0, 1fr);
    }
    .rd-event-card__actions .rd-button {
        min-height: 44px;
        font-size: 8px;
        letter-spacing: 1px;
    }
    .rd-experience {
        height: auto;
        grid-template-columns: 1fr;
    }
    .rd-experience__copy {
        padding: 48px 22px 34px;
    }
    .rd-experience__copy h2 {
        font-size: 48px;
    }
    .rd-experience__media {
        height: 350px;
    }
    .rd-breadcrumbs {
        height: auto;
        min-height: 48px;
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    .rd-event-hero__art {
        min-height: 550px;
    }
    .rd-event-hero__art>img {
        object-position: 25% center;
    }
    .rd-event-hero__presenter,
    .rd-event-hero__manifesto,
    .rd-event-hero__title,
    .rd-event-hero__location-label {
        left: 24px;
    }
    .rd-event-hero__title h1 {
        font-size: clamp(52px, 14.5vw, 90px);
        letter-spacing: -2px;
        transform: none;
    }
    .rd-event-hero__title h1 span:first-child {
        transform: none;
    }
    .rd-event-hero__title p {
        font-size: clamp(12px, 3.5vw, 18px);
        letter-spacing: 4px;
    }
    .rd-event-hero__details {
        min-height: 510px;
        padding: 35px 24px 28px;
    }
    .rd-share {
        margin-top: 28px;
    }
    .rd-event-about {
        padding: 40px 22px 0;
    }
    .rd-event-about p {
        font-size: 14px;
    }
    .rd-event-about__media img {
        height: 340px;
    }
    .rd-feature-rail {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 22px;
    }
    .rd-upcoming {
        height: auto;
        padding: 45px 22px 40px;
    }
    .rd-upcoming-rail {
        grid-template-columns: repeat(5, 210px);
    }
    .rd-upcoming-card {
        height: 240px;
    }
    .rd-rail-button {
        display: none;
    }
    .rd-footer {
        padding: 38px 0 24px;
    }
    .rd-footer-main,
    .rd-footer-base__inner {
        padding-inline: 22px;
    }
    .rd-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rd-footer-nav {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding: 24px 0;
        border-right: 0;
        border-left: 0;
        border-top: 1px solid var(--rd-line);
        border-bottom: 1px solid var(--rd-line);
    }
    .rd-footer-base__inner {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        padding-top: 24px;
    }
    .rd-footer-base {
        border-top: 0;
    }
}

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