:root {
    --bg: #111111;
    --surface: #181818;
    --surface-light: #111111;
    --text: #f4f1eb;
    --muted: #b8b2a8;
    --accent: #3c70b8;
    --accent-dark: #234a7c;
    --border: #333333;
    --max-width: 1120px;
    --member-photo-width: 190px;
    --member-card-height: calc(var(--member-photo-width) * 5 / 3);
}

.rubik-dirt-regular {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        #111111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    background: #111111;
    backdrop-filter: blur(12px);
}

.logo {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-nav a:hover {
    color: var(--text);
}

main {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
}

.hero-copy {
    align-self: center;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(3.8rem, 9vw, 7.5rem);
}

.hero p {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-photo {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    line-height: 0;
}

.hero-photo::before {
    display: none;
}

.hero-photo::after {
    display: none;
}

.hero-photo img {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-photo h1 {
    position: absolute;
    top: clamp(18px, 7vw, 72px);
    left: 50%;
    z-index: 1;
    width: min(90%, 760px);
    margin: 0;
    color: white;
    font-size: clamp(2.75rem, 8vw, 7rem);
    line-height: 0.92;
    text-align: center;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
    transform: translateX(-50%);
    pointer-events: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--accent);
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
    color: #141414;
    background: var(--accent);
}

.button.primary:hover {
    background: #234a7c;
    border-color: #234a7c;
}

.button.secondary {
    color: var(--text);
    background: transparent;
}

.button.secondary:hover {
    color: #141414;
    background: var(--text);
    border-color: var(--text);
}

.section {
    padding: 86px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 92px;
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.content-card,
.show-item,
.media-card {
    border: 1px solid var(--border);
    background: rgba(24, 24, 24, 0.88);
}

.content-card {
    padding: 28px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.content-card p,
.show-item p,
.media-card p,
.contact-card p {
    margin: 0;
    color: var(--muted);
}

.member-section {
    margin-top: 34px;
}

.member-section h3 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.member-card {
    display: grid;
    grid-template-columns: var(--member-photo-width) minmax(0, 1fr);
    align-items: stretch;
    height: var(--member-card-height);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(24, 24, 24, 0.88);
}

.member-card:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 30px) / 2);
}

.member-photo {
    display: grid;
    aspect-ratio: 3 / 5;
    position: relative;
    overflow: hidden;
    align-self: stretch;
    width: var(--member-photo-width);
    height: 100%;
    place-items: center;
    border-right: 1px solid var(--border);
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(184, 107, 60, 0.2), transparent 58%),
        radial-gradient(circle at top right, rgba(244, 241, 235, 0.08), transparent 42%),
        #0f0f0f;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-photo span {
    position: relative;
    z-index: 1;
    display: contents;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.member-info {
    align-self: stretch;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: 22px 24px 22px 30px;
}

.member-info h4 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 1.12rem;
}

.member-info .member-instrument {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.member-info p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.84rem, 1.05vw, 1rem);
    line-height: 1.45;
}

.show-list {
    display: grid;
    gap: 12px;
}

.show-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px;
    transition: border-color 160ms ease, background 160ms ease;
}

.show-item:hover {
    border-color: var(--accent);
    background: var(--surface-light);
}

.show-item time {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.show-item h3,
.media-card h3,
.contact-card h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
}

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

.media-card {
    padding: 22px;
}

.media-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
}

.media-placeholder {
    display: grid;
    position: relative;
    height: 220px;
    margin-bottom: 18px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(184, 107, 60, 0.16), transparent),
        #0f0f0f;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.media-placeholder video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 42px;
    color: var(--muted);
}

@media (max-width: 920px) {
    :root {
        --member-photo-width: 170px;
    }

    .site-header,
    main,
    .site-footer {
        width: min(100% - 28px, var(--max-width));
    }

    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 18vw, 5.5rem);
    }

    .hero-photo {
        min-height: 0;
    }

    .member-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .member-card:nth-child(7) {
        grid-column: auto;
        justify-self: stretch;
        width: auto;
    }
}

@media (max-width: 760px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 24px, var(--max-width));
    }

    .site-header {
        gap: 14px;
        padding: 18px 0;
    }

    .site-header,
    .site-nav,
    .contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: 10px;
    }

    .two-column,
    .member-grid,
    .media-grid,
    .show-item {
        grid-template-columns: 1fr;
    }

    .content-card,
    .media-card {
        padding: 20px;
    }

    .media-placeholder {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .media-card:nth-child(3) {
        grid-column: auto;
        justify-self: stretch;
        width: auto;
    }

    .contact-card .button {
        width: 100%;
    }

    .section {
        padding: 58px 0;
        scroll-margin-top: 24px;
    }
}

@media (max-width: 560px) {
    :root {
        --member-photo-width: 100%;
    }

    .site-header,
    main,
    .site-footer {
        width: min(100% - 20px, var(--max-width));
    }

    .logo {
        font-size: 0.92rem;
    }

    .site-nav a {
        font-size: 0.9rem;
    }

    .hero-photo h1 {
        top: 18px;
        font-size: clamp(2rem, 16vw, 4rem);
    }

    .section-heading h2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .member-card {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .member-photo {
        width: 100%;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .member-info {
        overflow: visible;
        padding: 18px;
    }

    .member-info p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .content-card,
    .media-card {
        padding: 16px;
    }
}
