/* andrewwittmer.com — shared stylesheet for index.php and media.php.
   Selectors used by only one page are harmless on the other (they simply
   never match). The few rules that genuinely differ between the two pages
   are scoped under body.page-media. */

/* ── RESET + TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a1628;
  --bg-mid:    #0f1d33;
  --bg-card:   #152540;
  --gold:      #4a90d9;
  --gold-dim:  rgba(74, 144, 217, 0.12);
  --text:      #d8dce8;
  --muted:     #6b7a96;
  --border:    rgba(74, 144, 217, 0.2);
  --nav-h:     68px;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: background 0.35s, backdrop-filter 0.35s;
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--white); }
.nav-links a.current { opacity: 1; color: var(--white); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (home) ────────────────────────────── */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
#hero .bg {
  position: absolute; inset: 0;
  background: url('../images/perf1.jpg') center 30% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: contrast(1.3) brightness(0.7) saturate(0.4);
}
#hero .bg.loaded { transform: scale(1); }
#hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.7) 0%,
    rgba(10,22,40,0.4) 40%,
    rgba(10,22,40,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(216, 220, 232, 0.65);
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-sub span { color: var(--gold); opacity: 0.6; margin: 0 12px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: #5da0e8; transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(74,144,217,0.6);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--white); transform: translateY(-1px); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.4; z-index: 2;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-hint::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text), transparent);
}

/* ── SHARED SECTION STYLES ──────────────────── */
section { padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* media.php uses a wider container, tighter section padding,
   and a smaller section title than the home page. */
body.page-media .container { max-width: 1240px; }
body.page-media section { padding: 88px 0; }
body.page-media .section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}

/* ── ABOUT (home) ───────────────────────────── */
#about { background: var(--bg-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.about-photo {
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.about-photo img {
  width: 100%;
  border-radius: 0;
  display: block;
  filter: contrast(1.2) saturate(0.3) brightness(0.95);
}
.about-photo figcaption {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 10px;
  text-transform: uppercase;
}
.about-text p { color: rgba(216,220,232,0.78); margin-bottom: 20px; font-size: 0.95rem; font-weight: 300; }

/* ── GALLERY (home) ─────────────────────────── */
#gallery { background: var(--bg); padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 8/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.15) saturate(0.3) brightness(0.85);
  transition: filter 0.4s, transform 0.5s;
  display: block;
}
.gallery-item:hover img { filter: contrast(1.1) saturate(0.8) brightness(1); transform: scale(1.04); }

.gallery-more {
  text-align: center;
  padding: 32px 24px 56px;
  background: var(--bg);
}
.gallery-more a {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-more a:hover {
  background: var(--gold-dim);
  color: var(--white);
  border-color: var(--gold);
}
.gallery-more a .arrow { margin-left: 8px; transition: transform 0.2s; display: inline-block; }
.gallery-more a:hover .arrow { transform: translateX(4px); }

/* ── GIGS (home) ────────────────────────────── */
#gigs { background: var(--bg-mid); }
.gig-list { list-style: none; margin-top: 8px; }
.gig-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.gig-item:first-child { border-top: 1px solid var(--border); }
.gig-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.gig-date-sub { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.gig-venue { font-weight: 500; font-size: 1.3rem; }
.gig-detail { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }
.gig-cta a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 2px solid var(--border);
  padding: 7px 14px;
  border-radius: 0;
  white-space: nowrap;
  transition: 0.2s;
}
.gig-cta a:hover { background: var(--gold-dim); }
.no-gigs {
  padding: 48px 0;
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
}

/* ── PAST PERFORMANCES ARCHIVE (home) ───────── */
.gig-archive { margin-top: 48px; }
.archive-toggle {
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.archive-toggle:hover { color: var(--text); }
.archive-chevron { margin-left: auto; font-size: 0.75rem; transition: transform 0.25s; }
.archive-toggle[aria-expanded="true"] .archive-chevron { transform: rotate(180deg); }
.gig-list-past .gig-date { color: var(--muted); }
.gig-list-past .gig-venue { opacity: 0.65; }
.gig-list-past .gig-detail { opacity: 0.65; }
.gig-list-past .gig-cta { display: none; }

/* ── DISCOGRAPHY / ALBUM CARDS (shared) ─────── */
#discography { background: var(--bg); }
#videos { background: var(--bg-mid); }
.album-list { list-style: none; margin-top: 8px; }
.album-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  padding: 16px 0 0;
}
.album-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.3s;
}
.album-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.album-cover:hover { border-color: var(--gold); transform: translateY(-2px); }
.album-status {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  text-transform: uppercase;
}
.album-info { padding-top: 4px; }
.album-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.album-artist {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.album-meta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.album-role {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(216,220,232,0.78);
  margin-bottom: 24px;
}
.album-links a {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.album-links a:hover {
  background: var(--gold-dim);
  color: var(--white);
  border-color: var(--gold);
}
.album-links a .arrow { margin-left: 6px; transition: transform 0.2s; display: inline-block; }
.album-links a:hover .arrow { transform: translateX(4px); }

/* ── LESSONS + BOOKINGS (home) ──────────────── */
#lessons { background: var(--bg-mid); }
#bookings { background: var(--bg); }
.lessons-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.lessons-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 28px 0 10px;
}
.lessons-info h3:first-child { margin-top: 0; }
.lessons-info p, .lessons-info li {
  font-size: 1.05rem;
  color: rgba(216,220,232,0.75);
  font-weight: 300;
}
.lessons-info p { margin-bottom: 20px; }
.lessons-info li { margin-bottom: 6px; }
.lessons-info ul { list-style: none; margin-bottom: 20px; }
.lessons-info p:last-child { margin-bottom: 0; }
.lessons-info li::before { content: '\2013\00a0\00a0'; color: var(--gold); }

/* Form (home) */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.format-radios { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.format-radios .format-option {
  flex: 1 1 0;
  min-width: 90px;
  position: relative;
  cursor: pointer;
}
.format-radios .format-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
  margin: 0;
}
.format-radios .format-option span {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
  -webkit-user-select: none;
}
.format-radios .format-option:hover span { border-color: var(--gold); color: var(--white); }
.format-radios .format-option input:checked + span {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--white);
}
.format-radios .format-option input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* honeypot */
.hp-field { display: none; }

