/* ============================================================
   Bold Music — bold x live nation
   Palette sampled from the source Canva deck.
   ============================================================ */

:root {
  --black: #000000;
  --ink: #101010;
  --red: #ff3131;
  --blue: #004aad;
  --purple: #7731d8;
  --lavender: #f1ebff;
  --paper: #ffffff;
  --grey: #5c5c5c;
  --rule: #e2e2e2;

  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shell: 1120px;
  --gut: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--purple); }

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ---------- skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-in {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  gap: 28px;
}

/* flex:none on the anchor too — without it the scrolling link strip squeezes
   the anchor, and the global img{max-width:100%} then squashes the logo. */
.nav-brand { flex: none; display: flex; align-items: center; }

.nav-logo {
  height: 24px;
  width: auto;
  max-width: none;
  flex: none;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin-block: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: #fff; border-bottom-color: var(--red); }

/* On narrow screens the links become a horizontally scrollable strip
   rather than disappearing behind a menu button. */
@media (max-width: 860px) {
  .nav-in { gap: 16px; padding-block: 11px; }
  .nav-links {
    gap: 18px;
    padding-left: 6px;
    /* a flex item defaults to min-width:auto and would refuse to shrink
       below its content, pushing the page into horizontal overflow */
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* fade the right edge to signal there is more to scroll */
    mask-image: linear-gradient(90deg, #000 calc(100% - 26px), transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 26px), transparent);
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.1em; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 78% 42%, rgba(119, 49, 216, 0.28), transparent 62%);
  pointer-events: none;
}

.hero-in {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(56px, 9vw, 104px) var(--gut) clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: clamp(210px, 30vw, 300px);
  height: auto;
  margin-bottom: 34px;
}

.hero-kicker {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero-kicker span { color: var(--red); }

.hero-sub {
  color: rgba(255, 255, 255, 0.66);
  max-width: 46ch;
  margin: 0 0 32px;
  font-size: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  transition: transform 0.18s, background 0.18s;
}

.hero-cta:hover { background: #fff; color: var(--black); transform: translateY(-2px); }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-art { order: -1; aspect-ratio: 16 / 10; }
}

/* ============================================================
   SECTION BANNERS  (the deck's diagonal-corner motif)
   ============================================================ */

/* keep anchored sections clear of the sticky nav */
[id] { scroll-margin-top: 58px; }

.banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(46px, 7vw, 86px) 0;
}

.banner--dark { background: var(--black); }
.banner--red { background: var(--red); }
.banner--blue { background: var(--blue); }

/* Diagonal corner stripes, both on the right so they never run into the
   left-aligned title at any viewport width. */
.banner::before,
.banner::after {
  content: "";
  position: absolute;
  right: -60px;
  width: clamp(150px, 20vw, 240px);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, transparent 46%, #0d1b33 46%, #0d1b33 62%, transparent 62%),
    linear-gradient(135deg, transparent 66%, #4a8ad4 66%, #4a8ad4 74%, transparent 74%);
  pointer-events: none;
}

.banner::before { top: -60px; }
.banner::after { bottom: -60px; }

.banner--dark::before,
.banner--dark::after {
  background:
    linear-gradient(135deg, transparent 46%, #1b2a4a 46%, #1b2a4a 62%, transparent 62%),
    linear-gradient(135deg, transparent 66%, #8f6cf0 66%, #8f6cf0 74%, transparent 74%);
}

.banner-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.banner h2 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}

/* photo band inside the dark "who we are" banner */
.banner-strip {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.5;
  pointer-events: none;
}

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

.banner-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.75) 100%);
}

@media (max-width: 760px) {
  .banner-strip { display: none; }
}

/* ============================================================
   PROSE SECTIONS
   ============================================================ */
.section { padding: clamp(48px, 7vw, 84px) 0; }

.section h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.section h3 + .rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0 0 30px;
}

.section h3:not(:first-child) { margin-top: 64px; }

.prose { max-width: 68ch; }
.prose p { margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; }

.lede { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.5; }

/* two-column text + image */
.split {
  display: grid;
  /* image column deliberately narrower than the text: at 4/3 a wide image
     column drives the row height well past the text and pads the page */
  grid-template-columns: 5fr 3fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

/* height:auto is required — the width/height HTML attributes become
   presentation hints, and a non-auto height makes aspect-ratio a no-op */
.split img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
}

/* ============================================================
   POSTER GRIDS
   ============================================================ */
.grid-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--grey);
  margin: 44px 0 16px;
}

.posters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* Posters vary in aspect ratio, so contain them in a uniform dark frame
   rather than cropping band names off the edges. */
.posters img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #0d0d0d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.posters img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

@media (max-width: 900px) { .posters { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .posters { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---------- highlight callout ---------- */
.highlight {
  background: var(--black);
  color: #fff;
  padding: clamp(26px, 4vw, 40px);
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.highlight b {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--red);
  white-space: nowrap;
}

.highlight p { margin: 0; color: rgba(255, 255, 255, 0.82); }

@media (max-width: 640px) {
  .highlight { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   CREW
   ============================================================ */
.crew {
  display: grid;
  /* min() lets the track shrink below 340px on very narrow screens instead
     of forcing horizontal page overflow */
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 22px;
  margin-top: 40px;
  align-items: start;
}

.person {
  --pad: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--purple);
  padding: 22px var(--pad);
  transition: box-shadow 0.2s, transform 0.2s;
}

.person:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.person header {
  background: var(--lavender);
  margin: -22px calc(var(--pad) * -1) 20px;
  padding: 16px var(--pad);
}

.person h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.005em;
}

.person .role {
  margin: 2px 0 0;
  font-size: 14px;
  color: #3b3b3b;
  letter-spacing: 0.02em;
}

.person p { margin: 0 0 14px; }
.person p:last-child { margin-bottom: 0; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.quote {
  background: var(--lavender);
  padding: clamp(34px, 5vw, 56px);
  margin-top: 48px;
  position: relative;
}

.quote p {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 27px);
  line-height: 1.38;
  font-weight: 700;
  color: var(--purple);
  max-width: 30ch;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: clamp(6px, 2vw, 14px);
  left: clamp(14px, 3vw, 26px);
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  color: var(--purple);
  opacity: 0.34;
}

/* cities row */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cities li {
  font-family: var(--display);
  font-size: clamp(20px, 3.4vw, 34px);
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact {
  background: var(--black);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}

.contact h2 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  margin: 0 0 34px;
  text-transform: uppercase;
  font-weight: 400;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 32px;
}

.contact-card .who b { display: block; font-size: 21px; }
.contact-card .who span { color: rgba(255, 255, 255, 0.6); font-size: 15px; }

.contact-card dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.contact-card dd { margin: 0 0 18px; font-size: 18px; }

.contact-card a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}

.contact-card a:hover { color: var(--red); }

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  font-size: 13px;
}

.footer-in {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
}

.footer img {
  height: 18px;
  width: auto;
  max-width: none;
  flex: none;
  opacity: 0.65;
}

/* ============================================================
   MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
