:root {
  --ink: #15150f;
  --paper: #f2eee2;
  --paper-deep: #e7dfca;
  --cream: #faf7ee;
  --gold: #b79b5d;
  --muted: #706e65;
  --line: rgba(21, 21, 15, 0.16);
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --script: "Allura", "Segoe Script", cursive;
  --header-h: 76px;
  --ease: cubic-bezier(.22,.8,.25,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--ink);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.room-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: #111; background: #c6ac6b; }

.grain {
  position: fixed;
  inset: -40%;
  z-index: 300;
  opacity: .035;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 35% 30%, rgba(0,0,0,.75) 0 .45px, transparent .75px),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.85) 0 .45px, transparent .8px);
  background-size: 4px 4px, 5px 5px;
  animation: grain 1s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(1.5%, -1%, 0); }
  50% { transform: translate3d(-1%, 1.5%, 0); }
  75% { transform: translate3d(.8%, .7%, 0); }
  100% { transform: translate3d(0,0,0); }
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
}
.page-wipe.is-entering { animation: wipeIn .9s cubic-bezier(.76,0,.24,1) both; }
@keyframes wipeIn {
  0% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 250;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 180;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 70px);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: color .5s ease, background .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}
.site-header.is-light {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(242,238,226,.78);
  backdrop-filter: blur(14px);
}
.site-header.is-dark.is-scrolled {
  background: rgba(15,15,12,.68);
  backdrop-filter: blur(14px);
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 600;
}
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 500 17px/1 var(--serif);
  letter-spacing: 0;
}
.desktop-nav { display: flex; gap: clamp(28px, 4vw, 58px); }
.desktop-nav a,
.header-index {
  position: relative;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 500;
}
.desktop-nav a::after,
.header-index::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}
.desktop-nav a:hover::after,
.header-index:hover::after { right: 0; }
.header-index { justify-self: end; }
.header-index span { margin-left: 7px; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.panel-dots {
  position: fixed;
  z-index: 160;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 11px;
  color: var(--cream);
  mix-blend-mode: difference;
}
.panel-dots a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 34px;
  height: 12px;
  font-size: 8px;
  letter-spacing: .12em;
  opacity: .45;
  transition: opacity .3s ease, width .3s ease;
}
.panel-dots a::before {
  content: "";
  width: 9px;
  height: 1px;
  margin-right: 7px;
  background: currentColor;
  transition: width .3s ease;
}
.panel-dots a span { opacity: 0; transform: translateX(4px); transition: .3s ease; }
.panel-dots a.is-active { opacity: 1; width: 44px; }
.panel-dots a.is-active::before { width: 18px; }
.panel-dots a.is-active span { opacity: 1; transform: none; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 800;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 4px; height: 4px; background: white; }
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.75);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
}
body.cursor-hover .cursor-ring { width: 58px; height: 58px; }

main { position: relative; }
.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
}
.paper-panel {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle, rgba(75,68,48,.08) .55px, transparent .7px),
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 30%, rgba(185,164,110,.04));
  background-size: 5px 5px, 100% 100%;
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(5px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.kicker,
.eyebrow,
.article-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
}