.form-msg {
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: 0;
  display: none;
}
.form-msg.success { background: rgba(100,180,100,0.12); border: 1px solid rgba(100,180,100,0.3); color: #8ecb8e; }
.form-msg.error { background: rgba(220,80,80,0.1); border: 1px solid rgba(220,80,80,0.25); color: #e09090; }

.btn-submit {
  align-self: flex-start;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: #5da0e8; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── PAGE HEADER (media) ────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 88px) 40px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-header .divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(216,220,232,0.78);
}
.section-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ── PHOTOS / MASONRY (media) ───────────────── */
#photos { background: var(--bg); }
.masonry {
  column-count: 3;
  column-gap: 16px;
}
.media-photo {
  break-inside: avoid;
  margin: 0 0 16px;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.media-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.12) saturate(0.35) brightness(0.9);
  transition: filter 0.4s, transform 0.5s;
}
.media-photo:hover { border-color: var(--border); }
.media-photo:hover img { filter: contrast(1.05) saturate(0.85) brightness(1); transform: scale(1.02); }
.media-photo figcaption { display: none; }

.videos-note {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

/* ── LIGHTBOX (media) ───────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 12, 24, 0.96);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(10,22,40,0.6);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.4rem; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; font-size: 1.6rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold-dim); color: var(--white); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.85rem;
}
.lightbox-caption {
  position: absolute;
  bottom: 60px; left: 50%; transform: translateX(-50%);
  max-width: min(720px, 84vw);
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(216, 220, 232, 0.88);
  padding: 8px 16px;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(6px);
}
.lightbox-caption:empty { display: none; }

/* ── FOOTER (shared) ────────────────────────── */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}
footer .footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
footer p { font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
footer a { color: var(--muted); transition: color 0.2s; text-decoration: none; }
footer a:hover { color: var(--gold); }
footer .copyright { margin-top: 32px; font-size: 0.72rem; color: rgba(107,122,150,0.5); }

/* ── SOCIAL ICONS (shared) ──────────────────── */
.social-links { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.social-links a { color: var(--muted); transition: color 0.2s; display: flex; align-items: center; }
.social-links a:hover { color: var(--gold); }
.social-links svg { width: 22px; height: 22px; fill: currentColor; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .lessons-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { position: static; }
  .about-photo img { max-height: 420px; object-fit: cover; object-position: top; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 8/3; }
  .gig-item { grid-template-columns: 70px 1fr; }
  .gig-cta { grid-column: span 2; }
  .masonry { column-count: 2; }
  /* album cards collapse at 900 on the home page */
  body.page-home .album-item { grid-template-columns: 1fr; gap: 28px; }
  body.page-home .album-cover { max-width: 360px; }
  body.page-home .album-title { font-size: 2rem; }
}

@media (max-width: 700px) {
  /* album cards collapse at 700 on the media page */
  body.page-media .album-item { grid-template-columns: 1fr; gap: 28px; }
  body.page-media .album-cover { max-width: 360px; }
  body.page-media .album-title { font-size: 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,22,40,0.97);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 16px 24px; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  body.page-media section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 4/3; }
  .gig-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .page-header { padding: calc(var(--nav-h) + 56px) 24px 40px; }
}

@media (max-width: 560px) {
  .masonry { column-count: 1; }
}
</content>
</invoke>
