/* ============================================================
   Living Legacy Records — styles (Dark Coffee / Almond Cream)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette: Snow · Almond Cream · Taupe · Dark Coffee · Black */
  --snow: #fffbff;
  --almond-cream: #f1dabf;
  --taupe: #92817a;
  --dark-coffee: #362417;
  --black: #000500;

  --bg: var(--dark-coffee);
  --bg-raise: #3d2c20;
  --bg-band: #443024;
  --bg-deep: var(--black);
  --ink: var(--snow);
  --ink-dim: var(--taupe);
  --ink-faint: rgba(146, 129, 122, 0.72);
  --accent: var(--almond-cream);
  --accent-deep: #d4b99a;
  --on-accent: var(--dark-coffee);
  --line: rgba(255, 251, 255, 0.12);
  --line-strong: rgba(255, 251, 255, 0.22);

  /* Type */
  --font-display: "Anton", "Arial Narrow", sans-serif;  /* poster moments */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(3.8rem, 16vw, 15rem);
  --fs-h1: clamp(2.8rem, 7vw, 6rem);
  --fs-h2: clamp(2rem, 4.6vw, 4rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.75rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.35rem);
  --fs-body: clamp(1rem, 1.2vw, 1.12rem);
  --fs-small: 0.82rem;

  /* Spacing */
  --space-section: clamp(5rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1280px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 0.9; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.svg-defs { position: absolute; width: 0; height: 0; }

/* ---------- Grain overlay (subtle on dark) ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  filter: url(#grainFilter);
  mix-blend-mode: soft-light;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.85em;
  transform: translateY(-3px);
}

/* Helper for big grotesque section headings (Inter heavy, not condensed) */
.heading-grotesque {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(54, 36, 23, 0.88);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled .nav__inner { padding-top: 1rem; padding-bottom: 1rem; }

.nav__wordmark { font-family: var(--font-display); letter-spacing: 0.01em; color: var(--ink); }
.nav__mark { display: none; font-size: 1.5rem; }
.nav__full { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.04em; }

.nav__links { display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); }
.nav__links a {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ============================================================
   HERO — white-on-dark poster
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vh, 9rem) var(--gutter) clamp(4rem, 9vh, 6rem);
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
}

