/* =====================================================================
   musicmahn — Jamie Mahn
   Palette + type sampled from the finished EPK. See assets/README.md.
   ===================================================================== */

:root {
  --charcoal:     #0E0D0B;
  --charcoal-2:   #16130F;
  --charcoal-3:   #1E1A15;
  --red:          #D64526;
  --red-hot:      #E8532F;
  --orange:       #E98440;
  --bone:         #F3EFE6;
  --bone-mute:    #C4BEB2;
  --bone-faint:   #8A857B;
  --hairline:     rgba(243, 239, 230, 0.13);

  --display: "Oswald", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 56px);
}

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

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

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--red-hot); }

/* ---------------------------------------------------------- utilities */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px;
  font-family: var(--display); letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Section label: red bar + wide-tracked caps — straight off the EPK */
.label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
}
.label::before {
  content: "";
  width: 7px; height: 20px;
  background: var(--red);
  flex: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .005em;
  margin: 0 0 20px;
}
h2 { font-size: clamp(30px, 4.6vw, 50px); }
h3 { font-size: clamp(21px, 2.6vw, 27px); letter-spacing: .05em; }
p { margin: 0 0 20px; }
.lede { font-size: clamp(18px, 2.1vw, 21px); color: var(--bone); line-height: 1.62; }
.muted { color: var(--bone-mute); }
.dot { color: var(--red); }

section { padding: clamp(64px, 9vw, 108px) 0; }
.rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 34px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--red-hot); border-color: var(--red-hot); color: #fff; }
.btn-ghost { background: transparent; color: var(--bone); border-color: rgba(243,239,230,.4); }
.btn-ghost:hover { background: var(--bone); color: var(--charcoal); border-color: var(--bone); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* --------------------------------------------------------------- nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 13, 11, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 20px;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--bone);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange); }
.nav-links .btn { padding: 11px 22px; font-size: 12px; color: #fff; }
.nav-links .btn:hover { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--bone);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--bone); margin: 5px 0;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--charcoal-2); border-bottom: 1px solid var(--hairline);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links[data-open="true"] { max-height: 460px; }
  .nav-links a { padding: 16px var(--gut); width: 100%; border-top: 1px solid var(--hairline); }
  .nav-links .btn { margin: 16px var(--gut) 22px; width: auto; }
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative; padding: 0; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 90% at 78% 45%, rgba(214,69,38,.22), transparent 70%),
    var(--charcoal);
  border-bottom: 1px solid var(--hairline);
}
.hero-inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) var(--gut) clamp(52px, 7vw, 92px);
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 68px); align-items: center;
}
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 560px; object-fit: cover;
  object-position: center 12%;
}
/* warm edge bleed so the portrait sits in the charcoal rather than on it */
.hero-media::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(14,13,11,.55) 0%, rgba(14,13,11,0) 26%);
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { max-height: 380px; object-position: center 18%; }
  .hero-media::after { background: linear-gradient(0deg, rgba(14,13,11,.75) 0%, rgba(14,13,11,0) 45%); }
}
.hero-eyebrow {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: .42em; text-transform: uppercase; color: var(--red);
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(54px, 11.5vw, 132px);
  line-height: .88;
  margin: 0 0 22px;
}
.hero-sub {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(14px, 2.1vw, 20px);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 26px;
}
.hero-blurb { max-width: 46ch; color: var(--bone-mute); font-size: 18px; }

/* ---------------------------------------------------------- stat band */
.stats { background: var(--charcoal-2); border-block: 1px solid var(--hairline); padding: 0; }
.stats-grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: clamp(30px, 4.4vw, 46px) clamp(16px, 2.6vw, 30px); border-left: 1px solid var(--hairline); }
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1; color: var(--bone); margin: 0 0 10px;
}
.stat-lab {
  font-family: var(--display); font-weight: 500; font-size: 11.5px;
  letter-spacing: .17em; text-transform: uppercase; color: var(--bone-faint);
  margin: 0; line-height: 1.42;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}

/* -------------------------------------------------------- split block */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 78px); align-items: center;
}
.split-narrow { grid-template-columns: 1fr 1.25fr; }
@media (max-width: 880px) { .split, .split-narrow { grid-template-columns: 1fr; } }
.split img { width: 100%; height: 100%; object-fit: cover; max-height: 620px; }

