/* ============================================================
   CHANDLER TRAVIS — Complete Stylesheet (clean rebuild)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Oswald:wght@300;400;500&display=swap');

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

:root {
  --cobalt:    #1a56c4;
  --cobalt-dk: #1240a0;
  --gold:      #a07820;
  --gold-lt:   #c09030;
  --gold-btn:  #8a6a18;
  --near-black:#111111;
  --cream:     #f5f0e8;
  --text-dk:   #1a1a1a;
  --text-md:   #444;
  --red:       #d32f2f;
  --green:     #1db954;
}

html { scroll-behavior: smooth; }
body { font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.65; color: var(--text-dk); background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

/* Utilities */
.eyebrow { font-family: 'Oswald', sans-serif; font-weight: 400; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.eyebrow-red   { color: var(--red); }
.eyebrow-gold  { color: var(--gold); }
.eyebrow-light { color: rgba(255,255,255,0.75); }
.gold-rule { display: block; width: 50px; height: 3px; background: var(--gold); margin: 0.75rem 0 1.25rem; }
.gold-rule-center { margin-left: auto; margin-right: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid #e0dbd0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dk); padding: 0.4rem 0.8rem; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--cobalt); }
.nav-social { display: flex; align-items: center; gap: 0.6rem; }
.nav-social a { color: #555; display: flex; align-items: center; transition: color 0.15s; }
.nav-social a:hover { color: var(--cobalt); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dk); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--near-black); color: #fff; padding: 3rem 2rem 2rem; text-align: center; }
.footer-logo { height: 46px; width: auto; margin: 0 auto 1rem; }
.footer-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: #eee; margin-bottom: 1rem; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.footer-social a { color: #ccc; display: flex; align-items: center; transition: color 0.15s; }
.footer-social a:hover { color: var(--gold-lt); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.25rem 1.5rem; list-style: none; margin-bottom: 1.5rem; }
.footer-links a { font-family: 'Oswald', sans-serif; font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; color: #999; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-family: 'Oswald', sans-serif; font-size: 0.72rem; color: #555; letter-spacing: 0.04em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.65rem 1.3rem; cursor: pointer; transition: all 0.15s; border: none; line-height: 1; }
.btn-dark    { background: var(--near-black); color: #fff; }
.btn-dark:hover { background: #333; color: #fff; }
.btn-cobalt  { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: var(--cobalt-dk); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--text-dk); border: 1.5px solid var(--text-dk); }
.btn-outline-dark:hover { background: var(--text-dk); color: #fff; }
.btn-outline-gold { display: inline-block; background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.5); font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.75rem 1.5rem; transition: all 0.15s; }
.btn-outline-gold:hover { background: rgba(255,255,255,0.1); color: #fff; }
.link-underline { display: inline-block; font-size: 0.95rem; color: var(--text-dk); text-decoration: underline; text-underline-offset: 3px; margin-top: 0.75rem; font-weight: 600; }
.link-underline:hover { color: var(--cobalt); }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero — strict two columns, image contained */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: start;
  overflow: hidden;
}
.home-hero-text {
  padding: 4rem 3.5rem 4rem 3.5rem;
  min-width: 0;
}
.hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.01em; margin: 0.2rem 0 0.6rem; line-height: 1.05; }
.hero-byline { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero-tagline { font-size: 1.1rem; font-style: italic; font-weight: 700; color: var(--text-dk); margin-bottom: 1.5rem; line-height: 1.4; }
.home-hero-text p { font-size: 0.97rem; color: var(--text-md); margin-bottom: 1rem; line-height: 1.72; }

/* Right column: fixed 400px, never overflows */
.home-hero-img {
  width: 400px;
  max-width: 400px;
  min-width: 0;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.home-hero-img img { width: 100%; height: auto; display: block; }
.coming-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-align: center; padding: 0.9rem 1rem 0.5rem; }
.btn-gold-solid { display: block; width: 100%; background: var(--gold-btn); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase; text-align: center; padding: 0.9rem 1.5rem; border: none; cursor: pointer; transition: background 0.15s; }
.btn-gold-solid:hover { background: var(--gold); color: #fff; }

/* Every Letter Sent */
.single-row { background: #fff; border-top: 1px solid #e8e4dc; border-bottom: 1px solid #e8e4dc; padding: 4rem 2rem; text-align: center; }
.single-eyebrow { display: block; text-align: center; margin-bottom: 2rem; color: var(--gold); }
.single-row-inner { display: flex; align-items: center; justify-content: center; gap: 4rem; max-width: 800px; margin: 0 auto; text-align: left; }
.single-row-img { flex: 0 0 260px; height: 280px; overflow: hidden; }
.single-row-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.single-row-text { flex: 1; }
.single-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin: 0 0 1.25rem; line-height: 1.1; }
.btn-red-bandcamp { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.7rem 1.3rem; transition: background 0.15s; }
.btn-red-bandcamp:hover { background: #b71c1c; color: #fff; }

/* Listening party */
.listening-party { background: var(--red); color: #fff; padding: 6rem 2rem; text-align: center; }
.listening-party-inner { max-width: 700px; margin: 0 auto; }
.party-pill { display: inline-flex; align-items: center; gap: 0.5rem; border: 1.5px solid rgba(255,255,255,0.6); padding: 0.45rem 1.1rem; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.party-heading { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; font-weight: 400; margin-bottom: 0.75rem; }
.party-date { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem; display: block; }
.party-body { font-size: 1rem; opacity: 0.9; margin-bottom: 3rem; line-height: 1.6; }
.party-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 580px; margin: 0 auto; }
.btn-party-white { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #fff; color: var(--red); font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 1.5rem; transition: background 0.15s; }
.btn-party-white:hover { background: #f5f5f5; }
.btn-party-outline { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 1.5rem; transition: background 0.15s; }
.btn-party-outline:hover { background: rgba(255,255,255,0.1); }

/* Artist section */
.artist-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 5rem 4rem; background: #fff; }
.artist-row-img { display: flex; align-items: center; justify-content: center; padding-right: 2rem; }
.artist-photo-frame { border: 4px solid var(--gold); display: inline-block; line-height: 0; box-shadow: 6px 6px 0 rgba(0,0,0,0.08); max-width: 380px; width: 100%; }
.artist-photo-frame img { width: 100%; height: auto; display: block; max-height: 520px; object-fit: cover; object-position: center top; }
.artist-row-text { padding-left: 2rem; }
.artist-row-text h2 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 0.25rem; }
.artist-row-text .gold-rule { background: var(--cobalt); margin-bottom: 1.5rem; }
.artist-row-text p { font-size: 0.97rem; color: var(--text-md); margin-bottom: 0.9rem; line-height: 1.75; }

/* Shows teaser */
.shows-teaser { background: #1a56c4; color: #fff; padding: 6rem 2rem; text-align: center; }
.shows-pill { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--gold-btn); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1.1rem; border-radius: 20px; margin-bottom: 1.5rem; }
.shows-teaser h2 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 0.75rem; }
.shows-teaser p { max-width: 500px; margin: 0 auto 2rem; font-family: 'EB Garamond', serif; font-style: italic; font-weight: 400; font-size: 1.05rem; color: rgba(255,255,255,0.85); }

/* Press */
.press-section { padding: 6rem 2rem; background: #fff; }
.press-heading { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: center; margin: 0.5rem 0 3rem; }
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.press-card { border: 1px solid #e0dbd0; border-radius: 4px; padding: 2rem 2rem 1.75rem; display: flex; flex-direction: column; }
.press-quote-mark { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.75rem; }
.press-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; line-height: 1.6; color: var(--text-dk); flex: 1; margin-bottom: 1.25rem; }
.press-rule { border: none; border-top: 1px solid #e0dbd0; margin-bottom: 1rem; }
.press-card cite { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--red); font-style: normal; }

/* ============================================================
   MUSIC PAGE
   ============================================================ */
.music-hero-img-section { position: relative; width: 100%; height: 45vw; max-height: 520px; min-height: 280px; overflow: hidden; }
.music-hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.music-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%); }
.music-hero-overlay-text { position: absolute; bottom: 2rem; left: 2.5rem; color: #fff; }
.music-hero-eyebrow { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); display: block; margin-bottom: 0.35rem; }
.music-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 0.3rem; }
.music-hero-coming { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.music-album-desc { background: var(--cobalt); color: #fff; padding: 5rem 2rem; text-align: center; }
.music-album-desc-inner { max-width: 640px; margin: 0 auto; }
.music-album-heading { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 2rem; line-height: 1.2; }
.music-album-body p { font-family: 'EB Garamond', Georgia, serif; font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 1rem; text-align: left; line-height: 1.7; }
.music-pullquote { border-left: 3px solid var(--gold-lt); padding-left: 1.25rem; font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.92); margin: 1.75rem 0 0; text-align: left; line-height: 1.6; }
.music-catalog { padding: 5rem 2rem; background: #fff; }
.catalog-heading { font-family: 'Playfair Display', serif; font-style: normal; font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.25rem; color: var(--text-dk); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.catalog-card { background: #fff; }
.catalog-card-img { overflow: hidden; aspect-ratio: 1; margin-bottom: 0.75rem; background: #000; }
.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 0.3s; }
.catalog-card:hover .catalog-card-img img { transform: scale(1.04); }
.catalog-card-img-framed { border: 1px solid #ddd; background: #f5f0e8; }
.catalog-card-img-framed img { object-position: center 30%; }
.catalog-card h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--text-dk); }
.catalog-card p { font-size: 0.85rem; color: var(--text-md); line-height: 1.55; margin-bottom: 0.75rem; }
.catalog-spotify-link { display: inline-flex; align-items: center; gap: 0.35rem; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.06em; color: #1db954; transition: opacity 0.15s; }
.catalog-spotify-link:hover { opacity: 0.75; }
.catalog-bandcamp { text-align: center; margin-top: 3rem; }

/* ============================================================
   BIO PAGE
   ============================================================ */
.bio-hero { background: var(--cobalt); padding: 3.5rem 0 3rem; }
.bio-hero-title { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; margin-bottom: 0.75rem; line-height: 1.1; }
.bio-body { padding: 4rem 2rem; background: #fff; }
.bio-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.bio-lead-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.6; color: var(--text-dk); border-left: 4px solid var(--gold); padding-left: 1.25rem; margin-bottom: 1.5rem; }
.bio-text p { font-size: 0.97rem; color: var(--text-md); margin-bottom: 1.1rem; line-height: 1.7; }
.bio-photos { display: flex; flex-direction: column; gap: 1rem; }
.bio-photo-item { display: block; }
.bio-photo-framed { border: 3px solid var(--gold); display: block; line-height: 0; }
.bio-photo-framed img { width: 100%; display: block; }
.bio-photo-item img { width: 100%; display: block; }
.bio-caption { font-family: 'Oswald', sans-serif; font-size: 0.67rem; letter-spacing: 0.05em; text-transform: uppercase; color: #999; margin-top: 0.4rem; line-height: 1.4; }

/* ============================================================
   SHOWS PAGE
   ============================================================ */
.shows-page { background: #1a56c4; min-height: 80vh; padding: 5rem 2rem 6rem; }
.shows-header { text-align: center; margin-bottom: 3rem; }
.shows-page .shows-pill { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--gold-btn); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1.1rem; border-radius: 20px; margin-bottom: 1.25rem; }
.shows-heading { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2.5rem, 6vw, 4rem); color: #fff; margin-bottom: 0.75rem; line-height: 1.1; }
.shows-subhead { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-weight: 400; font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.shows-widgets { max-width: 560px; margin: 0 auto; }
.shows-widget-block { background: #f5f0e0; border-radius: 8px; border: 1px solid #d8d0b8; padding: 1.25rem 1.5rem 0.5rem; margin-bottom: 1rem; }
.shows-widget-block--second { margin-top: 1.5rem; }
.shows-widget-label { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: 1.2rem; color: var(--text-dk); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #d8d0b8; }
.shows-all-link { text-align: center; margin-top: 2rem; }
.shows-all-link a { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.15s; }
.shows-all-link a:hover { opacity: 0.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { background: var(--cobalt); padding: 4rem 0 3.5rem; }
.contact-hero-title { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 0.5rem; line-height: 1.1; }
.contact-hero-sub { color: rgba(255,255,255,0.88); font-size: 1rem; margin-top: 0.75rem; }
.contact-body { padding: 4rem 2rem 5rem; background: #fff; }
.contact-form { max-width: 560px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group-full { margin-bottom: 2rem; }
.form-group label { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-md); }
.form-group input, .form-group textarea { border: none; border-bottom: 1px solid #ccc; padding: 0.5rem 0; font-family: 'EB Garamond', Georgia, serif; font-size: 1rem; color: var(--text-dk); background: transparent; outline: none; transition: border-color 0.2s; width: 100%; border-radius: 0; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--cobalt); }
.form-group textarea { resize: none; min-height: 100px; }
.form-submit { margin-top: 1.5rem; }
.form-group-checkbox { margin-bottom: 2rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.65rem; font-family: 'EB Garamond', Georgia, serif; font-size: 1rem; color: var(--text-dk); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--cobalt); cursor: pointer; flex-shrink: 0; }
.form-message { display: none; padding: 0.9rem 1.1rem; margin-bottom: 1.5rem; font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.05em; }
.form-message.success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #2e7d32; }
.form-message.error   { background: #fce4ec; color: #c62828; border-left: 3px solid #c62828; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-img { width: 100%; max-width: 100%; border-left: none; border-top: 1px solid #eee; }
  .artist-row { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .artist-row-img { padding-right: 0; padding-bottom: 1.5rem; justify-content: center; }
  .artist-row-text { padding-left: 0; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photos { flex-direction: row; flex-wrap: wrap; }
  .bio-photo-item { width: calc(50% - 0.5rem); }
  .single-row-inner { flex-direction: column; gap: 1.5rem; }
  .single-row-img { flex: 0 0 auto; width: 100%; max-width: 300px; height: 260px; }
  .single-row-text { text-align: center; }
  .party-btns { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .music-hero-overlay-text { left: 1.5rem; bottom: 1.25rem; }
}
@media (max-width: 640px) {
  .site-nav { padding: 0 1rem; }
  .nav-links, .nav-social { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; padding: 0.75rem 1rem; border-bottom: 1px solid #e0dbd0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); gap: 0; }
  .nav-toggle { display: flex; }
  .home-hero-text { padding: 2.5rem 1.25rem; }
  .artist-row { padding: 2.5rem 1.25rem; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .shows-page { padding: 3.5rem 1.25rem 4rem; }
  .shows-widgets { max-width: 100%; }
  .music-hero-img-section { height: 60vw; max-height: 360px; }
}

/* Force image column to never exceed its grid allocation */
.home-hero-img img {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Grid blowout fix — children must have min-width:0 */
.home-hero > * { min-width: 0; }
.home-hero-img { min-width: 0 !important; }
.home-hero-text { min-width: 0 !important; overflow: hidden; }

/* Home hero img — let grid control width, no flex override */
.home-hero-img {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-left: 1px solid #eee;
}
.home-hero-img img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
}
.home-hero-img .coming-label {
  display: block;
  text-align: center;
}
.home-hero-img .btn-gold-solid {
  display: block;
  width: 100%;
}

/* Match Remixer body font size and weight */
body {
  font-size: 19px;
}
.home-hero-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================================================
   MAX-WIDTH CONTAINERS — all pages
   ============================================================ */

/* Artist row contained */
.artist-row {
  max-width: 100%;
  padding: 5rem 4rem;
}

/* Press section already has .container — ensure it's centered */
.press-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Single row centered */
.single-row-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Bio layout */
.bio-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Music catalog */
.music-catalog .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Music album desc */
.music-album-desc-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Shows */
.shows-widgets {
  max-width: 600px;
  margin: 0 auto;
}

/* Contact form */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {

  /* Home hero table — stack on mobile */
  .home-hero-table,
  .home-hero-table tbody,
  .home-hero-table tr,
  .home-hero-table td {
    display: block !important;
    width: 100% !important;
  }
  .home-hero-table td.home-hero-text {
    padding: 2.5rem 1.5rem 1.5rem !important;
  }
  .home-hero-table td.home-hero-img {
    padding: 0 !important;
    border-left: none !important;
    border-top: 1px solid #eee;
  }
  .home-hero-table td.home-hero-img img {
    width: 100% !important;
  }

  /* Nav */
  .nav-links, .nav-social { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #fff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e0dbd0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 199;
  }
  .nav-toggle { display: flex; }

  /* Hero text sizes */
  .hero-title { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.1rem; }

  /* Single row */
  .single-row-inner { flex-direction: column; gap: 1.5rem; }
  .single-row-img { flex: 0 0 auto; width: 100%; max-width: 100%; height: 240px; }
  .single-row-text { text-align: center; }

  /* Artist row */
  .artist-row { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .artist-row-img { padding-right: 0; padding-bottom: 1.5rem; }
  .artist-photo-frame { max-width: 280px; margin: 0 auto; }
  .artist-row-text { padding-left: 0; }

  /* Party buttons */
  .party-btns { grid-template-columns: 1fr; }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }

  /* Music catalog */
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Bio */
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photos { flex-direction: row; flex-wrap: wrap; }
  .bio-photo-item { width: calc(50% - 0.5rem); }

  /* Shows */
  .shows-page { padding: 3rem 1.25rem 4rem; }
  .shows-widgets { max-width: 100%; }
  .shows-heading { font-size: 2.5rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }

  /* General padding */
  .listening-party { padding: 4rem 1.5rem; }
  .shows-teaser { padding: 4rem 1.5rem; }
  .press-section { padding: 4rem 1.25rem; }
  .bio-body { padding: 3rem 1.25rem; }
  .music-catalog { padding: 3rem 1.25rem; }
  .contact-body { padding: 3rem 1.25rem; }
}

/* ============================================================
   MOBILE FIXES — additional page coverage
   ============================================================ */
@media (max-width: 768px) {

  /* Music hero — shorter image on mobile */
  .music-hero-img-section {
    height: 55vw;
    max-height: 320px;
  }
  .music-hero-overlay-text {
    left: 1.25rem;
    bottom: 1rem;
  }
  .music-hero-title { font-size: 2rem; }

  /* Music album desc — full width padding */
  .music-album-desc {
    padding: 3.5rem 1.5rem;
  }
  .music-album-desc-inner {
    padding: 0;
  }
  .music-album-heading { font-size: 1.8rem; }

  /* Contact form — full width on mobile */
  .contact-form {
    max-width: 100%;
    padding: 0;
  }
  .contact-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  /* Music catalog — 1 column on very small screens */
  @media (max-width: 480px) {
    .catalog-grid { grid-template-columns: 1fr; }
  }
}

/* Invincible Casuals link card */
.shows-ic-block {
  background: #f5f0e0;
  border-radius: 8px;
  border: 1px solid #d8d0b8;
  padding: 1.75rem 1.5rem 2rem;
  margin-top: 1.5rem;
}
.shows-ic-text {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text-md);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.shows-ic-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-btn);
  color: #fff;
  padding: 0.75rem 1.5rem;
  transition: background 0.15s;
}
.shows-ic-btn:hover { background: var(--gold); color: #fff; }

/* ============================================================
   SINGLES VIDEO SECTION
   ============================================================ */
.singles-section {
  background: var(--red);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.singles-inner {
  max-width: 860px;
  margin: 0 auto;
}
.singles-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 2.5rem;
}
/* Two vertical videos side by side */
.singles-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.singles-video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Vertical 9:16 aspect ratio wrapper */
.singles-video-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding-bottom: calc(100% * 16/9);
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}
.singles-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.singles-video-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.85rem;
}
/* Buttons row */
.singles-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .singles-videos {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 2rem;
  }
}

/* Larger nav logo */
.nav-logo img {
  height: 56px;
  width: auto;
}

/* ============================================================
   SINGLES SHOWCASE — two cards side by side
   ============================================================ */
.singles-showcase {
  background: #fff;
  border-top: 1px solid #e8e4dc;
  border-bottom: 1px solid #e8e4dc;
  padding: 4rem 3rem;
}
.singles-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 1.5rem auto 0;
}
.singles-showcase-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.singles-showcase-img {
  flex: 0 0 120px;
  height: 120px;
  overflow: hidden;
}
.singles-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.singles-showcase-text {
  flex: 1;
  min-width: 0;
}
.singles-showcase-text .single-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.85rem;
}
.singles-showcase-player {
  margin-bottom: 0.75rem;
}
.singles-showcase-player iframe {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .singles-showcase { padding: 3rem 1.5rem; }
  .singles-showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .singles-showcase-card { flex-direction: column; }
  .singles-showcase-img { flex: 0 0 auto; width: 100%; height: 180px; }
}

/* Larger nav logo */
.nav-logo img {
  height: 70px;
  width: auto;
}
/* Fix nav height to accommodate larger logo */
.site-nav {
  height: 80px;
}
.footer-logo {
  height: 56px;
}

/* Constrain nav content to match body width */
.site-nav {
  padding: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
}