/* ---------- INTRO band (about copy below hero) ---------- */
.intro {
  background: var(--bg);
  padding: clamp(3.5rem, 9vw, 7rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.intro__text {
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}
.intro__label {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.9em;
  transform: translateY(-0.15em);
}
.hero__layer {
  position: absolute;
  inset: -15%;
  will-change: transform;
  z-index: 0;
}
.hero__layer--leak {
  background:
    radial-gradient(50% 45% at 80% 20%, rgba(241, 218, 191, 0.14), transparent 60%),
    radial-gradient(55% 55% at 15% 90%, rgba(241, 218, 191, 0.08), transparent 65%);
  filter: blur(30px);
}

.hero__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero__meta {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hero__meta--est { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.02em; }
.hero__meta--est sup { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.18em; }
.hero__meta--note { text-align: right; max-width: 22ch; }

.hero__title {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.82;
  will-change: transform;
  transform-origin: left center;
  padding: clamp(1rem, 4vh, 3rem) 0;
}
.hero__line { display: block; will-change: transform; }

.hero__about {
  position: relative;
  z-index: 2;
  max-width: 52ch;
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.hero__about-label {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 0.8em;
  opacity: 0.7;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.hero__scroll-label { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero__scroll-line {
  width: 2px;
  height: 56px;
  background: rgba(255, 251, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -60%; left: 0;
  width: 100%; height: 60%;
  background: var(--accent);
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

/* ============================================================
   MANIFESTO — dark poster
   ============================================================ */
.manifesto {
  background: var(--accent);
  color: var(--on-accent);
  padding: clamp(7rem, 18vw, 16rem) var(--gutter);
  border-bottom: 1px solid rgba(54, 36, 23, 0.14);
}
.manifesto__inner { max-width: var(--maxw); margin: 0 auto; }
.manifesto__statement {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  max-width: 15ch;
}
.manifesto__statement .word {
  display: inline-block;
  opacity: 0.14;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  transform: translateY(0.1em);
}
.manifesto__statement .word.is-lit { opacity: 1; transform: translateY(0); }
.manifesto__statement .word:nth-child(3n+2).is-lit { color: var(--black); }
.manifesto__support {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  max-width: 44ch;
  color: rgba(54, 36, 23, 0.74);
  font-size: var(--fs-lead);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--space-section) var(--gutter); }
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
}
.about__heading {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: var(--fs-h2);
  line-height: 0.98;
  margin: 1.2rem 0 1.6rem;
  max-width: 20ch;
}
.about__text p { color: var(--ink-dim); max-width: 52ch; }
.about__text { border-left: 3px solid var(--accent); padding-left: clamp(1.2rem, 3vw, 2.4rem); }

.about__visual { position: relative; }
.visual-block {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.visual-block--a {
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(241, 218, 191, 0.55), transparent 55%),
    conic-gradient(from 210deg at 28% 75%, #3d2c20, #362417 38%, #000500 72%, #362417);
}
.visual-block__edge {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 42%, rgba(241, 218, 191, 0.25) 50%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { padding: var(--space-section) var(--gutter); background: var(--accent); color: var(--on-accent); border-top: 1px solid rgba(54, 36, 23, 0.14); }
.pillars .eyebrow { color: var(--on-accent); }
.pillars .eyebrow::before { background: var(--on-accent); }
.pillars__head { max-width: var(--maxw); margin: 0 auto 3rem; }
.pillars__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.pillar { border-top: 3px solid var(--on-accent); padding-top: 1.6rem; }
.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.pillar__title {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: var(--fs-h3);
  color: var(--on-accent);
  margin-bottom: 0.7rem;
}
.pillar p { color: rgba(54, 36, 23, 0.72); max-width: 32ch; }

/* ============================================================
   STICKY WALKTHROUGH
   ============================================================ */
.walkthrough { position: relative; height: 220vh; background: var(--bg); }
.walkthrough__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.walkthrough__stage { max-width: min(92vw, 52rem); text-align: center; position: relative; }
.walkthrough__eyebrow { margin-bottom: 2rem; }
.walkthrough__states { position: relative; min-height: clamp(12rem, 32vw, 20rem); }
.walkthrough__state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  line-height: 0.98;
}
.walkthrough__state > span { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.2rem, 2.6vw, 2rem); color: var(--ink-dim); }
.walkthrough__state strong { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(2.4rem, 6vw, 5rem); color: var(--ink); line-height: 0.92; }
.walkthrough__state.is-active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .walkthrough__strong-line + .walkthrough__strong-line::before {
    content: " ";
  }
}

@media (min-width: 901px) {
  .walkthrough__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .walkthrough__states {
    width: 100%;
    min-height: clamp(10rem, 18vw, 14rem);
  }
  .walkthrough__state {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .walkthrough__state > span,
  .walkthrough__state > strong {
    width: 100%;
    text-align: center;
  }
  .walkthrough__state strong {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(2.6rem, 4.2vw, 4rem);
    margin-inline: auto;
  }
  .walkthrough__strong-line {
    display: block;
  }
}

/* ============================================================
   INTERLUDE — BADGE + STATS
   ============================================================ */
.interlude {
  background: var(--accent);
  color: var(--on-accent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-section) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}
.interlude__badge { position: relative; width: clamp(150px, 22vw, 220px); aspect-ratio: 1; }
.badge { width: 100%; height: 100%; will-change: transform; }
.badge__text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: var(--on-accent);
}
.badge__core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: max-content;
  height: max-content;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--on-accent);
  letter-spacing: 0.02em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--on-accent);
}
.stat__value--inf { color: var(--on-accent); }
.stat__label {
  display: block;
  margin-top: 0.7rem;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(54, 36, 23, 0.72);
}

/* ============================================================
   ROSTER
   ============================================================ */
.roster { padding: var(--space-section) var(--gutter); }
.roster__head { max-width: var(--maxw); margin: 0 auto 3.5rem; }
.roster__title {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: var(--fs-h1);
  line-height: 0.95;
}
.roster__lead { color: var(--ink-dim); margin-top: 0.8rem; font-size: var(--fs-lead); }
.roster__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.artist {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.artist__art { aspect-ratio: 4 / 3; position: relative; }
.artist--a .artist__art { background: conic-gradient(from 140deg at 70% 30%, #3d2c20, #362417 45%, #000500 80%, #362417); }
.artist--b .artist__art { background: radial-gradient(90% 90% at 20% 20%, rgba(241, 218, 191, 0.65), transparent 60%), linear-gradient(160deg, #3d2c20, #000500); }
.artist--c .artist__art { background: radial-gradient(80% 80% at 80% 80%, rgba(241, 218, 191, 0.55), transparent 60%), linear-gradient(200deg, #443024, #000500); }
.artist__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 45%, rgba(241, 218, 191, 0.12) 50%, transparent 55%);
  transform: translateX(-30%);
  transition: transform 0.6s var(--ease);
}
.artist__body { padding: 1.4rem 1.5rem 1.6rem; }
.artist__genre { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.artist__name {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 0.5rem 0 1rem;
}
.artist__listen {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: inline-flex;
  gap: 0.5em;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.artist:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px -28px rgba(241, 218, 191, 0.35);
}
.artist:hover .artist__art::after { transform: translateX(120%); }
.artist:hover .artist__listen { color: var(--accent); gap: 0.9em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact__inner { max-width: 760px; margin: 0 auto; }
.contact__title {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: var(--fs-h1);
  line-height: 0.95;
}
.contact__sub { color: var(--ink-dim); margin: 1.2rem auto 0; max-width: 46ch; font-size: var(--fs-lead); }
.contact__actions { margin: 2.6rem 0 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1em 2.4em;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 2px solid var(--ink);
}
.btn--primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--on-accent); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-3px); }
.contact__signoff { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__name { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.02em; }
.contact__role { font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); color: var(--ink); padding: clamp(2.5rem, 6vw, 4rem) var(--gutter); border-top: 1px solid var(--line); }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__wordmark { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); }
.footer__social { display: flex; gap: 1.2rem; color: var(--ink-dim); }
.footer__social a { transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.footer__social a:hover { color: var(--accent); transform: translateY(-2px); }
.footer__copy { font-size: var(--fs-small); color: var(--ink-faint); }

/* ============================================================
   Scroll-entry states
   ============================================================ */
[data-drift], [data-fade] { opacity: 0; will-change: transform, opacity; }
[data-drift] { transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-fade] { transition: opacity 0.8s var(--ease); }
[data-drift].is-in, [data-fade].is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__full { display: none; }
  .nav__mark { display: block; }
  .hero__meta--note { font-size: 0.7rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 380px; }
  .pillars__row { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .roster__grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  html,
  body {
    background-color: var(--bg);
  }

  body.is-past-hero {
    background-color: var(--bg);
  }

  .nav {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .hero {
    margin-top: calc(-1 * env(safe-area-inset-top, 0px));
    margin-bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
    min-height: calc(100lvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
    min-height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(5rem, 10vh, 7rem));
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(2.5rem, 6vh, 3.5rem));
  }

  .hero::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: -1;
    pointer-events: none;
  }

  body.is-past-hero .hero::before {
    opacity: 0;
  }
}
@media (max-width: 560px) {
  .nav__links { gap: 1.1rem; }
  .hero__top { flex-direction: column; gap: 0.5rem; }
  .hero__meta--note { text-align: left; }
  .contact__actions { flex-direction: column; }
  .btn { width: 100%; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-drift], [data-fade] { opacity: 1; transform: none; }
  .manifesto__statement .word { opacity: 1; transform: none; }
  .hero__scroll-line::after { display: none; }
}

/* ============================================================
   ADDITIONS — 4 values · about link · featured artist ·
   contact details · founder/artist subpages
   ============================================================ */

/* ---- About "Meet the founder" link ---- */
.about__text p + p { margin-top: 1rem; }
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.8rem;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.about__link:hover { gap: 0.95em; color: var(--accent-deep); }

/* ---- Core values: 4 columns ---- */
.pillars__row--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .pillars__row--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars__row--four { grid-template-columns: 1fr; } }

/* ---- Featured artist card (single, photo + bio) ---- */
.roster__grid:has(.featured-artist) { grid-template-columns: 1fr; max-width: var(--maxw); }
.featured-artist {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raise);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.featured-artist__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-band); }
.featured-artist__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured-artist__body { padding: clamp(1.75rem, 3vw, 3rem) clamp(1.75rem, 3vw, 3rem) clamp(1.75rem, 3vw, 3rem) 0; }
.featured-artist__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin: 0.45rem 0 1.1rem;
}
.featured-artist__blurb { color: var(--ink-dim); max-width: 46ch; margin-bottom: 1.5rem; }
.featured-artist:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 30px 60px -32px rgba(0, 5, 0, 0.7); }
.featured-artist:hover .featured-artist__photo img { transform: scale(1.05); }
.featured-artist:hover .artist__listen { color: var(--accent); gap: 0.9em; }
@media (max-width: 760px) {
  .featured-artist { grid-template-columns: 1fr; }
  .featured-artist__photo { aspect-ratio: 3 / 2; }
  .featured-artist__body { padding: 0 clamp(1.25rem, 5vw, 2rem) clamp(1.75rem, 6vw, 2.5rem); }
}