/* -------------------------------------------------------------- cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 2px; }
.card {
  background: var(--charcoal-2);
  padding: clamp(28px, 3.4vw, 40px);
  border-top: 3px solid var(--red);
}
.card h3 { margin-bottom: 12px; color: var(--bone); }
.card p { margin: 0; color: var(--bone-mute); font-size: 15.5px; line-height: 1.66; }

/* ------------------------------------------------------------- venues */
.venues { border-top: 1px solid var(--hairline); }
.venue-row {
  display: grid; grid-template-columns: 230px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: 26px 0; border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.venue-row dt {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
}
.venue-row dd { margin: 0; color: var(--bone-mute); }
@media (max-width: 700px) {
  .venue-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
}

/* --------------------------------------------------------- repertoire */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.chips li {
  font-family: var(--display); font-weight: 500; font-size: 13.5px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid rgba(233,132,64,.42);
  border-radius: 999px; color: var(--bone);
}
.chips li.more { border-color: var(--red); color: var(--orange); }

/* -------------------------------------------------------------- video */
.video-frame {
  position: relative; padding-top: 56.25%;
  background: var(--charcoal-2); border: 1px solid var(--hairline);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------ gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; }
.gallery img {
  width: 100%; height: 100%; min-height: 260px; object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.045); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 20px 16px;
  background: linear-gradient(0deg, rgba(14,13,11,.94), rgba(14,13,11,0));
  font-family: var(--display); font-weight: 500; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--bone);
}
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- call-out */
.callout {
  background: var(--charcoal-2);
  border-left: 5px solid var(--red);
  padding: clamp(30px, 4vw, 48px);
}
.callout p:last-child { margin-bottom: 0; }

blockquote.pull {
  margin: 0 0 26px; padding: 0 0 0 26px;
  border-left: 3px solid var(--red);
  font-size: clamp(18px, 2.3vw, 23px); line-height: 1.5; color: var(--bone);
  font-style: italic;
}
blockquote.pull cite {
  display: block; margin-top: 14px;
  font-family: var(--display); font-style: normal; font-weight: 500;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone-faint);
}

/* ---------------------------------------------------------- band/CTA */
.band {
  background:
    radial-gradient(ellipse 70% 130% at 50% 50%, rgba(214,69,38,.30), transparent 68%),
    var(--charcoal-2);
  text-align: center;
  border-block: 1px solid var(--hairline);
}
.band h2 { margin-bottom: 16px; }
.band .label { justify-content: center; }
.band p { max-width: 56ch; margin-inline: auto; color: var(--bone-mute); }
.band .btn-row { justify-content: center; }

/* ------------------------------------------------------------- footer */
.site-footer {
  background: var(--charcoal); padding: clamp(50px, 6vw, 76px) 0 34px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-grid img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-grid h4 {
  font-size: 12px; letter-spacing: .2em; color: var(--bone-faint); margin-bottom: 14px;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-list a { color: var(--bone-mute); font-size: 15px; }
.footer-list a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--hairline); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 13.5px; color: var(--bone-faint);
}

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(243,239,230,.22);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 13px; font-weight: 600;
  color: var(--bone-mute);
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials a[aria-disabled="true"] { opacity: .38; pointer-events: none; }

/* ------------------------------------------------------ inner header */
.page-head {
  padding: clamp(56px, 8vw, 96px) 0 clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
}
.page-head h1 { font-size: clamp(38px, 7vw, 74px); margin-bottom: 14px; }
.page-head p { max-width: 62ch; color: var(--bone-mute); margin: 0; }

.prose { max-width: 74ch; }
.prose h3 { margin-top: 44px; color: var(--orange); }
.prose ul { padding-left: 20px; color: var(--bone-mute); }
.prose li { margin-bottom: 9px; }

/* -------------------------------------------------------- spec table */
.spec { width: 100%; border-collapse: collapse; margin-bottom: 34px; }
.spec th, .spec td {
  text-align: left; padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--hairline); vertical-align: top;
}
.spec th {
  font-family: var(--display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  width: 240px;
}
.spec td { color: var(--bone-mute); }
@media (max-width: 640px) {
  .spec, .spec tbody, .spec tr, .spec th, .spec td { display: block; width: 100%; }
  .spec th { border: 0; padding-bottom: 4px; }
}

/* -------------------------------------------------------- downloads */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; }
.dl {
  background: var(--charcoal-2); padding: 28px; border-top: 3px solid var(--red);
  display: block; color: var(--bone);
}
.dl:hover { background: var(--charcoal-3); color: var(--bone); }
.dl strong {
  display: block; font-family: var(--display); font-weight: 600; font-size: 16px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.dl span { font-size: 14px; color: var(--bone-faint); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
