:root {
  --ink: #080708;
  --ink-soft: #121014;
  --paper: #f2ede3;
  --paper-soft: #d9d1c4;
  --gold: #d9b65f;
  --gold-light: #f0da95;
  --gold-deep: #8c682d;
  --muted: #9b948b;
  --line: rgba(217, 182, 95, 0.24);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 7, 8, .88);
  border-color: rgba(217, 182, 95, .16);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: .9rem; position: relative; z-index: 102; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.brand-mark i {
  display: block;
  transform: rotate(-45deg);
  font-family: var(--display);
  font-size: .7rem;
  font-style: normal;
  letter-spacing: -.08em;
  text-indent: -1px;
}
.brand-name { font-size: .72rem; font-weight: 650; letter-spacing: .24em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.5rem); }
.main-nav a {
  position: relative;
  color: rgba(242, 237, 227, .7);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.55rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--paper); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 69% 43%, rgba(166, 119, 49, .16), transparent 30%),
    linear-gradient(125deg, #080708 0%, #0e0b0f 57%, #080708 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(255,255,255,.06) 10%);
  pointer-events: none;
}
.hero-aura {
  position: absolute;
  width: min(65vw, 980px);
  aspect-ratio: 1;
  right: -16vw;
  top: -20vw;
  border: 1px solid rgba(217,182,95,.13);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(217,182,95,.06), inset 0 0 140px rgba(217,182,95,.035);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1660px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px clamp(1.25rem, 4vw, 4.5rem) 54px;
  display: grid;
  grid-template-columns: minmax(480px, .98fr) minmax(430px, .8fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4rem);
}
.hero-copy { position: relative; z-index: 3; max-width: 820px; padding-top: 1rem; }
.eyebrow {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin: 0 0 2rem;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow span + span { color: var(--muted); }
.eyebrow span + span::before { content: ""; display: inline-block; width: 36px; height: 1px; margin: 0 1.3rem 3px 0; background: var(--gold-deep); }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.4rem, 9.2vw, 10rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .72;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin-left: clamp(1rem, 4vw, 4.5rem); color: var(--gold); font-weight: 400; }
.hero-tagline {
  margin: clamp(2.2rem, 5vh, 4rem) 0 .8rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.4rem);
  font-style: italic;
  letter-spacing: .01em;
}
.hero-intro { max-width: 580px; margin: 0; color: rgba(242,237,227,.62); font-size: clamp(.96rem, 1.15vw, 1.1rem); line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 205px;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover { background: var(--gold-light); }
.button--outline { border-color: rgba(240,218,149,.55); color: var(--gold-light); }
.button--outline:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.text-link { position: relative; color: var(--paper-soft); font-size: .7rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.text-link::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 1px; background: var(--gold-deep); }

.hero-visual { position: relative; align-self: stretch; min-height: 660px; display: grid; align-items: center; padding-top: 1.5rem; }
.hero-frame { position: relative; height: min(86svh, 960px); min-height: 620px; display: flex; justify-content: center; overflow: hidden; }
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,7,8,.05) 0%, transparent 18%, transparent 78%, #080708 100%);
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: saturate(.88) contrast(1.05); }
.leader-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 34%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  min-width: 142px;
  padding: .7rem .9rem;
  border: 1px solid rgba(217,182,95,.55);
  background: rgba(8,7,8,.76);
  backdrop-filter: blur(8px);
  text-align: center;
}
.leader-label::before { content: ""; position: absolute; left: 50%; top: -40px; width: 1px; height: 40px; background: linear-gradient(transparent, var(--gold)); }
.leader-label span { color: var(--muted); font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; }
.leader-label strong { color: var(--gold-light); font-family: var(--display); font-size: 1.05rem; font-weight: 400; letter-spacing: .03em; }
.hero-caption { position: absolute; z-index: 4; left: 0; right: 0; bottom: .5rem; display: flex; align-items: center; justify-content: center; gap: .85rem; color: var(--muted); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-caption i { width: 18px; height: 1px; background: var(--gold-deep); }
.hero-caption strong { color: var(--gold-light); font-weight: 700; }
.scroll-cue { position: absolute; z-index: 4; left: clamp(1.25rem, 4vw, 4.5rem); bottom: 2rem; display: flex; align-items: center; gap: .8rem; color: var(--muted); font-size: .58rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue i { width: 48px; height: 1px; background: var(--gold-deep); }

.signal-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--gold); color: var(--ink); }
.signal-strip div { width: max-content; display: flex; align-items: center; gap: 2rem; padding: .85rem 0; animation: ticker 24s linear infinite; }
.signal-strip span { font-size: .61rem; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
.signal-strip i { width: 8px; aspect-ratio: 1; border: 1px solid var(--ink); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); }
.section-index { width: min(100%, 1460px); margin: 0 auto clamp(4rem, 7vw, 7rem); padding-bottom: .9rem; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(8,7,8,.18); color: rgba(8,7,8,.56); font-size: .61rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.section-index--light { border-color: var(--line); color: var(--muted); }
.kicker { margin: 0 0 1.2rem; color: var(--gold-deep); font-size: .66rem; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }

.story { background: var(--paper); color: var(--ink); }
.story-grid { width: min(100%, 1460px); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.story-heading h2, .section-heading h2, .lead-copy h2, .music-copy h2, .contact-title h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}
.story-heading h2 { font-size: clamp(3.8rem, 7vw, 8rem); }
.story-copy { padding-top: 3rem; }
.story-copy p { color: rgba(8,7,8,.62); font-size: .98rem; line-height: 1.95; }
.story-copy strong { color: var(--ink); }
.story-copy .story-lead { margin-top: 0; color: var(--ink); font-family: var(--display); font-size: clamp(1.45rem, 2.2vw, 2.15rem); line-height: 1.42; }
.story-signature { margin-top: 3rem; padding-top: 1rem; display: flex; justify-content: space-between; border-top: 1px solid rgba(8,7,8,.18); color: rgba(8,7,8,.5); font-size: .57rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.members { background: #0d0b0e; }
.members::before { content: "GILDED"; position: absolute; top: 15%; left: -2vw; color: rgba(217,182,95,.025); font-family: var(--display); font-size: 24vw; line-height: 1; pointer-events: none; }
.members .section-index { border-color: var(--line); color: var(--muted); }
.section-heading { width: min(100%, 1460px); margin: 0 auto clamp(4rem, 7vw, 7rem); display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.section-heading h2 { font-size: clamp(4rem, 6.5vw, 7.2rem); }
.section-heading h2 em { color: var(--gold); font-weight: 400; }
.section-heading > p { max-width: 250px; margin: 0 0 .6rem; color: var(--muted); font-family: var(--display); font-size: 1.2rem; font-style: italic; text-align: right; }
.member-grid { width: min(100%, 1460px); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.16fr 1fr; grid-template-areas: "clara lena mara"; gap: clamp(1rem, 2.2vw, 2.5rem); align-items: end; }
.member-card { position: relative; }
.member-card--lead { grid-area: lena; transform: translateY(-2.8rem); }
.member-card--clara { grid-area: clara; }
.member-card--mara { grid-area: mara; }
.member-image { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid rgba(217,182,95,.2); background: #080708; }
.member-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -140px 100px -80px rgba(8,7,8,.65); pointer-events: none; }
.member-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.member-card:hover .member-image img { transform: scale(1.025); filter: saturate(.96) contrast(1.02); }
.member-card--lead .member-image { border-color: rgba(240,218,149,.48); box-shadow: 0 26px 80px rgba(0,0,0,.35); }
.member-number { position: absolute; z-index: 2; left: 1rem; bottom: .8rem; color: rgba(242,237,227,.55); font-size: .58rem; letter-spacing: .18em; }
.lead-badge { position: absolute; z-index: 2; right: 1rem; top: 1rem; padding: .5rem .7rem; border: 1px solid var(--gold); color: var(--gold-light); font-size: .55rem; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.member-info { padding: 1.5rem .2rem 0; }
.member-info p { margin: 0 0 .4rem; color: var(--gold); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.member-info h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; letter-spacing: -.035em; }
.member-info > span { display: block; max-width: 360px; margin-top: .8rem; color: var(--muted); font-size: .82rem; line-height: 1.75; }
.member-card--lead .member-info h3 { color: var(--gold-light); }

.lead-feature { display: grid; grid-template-columns: minmax(340px, .75fr) minmax(400px, 1fr); gap: clamp(3rem, 9vw, 10rem); align-items: center; background: #171318; }
.lead-portrait { position: relative; max-width: 620px; margin-left: auto; }
.lead-portrait::before { content: ""; position: absolute; inset: 1.3rem -1.3rem -1.3rem 1.3rem; border: 1px solid var(--line); }
.lead-portrait img { position: relative; z-index: 1; width: 100%; filter: saturate(.74) contrast(1.07); }
.vertical-type { position: absolute; z-index: 2; right: -6rem; top: 50%; color: var(--gold); font-size: .55rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; transform: rotate(90deg); }
.lead-copy { max-width: 730px; }
.lead-copy h2 { font-size: clamp(6rem, 11vw, 11rem); line-height: .67; }
.lead-copy h2 em { display: inline-block; margin-left: clamp(2rem, 8vw, 8rem); color: var(--gold); font-weight: 400; }
.lead-copy blockquote { margin: clamp(3rem, 6vw, 6rem) 0 1.4rem; color: var(--paper); font-family: var(--display); font-size: clamp(1.6rem, 2.4vw, 2.6rem); font-style: italic; line-height: 1.35; }
.lead-copy > p:not(.kicker) { max-width: 570px; color: var(--muted); line-height: 1.9; }
.fine-rule { display: block; width: min(100%, 570px); height: 1px; margin-top: 2.5rem; background: linear-gradient(90deg, var(--gold), transparent); }

.music { min-height: 88svh; overflow: hidden; background: var(--ink); }
.music-glow { position: absolute; left: -10vw; bottom: -30vw; width: 70vw; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(217,182,95,.14), transparent 62%); }
.music-content { position: relative; z-index: 2; width: min(100%, 1320px); margin: 0 auto; display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.release-mark { position: relative; display: grid; place-items: center; width: min(36vw, 500px); aspect-ratio: 1; border: 1px solid rgba(217,182,95,.26); border-radius: 50%; box-shadow: inset 0 0 100px rgba(217,182,95,.04), 0 0 100px rgba(217,182,95,.03); }
.release-mark::before, .release-mark::after { content: ""; position: absolute; border: 1px solid rgba(217,182,95,.13); border-radius: 50%; }
.release-mark::before { inset: 10%; }
.release-mark::after { inset: 28%; background: var(--gold); box-shadow: 0 0 80px rgba(217,182,95,.22); }
.release-mark span { position: relative; z-index: 2; color: var(--ink); font-family: var(--display); font-size: clamp(2rem, 5vw, 4.8rem); letter-spacing: -.08em; }
.release-mark i { position: absolute; z-index: 3; width: 4%; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }
.music-copy h2 { font-size: clamp(4.8rem, 7.5vw, 8.5rem); }
.music-copy h2 em { color: var(--gold); font-weight: 400; }
.music-copy > p:not(.kicker) { max-width: 480px; margin: 2rem 0 2.5rem; color: var(--muted); font-size: 1rem; line-height: 1.9; }

.contact { background: var(--paper); color: var(--ink); }
.contact-grid { width: min(100%, 1460px); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.contact-title h2 { font-size: clamp(4.3rem, 7.5vw, 8.2rem); }
.contact-title h2 em { color: var(--gold-deep); font-weight: 400; }
.contact-action { padding-bottom: 1rem; }
.contact-action p { max-width: 430px; margin: 0 0 2.3rem; color: rgba(8,7,8,.58); line-height: 1.8; }
.contact-action a { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(8,7,8,.28); font-family: var(--display); font-size: clamp(1.15rem, 2vw, 2rem); transition: color .2s ease, border-color .2s ease; }
.contact-action a:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.contact-action small { display: block; margin-top: 1.2rem; color: rgba(8,7,8,.42); font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.site-footer { min-height: 180px; padding: 3rem clamp(1.25rem, 4vw, 4.5rem); display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; border-top: 1px solid var(--line); background: var(--ink); color: var(--muted); }
.footer-brand { color: var(--gold-light); font-family: var(--display); font-size: 1.5rem; letter-spacing: .02em; text-transform: uppercase; }
.site-footer p { margin: 0; font-size: .56rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.site-footer p:last-child { text-align: right; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .member-card--lead.reveal { transform: translateY(calc(-2.8rem + 26px)); }
.js .member-card--lead.reveal.is-visible { transform: translateY(-2.8rem); }

@media (max-width: 1120px) {
  .hero-inner { grid-template-columns: minmax(400px, .95fr) minmax(360px, .8fr); }
  .hero h1 { font-size: clamp(5rem, 9vw, 8rem); }
  .hero-frame { min-height: 570px; }
  .leader-label { display: none; }
  .story-grid { grid-template-columns: 1fr .8fr; }
  .lead-feature { gap: 5rem; }
}

@media (max-width: 860px) {
  .site-header { height: 72px; }
  .menu-toggle { position: relative; z-index: 102; display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
  .menu-toggle span { width: 24px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center; gap: 1.7rem; background: rgba(8,7,8,.98); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: var(--display); font-size: 2rem; font-weight: 400; letter-spacing: .02em; text-transform: none; }
  .hero-inner { min-height: auto; padding-top: 120px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(5.4rem, 18vw, 9rem); }
  .hero-visual { min-height: 720px; margin-top: -4rem; }
  .hero-frame { height: 820px; }
  .hero-frame img { max-width: 620px; }
  .hero-caption { bottom: 1.5rem; }
  .scroll-cue { display: none; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-copy { max-width: 670px; padding-top: 0; }
  .member-grid { grid-template-columns: 1.12fr 1fr; grid-template-areas: "lena clara" "lena mara"; align-items: start; }
  .member-card--lead { position: sticky; top: 100px; transform: none; }
  .js .member-card--lead.reveal, .js .member-card--lead.reveal.is-visible { transform: none; }
  .member-info > span { display: none; }
  .lead-feature { grid-template-columns: .8fr 1fr; gap: 3rem; }
  .vertical-type { display: none; }
  .music-content { grid-template-columns: .75fr 1fr; gap: 3rem; }
  .release-mark { width: min(40vw, 380px); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p:nth-child(2) { display: none; }
}

@media (max-width: 600px) {
  .brand-name { display: none; }
  .hero-inner { padding-inline: 1rem; padding-bottom: 0; }
  .eyebrow { margin-bottom: 1.4rem; gap: .8rem; }
  .eyebrow span + span::before { width: 18px; margin-right: .8rem; }
  .hero h1 { font-size: clamp(4.3rem, 22.5vw, 7.2rem); line-height: .76; }
  .hero h1 em { margin-left: .5rem; }
  .hero-tagline { margin-top: 2.4rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .hero-visual { min-height: 620px; margin-top: -1rem; }
  .hero-frame { height: 670px; min-height: 0; }
  .hero-frame img { width: 110%; max-width: none; }
  .hero-caption { gap: .45rem; font-size: .48rem; }
  .hero-caption i { width: 9px; }
  .section { padding: 5rem 1.15rem; }
  .section-index { margin-bottom: 3.5rem; }
  .story-heading h2, .section-heading h2, .contact-title h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .story-signature { gap: 1rem; flex-direction: column; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 3.5rem; }
  .section-heading > p { text-align: left; }
  .member-grid { display: flex; flex-direction: column; gap: 3.5rem; }
  .member-card--lead { position: static; order: -1; }
  .member-image { aspect-ratio: 4 / 5; }
  .member-info > span { display: block; }
  .lead-feature { display: flex; flex-direction: column; gap: 4.5rem; }
  .lead-portrait { width: calc(100% - 1.3rem); margin-right: 1.3rem; }
  .lead-copy h2 { font-size: clamp(5.5rem, 29vw, 8rem); }
  .lead-copy h2 em { margin-left: 2rem; }
  .lead-copy blockquote { margin-top: 3rem; }
  .music { min-height: auto; }
  .music-content { grid-template-columns: 1fr; }
  .release-mark { width: min(86vw, 420px); margin: 0 auto; }
  .music-copy h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .contact-action a { align-items: flex-end; font-size: 1.15rem; overflow-wrap: anywhere; }
  .site-footer { min-height: 210px; grid-template-columns: 1fr; align-content: end; }
  .site-footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .member-card--lead.reveal { opacity: 1; transform: none; }
}
