/* Reset */
body, h1, h2, p, ul, li, a, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sticky footer: main column fills viewport, footer stays at bottom */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: clip;
}

.page-wrap {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Full-bleed top bar (no horizontal scrollbars) */
.page-wrap > header,
.page-wrap > nav {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* Header */
header {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 16px 20px;
    border-bottom: 1px solid #111;
}

header .site-header-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
}

header .site-tagline,
header > p:not(.site-tagline) {
    margin-top: 6px;
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Navigation */
nav {
    background-color: #333;
    border-bottom: 1px solid #222;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap; /* allows wrapping on small screens */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}

nav li {
    margin: 5px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
}

nav a:hover {
    background-color: #444;
}

nav a[aria-current="page"] {
    background-color: #444;
    font-weight: 600;
}

/* Sections */
section {
    padding: 15px;
    text-align: center;
}

/* Albums Grid */
.albums {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
}

.album {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.album:hover {
    border-color: #ccc;
}

.album img {
    width: 100%;
    max-width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.album a {
    text-decoration: none;
    color: black;
}

/* Forms */
form {
    max-width: 300px;
    margin: auto;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
}

button,
.cta-button {
    width: 100%;
    padding: 10px;
    background-color: #222;
    color: white;
    border: none;
}

button:hover,
.cta-button:hover {
    background-color: #444;
}

a.cta-button {
    display: block;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}

/* Footer */
footer {
    flex-shrink: 0;
    text-align: center;
    padding: 20px 10px;
    background-color: #222;
    color: white;
}

/* ---------- Notices / toasts (JS) ---------- */
.toast {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(560px, calc(100% - 24px));
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.toast[hidden] { display: none; }

.toast .toast-message {
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast .toast-close {
    appearance: none;
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
    padding: 2px 6px;
    font-weight: 700;
    width: auto;
}

.toast--success { border-color: #bcdcc2; }
.toast--success .toast-message { color: #184f22; }
.toast--error { border-color: #e3b2b2; }
.toast--error .toast-message { color: #6b1717; }

.albums-section h2 {
    margin-bottom: 12px;
}

.section-lead {
    max-width: 36em;
    margin: 0 auto 10px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.45;
}

.record-cover {
    max-width: min(280px, 100%);
    width: 250px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.video-player {
    width: min(820px, 100%);
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background: #000;
    border: 1px solid #ddd;
    display: block;
    margin: 12px auto 0;
}


@media (max-width: 600px) {
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .albums {
        grid-template-columns: 1fr; /* stack albums */
    }

    header h1 {
        font-size: 20px;
    }
}

/* TABLET */
@media (min-width: 601px) and (max-width: 900px) {
    .albums {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 901px) {
    .albums {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Contact page ---------- */
body.page-contact {
    background-color: #eee;
}

.page-contact .contact-main {
    text-align: left;
    padding: 0 16px 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero {
    padding: 28px 0 24px;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.contact-hero-lead {
    max-width: 36em;
    margin: 0 auto 24px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.contact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.contact-stat {
    background: white;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 110px;
}

.contact-stat-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
}

.contact-stat-label {
    font-size: 0.75rem;
    color: #666;
}

.contact-layout {
    display: grid;
    gap: 24px;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: minmax(220px, 280px) 1fr;
        gap: 28px;
    }
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-aside-card {
    background: white;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-aside-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.contact-aside-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 8px;
}

.contact-aside-card p:last-child {
    margin-bottom: 0;
}

.contact-aside-card a {
    color: #333;
    text-decoration: underline;
}

.contact-aside-card a:hover {
    color: #000;
}

.contact-aside-card--accent {
    background-color: #333;
    color: #eee;
    border-color: #222;
}

.contact-aside-card--accent h3 {
    color: #fff;
}

.contact-aside-card--accent p {
    color: #ddd;
}

.contact-email {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    word-break: break-all;
}

.contact-note {
    font-size: 0.8rem !important;
    color: #aaa !important;
    margin-top: 8px !important;
}

.contact-bullets {
    text-align: left;
    padding-left: 1.2em;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
}

.contact-bullets li {
    margin-bottom: 4px;
}

.contact-forms-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 20px 18px;
    border: 1px solid #ddd;
}

.contact-card-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.contact-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1;
}

.contact-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #222;
}

.contact-card-desc {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #555;
    margin: 0;
}

/* Contact forms override global form max-width */
.page-contact .contact-form {
    max-width: none;
    width: 100%;
    margin: 0;
}

.page-contact .form-row {
    display: grid;
    gap: 14px;
}

@media (min-width: 560px) {
    .page-contact .form-row--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.page-contact .form-field {
    margin-bottom: 16px;
}

.page-contact .form-field label,
.page-contact .form-fieldset legend {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.page-contact .label-optional {
    font-weight: 400;
    color: #888;
}

.page-contact .contact-form input[type="text"],
.page-contact .contact-form input[type="email"],
.page-contact .contact-form select,
.page-contact .contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
}

.page-contact .contact-form input[type="text"]::placeholder,
.page-contact .contact-form input[type="email"]::placeholder,
.page-contact .contact-form textarea::placeholder {
    color: #999;
}

.page-contact .contact-form input[type="text"]:hover,
.page-contact .contact-form input[type="email"]:hover,
.page-contact .contact-form select:hover,
.page-contact .contact-form textarea:hover {
    border-color: #c5c5d0;
}

.page-contact .contact-form input[type="text"]:focus,
.page-contact .contact-form input[type="email"]:focus,
.page-contact .contact-form select:focus,
.page-contact .contact-form textarea:focus {
    outline: 2px solid #333;
    outline-offset: 1px;
    border-color: #999;
}

.page-contact .contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.page-contact .form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 18px;
}

.page-contact .form-fieldset legend {
    padding: 0;
    margin-bottom: 10px;
}

.page-contact .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    cursor: pointer;
    line-height: 1.45;
    text-align: left;
}

/* Global `input { width: 100% }` would stretch controls — reset for choice inputs */
.page-contact .form-check input[type="checkbox"],
.page-contact .form-check input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    margin: 0;
    margin-top: 0.2em;
    padding: 0;
    flex-shrink: 0;
    align-self: flex-start;
    accent-color: #333;
    cursor: pointer;
    border: none;
    background: transparent;
    box-shadow: none;
}

.page-contact .form-check input[type="radio"] {
    border-radius: 50%;
}

.page-contact .form-check input[type="checkbox"]:focus-visible,
.page-contact .form-check input[type="radio"]:focus-visible {
    outline: 2px solid #333;
    outline-offset: 2px;
}

.page-contact .form-check > span {
    flex: 1;
    min-width: 0;
}

.page-contact .form-check--solo {
    margin-bottom: 16px;
    padding: 10px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.page-contact .btn {
    display: inline-block;
    width: 100%;
    padding: 11px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.page-contact .btn-primary {
    background-color: #222;
    color: white;
}

.page-contact .btn-primary:hover {
    background-color: #444;
}

.page-contact .btn-secondary {
    background-color: #444;
    color: white;
}

.page-contact .btn-secondary:hover {
    background-color: #555;
}

.page-contact .btn-ghost {
    background: white;
    color: #222;
    border: 1px solid #999;
    width: 100%;
}

.page-contact .btn-ghost:hover {
    border-color: #222;
    background: #f9f9f9;
}

/* ---------- About page ---------- */
body.page-about {
    background-color: #eee;
}

.page-about .about-main {
    text-align: left;
    padding: 0 18px 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about .about-main > .about-section {
    text-align: left;
}

.about-hero {
    text-align: center;
    padding: 36px 0 28px;
    margin-bottom: 8px;
}

.about-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.about-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    max-width: 20ch;
    margin: 0 auto 14px;
}

.about-hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 36em;
    margin: 0 auto;
}

.about-section {
    padding: 20px 0;
}

.about-section-head {
    text-align: center;
    margin-bottom: 22px;
}

.about-section-head h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.about-section-sub {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.about-prose-card {
    background: #fff;
    border-radius: 8px;
    padding: 22px 20px;
    border: 1px solid #ddd;
}

.about-prose-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.about-prose-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.about-prose-card p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 560px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-feature {
    background: #fff;
    border-radius: 8px;
    padding: 18px 16px;
    border: 1px solid #ddd;
}

.about-feature:hover {
    border-color: #bbb;
}

.about-feature--soon {
    background: #fafafa;
}

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #eee;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.about-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.about-feature p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #555;
}

.about-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    background: #e8e8e8;
    color: #444;
}

.about-mission {
    padding: 28px 0 12px;
}

.about-mission-inner {
    background-color: #333;
    color: #eee;
    border-radius: 8px;
    padding: 24px 20px;
    border: 1px solid #222;
}

.about-mission-inner h2 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: #fff;
}

.about-mission-inner .about-quote {
    margin: 0 0 16px;
    padding: 0 0 0 14px;
    border-left: 3px solid #888;
    font-size: 1rem;
    line-height: 1.55;
    font-style: italic;
    color: #e8e8e8;
}

.about-mission-inner .about-mission-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.about-cta {
    text-align: center;
    padding: 36px 16px 8px;
}

.about-cta-text {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 14px;
}

.about-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.about-cta-btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
}

.about-cta-btn--primary {
    background-color: #222;
    color: #fff;
}

.about-cta-btn--primary:hover {
    background-color: #444;
}

.about-cta-btn--ghost {
    background: #fff;
    color: #222;
    border: 1px solid #999;
}

.about-cta-btn--ghost:hover {
    border-color: #222;
    background: #f5f5f5;
}