@font-face {
    font-family: 'Retail';
    src: url('/font/font.woff2') format('woff2'),
         url('/font/font.woff') format('woff');
    font-display: auto;
    font-style: normal;
    font-weight: 650;
    font-stretch: normal;
}

:root {
    --bg: #1e1e28;
    --panel: #3a3d4e;
    --panel-strong: #424760;
    --panel-light: #686c80;
    --text: #edecf2;
    --muted: #5b789a;
    --muted-light: #849ab3;
    --accent: #364d66;
    --accent-2: #634027;
    --accent-2-light: #a18c7d;
    --accent-bright: #5b9bd5;
    --highlight: #fff1e7;
    --highlight-with-color: #f28d44;
    --header-text: #f28d44;
    --link: #4fd1c5;
    --border: rgba(91, 155, 213, 0.32);
    --shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
    --radius: 0.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
        linear-gradient(180deg, #1e1e28 0%, #252c3b 100%);
    background-repeat: repeat, no-repeat;
    background-size: 140px 140px, cover;
    background-attachment: fixed, fixed;
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: var(--highlight-with-color);
}

a:hover {
    color: var(--highlight);
}

h1, h2 {
    font-family: 'Archivo', sans-serif; font-weight:800; 
}
h3 {
    font-family: 'Archivo', sans-serif; font-weight:800;
    color: var(--header-text);
}

.section-subheading {
    color: var(--header-text);
}

.eyebrow,
.card-date,
.faq-group-heading {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: 'opsz' 14;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--bg);
    border-bottom: 2px solid var(--accent-bright);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    background: var(--panel);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    max-width: 720px;
    font-size: 0.9rem;
    color: var(--text);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    font-family: inherit;
}

.cookie-banner-actions .btn-secondary {
    cursor: pointer;
}

.navbar {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 32px;
    width: auto;
}

.nav-toggle {
    display: flex;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-right {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.4rem;
    min-width: 220px;
    max-width: 90vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.6rem 1.2rem 1rem;
}

.nav-right.is-open {
    display: flex;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0.6rem 0;
}

.nav-links a {
    color: var(--muted-light);
    text-decoration: none;
    font-weight: 500;
}

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

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.nav-social a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    transition: color 180ms ease;
}

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

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1.2rem 4rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 3rem;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.08;
    margin: 0 0 1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--highlight-with-color);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.lead {
    color: var(--muted-light);
    font-size: 1.05rem;
    max-width: 580px;
}

.hero-actions,
.contact-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.news-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.4rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4), 0 0 16px rgba(91, 155, 213, 0.4);
}

.btn-primary {
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
        linear-gradient(135deg, var(--accent-bright), var(--accent-2-light));
    color: var(--bg);
    box-shadow: var(--shadow), 0 0 22px rgba(91, 155, 213, 0.45);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 55%),
        var(--panel-light);
}

.hero-visual img {
    border-radius: var(--radius);
    min-height: 340px;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--panel);
}

.carousel-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
}

.carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 1.1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.58));
    color: #fff;
    font-size: 0.88rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    background: rgba(0,0,0,0.36);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 180ms ease;
    z-index: 2;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.62);
}

.carousel-prev { left: 0.6rem; }
.carousel-next { right: 0.6rem; }

.carousel-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.carousel-dot {
    appearance: none;
    -webkit-appearance: none;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.38);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease;
}

.carousel-dot.is-active {
    background: #fff;
}

.section {
    padding: 2.2rem 0 1rem;
}

.section-heading {
    margin-bottom: 1.1rem;
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.info-card,
.tour-card,
.contact-card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.card-permalink {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--muted);
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.card-permalink:hover {
    opacity: 1;
    color: var(--highlight);
}

.info-card h3 {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text);
}

.info-card a {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
}

.news-article {
    max-width: 720px;
    margin: 0 auto;
}

.news-article-body {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1rem 0 1.4rem;
}

.news-article-body p {
    margin: 0 0 1rem;
}

.news-article-body a {
    color: var(--link);
}

.news-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.card-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-bright);
    margin-bottom: 0.2rem;
}

.tour-card {
    padding: 1rem;
}

.tour-dates-list {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
}

.tour-dates-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
}

.tour-dates-list li:last-child {
    border-bottom: none;
}

.tour-date-day {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: 'opsz' 14;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-bright);
    min-width: 7.5rem;
}

.tour-date-venue {
    color: var(--muted-light);
}

.search-form {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    max-width: 420px;
}

.search-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}

.search-input::placeholder {
    color: var(--muted);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-bright);
}

.search-hint {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: -1rem;
    margin-bottom: 1.4rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-status {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card p {
    color: var(--muted-light);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-list a:hover {
    transform: translateY(-2px);
    background: rgba(91, 155, 213, 0.2);
    border-color: var(--accent-bright);
}

.service-list a i {
    width: 1.2rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--highlight);
    flex-shrink: 0;
}

.faq-group {
    margin-bottom: 2rem;
}

.faq-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.faq-group-heading {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--highlight);
    margin-bottom: 0;
}

.faq-expand-toggle {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.faq-expand-toggle:hover {
    color: var(--highlight);
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    margin-bottom: 0.6rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--muted);
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p {
    color: var(--muted-light);
    margin: 0.8rem 0 0.2rem;
}

.setlist-entry {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.setlist-entry p {
    color: var(--muted-light);
}

.setlist-entry a {
    color: var(--highlight);
    text-decoration: underline;
    font-weight: 600;
}

.setlist-set {
    line-height: 1.7;
}

.setlabel {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--highlight-with-color);
    margin-right: 0.3em;
}

.setlist-set sup {
    color: var(--muted);
    margin: 0 0.1em;
}

.setlist-footnotes {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
}

.band-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.6rem;
}

.band-photo img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 0;
}

.band-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.band-member {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.2rem 1.4rem;
}

.band-member .band-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.6rem;
}

.band-member .band-role {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: 'opsz' 14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
    color: var(--highlight-with-color);
}

.band-former-badge {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: 'opsz' 14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.6rem;
    color: var(--muted-light);
    background: var(--panel-strong);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
}

.band-member p {
    margin: 0;
    color: var(--text);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.album-card {
    display: block;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    transition: transform 150ms ease, border-color 150ms ease;
}

.album-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-bright);
}

.album-cover {
    aspect-ratio: 1 / 1;
    background: var(--panel-strong);
}

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

.album-info {
    padding: 0.7rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.album-title {
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

.album-year {
    color: var(--muted-light);
    font-size: 0.75rem;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.instagram-thumb {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 1;
    box-shadow: var(--shadow);
}

.instagram-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 180ms ease;
}

.instagram-thumb:hover img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a i {
    width: 1.2rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--highlight);
    flex-shrink: 0;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(91, 155, 213, 0.2);
    border-color: var(--accent-bright);
}

.site-footer {
    padding: 1.2rem 1.2rem 0.1rem;
    text-align: center;
    color: var(--muted);
}

.footer-social-links {
    justify-content: center;
    margin: 0 0 1.2rem;
}

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.6;
    padding: 0 1.2rem;
}

.footer-copy a {
    color: inherit;
    text-decoration: none;
}

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

.site-footer .footer-links {
    margin-top: 0.4rem;
    font-size: 0.85rem;
}

.site-footer .footer-links a {
    color: var(--muted);
    text-decoration: none;
}

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

.site-footer .footer-links span {
    margin: 0 0.4rem;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

    .album-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-eyebrow-bandname {
        display: none;
    }

    .nav-right {
        left: 1.4rem;
        right: 1.4rem;
        max-width: none;
    }

    main {
        padding-inline: 1rem;
    }

    .album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
