:root {
  --paper: #f4ecdd;
  --paper-light: #fbf7ef;
  --ink: #293329;
  --olive: #555b37;
  --terracotta: #b6532c;
  --navy: #183047;
  --gold: #bf9251;
  --sand: #d8c5a5;
  --line: rgba(84, 71, 48, 0.2);
  --shadow: 0 28px 70px rgba(51, 45, 34, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.7), transparent 25rem),
    repeating-linear-gradient(93deg, rgba(92, 74, 44, 0.018) 0 1px, transparent 1px 5px),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0.85rem clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.scrolled {
  min-height: 72px;
  background: rgba(244, 236, 221, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(24, 48, 71, 0.25);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 5px, rgba(190, 146, 81, 0.55) 6px 7px);
}

.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-mark::before { inset: 9px; background: var(--navy); }
.brand-mark::after { inset: 17px; background: var(--paper-light); }

.brand-copy { display: grid; line-height: 1.12; }

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--olive);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.25rem); }

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transition: right 180ms ease;
}

.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.nav-cta {
  padding: 0.7rem 1.05rem;
  color: var(--paper-light);
  border-radius: 999px;
  background: var(--olive);
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  min-height: 100svh;
  padding: 9rem clamp(1.4rem, 7vw, 8rem) 5rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 54%;
  z-index: -2;
  background: linear-gradient(115deg, rgba(85, 91, 55, 0.92), rgba(41, 51, 41, 0.96)), var(--olive);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-copy { max-width: 700px; }

.eyebrow, .section-kicker {
  margin: 0 0 1.4rem;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 0.85rem; }
.eyebrow span { display: block; width: 44px; height: 1px; background: currentColor; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.6rem, 6.5vw, 7.5rem);
  letter-spacing: -0.055em;
}

h1 em, h2 em { color: var(--terracotta); font-weight: 400; }

.hero-intro {
  max-width: 590px;
  margin-bottom: 2.2rem;
  color: #525647;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem 1.7rem; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-primary {
  color: white;
  background: var(--terracotta);
  box-shadow: 0 12px 30px rgba(182, 83, 44, 0.23);
}

.button-primary:hover, .button-primary:focus-visible {
  background: #9f4523;
  box-shadow: 0 16px 34px rgba(182, 83, 44, 0.31);
}

.text-link {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--terracotta);
  transition: transform 180ms ease;
}

.text-link:hover span { transform: translateX(5px); }

