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

:root {
    --black:  #080808;
    --dark:   #0F0A08;
    --red:    #9B2217;
    --red-bg: #A8281C;
    --gold:   #C9903C;
    --white:  #FFFFFF;
    --cream:  #EDE0CA;
    --muted:  rgba(255,255,255,0.55);
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== YOYO ===== */
.yoyo-rig {
    position: fixed;
    right: 24px;
    top: 0;
    width: 48px;
    height: 100vh;
    z-index: 300;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.rope-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: visible;
}

.rope-path {
    fill: none;
    stroke: rgba(201,144,60,0.5);
    stroke-width: 1.5;
    stroke-linecap: round;
}

.yoyo-hang {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.08s ease-out;
}

.yoyo-svg {
    width: 48px;
    height: 48px;
    animation: spin 0.6s linear infinite;
    filter: drop-shadow(0 2px 6px rgba(201,144,60,0.4));
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAV ===== */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 80px 28px 48px;
    transition: background 0.4s;
}

.main-nav.scrolled {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    gap: 52px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }
.nav-links a.active {
    opacity: 1;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255,255,255,0.45);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 55% 45%;
    height: 100vh;
    min-height: 640px;
}

.hero-photo {
    position: relative;
    overflow: hidden;
    background: #1A0A06;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    filter: grayscale(100%);
}

.hero-ph {
    width: 100%;
    height: 100%;
    background: #1A0A06;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.25;
    gap: 12px;
}
.hero-ph span { font-size: 4rem; }
.hero-ph p, .hero-ph code { font-size: 0.85rem; opacity: 0.7; }

.hero-text {
    background: var(--red-bg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 56px 56px 72px 56px;
    position: relative;
}

/* Vintage texture on red panel */
.hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../media/textures/texture-grid.webp');
    background-size: cover;
    background-position: 15% 60%;
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
}

.page-about .hero-text::before {
    background-position: 82% 60%;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--white);
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    position: relative;
}

.hero-band {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.65;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    position: relative;
}

.hero-rule {
    width: 40px;
    height: 3px;
    background: var(--white);
    opacity: 0.4;
    margin-bottom: 28px;
    position: relative;
}

.hero-genre {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 40px;
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn-outline {
    display: inline-block;
    padding: 13px 28px;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'Crimson Text', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red-bg);
}

.btn-solid {
    display: inline-block;
    padding: 13px 28px;
    background: var(--white);
    color: var(--red-bg);
    font-family: 'Crimson Text', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--white);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s, color 0.25s;
}

.btn-solid:hover {
    background: transparent;
    color: var(--white);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    background: var(--dark);
    padding: 120px 0 100px;
}

.music-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.heading-rule {
    width: 80px;
    height: 4px;
    background: var(--red);
    margin-bottom: 64px;
}

.discog-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.discog-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: padding-left 0.2s;
}

.discog-row:hover { padding-left: 12px; }
.discog-row.new { border-left: 4px solid var(--gold); padding-left: 20px; }
.discog-row.new:hover { padding-left: 24px; }

.discog-badge {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.discog-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.discog-year {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    display: block;
    margin-top: 4px;
}

.discog-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.discog-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.discog-links a:hover { color: var(--white); border-color: var(--white); }

.play-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Crimson Text', serif;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.play-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.coming-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    font-style: italic;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    background: var(--black);
    padding: 120px 0 100px;
}

.videos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
}

/* First video spans full width */
.video-featured-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
}

