/* ===========================================================
   KRYSTALL POPPIN — Design tokens
   Black / white / chrome / deep automotive red
   =========================================================== */
:root {
  --black: #000000;
  --charcoal: #141414;
  --white: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.50);
  --hairline: rgba(255, 255, 255, 0.14);
  --red: #a80f24;
  --red-deep: #7a0a1a;
  --chrome: #bfc3c7;

  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --statement: "League Spartan", "Archivo", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--red); color: var(--white); }

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

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section-head { margin-bottom: 50px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-main {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
}
.section-sub {
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 52ch;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-primary::before { background: var(--white); }
.btn-primary:hover { color: var(--red); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost::before { background: var(--white); }
.btn-ghost:hover { color: var(--black); }

/* chrome shine sweep */
.shine { position: relative; overflow: hidden; }
.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(75deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 1s var(--ease);
  pointer-events: none;
}
.shine:hover::after { left: 120%; }

/* ===========================================================
   Navigation
   =========================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-nav.is-scrolled {
  padding: 14px 5vw;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--hairline);
}

.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo .dot { color: var(--red); }

/* Her actual signature — the site's primary brand mark, shown in its native
   colors exactly as supplied. Large and architectural, not a corner logo. */
.nav-logo-sig { display: flex; align-items: center; flex: 0 0 auto; }
.nav-logo-sig img {
  height: 68px;
  width: auto;
  display: block;
  opacity: 0.96;
  transition: opacity 0.3s var(--ease), height 0.4s var(--ease);
}
.nav-logo-sig:hover img,
.nav-logo-sig:focus-visible img { opacity: 1; }
.site-nav.is-scrolled .nav-logo-sig img { height: 50px; }

/* Links center within the space beside the signature, so the whole bar
   reads as one balanced composition instead of logo-left / links-jammed-right */
.nav-links { display: flex; align-items: center; justify-content: center; gap: 44px; flex: 1 1 auto; }
.nav-links a {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.78;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active,
.nav-drawer a.is-active { opacity: 1; }
.nav-links a.is-active::after { width: 100%; }
.nav-drawer a.is-active { color: var(--red); }

/* keyboard focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 220;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(84vw, 380px);
  background: var(--black);
  border-left: 3px solid var(--red);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(24px, 7vw, 30px);
  padding: 16px 4px;
  border-bottom: 1px solid var(--hairline);
}
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 205;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ===========================================================
   Hero — single image, single clean scrim, no duplicates
   =========================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 30%;
}

/* Per-page object-position, tuned so faces are never cropped or covered */
body[data-page="home"] .hero-media img { object-position: 58% 50%; }
body[data-page="music"] .hero-media img { object-position: 66% 55%; }
body[data-page="tour"] .hero-media img { object-position: 50% 20%; }
body[data-page="media"] .hero-media img { object-position: 60% 45%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.32) 40%, rgba(0,0,0,0) 66%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5vw 8vh;
}
.hero-eyebrow {
  color: var(--chrome);
  margin-bottom: 20px;
}
.hero-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.4vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.hero-role {
  font-family: var(--statement);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.86;
  margin: 20px 0 40px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ===========================================================
   Home — cinematic campaign cover
   The desktop/mobile hero photographs already carry their own dark-sky top
   and black-fade bottom, so the layout simply places type in that built-in
   negative space instead of adding extra masks, scrims or overlays.
   =========================================================== */
body[data-page="home"] { background: #0b0b0b; }

.hero-home {
  height: 100svh;
  min-height: 640px;
  align-items: flex-start;
}

.hero-home .hero-scrim { display: none; }

/* Top-anchored, not vertically centered: at taller/narrower box ratios the
   photo's full height shows (nothing is cropped), so the copy has to sit in
   the sky band near the top rather than at viewport-center, where her face
   ends up regardless of aspect ratio. */
.hero-home .hero-content {
  max-width: 560px;
  text-align: left;
  margin-right: auto;
  padding: 15vh 6vw 0;
}

/* Name-recognition stack: signature is the logo (in the nav); this is the
   readable headline. Weathered display face + red accent, campaign-poster feel. */
.hero-eyebrow-line {
  font-family: var(--statement);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.hero-headline {
  font-family: "Anton", var(--display);
  font-weight: 400;
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white);
  /* Faint offset shadows read as worn/weathered edges without a texture hack. */
  text-shadow: 0 3px 24px rgba(0,0,0,0.5), 1px 0 0 rgba(168,15,36,0.25), -1px 0 0 rgba(0,0,0,0.2);
  margin: 0 0 20px;
}
.hero-subline {
  font-family: var(--statement);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

/* Four bordered icon-CTAs in a 2x2 grid, campaign-poster style */
.hero-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 420px;
  margin-top: 32px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.55);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-cta:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-cta-icon { width: 18px; height: 18px; flex: none; color: var(--red); fill: currentColor; }

/* Mailing-list signup — sits beneath the CTAs, above the social row.
   Desktop gets the full heading + supporting line; mobile gets a condensed
   single-row version. Both share styling so they read as one system. */
.hero-mailing { max-width: 420px; margin-top: 28px; }
.hero-mailing-mobile { display: none; }
.hero-mailing-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 8px;
}
.hero-mailing-sub {
  font-family: var(--statement);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  max-width: 360px;
  margin: 0 0 14px;
}
.hero-mailing-form { display: flex; gap: 10px; }
.hero-mailing-hp { position: absolute; left: -9999px; }
.hero-mailing-input {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  padding: 12px 14px;
  transition: border-color 0.3s var(--ease);
}
.hero-mailing-input::placeholder { color: rgba(255,255,255,0.5); }
.hero-mailing-input:focus { outline: none; border-color: var(--red); }
.hero-mailing-submit {
  flex: none;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-mailing-submit:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-mailing-submit:disabled { opacity: 0.6; cursor: default; }
.hero-mailing-msg {
  min-height: 1em;
  margin: 8px 0 0;
  font-family: var(--statement);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.hero-mailing-msg.is-visible { opacity: 1; }
.hero-mailing-msg.is-error { color: var(--red); }

/* Social / streaming row, living inside the photo's own black fade at the base */
.hero-social {
  position: absolute;
  left: 0; right: 0;
  bottom: 4vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-social-icons { display: flex; align-items: center; gap: 30px; }
.hero-social-icons a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-social-icons a:hover,
.hero-social-icons a:focus-visible { color: var(--white); transform: translateY(-2px); }
.hero-social-icons svg { width: 27px; height: 27px; fill: currentColor; display: block; }
.hero-copyright {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Compact page hero used by Music / Tour — a strong but secondary moment */
.page-hero { height: 74svh; min-height: 480px; }
.page-hero .hero-content { padding-bottom: 7vh; }
.page-hero .hero-name { font-size: clamp(2.2rem, 6vw, 4.6rem); }

/* Simple title band for pages without a photographic hero */
.page-title-band { padding: 20vh 0 8vh; border-bottom: 1px solid var(--hairline); }
.page-title-band .eyebrow { display: block; margin-bottom: 18px; }
.page-title-band h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}
.page-title-band .section-sub { margin-top: 22px; }

.scroll-cue {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}
.scroll-cue .stem {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--chrome), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .stem::after {
  content: "";
  position: absolute;
  left: 0; top: -34px;
  width: 100%; height: 34px;
  background: var(--white);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0% { top: -34px; } 60%, 100% { top: 34px; } }

/* ===========================================================
   Cinematic statement — the "wow" transition after the hero
   =========================================================== */
.statement {
  padding: 20vh 0;
  text-align: center;
}
.statement-text {
  font-family: var(--statement);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

/* ===========================================================
   Credibility strip
   =========================================================== */
.credibility { padding: 5.5vh 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  text-align: center;
  padding: 18px 14px;
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ===========================================================
   Recognition strip — "featured by / worked with"
   =========================================================== */
.recognition { padding: 5vh 0; border-bottom: 1px solid var(--hairline); }
.recognition-label {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 26px;
  letter-spacing: 0.26em;
}
.recognition-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 0;
}
.recognition-row span {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 20px;
  white-space: nowrap;
}
.recognition-row span:not(:last-child) { border-right: 1px solid var(--hairline); }

/* ===========================================================
   About — editorial layout
   =========================================================== */
#about, #tour, #contact { scroll-margin-top: 84px; }

.about { padding: 16vh 0 14vh; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}
.about-media {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.about-kicker {
  font-family: var(--statement);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chrome);
  margin: 8px 0 34px;
}
.about-copy p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 62ch;
}
.about-copy strong { color: var(--white); font-weight: 700; }

/* ===========================================================
   Cinematic divider
   =========================================================== */
.divider {
  position: relative;
  height: 58vh;
  min-height: 380px;
  overflow: hidden;
}
.divider img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.divider-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.55) 100%);
}
.divider-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-text span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
}

/* ===========================================================
   Tour
   =========================================================== */
.tour { padding: 13vh 0; }
.tour-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }
.tour-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  /* start (not center) so rows with a venue/details block underneath the
     city — like a longer event listing — don't shove the date and ticket
     button down to their vertical middle. */
  align-items: start;
  padding: 30px 14px;
  border-bottom: 1px solid var(--hairline);
  border-left: 3px solid transparent;
  transition: background-color 0.4s var(--ease), border-left-color 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.tour-row:hover {
  background: rgba(255,255,255,0.03);
  border-left-color: var(--red);
  padding-left: 22px;
}

.tour-date { display: flex; flex-direction: column; }
.tour-date .d-main {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  transition: color 0.4s var(--ease);
}
.tour-row:hover .tour-date .d-main { color: var(--chrome); }
.tour-date .d-year {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.tour-place { display: flex; flex-direction: column; gap: 6px; }
.tour-place .city {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
}
.tour-place .venue {
  font-family: var(--statement);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.tour-details {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.tour-details li {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.tour-details li::before { content: "\2022"; margin-right: 6px; color: var(--red); }

.tour-status {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px dashed rgba(255,255,255,0.25);
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

/* ===========================================================
   Booking / Contact
   =========================================================== */
.contact { padding: 13vh 0 10vh; }
.contact-card {
  border-top: 1px solid var(--hairline);
  padding-top: 46px;
}
.contact-card .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.contact-card .line {
  display: block;
  font-size: 17px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 12px;
  transition: opacity 0.3s var(--ease);
}
.contact-card a.line:hover { opacity: 0.55; }

/* ===========================================================
   Home — compact preview sections (release / videos / tour / media)
   =========================================================== */
.preview-section { padding: 11vh 0; border-top: 1px solid var(--hairline); }
.preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.preview-head .section-main { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.preview-head .link-more {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.preview-head .link-more:hover { border-color: var(--white); opacity: 0.7; }

/* Home: latest release */
.release-preview {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5vw;
  align-items: center;
}
.release-preview .art { aspect-ratio: 1 / 1; overflow: hidden; }
.release-preview .art img { width: 100%; height: 100%; object-fit: cover; }
.release-preview .title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.release-preview .note { color: var(--text-secondary); margin-bottom: 30px; }

/* Home: video preview strip */
.video-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.video-preview-grid a { position: relative; aspect-ratio: 16 / 9; overflow: hidden; display: block; }
.video-preview-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.video-preview-grid a:hover img { transform: scale(1.06); }
.video-preview-grid .video-play { width: 46px; height: 46px; }
.video-preview-grid .video-play .play-glyph { border-top-width: 6px; border-bottom-width: 6px; border-left-width: 10px; }

/* Home: tour preview list (reuses .tour-row) */
.tour-preview-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }

/* Home: media / Lost Soulz feature */
.media-preview {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 5vw;
  align-items: center;
}
.media-preview .poster { overflow: hidden; }
.media-preview .poster img { width: 100%; height: auto; display: block; }
.media-preview .film-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.media-preview p { color: var(--text-secondary); max-width: 56ch; margin-bottom: 28px; }

/* ===========================================================
   Music page
   =========================================================== */
.music-page { padding: 12vh 0; }
.singles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.single-card { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.single-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25); transition: transform 0.7s var(--ease), filter 0.7s var(--ease); }
.single-card:hover img { transform: scale(1.07); filter: grayscale(0); }
.single-card .scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 75%); }
.single-card .info { position: absolute; left: 20px; right: 20px; bottom: 18px; }
.single-card .title { font-family: var(--display); font-weight: 700; font-size: 18px; text-transform: uppercase; margin: 0 0 4px; }
.single-card .note { font-size: 12px; color: var(--text-muted); }

.stream-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.stream-chip {
  padding: 12px 20px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.stream-chip:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ===========================================================
   Videos page
   =========================================================== */
.videos-page { padding: 12vh 0 14vh; }
/* One large featured video on its own row, six more in a balanced grid below —
   more deliberate than squeezing 6 cards beside the featured card at 7 total. */
.video-grid { display: block; }
.video-featured-wrap { margin-bottom: 3px; }
.video-featured-wrap .video-card { aspect-ratio: 21 / 9; }
.video-grid-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

/* Standard desktop / tablet: two columns keeps cards cinematic rather than cramped */
@media (max-width: 1200px) {
  .video-grid-secondary { grid-template-columns: repeat(2, 1fr); }
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  text-align: left;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.video-card:hover img { transform: scale(1.06); }
.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 70%);
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px; height: 64px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--white); }
.video-card:hover .video-play .play-glyph { color: var(--red); }
.play-glyph {
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  margin-left: 3px;
  transition: border-color 0.35s var(--ease);
}
.video-card-info { position: absolute; left: 20px; right: 20px; bottom: 16px; z-index: 2; }
.video-card-title { display: block; font-family: var(--display); font-weight: 700; font-size: 17px; text-transform: uppercase; }
.video-card-credit { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.video-card-featured .video-card-title { font-size: 22px; }

.video-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 4vh 4vw;
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.video-modal-inner { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; background: var(--black); }
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute;
  top: -46px; right: 0;
  background: none; border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 36px; height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.video-modal-close:hover { background: var(--red); border-color: var(--red); }

/* ===========================================================
   Media (EPK) page
   =========================================================== */
.media-page { padding: 12vh 0; }
.film-feature { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 6vw; align-items: start; margin-bottom: 16vh; }
.film-feature .poster { overflow: hidden; }
.film-feature .poster img { width: 100%; height: auto; display: block; }
.film-feature .film-eyebrow { color: var(--red); margin-bottom: 18px; }
.film-feature h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  text-transform: uppercase;
  margin: 0 0 26px;
}
.film-feature p { font-size: 16px; line-height: 1.85; color: var(--text-secondary); max-width: 58ch; margin-bottom: 34px; }
.streaming-list { display: flex; flex-wrap: wrap; gap: 12px; }
.streaming-list span {
  padding: 11px 20px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-secondary);
}

.credit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; }
.credit-block .eyebrow { display: block; margin-bottom: 24px; }
.credit-block ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }
.credit-block li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ===========================================================
   Store page
   =========================================================== */
.store-page { padding: 12vh 0 16vh; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw 2.5vw;
}
.product-card .image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal); margin-bottom: 18px; }
.product-card .image img { width: 100%; height: 100%; object-fit: cover; }
.product-card .title { font-family: var(--display); font-weight: 700; font-size: 15px; text-transform: uppercase; margin: 0 0 8px; }
.product-card .price { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; }