/* ---- Contact details line ---- */
.contact__details {
  margin: 0 0 1.6rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.contact__details a { color: var(--ink-dim); transition: color 0.25s var(--ease); }
.contact__details a:hover { color: var(--accent); }
a.contact__name { transition: color 0.25s var(--ease); }
a.contact__name:hover { color: var(--accent); }

/* ============================================================
   SUBPAGES — founder.html · artist-joshua.html (editorial profile)
   ============================================================ */
.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.profile-back:hover { color: var(--accent); gap: 0.9em; }
.profile-back span { transition: transform 0.25s var(--ease); }
.profile-back:hover span { transform: translateX(-3px); }

/* ---- Compact hero: name beside photo, all above the fold ---- */
.profile-hero {
  position: relative;
  background: radial-gradient(130% 120% at 82% 0%, var(--bg-raise) 0%, var(--black) 68%);
  overflow: hidden;
}
.profile-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + clamp(5.5rem, 11vh, 7.5rem)) var(--gutter) clamp(2.5rem, 5vw, 4rem);
}
.profile-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4.5vw, 4rem);
  align-items: center;
  margin-top: clamp(1.25rem, 3.5vw, 2.25rem);
}
.profile-hero__intro { min-width: 0; }
.profile-hero__eyebrow { display: block; margin-bottom: 1.1rem; }
.profile-hero__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8.2vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.profile-hero__name span { display: block; }
.profile-hero__name span:last-child { color: var(--accent); }
.profile-hero__meta {
  margin-top: clamp(1rem, 2.5vw, 1.6rem);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---- Photo + fact strip (inside hero) ---- */
.profile-hero__media { min-width: 0; }
.profile-cover__frame {
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raise);
  aspect-ratio: 4 / 5;
  max-height: min(64vh, 560px);
}
.profile-cover__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.profile-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}
.profile-fact { background: var(--bg-raise); padding: 0.95rem 1.15rem; }
.profile-fact__k {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}
.profile-fact__v { margin: 0; color: var(--ink); font-weight: 600; font-size: 0.95rem; }

