/* ==========================================================
   MICK B OURBON — "DEAR H."
   Design concept: the record is a recovery arc told in ten
   chapters. The site is strict black-and-white — except color
   is not decorative here, it is earned. Each chapter carries
   the warmth value already encoded in the content model
   (0 -> 5) and that number drives how much of the accent red
   bleeds into its numeral and index bar. Early chapters read
   as pure monochrome; by the final chapters, color has
   returned. The album cover follows the same rule: it sits in
   grayscale until you reach for it.
   ========================================================== */

:root {
  --ink: #070707;
  --ink-2: #141414;
  --paper: #f5f4f0;
  --paper-2: #eae8e2;
  --gray: #8a8781;
  --gray-deep: #56534d;
  --line-on-ink: rgba(245, 244, 240, .18);
  --line-on-ink-soft: rgba(245, 244, 240, .09);
  --line-on-paper: rgba(7, 7, 7, .14);
  --line-on-paper-soft: rgba(7, 7, 7, .08);
  --pulse: #ff2b18;
  --pulse-deep: #c21c0d;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: 1280px;
  --wide: 1020px;
  --measure: 680px;
  --pad-x: clamp(20px, 5.5vw, 80px);
  --section-y: clamp(88px, 10.5vw, 160px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--pulse); color: var(--paper); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--pulse);
  color: var(--paper);
  padding: 10px 14px;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.shell { width: min(var(--shell), calc(100% - (2 * var(--pad-x)))); margin-inline: auto; }
.measure-wide { width: min(var(--wide), calc(100% - (2 * var(--pad-x)))); margin-inline: auto; }
.section-shell { position: relative; padding-block: var(--section-y); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line-on-ink); }
.site-header__inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--paper);
}
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.site-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  color: var(--gray);
  padding-bottom: 4px;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--pulse);
  transition: right .28s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--paper); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; color: var(--paper); font: inherit; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .16em; padding: 8px 0; }

/* ---------- SHARED TEXT ELEMENTS ---------- */
.eyebrow {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero .eyebrow, .story .eyebrow, .identity .eyebrow, .process .eyebrow { color: var(--gray); }
.album .eyebrow, .chapters .eyebrow, .creator .eyebrow, .label .eyebrow { color: var(--gray-deep); }

.display-title { margin: 0; font-family: var(--display); font-size: clamp(52px, 5vw, 72px); font-weight: 600; font-style: italic; letter-spacing: -.02em; line-height: .96; }
.lead { max-width: var(--measure); margin: 0; font-size: clamp(18px, 1.45vw, 21px); line-height: 1.6; }
.hero .lead, .story .lead { color: var(--paper-2); }

.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding-block: 7px; border-bottom: 2px solid currentColor;
  font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .15em;
  text-decoration: none; opacity: .78;
  transition: opacity .2s ease, letter-spacing .2s ease;
}
.text-link:hover, .text-link:focus-visible { opacity: 1; letter-spacing: .19em; }
.text-link--accent { color: var(--pulse); border-color: var(--pulse); opacity: 1; }
.text-link--accent span { font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  min-height: min(880px, 88svh);
  padding-top: max(120px, 13vh);
  padding-bottom: clamp(64px, 8vh, 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .72fr); gap: clamp(56px, 6.5vw, 110px); align-items: center; }