/* PAGE 1 */
.hero-panel { color: var(--cream); background: #11110e; }
.hero-media {
  position: absolute;
  inset: -5%;
  z-index: -3;
  background: url("/assets/images/hero-museum.jpg") center 52% / cover no-repeat;
  transform: scale(1.07);
  animation: heroBreath 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBreath { to { transform: scale(1.12) translate3d(0,-1%,0); } }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10,10,8,.72), rgba(10,10,8,.2) 58%, rgba(10,10,8,.55)),
    linear-gradient(0deg, rgba(10,10,8,.68), transparent 55%);
}
.ambient-light {
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  left: var(--light-x, 65%);
  top: var(--light-y, 42%);
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213,190,120,.16), transparent 68%);
  pointer-events: none;
  transition: left .8s var(--ease), top .8s var(--ease);
}
.hero-topline,
.hero-footer {
  position: absolute;
  left: clamp(24px, 6vw, 92px);
  right: clamp(24px, 6vw, 92px);
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
}
.hero-topline { top: calc(var(--header-h) + 34px); }
.hero-footer { bottom: 32px; }
.hero-content {
  position: absolute;
  left: clamp(24px, 12vw, 190px);
  top: 52%;
  transform: translateY(-48%);
  max-width: 820px;
}
.hero-content .eyebrow { margin-bottom: 18px; opacity: .82; }
.hero-title {
  margin: 0;
  font: 500 clamp(58px, 7vw, 112px)/.88 var(--serif);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-title em { font-weight: 400; color: #d8c48d; }
.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 13px 21px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  backdrop-filter: blur(8px);
  transition: background .35s ease, color .35s ease, transform .35s var(--ease);
}
.pill-button:hover { background: var(--cream); color: var(--ink); transform: translateY(-3px); }
.scroll-cue { display: inline-flex; gap: 12px; align-items: center; }
.scroll-cue i { animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 50% { transform: translateY(6px); } }

/* PAGE 2 */
.about-panel {
  display: grid;
  grid-template-columns: minmax(140px,.55fr) minmax(340px,.95fr) minmax(420px,1.35fr) 80px;
  align-items: center;
  gap: clamp(26px,4vw,72px);
  padding: calc(var(--header-h) + 50px) clamp(30px,6vw,92px) 56px;
}
.page-number {
  align-self: start;
  padding-top: 18px;
  font: 500 18px/1 var(--serif);
}
.about-copy { align-self: center; max-width: 520px; }
.about-title {
  margin: 20px 0 30px;
  font: 500 clamp(58px,5.7vw,96px)/.72 var(--serif);
  letter-spacing: -.045em;
}
.about-body {
  max-width: 430px;
  margin: 0;
  color: #5f5c52;
  font: 400 clamp(18px,1.55vw,24px)/1.38 var(--serif);
}
.underline-link {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
}
.underline-link span { transition: transform .3s var(--ease); }
.underline-link:hover span { transform: translateX(8px); }
.about-art { margin: 0; align-self: center; perspective: 900px; }
.image-reveal {
  overflow: hidden;
  border: 1px solid rgba(21,21,15,.16);
  box-shadow: 0 18px 50px rgba(71,58,28,.06);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(.7,0,.2,1) .15s;
}
.about-art.is-visible .image-reveal { clip-path: inset(0); }
.about-art img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  filter: sepia(.25) saturate(.65) contrast(.8);
  opacity: .64;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}
.about-art.is-visible img { transform: scale(1); }
.about-art figcaption {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 8px;
  color: #807b6c;
}
.about-margin-note {
  justify-self: end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 8px;
  color: #898476;
}

/* PAGE 3 */
.journal-panel {
  padding: calc(var(--header-h) + 50px) clamp(28px,6vw,92px) 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journal-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px,440px);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}