.store-empty {
  text-align: center;
  padding: 10vh 6vw;
  border: 1px solid var(--hairline);
}
.store-empty p { color: var(--text-secondary); max-width: 48ch; margin: 18px auto 30px; }

/* ===========================================================
   Contact page — single Management field
   =========================================================== */
.contact-fields {
  max-width: 440px;
}
.contact-fields .field .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.contact-fields .field a,
.contact-fields .field span {
  display: block;
  font-size: 17px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 10px;
}
.contact-fields .field a { transition: opacity 0.3s var(--ease); }
.contact-fields .field a:hover { opacity: 0.55; }

/* ===========================================================
   Social / Footer
   =========================================================== */
.site-footer { padding: 13vh 0 6vh; text-align: center; }
.social-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 50px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
  padding-bottom: 6vh;
  margin-bottom: 6vh;
  border-bottom: 1px solid var(--hairline);
}
.social-icons a {
  color: var(--chrome);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.social-icons a:hover { color: var(--red); transform: translateY(-4px); }
.social-icons svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  display: block;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
}
.footer-base .fmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome);
}
.footer-base .fmark .dot { color: var(--red); }
.footer-base .fine {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  /* fix: logo + 8 nav links could collide at tablet widths with no wrap */
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .nav-logo { font-size: 14px; }
  .nav-logo-sig img { height: 52px; }

  .statement { padding: 15vh 0; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { position: static; aspect-ratio: 16 / 11; }
  .credibility-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .stat:nth-child(4) { border-left: none; }
  .recognition-row span { padding: 0 14px; font-size: 12px; }
  .divider { height: 48vh; min-height: 300px; }

  /* Tablet has less vertical room than desktop but more than a phone —
     start the block slightly higher, tighten the CTAs, drop the mailing
     supporting line and shrink its form so the whole stack clears her
     hair/face at this aspect ratio instead of the taller content list
     pushing down into the photo. */
  .hero-home .hero-content { max-width: 420px; padding-top: 11vh; }
  .hero-ctas { gap: 10px; }
  .hero-cta { padding: 11px 18px; }
  .hero-mailing { margin-top: 14px; }
  .hero-mailing-sub { display: none; }
  .hero-mailing-form { gap: 8px; }
  .hero-mailing-input { padding: 9px 12px; font-size: 12px; }
  .hero-mailing-submit { padding: 9px 16px; font-size: 10px; }

  .page-hero { height: 62svh; min-height: 420px; }
  body[data-page="home"] .hero-media img { object-position: 60% 50%; }
  body[data-page="music"] .hero-media img { object-position: 70% 50%; }
  body[data-page="tour"] .hero-media img { object-position: 50% 18%; }

  .release-preview { grid-template-columns: 1fr; gap: 34px; }
  .release-preview .art { max-width: 360px; }
  .media-preview { grid-template-columns: 1fr; gap: 34px; }
  .media-preview .poster { max-width: 320px; }

  .film-feature { grid-template-columns: 0.7fr 1.3fr; gap: 6vw; }
  .credit-columns { grid-template-columns: 1fr; gap: 50px; }

  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-sig img { height: 42px; }

  .hero { min-height: 580px; }
  .hero-name { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-role { margin: 16px 0 32px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  .statement { padding: 11vh 0; }

  .credibility { padding: 4vh 0; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat:nth-child(3) { border-left: none; }
  .stat { padding: 14px 8px; }

  .recognition-row { gap: 10px 0; }
  .recognition-row span { padding: 0 10px; border-right: none !important; width: 50%; }

  .about { padding: 10vh 0 9vh; }
  .about-media { aspect-ratio: 4 / 5; }

  .divider { height: 40vh; min-height: 260px; }
  .divider-text span { letter-spacing: 0.18em; }

  .tour { padding: 10vh 0; }
  .tour-row { grid-template-columns: 1fr; gap: 14px; padding: 24px 12px; }
  .tour-row:hover { padding-left: 12px; }
  .tour-status { width: 100%; justify-content: center; }

  .contact { padding: 10vh 0 8vh; }

  .site-footer { padding: 10vh 0 6vh; }
  .social-icons { gap: 32px; }

  .footer-base { flex-direction: column; align-items: flex-start; gap: 10px; text-align: left; }

  /* Home hero: the mobile photograph (loaded via <picture>) was framed for
     this aspect already, so a simple center crop is enough. */
  /* Content fills the full hero box so the CTA row can be pinned low
     (under her arm, above the social row) independent of the headline
     stack pinned high — instead of both living in one top-anchored block. */
  .hero-home .hero-content {
    max-width: none;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    /* Bottom padding reserves the room the CTA/mailing group sits in —
       kept in vh so it scales with viewport height across devices, and
       trimmed down (from an earlier, taller version) specifically to give
       that group more low-down room instead of pushing it up over her arm. */
    padding: 12vh 7vw 8vh;
  }
  .hero-headline { font-size: clamp(2.4rem, 14vw, 3.6rem); margin-bottom: 14px; }
  .hero-eyebrow-line, .hero-subline { font-size: 0.78rem; letter-spacing: 0.13em; }
  .hero-ctas {
    margin-top: auto;
    gap: 6px;
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
  /* Compact mobile-only treatment: shorter than the desktop button, with a
     34px floor so the tap target stays comfortable. */
  .hero-cta { padding: 6px 12px; font-size: 10px; gap: 5px; min-height: 34px; justify-content: center; }
  .hero-cta-icon { width: 13px; height: 13px; }

  /* Mailing list: hide the full desktop treatment, show the condensed
     mobile row (heading + single input/button line) instead. */
  .hero-mailing-desktop { display: none; }
  .hero-mailing-mobile { display: block; margin-top: 4px; }
  .hero-mailing-heading-sm { font-size: 10px; letter-spacing: 0.09em; opacity: 0.85; margin-bottom: 3px; }
  .hero-mailing-mobile .hero-mailing-form { gap: 5px; }
  .hero-mailing-mobile .hero-mailing-input { padding: 6px 10px; font-size: 11px; }
  .hero-mailing-mobile .hero-mailing-submit { padding: 6px 14px; font-size: 9px; }
  /* No reserved min-height on mobile: keeps the block as compact as
     possible when there's no message; a validation error will nudge the
     social row down by one short line, which is an acceptable trade-off
     for clearing the photo on the smallest common phone screens. */
  .hero-mailing-mobile .hero-mailing-msg { font-size: 10px; margin-top: 2px; min-height: 0; }

  /* Social row + copyright: smaller icons, tighter horizontal spacing,
     and pulled in closer to the bottom edge so the whole lower interface
     compresses into the photo's dark fade instead of the photo. */
  .hero-social { bottom: 2vh; gap: 4px; }
  .hero-social-icons { gap: 14px; }
  .hero-social-icons svg { width: 22px; height: 22px; }

  .page-hero { height: 46vh; min-height: 320px; }
  .page-title-band { padding: 15vh 0 6vh; }
  body[data-page="home"] .hero-media img { object-position: 50% 40%; }
  body[data-page="music"] .hero-media img { object-position: 74% 48%; }
  body[data-page="tour"] .hero-media img { object-position: 50% 15%; }

  .video-featured-wrap .video-card { aspect-ratio: 16 / 9; }
  .video-grid-secondary { grid-template-columns: 1fr; }
  .singles-grid { grid-template-columns: 1fr; }
  .video-preview-grid { grid-template-columns: 1fr; }

  .film-feature { grid-template-columns: 1fr; gap: 40px; }
  .film-feature .poster { max-width: 280px; }

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

/* Short desktop/laptop viewports (e.g. 1024x768, 1280x720) have plenty of
   width but not much vertical room — same fix as the tablet tier above:
   drop the mailing-list supporting line and tighten the form so the
   heavier content stack still clears her hair/face. Width-based tiers
   alone don't catch this, since it's a height constraint. */
@media (min-width: 721px) and (max-height: 800px) {
  .hero-home .hero-content { padding-top: 11vh; }
  .hero-ctas { gap: 10px; }
  .hero-cta { padding: 11px 18px; }
  .hero-mailing { margin-top: 14px; }
  .hero-mailing-sub { display: none; }
  .hero-mailing-form { gap: 8px; }
  .hero-mailing-input { padding: 9px 12px; font-size: 12px; }
  .hero-mailing-submit { padding: 9px 16px; font-size: 10px; }
}