.hero__copy { max-width: 700px; }
.hero__title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(58px, 6.4vw, 104px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .88;
  text-transform: uppercase;
}
.hero__claim {
  margin: clamp(30px, 4vw, 46px) 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(26px, 2.1vw, 33px);
  letter-spacing: -.015em;
  line-height: 1.16;
}
.hero__claim span { display: block; }
.hero__claim span:first-child { color: var(--paper); }
.hero__claim span:last-child { color: var(--pulse); }
.hero__intro { max-width: 460px; margin: 26px 0 0; color: var(--gray); font-size: 16px; line-height: 1.6; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; color: var(--paper); }
.micro-claim { margin: 48px 0 0; color: var(--gray-deep); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.hero__visual { align-self: center; }
.hero-frame { position: relative; aspect-ratio: 4 / 5; width: min(100%, 500px); margin-left: auto; overflow: hidden; border: 1px solid var(--line-on-ink); background: #0c0c0c; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1) brightness(.85); transition: filter .5s ease; }
.hero-frame:hover img, .hero-frame:focus-within img { filter: grayscale(.15) contrast(1.05) brightness(.95); }

.hero-editorial {
  position: relative;
  min-height: 450px;
  width: min(100%, 430px);
  margin-left: auto;
  padding: 26px 30px 30px;
  border: 1px solid var(--line-on-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--pulse);
}
.hero-editorial__top {
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--sans); color: var(--gray); font-size: 10px; font-weight: 800; letter-spacing: .2em;
  position: relative; z-index: 2;
}
.hero-editorial__body { position: relative; z-index: 2; margin-top: auto; }
.hero-editorial__kicker { margin: 0 0 8px; color: var(--gray); font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.hero-editorial__title { margin: 0; font-family: var(--display); font-style: italic; color: var(--paper); font-size: clamp(40px, 3.4vw, 52px); font-weight: 600; letter-spacing: -.02em; line-height: .96; }
.hero-editorial__note { position: relative; z-index: 2; max-width: 220px; margin: 22px 0 0; color: var(--gray); font-family: var(--sans); font-size: 13px; line-height: 1.5; }
.hero-editorial__mark {
  position: absolute; right: -6px; bottom: -46px; z-index: 1;
  color: var(--line-on-ink-soft); font-family: var(--display); font-style: italic;
  font-size: 220px; line-height: 1; letter-spacing: -.05em; user-select: none;
}

.hero__rule { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 1px; }
.hero__rule span { display: block; height: 1px; background: linear-gradient(to right, transparent, var(--pulse), transparent); }

/* ---------- ALBUM ---------- */
.album { background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line-on-paper); }
.album__grid { display: grid; grid-template-columns: minmax(340px, 460px) minmax(0, 1fr); gap: clamp(64px, 8vw, 130px); align-items: center; }
.album__cover-wrap {
  margin: 0; width: 100%; max-width: 460px;
  border: 2px solid var(--ink);
  position: relative;
  isolation: isolate;
}
.album__cover-wrap::after {
  content: "GRAYSCALE — HOVER FOR COLOR";
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 12px;
  font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .14em;
  color: var(--paper); background: var(--ink);
  opacity: .9; transition: opacity .35s ease;
  pointer-events: none;
}
.album__cover-wrap:hover::after, .album__cover-wrap:focus-within::after { opacity: 0; }
.album__cover {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  transition: filter .6s ease;
  display: block;
}
.album__cover-wrap:hover .album__cover,
.album__cover-wrap:focus-within .album__cover { filter: grayscale(0) contrast(1.02); }
.album__copy { max-width: 560px; }
.album__subtitle { margin: 18px 0 32px; font-family: var(--display); font-size: clamp(23px, 2vw, 29px); font-style: italic; color: var(--gray-deep); }
.album__copy .lead { margin-bottom: 34px; color: var(--ink); opacity: .82; }
.album .text-link--accent { color: var(--pulse-deep); border-color: var(--pulse-deep); }

/* ---------- STORY ---------- */
.story { background: var(--ink); color: var(--paper); overflow: hidden; }
.story__statement { margin: 0; max-width: 980px; font-family: var(--display); font-style: italic; font-size: clamp(40px, 3.9vw, 60px); font-weight: 600; letter-spacing: -.015em; line-height: 1.06; }
.story__statement span { display: block; }
.story__statement span:first-child { color: var(--paper); }
.story__statement span:nth-child(n+2) { color: var(--gray); }
.story__resolution { max-width: 740px; margin: clamp(40px, 5vw, 66px) 0 0 auto; font-family: var(--display); font-style: italic; font-size: clamp(26px, 2.1vw, 33px); line-height: 1.24; color: var(--pulse); }
.story__bridge { max-width: 580px; margin: 30px 0 0 auto; color: var(--gray); font-size: 16px; }

/* ---------- CHAPTERS — the signature: color returns as the arc heals ---------- */
.chapters { background: var(--paper); color: var(--ink); }
.section-head { display: grid; grid-template-columns: 160px 1fr; gap: 30px; align-items: end; padding-bottom: clamp(56px, 7vw, 92px); }
.section-head .eyebrow { margin: 0 0 10px; }
.section-head .display-title { grid-column: 2; color: var(--ink); }
.section-head__note { grid-column: 2; margin: 14px 0 0; color: var(--gray-deep); }

.chapter-list { border-top: 1px solid var(--line-on-paper); }
.chapter {
  --warm: 0;
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(220px, 380px);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 5.6vw, 72px) 0;
  border-bottom: 1px solid var(--line-on-paper);
}
.chapter__meta { position: relative; }
.chapter__number {
  margin: 0 0 6px;
  font-family: var(--display);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: color-mix(in srgb, var(--pulse) calc(var(--warm) * 20%), var(--ink));
}
.chapter__meter { display: block; width: 44px; height: 3px; background: var(--line-on-paper); margin: 12px 0 12px; }
.chapter__meter span { display: block; height: 100%; width: calc(var(--warm) * 20%); background: var(--pulse); transition: width .4s ease; }
.chapter__chapter { margin: 0; color: var(--gray-deep); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.chapter__title { margin: 0; font-family: var(--display); font-style: italic; font-size: clamp(36px, 3.6vw, 50px); font-weight: 600; letter-spacing: -.015em; line-height: 1.02; }
.chapter__description { max-width: 660px; margin: 24px 0 0; color: var(--gray-deep); font-size: 16px; line-height: 1.68; }
.chapter__side { align-self: end; padding-bottom: 2px; }
.chapter__note { margin: 0; font-family: var(--display); font-style: italic; font-size: 18px; line-height: 1.45; color: color-mix(in srgb, var(--pulse) calc(var(--warm) * 12%), var(--gray-deep)); }
.chapter__status { display: inline-flex; margin-top: 22px; align-items: center; gap: 9px; color: var(--gray); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.chapter__status::before { content: ""; width: 16px; height: 1px; background: var(--gray); }
.chapter--unpublished { opacity: .82; }
.chapter--unpublished .chapter__title {
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--pulse) calc(var(--warm) * 20%), var(--gray-deep));
  font-size: clamp(30px, 3vw, 42px);
}
.album__links { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 32px; }

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  color: inherit;
  opacity: .82;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}
