/* ============================================
   Sleep of Oldominion — sleep.hiphop
   Dark purple theme, hand-crafted CSS
   ============================================ */

/* --- Tokens --- */
:root {
    --hue: 260;
    --bg: hsl(var(--hue), 15%, 8%);
    --bg-card: hsl(var(--hue), 15%, 12%);
    --bg-hover: hsl(var(--hue), 15%, 16%);
    --surface: hsl(var(--hue), 20%, 18%);
    --border: hsl(var(--hue), 15%, 22%);
    --text: hsl(var(--hue), 10%, 90%);
    --text-muted: hsl(var(--hue), 10%, 60%);
    --accent: hsl(var(--hue), 70%, 65%);
    --accent-hover: hsl(var(--hue), 70%, 75%);
    --accent-glow: hsla(var(--hue), 70%, 65%, 0.3);
    --white: #fff;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --max-width: 1100px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    border-radius: var(--radius);
    z-index: 200;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
}
.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;
}
/* Focus ring for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: hsla(var(--hue), 15%, 8%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.site-brand:hover { color: var(--accent); }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 6px;
}
.brand-name { letter-spacing: -0.02em; }

/* Nav */
.site-nav {
    display: flex;
    gap: 2rem;
}
.site-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition);
}
.site-nav a:hover { color: var(--white); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
}
.hero-visual {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}
.hero-visual .container {
    position: relative;
    z-index: 1;
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 40%, hsla(var(--hue), 70%, 50%, 0.15), transparent),
        radial-gradient(ellipse 500px 350px at 70% 60%, hsla(var(--hue), 60%, 40%, 0.12), transparent),
        radial-gradient(ellipse 300px 300px at 50% 30%, hsla(var(--hue), 80%, 65%, 0.08), transparent);
}
.hero-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 200px at 25% 50%, hsla(var(--hue), 70%, 65%, 0.1), transparent),
        radial-gradient(circle 150px at 75% 40%, hsla(270, 60%, 55%, 0.08), transparent);
    animation: hero-drift 12s ease-in-out infinite alternate;
}
.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    opacity: 0.5;
    mix-blend-mode: overlay;
}
@keyframes hero-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -10px) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-backdrop::before { animation: none; }
}
.hero-visual h1 {
    text-shadow: 0 0 40px var(--accent-glow), 0 0 80px hsla(var(--hue), 70%, 65%, 0.1);
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.hero .hero-tags {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    min-height: 44px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--bg);
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

/* --- Section --- */
.section {
    padding: 4rem 0;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* --- Featured Release --- */
.featured-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.featured-release img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.featured-info h2,
.featured-info .featured-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.featured-info .release-year {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}
.featured-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.featured-info .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Album Grid --- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}
.album-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.album-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.album-card-info {
    padding: 1.25rem;
}
.album-card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.album-card-info .album-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.album-card-info .album-meta span + span::before {
    content: '·';
    margin: 0 0.4rem;
}

/* --- Release Detail --- */
.release-header {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}
.release-cover {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.release-meta h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.release-meta .release-artist {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.release-meta .release-details {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.release-meta .release-details span + span::before {
    content: '·';
    margin: 0 0.5rem;
}
.release-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.release-credits {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.release-physical {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* --- Tracklist --- */
.tracklist {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tracklist-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tracklist-items {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}
.track {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    min-height: 44px;
    border-bottom: 1px solid hsla(var(--hue), 15%, 22%, 0.5);
    transition: background var(--transition);
}
.track:last-child { border-bottom: none; }
.track:hover { background: var(--bg-hover); }
.track-num {
    width: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}
.track-title {
    flex: 1;
    font-weight: 500;
}
.track-feat {
    color: var(--text-muted);
    font-weight: 400;
}
.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
    margin-left: 1rem;
}

/* --- About / Bio --- */
.bio-section {
    max-width: 720px;
}
.bio-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.bio-section p:first-of-type {
    font-size: 1.15rem;
    color: var(--text);
}
.bio-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.bio-detail-item h3,
.bio-detail-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.bio-detail-item p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0;
}

/* --- Links Page --- */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
    text-align: center;
}
.link-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.footer-brand .brand-mark {
    margin-bottom: 0.75rem;
}
.footer-brand p {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.footer-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-badge a { color: var(--text-muted); }
.footer-badge a:hover { color: var(--accent); }

/* --- Error Pages --- */
.error-page {
    text-align: center;
    padding: 6rem 0;
}
.error-page h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}
.error-page p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- Active Nav --- */
.site-nav a.active {
    color: var(--white);
    position: relative;
}
.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* --- Album Card Hover --- */
.album-card {
    position: relative;
}
.album-card::after {
    content: 'View Album →';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, hsla(var(--hue), 15%, 8%, 0.9));
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.album-card:hover::after {
    opacity: 1;
}

/* --- Bandcamp Embed --- */
.bandcamp-embed {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.bandcamp-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* --- Collaborators --- */
.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.collab-card {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.collab-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.collab-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Press Kit --- */
.press-section {
    margin-bottom: 3rem;
}
.press-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.press-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.press-stat {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.press-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}
.press-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    transition: all var(--transition);
}
.download-item:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- Shows --- */
.shows-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.shows-empty p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Show Cards */
.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}
.show-card {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}
.show-card:hover {
    border-color: var(--accent);
}
.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.75rem;
    background: var(--surface);
    border-radius: var(--radius);
    text-align: center;
}
.show-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.show-month {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.show-year {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.show-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.show-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.show-venue {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}
.show-city {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.show-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}
.show-actions {
    display: flex;
    align-items: center;
}

/* Past Shows */
.past-shows-section {
    margin-top: 3rem;
}
.past-shows {
    display: flex;
    flex-direction: column;
}
.past-show {
    display: flex;
    gap: 1.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid hsla(var(--hue), 15%, 22%, 0.5);
    font-size: 0.95rem;
}
.past-show:last-child {
    border-bottom: none;
}
.past-show-date {
    min-width: 110px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}
.past-show-venue {
    flex: 1;
    color: var(--text);
    font-weight: 500;
}
.past-show-city {
    color: var(--text-muted);
}

/* --- Contact Form --- */
.contact-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 600px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8fad' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.form-success {
    padding: 1.5rem;
    background: hsla(140, 60%, 40%, 0.15);
    border: 1px solid hsla(140, 60%, 40%, 0.3);
    border-radius: var(--radius);
    color: hsl(140, 60%, 70%);
    text-align: center;
}
.form-error {
    padding: 0.75rem 1rem;
    background: hsla(0, 60%, 40%, 0.15);
    border: 1px solid hsla(0, 60%, 40%, 0.3);
    border-radius: var(--radius);
    color: hsl(0, 60%, 70%);
    font-size: 0.9rem;
}

/* --- Newsletter --- */
.newsletter {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.newsletter h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.newsletter-form button:hover {
    background: var(--accent-hover);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 0.5rem 1.5rem;
        gap: 0;
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .bandcamp-embed iframe { height: 350px; }

    .featured-release {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .release-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .release-cover {
        max-width: 300px;
        margin: 0 auto;
    }
    .bio-details {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .hero { padding: 3rem 0 2.5rem; }
    .hero-visual { padding: 5rem 0 4rem; }
    .section { padding: 3rem 0; }
    .show-card {
        flex-direction: column;
        gap: 1rem;
    }
    .show-date {
        flex-direction: row;
        gap: 0.5rem;
        min-width: auto;
        padding: 0.5rem 1rem;
    }
    .show-actions {
        align-self: flex-start;
    }
    .past-show {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .past-show-date {
        min-width: auto;
        width: 100%;
    }
    .album-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .release-meta h1 { font-size: 1.8rem; }
    .featured-info h2 { font-size: 1.5rem; }
    .newsletter-form {
        flex-direction: column;
    }
}

/* --- Print --- */
@media print {
    .site-header, .site-footer, .nav-toggle, .btn, .bandcamp-embed { display: none; }
    body { background: #fff; color: #000; }
    .container { max-width: 100%; padding: 0; }
    a { color: #000; text-decoration: underline; }
    .album-card { break-inside: avoid; }
    .track { border-bottom: 1px solid #ddd; }
    .release-cover { max-width: 200px; }
    .album-card::after { display: none; }
}
