:root {
  --bg: #0d0d0d;
  --panel: #131313;
  --text: #f2f0eb;
  --muted: #aaa7a0;
  --soft: #d0cdc6;
  --quiet: #77746f;
  --line: rgba(242, 240, 235, 0.15);
  --rule: rgba(242, 240, 235, 0.095);
  --line-strong: rgba(242, 240, 235, 0.34);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: ui-serif, "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.site-shell {
  min-height: 100svh;
  max-width: 1760px;
  margin: 0 auto;
  padding: clamp(24px, 3.2vw, 58px) clamp(24px, 4.4vw, 82px) clamp(22px, 2.8vw, 48px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 2.6vh, 32px);
  overflow: hidden;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header { justify-content: flex-start; }
.site-footer { justify-content: space-between; }

.wordmark {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .23em;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(390px, .84fr) minmax(590px, 1.16fr);
  align-items: center;
  gap: clamp(52px, 6.4vw, 118px);
}

.artist-copy {
  align-self: center;
  padding: 1vh 0 2vh;
  max-width: 610px;
}

.roles {
  margin: 0 0 clamp(25px, 3.2vh, 36px);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}

.roles span {
  color: #64615d;
  margin: 0 .42em;
}

.artist-name {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(58px, 5.45vw, 102px);
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
  font-kerning: none;
  font-feature-settings: "kern" 0;
}

.name-line {
  display: inline-flex;
  align-items: baseline;
  gap: .034em;
  white-space: nowrap;
}

.name-line > span { display: inline-block; }

/* Deliberate per-line treatment: the second line is not allowed to inherit
   the font's default line spacing, which is what made the earlier lock-up feel cramped. */
.name-line--second {
  display: flex;
  width: max-content;
  margin-top: .29em;
  gap: .043em;
}

.intro {
  max-width: 510px;
  margin: clamp(32px, 4.1vh, 46px) 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.03vw, 18px);
  line-height: 1.72;
  letter-spacing: .005em;
}

.listen {
  margin-top: clamp(31px, 4.2vh, 47px);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
}

.listen-label {
  padding-top: 5px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 12px;
}

.listen-links a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 4px 0 7px;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .095em;
  text-transform: uppercase;
  color: #dfdcd6;
}

.listen-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  transition: background-color .2s ease, transform .2s ease;
}

.external-icon {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  overflow: visible;
  color: var(--quiet);
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
  transform: translateY(-1px);
  transition: color .2s ease, transform .2s ease;
}

.listen-links a:hover,
.listen-links a:focus-visible {
  outline: none;
  color: #fff;
}

.listen-links a:hover::after,
.listen-links a:focus-visible::after {
  background: var(--line-strong);
  transform: scaleX(.72);
}

.listen-links a:hover .external-icon,
.listen-links a:focus-visible .external-icon {
  color: #d8d5cf;
  transform: translate(2px, -2px);
}

.photo-composition {
  position: relative;
  height: min(69vh, 690px);
  min-height: 520px;
  width: 100%;
  max-width: 900px;
  justify-self: end;
  transform: translateY(-18px);
}

.photo {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  position: absolute;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

/* The photographs intentionally form a diagonal visual path without overlap.
   The portrait leads; the performance image has enough scale to read as a real second panel. */
.photo--portrait {
  top: 0;
  right: 0;
  width: 59%;
  height: 55%;
}

.photo--portrait img { object-position: 50% 43%; }

.photo--performance {
  left: 0;
  bottom: 1.5%;
  width: 43%;
  height: auto;
  aspect-ratio: 1122 / 1061;
}

.photo--performance img {
  object-fit: cover;
  object-position: center center;
}

.site-footer {
  color: var(--quiet);
  letter-spacing: .12em;
}

.site-footer p { margin: 0; }

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a {
  text-decoration: none;
  transition: color .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 1400px) and (min-width: 861px) {
  .listen {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .listen-label { padding-top: 0; }
  .listen-links {
    flex-wrap: nowrap;
    column-gap: 20px;
  }
}

@media (max-width: 1120px) {
  .site-shell { overflow: visible; }
  .hero {
    grid-template-columns: minmax(340px, .88fr) minmax(470px, 1.12fr);
    gap: 42px;
  }
  .photo-composition {
    height: min(64vh, 620px);
    min-height: 470px;
    transform: translateY(-10px);
  }
  .listen { grid-template-columns: 60px 1fr; }
}

@media (max-width: 860px) {
  .site-shell {
    min-height: 100svh;
    padding: 24px 22px 26px;
    gap: 34px;
    overflow: visible;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }
  .artist-copy {
    max-width: 680px;
    padding-top: 8vh;
  }
  .artist-name { font-size: clamp(54px, 14.2vw, 88px); }
  .intro { max-width: 600px; }
  .photo-composition {
    height: clamp(510px, 80vw, 660px);
    min-height: 0;
    transform: none;
    max-width: 700px;
    width: 100%;
    align-self: flex-end;
  }
  .photo--portrait {
    width: 70%;
    height: 54%;
  }
  .photo--performance {
    width: 56%;
    height: auto;
    aspect-ratio: 1122 / 1061;
  }
  .site-footer { padding-top: 10px; }
}

@media (max-width: 560px) {
  .wordmark { font-size: 10px; }
  .artist-copy { padding-top: 4vh; }
  .roles {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: .15em;
  }
  .artist-name {
    font-size: clamp(48px, 15.5vw, 72px);
    line-height: .80;
  }
  .name-line { gap: .025em; }
  .name-line--second { margin-top: .28em; gap: .034em; }
  .intro {
    margin-top: 29px;
    font-size: 15px;
    line-height: 1.65;
  }
  .listen {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .listen-label { padding-top: 0; }
  .listen-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
  }
  .listen-links a {
    min-height: 0;
    padding-bottom: 7px;
  }
  .photo-composition { height: clamp(430px, 122vw, 535px); }
  .photo--portrait {
    width: 77%;
    height: 53%;
  }
  .photo--performance {
    width: 60%;
    height: auto;
    aspect-ratio: 1122 / 1061;
  }
  .site-footer {
    align-items: flex-end;
    line-height: 1.4;
    font-size: 9px;
  }
  .social-links {
    gap: 15px;
    flex-direction: column;
  }
}

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