/* Oliver Fox — layout preview (pre-Framer)
   Dark editorial pop · mobile-first · 390 / 1280 */

:root {
  --bg: #0a0a0b;
  --bg-elev: #121214;
  --bg-card: #16161a;
  --bg-soft: #1c1c22;
  --text: #f4f2ef;
  --text-muted: #a8a6a1;
  --text-dim: #6f6d69;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #a78bfa;          /* electric violet from brief */
  --accent-hot: #c4b5fd;
  --accent-wine: #8b3a4a;     /* deep wine secondary */
  --silver: #c8d0d8;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 64px;
  --max: 1120px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  min-height: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; }

.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;
}


/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--text);
}

.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover { color: var(--text); }

.nav-social {
  display: none;
  gap: 0.85rem;
  align-items: center;
}

.nav-social a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: grid;
  place-items: center;
}

.nav-social a:hover { color: var(--accent-hot); }
.nav-social svg { width: 18px; height: 18px; fill: currentColor; }

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(12, 12, 14, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 1.5rem 1.75rem;
  flex-direction: column;
  gap: 1rem;
}

.site-nav.is-open .nav-drawer { display: flex; }

.nav-drawer a {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.nav-drawer .drawer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.nav-drawer .drawer-social svg { width: 20px; height: 20px; fill: currentColor; }

/* —— Shared —— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight { padding: 3.5rem 0; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.lede {
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-hot); color: #0a0a0b; }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
}

.btn-accent {
  background: var(--accent);
  color: #0a0a0b;
}
.btn-accent:hover { background: var(--accent-hot); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dsp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dsp-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.dsp-btn:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
  background: rgba(167, 139, 250, 0.08);
}
.dsp-btn.is-primary {
  background: #1DB954;
  border-color: #1DB954;
  color: #04140a;
}
.dsp-btn.is-primary:hover { filter: brightness(1.08); color: #04140a; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - 28px - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.15) 0%, rgba(10,10,11,0.35) 35%, rgba(10,10,11,0.92) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.25) 55%, rgba(10,10,11,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.hero .eyebrow { color: var(--silver); }

.hero h1 {
  font-size: clamp(3rem, 12vw, 6.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 22rem;
  margin-bottom: 1.75rem;
  line-height: 1.45;
}

/* —— Latest —— */
.latest {
  background: var(--bg);
}

.latest-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cover-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest h2 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
}

.latest p {
  color: var(--text-muted);
  margin: 0.75rem 0 1.5rem;
  font-size: 1.05rem;
}

/* —— Next show —— */
.next-show {
  background: linear-gradient(180deg, var(--bg) 0%, #100e14 100%);
}

.show-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(167,139,250,0.12), transparent 50%),
    var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.show-meta {
  display: grid;
  gap: 0.35rem;
}

.show-date {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.show-detail {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 550;
}

.show-venue {
  color: var(--text-muted);
}

.show-micro {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

/* —— Music —— */
.music-intro {
  margin-bottom: 2rem;
}

.music-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 96px 1fr;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.track-card:hover {
  border-color: rgba(167,139,250,0.35);
  transform: translateY(-2px);
}

.track-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.track-body {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
}

.track-body h3 {
  font-size: 1rem;
  letter-spacing: 0;
}

.track-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-body .stream-link {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  font-weight: 650;
  width: fit-content;
}

/* —— About —— */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.82) contrast(1.05);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.75) 100%);
  pointer-events: none;
}

.about-photo .tbd-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--line);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.about-copy p {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 38rem;
}

/* —— Tour —— */
.tour-list {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}

.tour-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.tour-row-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.tour-date {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.tour-city { font-weight: 600; }
.tour-venue { color: var(--text-muted); font-size: 0.95rem; }
.tour-note { color: var(--text-dim); font-size: 0.85rem; }

.tour-empty {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* —— Merch —— */
.merch-intro {
  margin-bottom: 2rem;
}

.merch-intro .lede {
  margin-top: 0.5rem;
  max-width: 32rem;
}

.merch-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.merch-card:hover {
  border-color: rgba(167,139,250,0.35);
  transform: translateY(-2px);
}

.merch-card picture,
.merch-card img {
  display: block;
  width: 100%;
}

.merch-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-soft);
}

.merch-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.merch-body h3 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.merch-price {
  color: var(--accent-hot);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.merch-cta {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.merch-cta .btn[disabled],
.merch-cta .btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.merch-cta-note {
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 28rem;
}

/* —— Email —— */
.email-section {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(139,58,74,0.18), transparent 60%),
    var(--bg);
}

.email-box {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.email-box .lede {
  margin: 0.5rem auto 1.5rem;
}

.email-form {
  display: grid;
  gap: 0.75rem;
}

.email-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  padding: 0.85rem 1.25rem;
  outline: none;
}

.email-form input[type="email"]:focus {
  border-color: var(--accent);
}

.email-form .btn { width: 100%; }

.email-legal {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* —— Press —— */
.press-grid {
  display: grid;
  gap: 1rem;
}

.press-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.press-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.press-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.press-card a.mail {
  color: var(--accent-hot);
  font-weight: 600;
  word-break: break-all;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.footer-entity {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-social a:hover { color: var(--accent-hot); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-legal a:hover { color: var(--text-muted); }

/* —— Design notes (not footer legal) —— */
.design-notes {
  background: #14131a;
  border-top: 1px solid rgba(167,139,250,0.25);
  padding: 1.5rem 0 2rem;
  color: #b7b3c9;
  font-size: 0.8rem;
  line-height: 1.55;
}

.design-notes h2 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.75rem;
}

.design-notes ul {
  display: grid;
  gap: 0.45rem;
  list-style: disc;
  padding-left: 1.1rem;
}

.design-notes code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78em;
  color: #e8e4ff;
}

/* —— Desktop —— */
@media (min-width: 768px) {
  .nav-links, .nav-social { display: flex; }
  .nav-toggle, .nav-drawer { display: none !important; }

  .latest-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
  }

  .show-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2rem 2.25rem;
  }

  .music-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .merch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .track-card {
    grid-template-columns: 120px 1fr;
  }
  .track-card img { width: 120px; height: 120px; }

  .about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
  }

  .tour-row {
    grid-template-columns: 8.5rem 1fr auto;
    align-items: center;
    gap: 1rem;
  }
  .tour-row-top { display: contents; }

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

  .email-form {
    grid-template-columns: 1fr auto;
  }
  .email-form .btn { width: auto; min-width: 10rem; }

  .footer-top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .section { padding: 5.5rem 0; }

  .hero-content { padding-bottom: 5rem; }

  .music-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .track-card {
    grid-template-columns: 1fr;
  }
  .track-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .track-body {
    padding: 1rem 1.1rem 1.2rem;
  }
  .track-body p {
    white-space: normal;
  }
}

@media (min-width: 1280px) {
  :root { --max: 1180px; }
  .hero h1 { letter-spacing: 0.06em; }
}