.journal-title {
  margin: 7px 0 0;
  font: 500 clamp(46px,5vw,78px)/.95 var(--serif);
  letter-spacing: -.035em;
}
.journal-intro {
  margin: 0;
  color: #6f6b5f;
  font: 400 18px/1.45 var(--serif);
}
.journal-feature { border-top: 1px solid var(--ink); padding-top: 14px; }
.feature-image {
  position: relative;
  display: block;
  height: clamp(230px,35vh,390px);
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .7s ease;
}
.feature-image:hover img { transform: scale(1.035); filter: saturate(.85) contrast(1.03); }
.image-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  background: rgba(246,241,227,.86);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
}
.hover-orbit {
  position: absolute;
  left: var(--orbit-x, 50%);
  top: var(--orbit-y, 50%);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20,20,15,.82);
  color: white;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.7);
  transition: opacity .25s ease, transform .25s var(--ease);
  pointer-events: none;
}
.feature-image:hover .hover-orbit { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.feature-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  padding: 18px 0 24px;
}
.article-tag { color: #726d5f; }
.feature-details h3 {
  margin: 7px 0 4px;
  font: 500 clamp(26px,3.2vw,48px)/1 var(--serif);
  letter-spacing: -.025em;
}
.feature-details p {
  max-width: 680px;
  margin: 0;
  color: #6c685d;
  font: 400 17px/1.45 var(--serif);
}
.feature-side {
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 8px;
}
.circle-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}
.circle-link:hover { transform: rotate(45deg); background: var(--ink); color: var(--cream); }
.journal-row {
  display: grid;
  grid-template-columns: 170px minmax(280px,.8fr) 1fr 44px;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journal-row > div { display: flex; gap: 34px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.journal-row > a:not(.row-arrow) { font: 500 28px/1 var(--serif); }
.journal-row p { margin: 0; color: #6d695d; font: 400 16px/1.4 var(--serif); }
.row-arrow { font-size: 24px; transition: transform .3s var(--ease); }
.row-arrow:hover { transform: translate(5px,-5px); }

/* PAGE 4 */
.closing-panel {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 100svh;
  color: var(--cream);
  background: #11120e;
}
.closing-photo { position: relative; overflow: hidden; }
.closing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.48));
}
.closing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.74);
  transform: scale(1.06);
  transition: transform 1.2s var(--ease);
}
.closing-panel.is-current .closing-photo img { transform: scale(1); }
.closing-photo > span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 8px;
}
.closing-copy {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: center;
  gap: 56px;
  padding: calc(var(--header-h) + 54px) clamp(40px,7vw,110px) 36px;
}
.closing-title {
  margin: 16px 0 0;
  font: 500 clamp(64px,7.2vw,118px)/.78 var(--serif);
  letter-spacing: -.05em;
}
.closing-title em { color: #d6c187; font-weight: 400; }
.closing-text { max-width: 570px; align-self: end; }
.closing-text > p { margin: 0 0 28px; color: rgba(250,247,238,.7); font: 400 18px/1.45 var(--serif); }
.closing-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 58px 20px 0;
  border-top: 1px solid rgba(255,255,255,.23);
  border-bottom: 1px solid rgba(255,255,255,.23);
  transition: padding-left .35s var(--ease), background .35s ease;
}
.closing-feature:hover { padding-left: 16px; background: rgba(255,255,255,.045); }
.closing-feature small { grid-column: 1; text-transform: uppercase; letter-spacing: .16em; font-size: 8px; opacity: .65; }
.closing-feature strong { grid-column: 1; margin-top: 5px; font: 500 32px/1 var(--serif); }
.closing-feature i { grid-column: 2; grid-row: 1 / 3; font-size: 25px; font-style: normal; }
.email-link { display: inline-flex; gap: 10px; margin-top: 26px; font-size: 11px; letter-spacing: .1em; }
.closing-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 8px;
}
.closing-footer div { display: flex; gap: 28px; }

