/* Colors and fonts are set from content.js (theme). These are fallbacks. */
:root {
  --bg: #0d0c0f;
  --surface: #18161c;
  --text: #f4efe6;
  --muted: #a59f95;
  --accent: #ffc93c;
  --accent-text: #141210;
  --line: color-mix(in srgb, var(--text) 12%, transparent);
  --font-head: Impact, "Arial Narrow", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 14px;
  --wrap: 1120px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  margin: 0 0 .5em;
}
h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.lead { font-size: clamp(1.1rem, 2.4vw, 1.35rem); }
.link { text-decoration: none; border-bottom: 1px solid currentColor; }
.link:hover { color: var(--accent); }
.eyebrow {
  font-weight: 700; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus { position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--accent); color: var(--accent-text); padding: 8px 14px; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  min-height: 48px; padding: 0 1.5em;
  background: var(--accent); color: var(--accent-text);
  border: 2px solid var(--accent); border-radius: 999px;
  font: 800 .95rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: color-mix(in srgb, var(--text) 40%, transparent); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--accent-text); color: var(--accent); border-color: var(--accent-text); }
.btn--small { min-height: 40px; padding: 0 1.1em; font-size: .8rem; }
.btn--disabled, .btn--disabled:hover { background: transparent; color: var(--muted); border-color: var(--line); cursor: default; transform: none; }
.btn.is-low { background: #ff6b3d; border-color: #ff6b3d; color: #fff; }

/* ── Demo banner ─────────────────────────────────────── */
.demo-banner {
  position: relative; z-index: 60;
  background: repeating-linear-gradient(-45deg, var(--accent), var(--accent) 14px, color-mix(in srgb, var(--accent) 85%, #000) 14px, color-mix(in srgb, var(--accent) 85%, #000) 28px);
  color: var(--accent-text); text-align: center; font-size: .85rem; font-weight: 600;
  padding: 8px var(--gutter);
}
.demo-banner a { font-weight: 800; }
@media (max-width: 640px) { .demo-banner { font-size: .75rem; padding: 6px 12px; line-height: 1.4; } }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
body[data-page="home"] .nav { position: fixed; left: 0; right: 0; }
body[data-page="home"] .demo-banner:not([hidden]) ~ .nav { position: sticky; }
body[data-page="home"] .demo-banner:not([hidden]) ~ main .hero { margin-top: -72px; }
.nav.is-scrolled, body[data-page="press"] .nav, .nav.is-open {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo {
  font-family: var(--font-head); font-size: 1.6rem; text-transform: uppercase;
  text-decoration: none; letter-spacing: .02em;
}
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu a:not(.btn) {
  text-decoration: none; font-weight: 600; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase;
  opacity: .85;
}
.nav__menu a:not(.btn):hover, .nav__menu a[aria-current] { opacity: 1; color: var(--accent); }
.nav__toggle { display: none; }

@media (max-width: 820px) {
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; margin-right: -10px; padding: 12px;
    background: none; border: 0; cursor: pointer; color: var(--text);
  }
  .nav__toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__menu a:not(.btn) { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__menu .btn { margin-top: 16px; min-height: 52px; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 120px 0 clamp(48px, 9vh, 96px); overflow: hidden; isolation: isolate;
}
.hero__img, .hero__img img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero__img img { object-fit: cover; object-position: 70% 30%; }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--bg) 2%, color-mix(in srgb, var(--bg) 55%, transparent) 40%, transparent 75%),
    linear-gradient(to right, color-mix(in srgb, var(--bg) 70%, transparent), transparent 65%);
}
.hero__name {
  font-size: clamp(3.8rem, 15vw, 10rem); line-height: .88; margin-bottom: .2em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__tagline { font-size: clamp(1.1rem, 2.6vw, 1.5rem); max-width: 30ch; margin-bottom: 1.4rem; }
.hero__next {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .7em;
  background: color-mix(in srgb, var(--bg) 60%, transparent); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 16px 6px 6px;
  font-weight: 600; font-size: .95rem; margin-bottom: 1.6rem;
}
.hero__next-label {
  background: var(--accent); color: var(--accent-text); border-radius: 999px; padding: 4px 12px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
@media (max-width: 480px) { .hero__next { border-radius: 16px; padding: 10px 14px; gap: .5em; } }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.6rem; }

.social { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0; flex-wrap: wrap; }
.social a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); transition: color .15s, border-color .15s, background .15s;
}
.social a:hover { color: var(--accent-text); background: var(--accent); border-color: var(--accent); }
.social svg { width: 20px; height: 20px; }

/* ── Sections ────────────────────────────────────────── */
.section { padding: clamp(64px, 10vw, 112px) 0; }
.section--alt { background: var(--surface); }
.section--accent { background: var(--accent); color: var(--accent-text); }
.section__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1.5rem; margin-bottom: 2rem; }
.section__head h2 { margin: 0; }
.section__head p { margin: 0; }