.opening-note {
  margin: 2.7rem 0 0;
  color: var(--olive);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opening-note span { margin-right: 0.5rem; color: var(--terracotta); }

.hero-art {
  position: relative;
  display: grid;
  width: min(38vw, 620px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.sun-art {
  position: relative;
  display: grid;
  width: 78%;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(244, 236, 221, 0.52);
  border-radius: 50%;
}

.orbit { position: absolute; border-radius: 50%; }

.orbit-outer {
  inset: 3%;
  background: repeating-conic-gradient(from 7deg, var(--gold) 0deg 4deg, transparent 4deg 15deg);
  mask: radial-gradient(transparent 0 86%, black 87%);
}

.orbit-middle { inset: 17%; border: 18px dotted rgba(244, 236, 221, 0.78); }
.orbit-inner { inset: 31%; border: 9px dotted var(--terracotta); }

.sun-centre {
  display: grid;
  width: 31%;
  aspect-ratio: 1;
  place-items: center;
  border: 14px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 7px var(--paper), 0 0 0 9px rgba(191, 146, 81, 0.72);
}

.sun-centre span { width: 32%; aspect-ratio: 1; border-radius: 50%; background: var(--paper-light); }
.halo { position: absolute; border-radius: 50%; opacity: 0.24; }
.halo-large { inset: -4%; border: 1px solid var(--paper); }
.halo-small { inset: 9%; border: 1px dashed var(--gold); }

.art-caption {
  position: absolute;
  right: -3%;
  bottom: 4%;
  padding: 0.45rem 0.75rem;
  color: var(--paper-light);
  border-top: 1px solid rgba(244, 236, 221, 0.55);
  border-bottom: 1px solid rgba(244, 236, 221, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.botanical {
  position: absolute;
  top: 13%;
  left: -25px;
  z-index: -1;
  width: 200px;
  height: 310px;
  border-left: 2px solid rgba(85, 91, 55, 0.45);
  border-radius: 50%;
  transform: rotate(-26deg);
}

.botanical i {
  position: absolute;
  width: 82px;
  height: 38px;
  border: 1px solid rgba(85, 91, 55, 0.24);
  border-radius: 100% 0 100% 0;
  background: rgba(85, 91, 55, 0.18);
}

.botanical i:nth-child(1) { top: 10px; left: 2px; transform: rotate(13deg); }
.botanical i:nth-child(2) { top: 70px; left: 52px; transform: scaleX(-1) rotate(14deg); }
.botanical i:nth-child(3) { top: 135px; left: -9px; transform: rotate(15deg); }
.botanical i:nth-child(4) { top: 195px; left: 42px; transform: scaleX(-1) rotate(12deg); }
.botanical i:nth-child(5) { top: 258px; left: 2px; transform: rotate(15deg); }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(244, 236, 221, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scroll-cue span { width: 38px; height: 1px; background: currentColor; }
.section-shell { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.story { padding: clamp(6rem, 11vw, 10rem) 0 clamp(5rem, 9vw, 8rem); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: 5rem;
}

h2 { margin-bottom: 1.3rem; font-size: clamp(3rem, 5.6vw, 6rem); letter-spacing: -0.05em; }
.story-copy { padding-top: 0.5rem; color: #54574c; }

.story-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.52rem);
  line-height: 1.55;
}

.values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.7rem);
  padding: 1.4rem 2rem;
  color: var(--olive);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-style: italic;
}

.values i { width: 7px; aspect-ratio: 1; border-radius: 50%; background: var(--terracotta); }

.formats {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper-light);
  border-top: 1px solid rgba(191, 146, 81, 0.23);
  border-bottom: 1px solid rgba(191, 146, 81, 0.23);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-heading h2, .section-heading .section-kicker { margin-bottom: 0; }

.section-heading > p {
  max-width: 370px;
  margin-bottom: 0.5rem;
  color: #5c5f54;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.format-card {
  position: relative;
  min-height: 430px;
  padding: 2.1rem;
  border: 1px solid rgba(91, 75, 47, 0.2);
  border-radius: 160px 160px 12px 12px;
  background: rgba(244, 236, 221, 0.48);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.format-card:hover {
  transform: translateY(-7px);
  border-color: rgba(182, 83, 44, 0.42);
  box-shadow: var(--shadow);
}

.format-card.featured { color: var(--paper-light); background: var(--olive); }

.format-number {
  position: absolute;
  top: 1.7rem;
  right: 2rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .format-number { color: var(--sand); }

.format-icon {
  position: relative;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  margin: 2rem auto 1.7rem;
  place-items: center;
  border: 1px solid rgba(85, 91, 55, 0.18);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 7px, rgba(191, 146, 81, 0.14) 8px 9px), var(--paper-light);
}

.download-icon span { width: 36px; height: 42px; border-bottom: 4px solid var(--olive); }

.download-icon span::before, .download-icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--olive);
  transform: translateX(-50%);
}

.download-icon span::before { top: 43px; width: 4px; height: 37px; }
.download-icon span::after { top: 67px; width: 17px; height: 17px; clip-path: polygon(0 0, 100% 0, 50% 100%); }

.print-icon span {
  position: relative;
  width: 58px;
  height: 44px;
  border: 4px solid var(--terracotta);
  border-radius: 8px;
}

.print-icon span::before {
  content: "";
  position: absolute;
  top: -28px;
  right: 8px;
  left: 8px;
  height: 28px;
  border: 4px solid var(--terracotta);
  background: var(--paper-light);
}

.print-icon span::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: -22px;
  left: 7px;
  height: 28px;
  border: 3px solid var(--terracotta);
  background: var(--paper-light);
}

.frame-icon span {
  display: grid;
  width: 64px;
  aspect-ratio: 0.8;
  place-items: center;
  color: var(--terracotta);
  border: 8px double var(--olive);
  font-size: 1.2rem;
}

.format-card h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 400;
}

.format-card p { max-width: 280px; margin: 0 auto 1.5rem; color: #585b51; font-size: 0.94rem; }
.format-card.featured p { color: rgba(251, 247, 239, 0.78); }

.format-note {
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .format-note { color: var(--sand); }

.interlude {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--navy);
  text-align: center;
}

.interlude::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(-45deg, transparent 0 24px, var(--paper) 25px 26px);
}

.interlude-copy { position: relative; z-index: 1; display: grid; gap: 1rem; padding: 6rem 1.5rem; }

.interlude-copy span {
  color: var(--sand);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.interlude-copy strong {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 1.02;
}

.interlude-motif {
  position: absolute;
  width: min(32vw, 450px);
  aspect-ratio: 1;
  border: 45px dotted var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.motif-left { bottom: -45%; left: -18%; }
.motif-right { top: -53%; right: -20%; border-color: var(--terracotta); }
.journey { padding: clamp(6rem, 10vw, 9rem) 0; }

.section-heading.centred {
  display: grid;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-heading.centred .section-kicker { margin-bottom: 1.2rem; }
.section-heading.centred > p { max-width: 600px; margin: 0.5rem auto 0; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.2rem 2.1rem;
  border-right: 1px solid var(--line);
}

.journey-steps li:last-child { border-right: 0; }

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.journey-steps h3 { margin-bottom: 0.55rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.journey-steps p { margin-bottom: 0; color: #5c6055; font-size: 0.9rem; }

.artist-note { display: grid; grid-template-columns: 0.75fr 1fr; min-height: 680px; background: var(--paper-light); }

.artist-emblem {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--olive);
}

.artist-emblem::before, .artist-emblem::after, .emblem-dot {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.artist-emblem::before { width: min(46vw, 560px); aspect-ratio: 1; border: 32px dotted rgba(244, 236, 221, 0.82); }
.artist-emblem::after { width: min(30vw, 360px); aspect-ratio: 1; border: 20px dotted var(--terracotta); }

.emblem-dot {
  width: min(16vw, 190px);
  aspect-ratio: 1;
  background: var(--navy);
  box-shadow: 0 0 0 20px var(--sand), 0 0 0 24px var(--paper-light);
}

.artist-copy { align-self: center; max-width: 650px; padding: clamp(4rem, 8vw, 8rem); }

.artist-copy blockquote {
  margin: 0 0 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.3;
}

.signature {
  display: block;
  width: min(100%, 470px);
  height: auto;
  transform: rotate(-3deg);
  transform-origin: left;
}

.signature-caption {
  margin: 1rem 0 0;
  color: var(--olive);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opening { padding: clamp(5rem, 9vw, 8rem) 0; }

.opening-card {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 2rem;
  color: var(--paper-light);
  border-radius: 4px;
  background: var(--olive);
  text-align: center;
  box-shadow: var(--shadow);
}

.opening-card::before, .opening-card::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border: 28px dotted rgba(244, 236, 221, 0.16);
  border-radius: 50%;
}

.opening-card::before { bottom: -130px; left: -120px; }
.opening-card::after { top: -120px; right: -110px; }
.opening-card .section-kicker { color: var(--sand); }
.opening-card h2 { margin-bottom: 1.5rem; }
.opening-card h2 em { color: var(--sand); }

.opening-card > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(251, 247, 239, 0.82);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.opening-card .button { margin-bottom: 1.5rem; }

.domain {
  display: block;
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mini-motif {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  margin: 0 auto 1.7rem;
  place-items: center;
  border: 8px dotted var(--gold);
  border-radius: 50%;
}

.mini-motif span { width: 18px; aspect-ratio: 1; border-radius: 50%; background: var(--navy); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem clamp(1.4rem, 5vw, 5rem);
  color: rgba(251, 247, 239, 0.7);
  background: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }

.footer-brand {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 0.8fr; gap: 2rem; padding-inline: 3rem; }
  .hero-art { width: min(42vw, 520px); }
  .story-grid { gap: 4rem; }
  .format-card { padding-inline: 1.3rem; }
  .journey-steps li { grid-template-columns: 1fr; padding-inline: 1.4rem; }
  .artist-copy { padding: 4rem; }
}

@media (max-width: 780px) {
  .site-header { min-height: 74px; padding-inline: 1.2rem; }
  .brand-copy small { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 0;
    border-radius: 50%;
    background: var(--paper-light);
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.7rem;
    color: var(--paper-light);
    background: rgba(41, 51, 41, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-size: 0.95rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 9rem 1.5rem 5rem;
    text-align: center;
  }

  .hero::before {
    inset: auto 0 0;
    height: 43%;
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-copy { justify-self: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-art { width: min(82vw, 520px); margin-top: 3rem; }
  .scroll-cue, .botanical { display: none; }
  .story-grid, .format-grid, .journey-steps, .artist-note { grid-template-columns: 1fr; }
  .story-grid { gap: 1.5rem; padding-bottom: 3.5rem; }
  .values { flex-direction: column; gap: 0.7rem; }
  .section-heading { display: grid; }
  .format-grid { max-width: 520px; margin-inline: auto; }
  .format-card { min-height: 410px; }
  .journey-steps { gap: 1.5rem; }

  .journey-steps li {
    grid-template-columns: auto 1fr;
    padding: 0 0 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-steps li:last-child { border-bottom: 0; }
  .artist-emblem { min-height: 420px; }
  .artist-emblem::before { width: 430px; }
  .artist-emblem::after { width: 285px; }
  .emblem-dot { width: 140px; }
  .artist-copy { max-width: 100%; padding: 4.5rem 2rem; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer p:last-child { justify-self: center; }
}

@media (max-width: 460px) {
  h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .opening-note { font-size: 0.65rem; }
  .section-shell { width: min(100% - 2rem, 1180px); }
  .format-card { border-radius: 120px 120px 12px 12px; }
  .interlude-copy strong { font-size: 2.75rem; }
  .artist-copy { padding-inline: 1.3rem; }
}

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