.platform-link span { color: var(--pulse); }
.platform-link:hover, .platform-link:focus-visible {
  opacity: 1;
  background: var(--pulse);
  border-color: var(--pulse);
  color: var(--paper);
}
.platform-link:hover span, .platform-link:focus-visible span { color: var(--paper); }

.chapter__listen { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chapter__listen .platform-link { padding: 8px 16px; font-size: 10px; }

/* ---------- IDENTITY ---------- */
.identity { background: var(--ink); color: var(--paper); padding-top: clamp(116px, 13vw, 200px); }
.identity__grid, .creator__grid { display: grid; grid-template-columns: minmax(140px, 250px) minmax(0, 800px); gap: clamp(45px, 8vw, 130px); align-items: start; }
.identity__grid > .eyebrow, .creator__grid > .eyebrow { margin-top: 12px; }
.identity__headline {
  margin: 0 0 40px;
  font-family: var(--sans);
  font-size: clamp(56px, 6.4vw, 92px);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: .9;
  text-transform: uppercase;
}
.identity .lead { color: var(--gray); }

/* ---------- CREATOR ---------- */
.creator { background: var(--paper); color: var(--ink); padding-top: clamp(88px, 10vw, 150px); }
.creator__headline { max-width: 760px; margin: 0 0 34px; font-family: var(--display); font-style: italic; font-size: clamp(38px, 3.8vw, 54px); font-weight: 600; letter-spacing: -.015em; line-height: 1.05; }
.creator__copy .lead { margin-bottom: 30px; color: var(--ink); opacity: .82; }
.creator .text-link--accent { color: var(--pulse-deep); border-color: var(--pulse-deep); }

/* ---------- PROCESS ---------- */
.process { background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-on-ink); }
.process__intro { display: grid; grid-template-columns: minmax(140px, 250px) minmax(0, 800px); gap: clamp(45px, 8vw, 130px); align-items: start; }
.process__intro .eyebrow { margin-top: 11px; }
.process__title, .process__intro .lead { grid-column: 2; }
.process__title { color: var(--paper); }
.process__intro .lead { margin-top: 28px; color: var(--gray); }
.process__columns { width: min(900px, 100%); margin: clamp(66px, 8vw, 104px) 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-on-ink); border-bottom: 1px solid var(--line-on-ink); }
.process-card { padding: 32px 0 40px; }
.process-card + .process-card { border-left: 1px solid var(--line-on-ink); padding-left: clamp(34px, 5vw, 70px); }
.process-card__label { margin: 0 0 24px; color: var(--gray); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.process-card ul { list-style: none; margin: 0; padding: 0; }
.process-card li { padding: 7px 0; font-family: var(--display); font-style: italic; font-size: 21px; color: var(--paper-2); }
.process__statement { width: min(900px, 100%); margin: clamp(50px, 6vw, 78px) 0 0 auto; font-family: var(--display); font-style: italic; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.12; }
.process__statement span { display: block; }
.process__statement span:first-child { color: var(--gray); }
.process__statement span:last-child { color: var(--pulse); }

/* ---------- LABEL ---------- */
.label { background: var(--paper); color: var(--ink); padding-top: 66px; padding-bottom: 106px; }
.label__inner { padding-top: 42px; border-top: 1px solid var(--line-on-paper); }
.label__body { margin: 0; color: var(--gray-deep); font-size: 13px; }
.label__name {
  display: inline-block;
  margin: 6px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(25px, 2.2vw, 33px);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.label__name:hover, .label__name:focus-visible { color: var(--pulse-deep); border-bottom-color: currentColor; }

/* ---------- FOOTER ---------- */
.site-footer { padding: 40px 0 50px; border-top: 1px solid var(--line-on-ink); background: var(--ink); color: var(--paper); }
.site-footer__grid { display: grid; grid-template-columns: 200px minmax(0, 1fr) auto; gap: 44px; align-items: start; }
.site-footer__wordmark { margin: 0; font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.site-footer__disclaimer { max-width: 680px; margin: 0; color: var(--gray); font-size: 12px; line-height: 1.55; }
.site-footer__legal { display: flex; gap: 18px; color: var(--gray); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.site-footer__legal a { color: var(--gray); text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.site-footer__legal a:hover, .site-footer__legal a:focus-visible { color: var(--pulse); border-bottom-color: currentColor; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal--delay { transition-delay: .1s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- LEGAL PAGES (Impressum etc.) ---------- */
.legal-hero { background: var(--ink); color: var(--paper); padding-top: max(150px, 16vh); padding-bottom: clamp(56px, 7vh, 90px); }
.legal-hero .eyebrow { color: var(--gray); }
.legal-hero__title { margin: 0; font-family: var(--sans); font-size: clamp(46px, 6vw, 76px); font-weight: 900; letter-spacing: -.015em; line-height: .92; text-transform: uppercase; }
.legal-hero__sub { margin: 22px 0 0; max-width: 620px; font-family: var(--display); font-style: italic; font-size: clamp(19px, 1.6vw, 24px); color: var(--gray-deep); color: var(--paper-2); }

.legal { background: var(--paper); color: var(--ink); }
.legal__grid { display: grid; grid-template-columns: minmax(140px, 250px) minmax(0, 720px); gap: clamp(40px, 7vw, 110px); }
.legal-block { padding: clamp(40px, 5vw, 60px) 0; border-bottom: 1px solid var(--line-on-paper); }
.legal-block:first-of-type { padding-top: 0; }
.legal-block__title { margin: 0 0 20px; font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-deep); }
.legal-block__body { margin: 0; max-width: 640px; font-size: 16px; line-height: 1.7; color: var(--ink); opacity: .88; }
.legal-block__body + .legal-block__body { margin-top: 14px; }
.legal-block address { font-style: normal; }
.legal-block a { color: var(--pulse-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.legal-block a:hover, .legal-block a:focus-visible { color: var(--pulse); }
.legal-block__note {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-left: 2px solid var(--pulse);
  background: var(--paper-2);
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 620px;
}
.legal-back { margin-top: clamp(46px, 6vw, 74px); }

@media (max-width: 760px) {
  .legal__grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-hero { padding-top: 118px; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1180px) {
  .hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr); gap: 56px; }
}

@media (max-width: 980px) {
  :root { --section-y: clamp(78px, 12vw, 120px); }
  .hero { min-height: auto; padding-top: 122px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 46px; }
  .hero__title { font-size: clamp(50px, 8.4vw, 70px); }
  .album__grid { grid-template-columns: minmax(300px, 420px) 1fr; gap: 54px; }
  .chapter { grid-template-columns: 84px minmax(0, 1fr); }
  .chapter__side { grid-column: 2; max-width: 560px; }
  .identity__grid, .creator__grid, .process__intro { grid-template-columns: 150px minmax(0, 1fr); gap: 52px; }
  .site-footer__grid { grid-template-columns: 150px 1fr; }
  .site-footer__legal { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --pad-x: 22px; --section-y: 84px; }
  .site-header__inner { min-height: 60px; }
  .nav-toggle { display: block; cursor: pointer; }
  .site-nav {
    position: fixed; inset: 60px 0 auto; display: grid; gap: 0;
    padding: 8px var(--pad-x) 22px; background: var(--ink);
    border-bottom: 1px solid var(--line-on-ink);
    transform: translateY(-140%); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s ease;
  }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line-on-ink-soft); font-size: 11px; }

  .hero { min-height: auto; padding-top: 114px; padding-bottom: 68px; align-items: start; }
  .hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .hero__title { font-size: clamp(40px, 13vw, 52px); }
  .hero__claim { margin-top: 28px; font-size: clamp(22px, 6.8vw, 27px); }
  .hero__intro { font-size: 15px; }
  .hero__actions { gap: 18px 26px; margin-top: 28px; }
  .micro-claim { margin-top: 32px; }
  .hero__visual { order: 2; }
  .hero-frame, .hero-editorial { width: min(100%, 440px); margin: 0; }
  .hero-editorial { min-height: 320px; }

  .album__grid { grid-template-columns: 1fr; gap: 50px; }
  .album__cover-wrap { max-width: 500px; }
  .display-title { font-size: clamp(44px, 12vw, 58px); }
  .album__subtitle { margin-top: 14px; }

  .story__statement { font-size: clamp(34px, 10.2vw, 44px); }
  .story__resolution { margin-top: 36px; font-size: clamp(23px, 7vw, 28px); }
  .story__bridge { margin-top: 26px; }

  .section-head { display: block; padding-bottom: 50px; }
  .section-head .eyebrow { margin-bottom: 20px; }
  .section-head__note { margin-top: 16px; }
  .chapter { grid-template-columns: 56px minmax(0, 1fr); gap: 22px; padding: 44px 0; }
  .chapter__number { font-size: 28px; }
  .chapter__title { font-size: clamp(29px, 8.6vw, 38px); line-height: 1.04; }
  .chapter__description { margin-top: 19px; font-size: 15px; }
  .chapter__side { grid-column: 2; }
  .chapter__note { font-size: 16px; }
  .chapter--unpublished .chapter__title { font-size: clamp(26px, 7.6vw, 34px); }

  .identity { padding-top: 106px; }
  .identity__grid, .creator__grid, .process__intro { display: block; }
  .identity__grid > .eyebrow, .creator__grid > .eyebrow, .process__intro > .eyebrow { margin: 0 0 24px; }
  .identity__headline { margin-bottom: 30px; font-size: clamp(46px, 14vw, 64px); }
  .creator { padding-top: 70px; }
  .creator__headline { font-size: clamp(34px, 9vw, 44px); }

  .process__title, .process__intro .lead { grid-column: auto; }
  .process__intro .lead { margin-top: 24px; }
  .process__columns { margin-top: 54px; grid-template-columns: 1fr; }
  .process-card + .process-card { border-left: 0; border-top: 1px solid var(--line-on-ink); padding-left: 0; }
  .process__statement { margin-top: 44px; font-size: clamp(24px, 7.2vw, 32px); }

  .site-footer__grid { grid-template-columns: 1fr; gap: 20px; }
  .site-footer__legal { grid-column: auto; }
}

@media (max-width: 380px) {
  :root { --pad-x: 20px; }
  .hero__title { font-size: 38px; }
  .chapter { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; }
}

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