:root {
  --ink: #151515;
  --paper: #f7f4ed;
  --paper-deep: #eee8dd;
  --cream: #fffdf8;
  --red: #b52c25;
  --gold: #c79548;
  --line: rgba(21, 21, 21, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 4vw;
  color: #fff;
  background: rgba(15, 15, 15, 0.96);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.03em;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(.7rem, 2vw, 1.8rem);
  flex-wrap: wrap;
}
.primary-nav a {
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  color: rgba(255,255,255,.74);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a[aria-current="page"] {
  color: #fff;
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5,5,5,.76) 0%, rgba(5,5,5,.3) 55%, rgba(5,5,5,.04) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
}
.eyebrow, .card-label {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .82;
}
.hero-copy {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: rgba(255,255,255,.8);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1.1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover, .button:focus-visible { background: var(--red); border-color: var(--red); }
.button-light { background: #fff; border-color: #fff; color: var(--ink); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }

.vault-entry {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  width: min(620px, 100%);
  margin-top: 2.25rem;
  padding: 1rem 1.15rem 1rem 1rem;
  color: #201d18;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  text-decoration: none;
  backdrop-filter: blur(14px);
}
.vault-entry-mark {
  position: relative;
  display: grid;
  width: 3.5rem;
  height: 4.25rem;
  place-items: center;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 1.75rem 1.75rem .15rem .15rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.vault-entry-mark::after { content: ""; position: absolute; right: .6rem; width: .22rem; height: .22rem; background: currentColor; border-radius: 50%; }
.vault-entry-copy { display: grid; gap: .18rem; }
.vault-entry-copy small { color: #81766a; font-size: .6rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.vault-entry-copy strong { font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 400; letter-spacing: -.025em; }
.vault-entry-description { max-width: 44ch; color: #71685e; font-family: var(--serif); font-size: .8rem; line-height: 1.35; }
.vault-entry-arrow { color: var(--red); font-size: 1.6rem; transition: transform .25s ease; }
.vault-entry:hover, .vault-entry:focus-visible { background: #fff; outline: 2px solid rgba(255,255,255,.42); outline-offset: 3px; }
.vault-entry:hover .vault-entry-arrow, .vault-entry:focus-visible .vault-entry-arrow { transform: translateX(.35rem); }

.section { padding: clamp(4rem, 8vw, 7rem) 4vw; }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  gap: 2rem;
  align-items: end;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
.section-heading p { margin: 0; color: #59544c; }

.feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 520px;
  margin-top: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
}
.feature-media { min-height: 360px; overflow: hidden; }
.feature-media img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature:hover .feature-media img { transform: scale(1.025); }
.feature-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.7rem); }
.feature h3, .editorial-card h3, .project h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.feature p, .editorial-card p, .project p { color: #5b554d; }
.meta { margin-top: 1.1rem; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.3rem; margin-top: 2rem; }
.editorial-card { background: var(--cream); border: 1px solid var(--line); overflow: hidden; }
.editorial-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.editorial-card-body { padding: clamp(1.5rem, 4vw, 2.7rem); }
.editorial-card h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.text-link { display: inline-block; margin-top: 1rem; color: var(--red); font-size: .73rem; font-weight: 800; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.text-link:hover, .text-link:focus-visible { text-decoration: underline; }

.dark-section { color: var(--ink); background: #fbfaf6; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark-section .section-heading { border-color: var(--line); }
.dark-section .section-heading p, .dark-section .project p { color: #635d54; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: 2rem; background: var(--line); }
.project { min-height: 300px; padding: clamp(1.7rem, 3vw, 3rem); background: #fbfaf6; }
.project h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); }

.vault-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem);
  color: #fff;
  background: var(--red);
  overflow: hidden;
}
.vault-cta::after { content: "V"; position: absolute; right: 1vw; bottom: -9vw; color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 24vw; line-height: 1; }
.vault-cta > * { position: relative; z-index: 1; }
.vault-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 6.4rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.vault-cta p { max-width: 670px; margin: 1rem 0 0; color: rgba(255,255,255,.8); }

.site-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem 4vw; color: #6f685f; background: #eee8dd; border-top: 1px solid var(--line); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: var(--ink); text-decoration: none; }

.music-page { --red: #8f302b; --gold: #bf934d; }
.food-page { --red: #a24b2b; --gold: #ba7c3e; }
.food-page .hero::before { background-image: linear-gradient(90deg, rgba(42,22,10,.7) 0%, rgba(42,22,10,.25) 55%, rgba(42,22,10,.03) 100%), var(--hero-image); }

.music-documentary-hero {
  min-height: min(92vh, 940px);
  color: #fff;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.music-documentary-hero::before { display: none; }
.music-documentary-hero .hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding: 0;
}
.music-hero-copy {
  position: relative;
  z-index: 4;
  width: min(610px, 44vw);
  margin-left: max(4vw, calc((100vw - 1380px) / 2));
  padding: clamp(4rem, 8vh, 7rem) 0;
}
.music-documentary-hero .eyebrow { color: #d7ad68; }
.music-documentary-hero h1 { color: #fff; font-size: clamp(5rem, 10vw, 9rem); text-shadow: 0 10px 35px rgba(0,0,0,.28); }
.music-documentary-hero .hero-statement { max-width: 13ch; margin: .75rem 0 0; color: #fff; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.75rem); font-style: italic; letter-spacing: -.025em; line-height: 1.05; text-shadow: 0 5px 20px rgba(0,0,0,.45); }
.music-documentary-hero .hero-copy { max-width: 520px; color: rgba(255,255,255,.72); }
.music-documentary-hero .button { color: #151515; background: #fff; border-color: #fff; }
.music-documentary-hero .button:hover, .music-documentary-hero .button:focus-visible { color: #fff; background: var(--red); border-color: var(--red); }
.music-documentary-hero .vault-entry { width: min(520px, 100%); background: rgba(250,249,245,.94); border-color: rgba(255,255,255,.28); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.music-documentary-hero .vault-entry:hover, .music-documentary-hero .vault-entry:focus-visible { outline-color: rgba(255,255,255,.32); }
.music-hero-story { position: absolute; z-index: 0; inset: 0; min-width: 0; }
.music-legend-poster { position: absolute; inset: 0; overflow: hidden; isolation: isolate; }
.music-legend-origin { position: absolute; inset: 0; margin: 0; }
.music-legend-origin img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; filter: contrast(1.07); }
.music-legend-poster::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,.97) 0%, rgba(6,6,6,.86) 22%, rgba(6,6,6,.26) 52%, rgba(6,6,6,.02) 76%),
    linear-gradient(0deg, rgba(6,6,6,.92) 0%, rgba(6,6,6,.05) 38%, rgba(6,6,6,.12) 100%);
  pointer-events: none;
}
.music-legend-echoes { position: absolute; z-index: 2; right: 2vw; bottom: 5.2rem; width: min(760px, 54vw); height: min(300px, 32vh); }
.music-legend-echo {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.music-legend-echo img { width: 100%; height: 100%; object-fit: cover; }
.music-legend-echo--musician { z-index: 1; left: 0; width: 46%; clip-path: polygon(0 9%, 100% 0, 88% 100%, 0 88%); }
.music-legend-echo--musician img { object-position: center; }
.music-legend-echo--stage { z-index: 2; left: 31%; width: 43%; clip-path: polygon(11% 0, 100% 8%, 90% 91%, 0 100%); }
.music-legend-echo--stage img { object-position: center 40%; }
.music-legend-echo--curator { z-index: 3; right: 0; width: 31%; clip-path: polygon(12% 8%, 100% 0, 100% 100%, 0 91%); }
.music-legend-echo--curator img { object-position: center 25%; }
.music-legend-name { position: absolute; z-index: 2; right: 3vw; bottom: -.18em; margin: 0; color: rgba(255,255,255,.09); font-family: var(--sans); font-size: clamp(5rem, 11vw, 11rem); font-weight: 900; letter-spacing: -.075em; line-height: .8; text-transform: uppercase; white-space: nowrap; }
.music-origin-line {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 1.5rem;
  left: 4vw;
  display: flex;
  gap: .7rem;
  align-items: center;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.music-origin-line i { height: 1px; flex: 1; background: rgba(215,173,104,.5); }

.food-editorial-hero {
  min-height: min(84vh, 860px);
  color: var(--ink);
  background: #fbf7ee;
  border-bottom: 1px solid var(--line);
}
.food-editorial-hero::before { display: none; }
.food-editorial-hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.food-editorial-hero .eyebrow { color: var(--red); }
.food-editorial-hero h1 { font-size: clamp(4.5rem, 8.5vw, 8rem); }
.food-editorial-hero .hero-statement { max-width: 13ch; margin: .75rem 0 0; color: #29231d; font-family: var(--serif); font-size: clamp(1.55rem, 2.7vw, 2.45rem); font-style: italic; letter-spacing: -.025em; line-height: 1.08; }
.food-editorial-hero .hero-copy { color: #5e564b; }
.food-editorial-hero .vault-entry { background: #fffdf8; border-color: rgba(92,70,46,.2); box-shadow: 0 16px 38px rgba(68,47,25,.09); }
.food-editorial-hero .vault-entry:hover, .food-editorial-hero .vault-entry:focus-visible { outline-color: rgba(162,75,43,.2); }
.food-hero-gallery { min-width: 0; margin: 0; }
.food-photo-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  height: min(68vh, 650px);
}
.food-photo-grid img { height: 100%; object-fit: cover; background: #eee8dd; }
.food-photo-grid .food-photo-main { grid-row: 1 / 3; object-position: center; }
.food-hero-gallery figcaption { margin-top: .7rem; color: #82786b; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-align: right; text-transform: uppercase; }

.this-week { background: #f7f4ed; }
.week-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.week-card { display: flex; min-width: 0; min-height: 100%; flex-direction: column; background: var(--cream); border: 1px solid var(--line); }
.week-card-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-deep); }
.week-card-media img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.week-card:hover .week-card-media img { transform: scale(1.02); }
.week-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: clamp(1.35rem, 2.4vw, 2rem); }
.week-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.6vw, 2.25rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.week-card p:not(.card-label) { color: #655e54; }
.week-card .text-link { margin-top: auto; padding-top: .5rem; }
.week-card--text, .week-card--project { justify-content: space-between; min-height: 420px; }
.week-card--text { background: #eee7da; }
.week-card--project { color: #fff; background: #26342e; }
.week-card--project p:not(.card-label) { color: rgba(255,255,255,.7); }
.week-card--project .card-label, .week-card--project .text-link { color: #e1b874; }
.week-card-mark { padding: 1.4rem 1.7rem 0; color: rgba(162,75,43,.22); font-family: var(--serif); font-size: clamp(3.8rem, 7vw, 7rem); font-style: italic; letter-spacing: -.07em; line-height: 1; }
.week-card--project .week-card-mark { color: rgba(255,255,255,.14); font-style: normal; font-weight: 700; }

.kitchen-home { background: #efe7d9; }
.ecosystem-panel { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.ecosystem-intro h2, .aym-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.ecosystem-intro > p:last-child, .aym-content > p { color: #625a50; font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.55; }
.ecosystem-links { display: grid; gap: 0; }
.ecosystem-links a { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.35rem .2rem; border-bottom: 1px solid rgba(21,21,21,.2); font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); text-decoration: none; }
.ecosystem-links a:first-child { border-top: 1px solid rgba(21,21,21,.2); }
.ecosystem-links b { color: var(--red); font-family: var(--sans); font-weight: 400; transition: transform .25s ease; }
.ecosystem-links a:hover b, .ecosystem-links a:focus-visible b { transform: translateX(.35rem); }

.aym-home { background: #fbfaf6; }
.aym-panel { display: grid; grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr); border: 1px solid var(--line); background: #fffdf8; }
.aym-visual { min-height: 560px; padding: clamp(2rem, 4vw, 4rem); background: #dbe6c8; }
.aym-visual img { height: 100%; object-fit: contain; }
.aym-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); }
.aym-links { display: grid; margin-top: 1.5rem; }
.aym-links a { display: grid; grid-template-columns: 1fr auto; gap: .15rem 1rem; padding: 1rem 0; border-top: 1px solid var(--line); text-decoration: none; }
.aym-links small { color: #7c746a; font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.aym-links strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.aym-links b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--red); font-weight: 400; }

@media (max-width: 820px) {
  .site-header { position: static; grid-template-columns: 1fr; gap: .8rem; padding-top: 1rem; padding-bottom: 1rem; }
  .primary-nav { justify-content: flex-start; gap: .6rem 1rem; }
  .primary-nav a { font-size: .64rem; }
  .hero { min-height: 650px; }
  .hero::before { background-image: linear-gradient(0deg, rgba(5,5,5,.86) 0%, rgba(5,5,5,.22) 78%), var(--hero-image); background-position: 62% center; }
  .food-page .hero::before { background-image: linear-gradient(0deg, rgba(42,22,10,.84) 0%, rgba(42,22,10,.18) 78%), var(--hero-image); }
  .food-editorial-hero { min-height: auto; }
  .food-editorial-hero::before { display: none; }
  .food-editorial-hero .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.25rem 0 3.5rem; }
  .food-editorial-hero h1 { font-size: clamp(4rem, 20vw, 7rem); }
  .food-photo-grid { height: min(62vh, 540px); }
  .music-documentary-hero { min-height: auto; }
  .music-documentary-hero::before { display: none; }
  .music-documentary-hero .hero-inner { display: flex; min-height: 880px; padding: 0; }
  .music-hero-copy { width: min(560px, 88vw); margin-left: 6vw; padding: 3.5rem 0 18rem; }
  .music-documentary-hero h1 { font-size: clamp(4.8rem, 20vw, 7.5rem); }
  .music-legend-origin img { object-position: 61% center; }
  .music-legend-poster::after { background: linear-gradient(90deg, rgba(6,6,6,.94) 0%, rgba(6,6,6,.7) 40%, rgba(6,6,6,.1) 78%), linear-gradient(0deg, rgba(6,6,6,.96) 0%, rgba(6,6,6,.08) 55%); }
  .music-legend-echoes { right: 4vw; bottom: 4.5rem; width: 72vw; height: 25vw; min-height: 170px; }
  .week-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-panel, .aym-panel { grid-template-columns: 1fr; }
  .aym-visual { min-height: 430px; }
  .section-heading, .feature, .vault-cta { grid-template-columns: 1fr; }
  .feature-body { order: 2; }
  .feature-media { order: 1; }
  .card-grid, .project-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .vault-entry { grid-template-columns: 3rem minmax(0, 1fr) auto; gap: .8rem; padding: .8rem; }
  .vault-entry-mark { width: 3rem; height: 3.7rem; }
  .food-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; gap: .6rem; }
  .food-photo-grid .food-photo-main { grid-row: auto; }
  .food-photo-grid img { height: auto; object-fit: contain; }
  .food-hero-gallery figcaption { text-align: left; line-height: 1.5; }
  .week-grid { grid-template-columns: 1fr; }
  .week-card--text, .week-card--project { min-height: 340px; }
  .aym-visual { min-height: 340px; }
  .music-documentary-hero .hero-inner { min-height: 900px; align-items: flex-start; }
  .music-hero-copy { width: 92vw; margin-left: 4vw; padding: 2.5rem 0 18rem; }
  .music-documentary-hero h1 { font-size: clamp(4.5rem, 24vw, 7rem); }
  .music-documentary-hero .hero-copy { max-width: 30ch; }
  .music-legend-origin img { object-position: 62% top; }
  .music-legend-poster::after { background: linear-gradient(90deg, rgba(6,6,6,.93) 0%, rgba(6,6,6,.64) 54%, rgba(6,6,6,.08) 100%), linear-gradient(0deg, rgba(6,6,6,.98) 0%, rgba(6,6,6,.15) 60%); }
  .music-legend-echoes { right: 2vw; bottom: 4.8rem; width: 94vw; height: 34vw; min-height: 150px; }
  .music-legend-name { right: 2vw; bottom: .35rem; font-size: 20vw; }
  .music-origin-line { right: 3vw; bottom: 1.15rem; left: 3vw; gap: .35rem; font-size: .42rem; letter-spacing: .08em; }
  .music-origin-line i { min-width: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature-media img { transition: none; }
}