/* ---- Article body ---- */
.profile-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) 0;
}
.profile-lead {
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.profile-lead strong { color: var(--accent); font-weight: 600; }
.profile-section { margin-top: clamp(2.5rem, 6vw, 4rem); }
.profile-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-bottom: 1.2rem;
}
.profile-section__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.profile-section__title {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: var(--fs-h3);
  color: var(--ink);
}
.profile-section p { color: var(--ink-dim); margin-bottom: 1rem; }
.profile-section p:last-child { margin-bottom: 0; }

.profile-inset {
  margin: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raise);
}
.profile-inset img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 28%; }
.profile-inset figcaption {
  padding: 0.85rem 1.2rem;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

.profile-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.profile-meta {
  list-style: none;
  padding: 1.6rem 0 0;
  margin: 1.7rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.7rem;
}
.profile-meta li { display: flex; gap: 1rem; align-items: baseline; color: var(--ink-dim); flex-wrap: wrap; }
.profile-meta b {
  min-width: 4.5em;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
}
.profile-meta a { color: var(--ink); transition: color 0.25s var(--ease); }
.profile-meta a:hover { color: var(--accent); }

/* ---- Pull quote ---- */
.pull-quote {
  max-width: 1000px;
  margin: clamp(3.5rem, 9vw, 7rem) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
}
.pull-quote em { font-style: normal; color: var(--accent); }

/* ---- Closing CTA band ---- */
.profile-cta {
  margin-top: clamp(4rem, 10vw, 8rem);
  background: var(--bg-band);
  border-top: 1px solid var(--line);
}
.profile-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.profile-cta__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.92;
}

@media (max-width: 820px) {
  .profile-hero__grid { grid-template-columns: 1fr; gap: clamp(1.5rem, 6vw, 2.25rem); }
  .profile-hero__media { max-width: 420px; }
}
@media (max-width: 640px) {
  .profile-cover__frame { aspect-ratio: 4 / 5; max-height: none; }
  .profile-section__head { flex-direction: column; gap: 0.35rem; }
}