@media (max-width: 800px) {
    .video-featured-card { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0D0D0D;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

.video-title-featured {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    line-height: 1.15;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.3;
}

.video-desc {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.video-card-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-grid-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    color: var(--muted);
    font-style: italic;
    font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--red-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../media/textures/texture-grid.webp');
    background-size: cover;
    background-position: 42% 65%;
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.about-photo-col img {
    width: 100%;
    display: block;
    filter: contrast(1.05) brightness(0.9);
}

.about-photo-col .photo-ph {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    font-size: 3rem;
}

.about-copy { display: flex; flex-direction: column; gap: 0; }

.about-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: var(--white);
    line-height: 0.85;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-rule {
    width: 48px;
    height: 4px;
    background: var(--white);
    opacity: 0.4;
    margin-bottom: 40px;
}

.about-copy p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-copy strong { color: var(--white); }

.about-quote {
    margin-top: 32px;
    border-left: 3px solid rgba(255,255,255,0.35);
    padding-left: 24px;
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem !important;
    color: var(--white) !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}

.about-quote cite {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--black);
    padding: 120px 0 100px;
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
    margin-top: 0;
}

.gallery-item { overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.4s;
    filter: brightness(0.88);
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.gallery-ph {
    width: 100%; height: 100%;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
}

/* ===== EMAIL SIGNUP ===== */
.signup-section {
    background: var(--red-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../media/textures/texture-grid.webp');
    background-size: cover;
    background-position: 68% 62%;
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
}

.signup-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

.signup-text { flex: 1; }

.signup-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.signup-sub {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}

.signup-form {
    display: flex;
    flex-shrink: 0;
    width: 420px;
    gap: 0;
}

.signup-form input {
    flex: 1;
    background: rgba(0,0,0,0.25);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-right: none;
    border-radius: 100px 0 0 100px;
    color: var(--white);
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    padding: 14px 20px 14px 24px;
    outline: none;
    transition: border-color 0.25s;
}

.signup-form input::placeholder { color: rgba(255,255,255,0.3); }
.signup-form input:focus { border-color: rgba(255,255,255,0.7); }

.signup-form button {
    background: var(--white);
    border: 1.5px solid var(--white);
    border-radius: 0 100px 100px 0;
    color: var(--red-bg);
    font-family: 'Crimson Text', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
}

.signup-form button:hover {
    background: transparent;
    color: var(--white);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--dark);
    padding: 120px 0;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-left { display: flex; flex-direction: column; gap: 0; }

.contact-sub {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 32px;
    margin-bottom: 48px;
}

.contact-platforms {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-platforms a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.contact-platforms a:hover { color: var(--white); border-color: var(--white); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--white); }

.contact-form textarea { resize: none; }

.contact-form .btn-outline { margin-top: 8px; align-self: flex-start; }

/* ===== FOOTER ===== */
.main-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 48px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.04em;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.4;
}

.footer-back {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    opacity: 0.35;
    transition: opacity 0.2s;
}
.footer-back:hover { opacity: 0.8; }

.footer-login {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.3;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 16px;
    border-radius: 100px;
    transition: opacity 0.2s, border-color 0.2s;
}
.footer-login:hover { opacity: 0.7; border-color: rgba(255,255,255,0.3); }

.footer-iowire {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
}

.footer-iowire a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-iowire a:hover { color: rgba(255,255,255,0.7); }

/* ===== SHOWS SECTION ===== */
.shows-section {
    background: var(--dark);
    padding: 100px 0;
}

.shows-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.show-item {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding-left 0.2s;
}

.show-item:hover { padding-left: 10px; }

.show-date {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
}

.show-venue {
    font-size: 1.1rem;
    color: var(--white);
}

.show-link a {
    display: inline-block;
    padding: 9px 22px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
}
.show-link a:hover { border-color: var(--white); color: var(--white); }

/* ===== PRESS & MEDIA SECTION ===== */
.press-section {
    background: var(--black);
    padding: 100px 0;
}

.press-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.press-item a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.75;
    transition: opacity 0.2s;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.press-item a:hover { opacity: 1; border-color: var(--white); }

.press-item a::after {
    content: '↗';
    font-size: 0.85em;
    font-style: normal;
    opacity: 0.5;
}

/* ===== SPOTIFY EMBED ===== */
.spotify-section {
    background: var(--dark);
    padding: 80px 0 100px;
}

.spotify-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px 0 48px;
}

.spotify-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.spotify-inner iframe {
    border-radius: 12px;
    display: block;
}

/* ===================================================
   MOBILE RESPONSIVE
   =================================================== */

/* ── Tablet (≤ 900px) ────────────────────────────── */
@media (max-width: 900px) {
    .main-nav {
        padding: 22px 32px 22px 28px;
    }
    .nav-links { gap: 32px; }

    .hero { grid-template-columns: 50% 50%; }

    .music-inner, .videos-inner, .gallery-inner,
    .about-inner, .signup-inner, .contact-inner,
    .shows-inner, .press-inner, .spotify-inner {
        padding: 0 40px 0 32px;
    }

    .about-inner {
        grid-template-columns: 280px 1fr;
        gap: 48px;
    }

    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-featured-card { gap: 32px; }
}

/* ── Mobile (≤ 680px) ────────────────────────────── */
@media (max-width: 680px) {

    /* Nav — logo row + scrollable links row */
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px 4px;
        gap: 4px;
        background: rgba(8,8,8,0.97) !important;
        backdrop-filter: blur(10px);
    }
    .nav-logo { font-size: 1.5rem; }
    .nav-links {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 28px;
        padding-bottom: 8px;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a {
        white-space: nowrap;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        padding: 10px 0;   /* bigger tap target */
    }

    /* Hero */
    .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100svh;
        padding-top: 90px; /* clear the 2-row mobile nav */
    }
    .hero-photo {
        flex: 0 0 42vw;
        min-height: 220px;
    }
    .hero-text {
        flex: 1;
        padding: 40px 24px 56px;
        justify-content: flex-end;
    }
    .hero-name { font-size: clamp(3rem, 16vw, 5.5rem); }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .btn-solid, .btn-outline { text-align: center; }

    /* Shared inner padding */
    .music-inner, .videos-inner, .gallery-inner,
    .signup-inner, .contact-inner,
    .shows-inner, .press-inner, .spotify-inner {
        padding: 0 20px;
    }
    .about-inner { padding: 0 20px; }

    /* Section headings */
    .section-heading { font-size: clamp(3rem, 18vw, 6rem); }
    .heading-rule { margin-bottom: 40px; }

    /* Music */
    .music-section { padding: 100px 0 60px; }
    .discog-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }
    .discog-links { flex-wrap: wrap; gap: 12px; }

    /* Videos */
    .videos-section { padding: 100px 0 60px; }
    .video-featured-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 28px;
    }
    .video-grid { grid-template-columns: 1fr; gap: 28px; }
    .video-title-featured { font-size: 1.5rem; }

    /* About */
    .about-section { padding: 80px 0 60px; }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-heading { font-size: clamp(3rem, 16vw, 5rem); }
    .about-photo-col img {
        max-height: 380px;
        width: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Gallery */
    .gallery-section { padding: 100px 0 60px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }
    .gallery-item.wide  { grid-column: span 1; }
    .gallery-item.tall  { grid-row:    span 1; }

    /* Email signup */
    .signup-section { padding: 72px 0; }
    .signup-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .signup-form {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .signup-form input {
        border-right: 1.5px solid rgba(255,255,255,0.3);
        border-radius: 100px;
        text-align: left;
    }
    .signup-form button { border-radius: 100px; }

    /* Contact */
    .contact-section { padding: 100px 0 72px; }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .form-row { grid-template-columns: 1fr; }

    /* Shows */
    .show-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 20px 0;
    }

    /* Press */
    .press-item a { font-size: 1.05rem; }

    /* Spotify */
    .spotify-section { padding: 60px 0 72px; }

    /* Footer */
    .main-footer { padding: 28px 20px 18px; }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-bottom: 20px;
    }
    .footer-copy { order: 2; }
    .footer-back { order: 3; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ── Small phones (≤ 400px) ──────────────────────── */
@media (max-width: 400px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.tall { grid-row: span 2; }
    .nav-links { gap: 20px; }
}
