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

:root {
    --bg: #02040b;
    --bg-elevated: #07101c;
    --text: #fff;
    --border-strong: rgba(196, 213, 233, 0.42);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(80, 122, 158, 0.16), transparent 34%),
        linear-gradient(180deg, #040712 0%, #03060f 34%, #02040b 100%);
    color: var(--text);
    font-family: "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 60px;
    background: url("../images/Mindcab_Frontpage.webp") center/cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(2, 4, 11, 0) 0%, rgba(2, 4, 11, 0.45) 52%, rgba(2, 4, 11, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-logo {
    text-align: center;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.mindcab-svg {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-tagline {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -30px;
    margin-left: 0;
    transform: translateX(2px);
}

.hero-tagline span {
    font-size: clamp(12px, 2.5vw, 20px);
    font-weight: 100;
    letter-spacing: 0.45em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.scroll-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: scrollPulse 2.2s ease-in-out infinite;
    color: inherit;
}

.scroll-hint svg {
    display: block;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.85;
    }
}

.band-section {
    background:
        radial-gradient(circle at 8% 20%, rgba(69, 98, 124, 0.16), transparent 26%),
        linear-gradient(180deg, #02040b 0%, #040915 100%);
    padding: 72px 60px 100px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.band-section::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}

.band-layout {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(440px, 1.1fr) minmax(420px, 0.9fr);
    column-gap: clamp(36px, 4vw, 72px);
    align-items: start;
}

.band-image-frame {
    width: 100%;
    max-width: 820px;
    flex-shrink: 0;
    position: relative;
    align-self: flex-start;
    overflow: hidden;
    border-radius: 6px;
    justify-self: end;
}

.band-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(80vh, 820px);
    opacity: 1;
    object-fit: contain;
    object-position: left bottom;
    display: block;
}

.band-text {
    max-width: 620px;
    justify-self: start;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    text-align: justify;
    padding-top: 0;
}

.band-text p {
    margin-bottom: 1em;
}

.band-text p:last-child {
    margin-bottom: 0;
}

.listen-section {
    background:
        radial-gradient(circle at top, rgba(66, 100, 128, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(4, 8, 15, 0.98), rgba(2, 4, 11, 1));
    padding: 0 60px 64px;
    position: relative;
}

.listen-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}

.listen-layout {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

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

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.now-playing-label {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.now-playing-label span {
    color: rgba(255, 255, 255, 0.95);
}

.track-list,
.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.track-list {
    margin-bottom: 0;
}

.listen-section.has-lyrics .track-list {
    margin-bottom: 24px;
}

.track-button,
.contact-link {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    width: auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.contact-link {
    text-decoration: none;
}

.track-button:hover,
.track-button:focus-visible,
.track-button.is-active,
.contact-link:hover,
.contact-link:focus-visible {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.track-button.is-paused {
    animation: pausedPulse 1000ms ease-in-out infinite;
}

@keyframes pausedPulse {
    0%,
    100% {
        background-color: #fff;
        color: #000;
        border-color: #fff;
    }

    50% {
        background-color: #000;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.75);
    }
}

.lyrics-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 16px;
}

.lyrics-panel.is-hidden {
    display: none;
}

.lyrics-content {
    max-width: 680px;
    margin: 0 auto;
}

.lyrics-content p {
    white-space: pre-line;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    margin-bottom: 18px;
}

.lyrics-content p:last-child {
    margin-bottom: 0;
}

.gallery-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(76, 111, 143, 0.14), transparent 24%),
        linear-gradient(180deg, #050914 0%, #02040b 100%);
    padding: 0 60px 100px;
    position: relative;
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}

.gallery-header {
    padding-top: 24px;
}

.gallery-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.gallery-nav {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 26vw);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.gallery-track::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #060606;
    padding: 0;
    cursor: zoom-in;
    scroll-snap-align: center;
    overflow: hidden;
    border-radius: 6px;
    min-height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    opacity: 1;
    transform: scale(1.03);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-lightbox.is-hidden {
    display: none;
}

.lightbox-image {
    max-width: min(92vw, 1300px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-control {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    font-size: 22px;
    display: grid;
    place-items: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lightbox-control:hover,
.lightbox-control:focus-visible {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-section {
    background:
        radial-gradient(circle at bottom, rgba(73, 108, 141, 0.16), transparent 28%),
        linear-gradient(180deg, #02040b 0%, #050916 100%);
    padding: 0 60px 80px;
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}

.contact-header {
    padding-top: 24px;
    margin-bottom: 22px;
}

.site-credit {
    padding: 18px 20px 24px;
    text-align: center;
    font: inherit;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.site-credit p {
    margin: 0;
}

.site-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

.language-button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 4px 8px;
    font: inherit;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
}

.site-credit-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.site-credit a {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.site-credit a:hover,
.site-credit a:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.legal-page {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(80, 122, 158, 0.18), transparent 32%),
        linear-gradient(180deg, #040712 0%, #02040b 100%);
}

.legal-shell {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.legal-back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
    color: #fff;
}

.legal-card {
    background: rgba(7, 16, 28, 0.72);
    border: 1px solid rgba(196, 213, 233, 0.22);
    border-radius: 10px;
    padding: 34px 28px;
    backdrop-filter: blur(8px);
}

.legal-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.legal-card h1 {
    margin-bottom: 28px;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.legal-card > div + div {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-card > div h2 {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.legal-card > div p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.legal-card > div a {
    color: #fff;
}

.legal-email-link {
    display: inline;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    width: auto;
    min-width: 0;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: rgba(255, 255, 255, 0.96);
    white-space: normal;
    vertical-align: baseline;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
}

.legal-email-link:hover,
.legal-email-link:focus-visible {
    background: transparent;
    color: #fff;
    border-color: transparent;
    text-decoration-style: solid;
}

@media (max-width: 768px) {
    .hero {
        padding: 35px 15px 45px;
    }

    .hero-tagline span {
        letter-spacing: 0.35em;
    }

    .band-section {
        flex-direction: column;
        padding: 36px 30px 80px;
        gap: 40px;
    }

    .band-section::before {
        top: 18px;
        left: 30px;
        right: 30px;
    }

    .listen-section {
        padding: 0 30px 80px;
    }

    .listen-section::before {
        left: 30px;
        right: 30px;
    }

    .listen-layout {
        padding-top: 20px;
    }

    .band-image-frame {
        width: 100%;
    }

    .band-layout {
        width: 100%;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .contact-section {
        padding: 0 30px 60px;
    }

    .contact-section::before {
        left: 30px;
        right: 30px;
    }

    .gallery-section {
        padding: 0 30px 80px;
    }

    .gallery-section::before {
        left: 30px;
        right: 30px;
    }

    .gallery-header {
        padding-top: 20px;
    }

    .gallery-track {
        grid-auto-columns: minmax(200px, 72vw);
    }

    .contact-links,
    .track-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 460px);
        margin-inline: auto;
        justify-items: stretch;
        gap: 15px;
    }

    .contact-link,
    .track-button {
        font-size: 13px;
        padding: 14px 15px;
        width: 100%;
    }

    .contact-header {
        padding-top: 20px;
        margin-bottom: 16px;
    }

    .site-credit {
        padding: 14px 20px 20px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .site-credit-links {
        gap: 8px 14px;
    }

    .language-button {
        padding: 4px 7px;
    }

    .legal-shell {
        padding: 40px 20px 56px;
    }

    .legal-card {
        padding: 28px 20px;
    }

}

@media (max-width: 600px) {
    .contact-links,
    .track-list {
        grid-template-columns: 1fr;
        width: min(92%, 340px);
    }
}

@media (max-width: 1100px) {
    .band-section {
        flex-direction: column;
        gap: 40px;
    }

    .band-image-frame {
        width: 100%;
    }
}

@media (min-width: 1101px) {
    .band-image-frame {
        width: 100%;
        justify-self: end;
    }

    .band-text {
        max-width: 620px;
        justify-self: start;
    }
}

@media (max-width: 480px) {
    .band-section {
        padding: 44px 20px 60px;
    }

    .band-section::before {
        top: 14px;
        left: 20px;
        right: 20px;
    }

    .listen-section {
        padding: 0 20px 60px;
    }

    .listen-section::before {
        left: 20px;
        right: 20px;
    }

    .contact-section {
        padding: 0 20px 50px;
    }

    .contact-section::before {
        left: 20px;
        right: 20px;
    }

    .gallery-section {
        padding: 0 20px 60px;
    }

    .gallery-section::before {
        left: 20px;
        right: 20px;
    }

    .gallery-track {
        grid-auto-columns: minmax(190px, 78vw);
    }

    .gallery-lightbox {
        padding: 18px;
    }

    .lightbox-control {
        width: 42px;
        height: 42px;
    }

    .contact-links,
    .track-list {
        gap: 12px;
    }

    .contact-links,
    .track-list {
        width: min(90%, 320px);
    }

    .contact-header {
        padding-top: 16px;
        margin-bottom: 16px;
    }

    .site-credit {
        padding: 12px 16px 18px;
    }

    .site-credit-links {
        flex-direction: row;
        align-items: center;
        gap: 8px 14px;
    }

    .site-language-switcher {
        margin-bottom: 7px;
    }

    .contact-link,
    .track-button {
        font-size: 11px;
        padding: 12px 10px;
        width: 100%;
    }

}

@media (min-width: 769px) {
    .hero-logo {
        transform: translateY(-30px);
    }
}

@media (min-width: 1600px) {
    .hero-tagline span {
        font-size: clamp(16px, 1.1vw, 24px);
    }

    .band-text {
        font-size: 18px;
        line-height: 1.75;
    }

    .now-playing-label {
        font-size: 14px;
    }

    .track-button,
    .contact-link {
        font-size: 15px;
        padding: 16px 22px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