/* ── Shows ───────────────────────────────────────────── */
.shows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.show {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.show__date { display: flex; flex-direction: column; align-items: center; line-height: 1; text-transform: uppercase; }
.show__dow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.show__day { font-family: var(--font-head); font-size: 2.6rem; margin: 4px 0 2px; }
.show__mon { font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--accent); }
.show__city { font-weight: 800; font-size: 1.2rem; margin: 0; }
.show__venue { margin: 0; color: var(--muted); }
.show__note { margin: 4px 0 0; font-size: .85rem; color: var(--accent); }
.show__action { display: flex; align-items: center; gap: 14px; }
.show--sold .show__city, .show--sold .show__day { opacity: .5; }
.tag {
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--accent); color: var(--accent); white-space: nowrap;
}
.tag.is-low { border-color: #ff6b3d; color: #ff8a63; }
.tag.is-sold { border-color: var(--line); color: var(--muted); }
.shows__more { margin-top: 28px; }
.shows__empty { padding: 32px 0; color: var(--muted); }

@media (max-width: 640px) {
  .show { grid-template-columns: 60px 1fr; gap: 6px 16px; padding: 16px 0; }
  .show__day { font-size: 2.1rem; }
  .show__date { grid-row: span 2; align-self: start; }
  .show__action { grid-column: 2; justify-content: space-between; margin-top: 8px; }
  .show__action .btn { flex: 0 0 auto; }
  .show__action .tag { order: 2; }
  .show__city { font-size: 1.08rem; }
}

/* ── Clips ───────────────────────────────────────────── */
.clips { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.clip {
  display: block; text-align: left; text-decoration: none; color: inherit;
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
}
.clip__media {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000;
}
.clip__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.clip:hover .clip__media img { transform: scale(1.04); }
.clip__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.clip__play {
  position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--accent); box-shadow: 0 8px 30px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.clip__play::after {
  content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
  border-left: 20px solid var(--accent-text); border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.clip:hover .clip__play { transform: translate(-50%, -50%) scale(1.1); }
.clip.is-playing .clip__play { display: none; }
.clip__title { font-weight: 700; margin: 12px 0 0; }

/* ── Quotes ──────────────────────────────────────────── */
.quotes { padding: clamp(48px, 8vw, 88px) 0; border-bottom: 1px solid var(--line); }
.quotes__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px 48px; }
.quote { margin: 0; }
.quote blockquote {
  margin: 0 0 .6rem; font-family: var(--font-head); text-transform: uppercase;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.08;
}
.quote figcaption { color: var(--accent); font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── About ───────────────────────────────────────────── */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
.about__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.credits { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 10px; }
.credits li { padding-left: 26px; position: relative; font-weight: 600; }
.about__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.credits li::before { content: "★"; position: absolute; left: 0; color: var(--accent); }
@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; }
  .about__img { max-height: 520px; }
}

/* ── Newsletter ──────────────────────────────────────── */
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px; align-items: center; }
.newsletter h2 { font-size: clamp(2rem, 5vw, 3rem); }
.newsletter p { margin: 0; font-weight: 500; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 10px; }
.newsletter__form input {
  flex: 1 1 220px; min-height: 52px; padding: 0 20px; border-radius: 999px;
  border: 2px solid var(--accent-text); background: color-mix(in srgb, #fff 85%, var(--accent));
  color: #111; font: 500 1rem var(--font-body);
}
.newsletter__form .btn { min-height: 52px; }
.newsletter__thanks { flex-basis: 100%; font-weight: 700; }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; } }

/* ── Contact ─────────────────────────────────────────── */
.contact__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 1.5rem; }
.contact__card {
  display: flex; flex-direction: column; gap: 4px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; transition: border-color .15s, transform .15s;
}
a.contact__card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact__label { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.contact__value { font-weight: 700; font-size: 1.1rem; overflow-wrap: anywhere; }

/* ── Footer ──────────────────────────────────────────── */
.footer { padding: 48px 0 calc(48px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer p { margin: 0; }

/* ── Sticky phone CTA ────────────────────────────────── */
.sticky-cta { display: none; }
@media (max-width: 640px) {
  .sticky-cta:not([hidden]) {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom)); z-index: 40;
    min-height: 54px; border-radius: 999px;
    background: var(--accent); color: var(--accent-text); text-decoration: none;
    font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
    transition: transform .25s ease, opacity .25s ease;
  }
  .sticky-cta.is-away { transform: translateY(140%); opacity: 0; }
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* ── Press kit ───────────────────────────────────────── */
.press__intro { padding-top: clamp(48px, 8vw, 96px); }
.press__title { font-size: clamp(3.2rem, 12vw, 7rem); line-height: .9; margin-bottom: .25em; }
.press__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 760px) { .press__grid { grid-template-columns: 1fr; } }
.copy-box {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 14px;
}
.section--alt .copy-box { background: var(--bg); }
.section:not(.section--alt) .copy-box { background: var(--surface); }
.copy-box p:last-child { margin-bottom: 0; }
.headshots { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.headshot { text-decoration: none; font-weight: 700; }
.headshot img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; border-radius: var(--radius); margin-bottom: 10px; transition: transform .2s; }
.headshot:hover img { transform: scale(1.02); }
.details { display: grid; grid-template-columns: max-content 1fr; gap: 14px 32px; margin: 1.5rem 0 0; }
.details dt { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding-top: 3px; }
.details dd { margin: 0; }
@media (max-width: 560px) {
  .details { grid-template-columns: 1fr; gap: 4px; }
  .details dd { margin-bottom: 14px; }
}

/* Print-friendly press kit ("Save as PDF") */
@media print {
  :root { --bg: #fff; --surface: #fff; --text: #111; --muted: #444; --line: #ccc; }
  .nav, .demo-banner, .footer, .btn, [data-copy], .clip__play, .sticky-cta { display: none !important; }
  .section { padding: 20px 0; break-inside: avoid; }
  .eyebrow, .contact__label, .details dt, .credits li::before { color: #111; }
}

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