/* PAGE 5 */
.featured-panel {
  padding: calc(var(--header-h) + 58px) clamp(30px,6vw,88px) 80px;
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  min-height: 100svh;
  align-items: center;
}
.featured-stage { max-width: 980px; align-self: center; }
.featured-title-link { display: block; }
.featured-title {
  margin: 14px 0 28px;
  font: 500 clamp(76px,8.8vw,148px)/.66 var(--serif);
  letter-spacing: -.065em;
}
.line-mask { display: block; overflow: hidden; padding-bottom: .08em; }
.line-mask > span {
  display: block;
  transform: translateY(115%) rotate(2deg);
  transition: transform 1.05s cubic-bezier(.7,0,.18,1);
}
.featured-panel.is-current .line-mask > span { transform: none; }
.featured-panel.is-current .line-mask:nth-child(2) > span { transition-delay: .09s; }
.featured-panel.is-current .line-mask:nth-child(3) > span { transition-delay: .18s; }
.featured-bottom {
  display: grid;
  grid-template-columns: minmax(360px,1fr) 180px;
  gap: 70px;
  align-items: end;
}
.featured-bottom > p { margin: 0; color: #6d695e; font: 400 clamp(20px,2vw,30px)/1.35 var(--serif); }
.featured-bottom > div { display: grid; gap: 4px; text-transform: uppercase; letter-spacing: .14em; font-size: 8px; }
.featured-open {
  justify-self: end;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 8px;
}
.featured-open i { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.featured-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8.5vh;
  background: linear-gradient(90deg,#b59c60,#d2c08d,#a98d51);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(.7,0,.2,1) .25s;
}
.featured-panel.is-current .featured-band { transform: scaleX(1); }

@media (max-width: 1020px) {
  .about-panel { grid-template-columns: 70px 1fr 1.08fr; }
  .about-margin-note { display: none; }
  .about-title { font-size: clamp(54px,7vw,74px); }
  .featured-panel { grid-template-columns: 70px 1fr; }
  .featured-open { position: absolute; right: 32px; bottom: 85px; }
  .featured-bottom { grid-template-columns: 1fr 150px; gap: 30px; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  html { scroll-snap-type: y proximity; }
  .cursor-dot,.cursor-ring,.panel-dots { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .desktop-nav,.header-index { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 38px;
    height: 38px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { display: block; height: 1px; background: currentColor; transition: transform .3s 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); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 170;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--cream);
    background: rgba(15,15,12,.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu a { font: 500 48px/1 var(--serif); }
  .panel { min-height: 100svh; }
  .hero-topline { top: calc(var(--header-h) + 24px); font-size: 7px; }
  .hero-content { left: 24px; right: 24px; top: 50%; }
  .hero-title { font-size: clamp(52px,16vw,78px); line-height: .9; }
  .hero-footer { bottom: 22px; font-size: 7px; }
  .hero-footer > span:first-child { display: none; }
  .hero-footer { justify-content: flex-end; }
  .ambient-light { width: 90vw; height: 90vw; }

  .about-panel {
    min-height: auto;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 14px;
    padding: calc(var(--header-h) + 36px) 22px 52px;
  }
  .page-number { grid-column: 1; grid-row: 1 / 3; padding-top: 5px; font-size: 15px; }
  .about-copy { grid-column: 2; }
  .about-title { margin: 13px 0 22px; font-size: clamp(53px,15vw,72px); line-height: .74; }
  .about-body { font-size: 18px; line-height: 1.42; }
  .about-art { grid-column: 2; margin-top: 34px; }
  .about-art img { aspect-ratio: 1.2; }

  .journal-panel { min-height: auto; padding: calc(var(--header-h) + 36px) 22px 48px; }
  .journal-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
  .journal-title { font-size: 58px; }
  .journal-intro { font-size: 17px; }
  .feature-image { height: 230px; }
  .feature-details { grid-template-columns: 1fr; gap: 14px; }
  .feature-details h3 { font-size: 34px; }
  .feature-side { justify-content: space-between; }
  .journal-row { grid-template-columns: 1fr 42px; gap: 10px; }
  .journal-row > div { grid-column: 1; }
  .journal-row > a:not(.row-arrow) { grid-column: 1; font-size: 30px; }
  .journal-row p { grid-column: 1; }
  .row-arrow { grid-column: 2; grid-row: 1 / 4; align-self: center; }

  .closing-panel { min-height: auto; grid-template-columns: 1fr; }
  .closing-photo { height: 43svh; min-height: 320px; }
  .closing-copy { min-height: 75svh; padding: 48px 24px 26px; gap: 38px; }
  .closing-title { font-size: clamp(66px,19vw,92px); }
  .closing-text > p { font-size: 17px; }
  .closing-footer { font-size: 7px; }

  .featured-panel {
    min-height: 100svh;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: calc(var(--header-h) + 34px) 22px 72px;
  }
  .featured-stage { grid-column: 2; }
  .featured-title { font-size: clamp(61px,18vw,82px); line-height: .69; margin: 10px 0 24px; }
  .featured-bottom { grid-template-columns: 1fr; gap: 20px; }
  .featured-bottom > p { font-size: 22px; }
  .featured-bottom > div { grid-auto-flow: column; justify-content: start; gap: 12px; font-size: 7px; }
  .featured-open { right: 22px; bottom: 78px; }
  .featured-open span { display: none; }
  .featured-band { height: 6vh; }
}

@media (max-width: 380px) {
  .wordmark { font-size: 10px; }
  .wordmark-mark { width: 28px; height: 28px; }
  .hero-title { font-size: 51px; }
  .about-title { font-size: 50px; }
  .closing-title { font-size: 64px; }
  .featured-title { font-size: 58px; }
}

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

/* MOBILE CENTERING & SAFE-VIEWPORT PASS */
.featured-band {
  background: #2f261f;
}

@media (max-width: 760px) {
  html,
  body,
  main,
  .panel {
    width: 100%;
    max-width: 100vw;
  }

  html,
  body {
    overflow-x: clip;
  }

  .panel {
    margin-inline: auto;
    overflow-x: clip;
  }

  .panel > *,
  .about-copy,
  .about-art,
  .journal-head,
  .journal-feature,
  .journal-row,
  .closing-copy,
  .closing-text,
  .featured-stage,
  .featured-bottom {
    min-width: 0;
    max-width: 100%;
  }

  /* Page 02: remove the offset gutter and center both copy and artwork. */
  .about-panel {
    position: relative;
    width: 100%;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(110px, 1fr);
    align-content: start;
    gap: 0;
    padding: calc(var(--header-h) + 40px) clamp(20px, 5.5vw, 24px) 24px;
  }

  .about-panel .page-number {
    position: absolute;
    z-index: 2;
    top: calc(var(--header-h) + 18px);
    left: clamp(20px, 5.5vw, 24px);
    width: auto;
    padding: 0;
    font-size: 13px;
  }

  .about-copy {
    grid-column: 1;
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .about-title {
    margin: 10px 0 18px;
    font-size: clamp(46px, 13.8vw, 58px);
    line-height: .75;
    letter-spacing: -.047em;
  }

  .about-body {
    max-width: none;
    font-size: clamp(15px, 4.25vw, 18px);
    line-height: 1.34;
  }

  .about-panel .underline-link {
    margin-top: 21px;
  }

  .about-art {
    grid-column: 1;
    width: min(100%, 440px);
    margin: 24px auto 0;
    align-self: end;
  }

  .about-art .image-reveal {
    width: 100%;
    height: clamp(118px, 18svh, 168px);
    display: grid;
    place-items: center;
    background: rgba(238, 232, 216, .72);
  }

  .about-art img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    transform-origin: center;
  }

  .about-art figcaption {
    text-align: center;
    font-size: 6.5px;
  }

  /* Page 03: equal side gutters and stable centered media. */
  .journal-panel {
    width: 100%;
    padding-inline: clamp(20px, 5.5vw, 24px);
  }

  .journal-head,
  .journal-feature,
  .journal-row {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .feature-image img {
    object-position: center center;
  }

  /* Page 04: prevent transformed photography from suggesting horizontal overflow. */
  .closing-photo,
  .closing-copy {
    width: 100%;
    max-width: 100%;
  }

  .closing-photo img {
    transform-origin: center;
  }

  /* Page 05: remove the left grid offset on mobile and use balanced gutters. */
  .featured-panel {
    position: relative;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    padding-inline: clamp(20px, 5.5vw, 24px);
  }

  .featured-panel .page-number {
    position: absolute;
    top: calc(var(--header-h) + 18px);
    left: clamp(20px, 5.5vw, 24px);
    width: auto;
    padding: 0;
  }

  .featured-stage {
    grid-column: 1;
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .featured-open {
    right: clamp(20px, 5.5vw, 24px);
  }

  .featured-band {
    background: #2f261f;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .about-panel {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 14px;
  }

  .about-panel .page-number {
    top: calc(var(--header-h) + 10px);
    font-size: 11px;
  }

  .about-title {
    margin: 4px 0 9px;
    font-size: clamp(35px, 11.4vw, 43px);
    line-height: .72;
  }

  .about-body {
    font-size: clamp(12px, 3.65vw, 14px);
    line-height: 1.25;
  }

  .about-panel .underline-link {
    margin-top: 10px;
    padding-bottom: 5px;
    font-size: 7px;
  }

  .about-art {
    margin-top: 10px;
  }

  .about-art .image-reveal {
    height: clamp(70px, 14svh, 96px);
  }

  .about-art figcaption {
    margin-top: 5px;
    font-size: 5.5px;
  }
}

@media (max-width: 760px) {
  .about-panel {
    height: 100svh;
    overflow-y: hidden;
    padding-bottom: 18px;
  }

  .about-art {
    margin-top: 18px;
  }

  .about-art .image-reveal {
    height: clamp(112px, 17svh, 154px);
  }
}

@media (max-width: 760px) {
  .about-panel {
    grid-template-rows: auto auto;
    align-content: start;
    padding-top: calc(var(--header-h) + 28px);
  }

  .about-panel .page-number,
  .featured-panel .page-number {
    display: none;
  }

  .about-art {
    align-self: start;
  }
}
