:root {
  --ivory: #f4efe6;
  --ink: #111111;
  --blue: #1647d8;
  --red: #e6422e;
  --sun: #f3b51b;
  --emerald: #075e54;
  --line: rgba(17, 17, 17, 0.2);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section-y: clamp(5.5rem, 12vw, 11rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  transform: none;
}

.section-pad {
  padding: var(--section-y) var(--gutter);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1.15rem var(--gutter);
  color: #fff;
  mix-blend-mode: difference;
}

.wordmark {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark span:last-child {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.5rem);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 260ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070b0a;
  color: var(--ivory);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  height: 58%;
  background: linear-gradient(105deg, rgba(3, 8, 7, 0.22), transparent 60%);
  content: "";
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  margin: 0;
  animation: portrait-reveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: var(--gutter);
  width: 62%;
}

.hero-kicker {
  margin: 0 0 1.5rem;
  font-size: clamp(0.65rem, 0.8vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: copy-in 800ms 500ms both;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 9.3vw, 9.8rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  animation: copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 span:nth-child(1) { animation-delay: 620ms; }
.hero h1 span:nth-child(2) { margin-left: 7%; animation-delay: 710ms; }
.hero h1 span:nth-child(3) { margin-left: 1%; animation-delay: 800ms; }

.hero-line {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 5.6rem;
  left: var(--gutter);
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-transform: uppercase;
  animation: copy-in 700ms 980ms both;
}

.hero-credit {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 1.1rem;
  bottom: auto;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}

.hero-line .rooted {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-line .in {
  font-family: var(--display);
  font-style: italic;
}

.hero-line .rhythm {
  color: var(--sun);
  font-family: var(--display);
  font-size: 1.45em;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: copy-in 600ms 1150ms both;
}

.hero-scroll i {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-style: normal;
}

@keyframes portrait-reveal {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(0.35em); }
  to { opacity: 1; transform: translateY(0); }
}

.section-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-marker--light {
  border-color: rgba(255, 255, 255, 0.34);
}

.statement {
  background: var(--ivory);
}

.statement-title {
  margin: clamp(4rem, 9vw, 8rem) 0 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 9.5vw, 10rem);
  font-weight: 400;
  line-height: 0.81;
  letter-spacing: -0.055em;
}

.statement-title span,
.statement-title em {
  display: block;
}

.statement-title span:nth-child(2) {
  margin-left: 14%;
}

.statement-title em {
  margin: 0.08em 0 0.02em 43%;
  color: var(--red);
  font-weight: 400;
}

.statement-title span:last-child {
  margin-left: 23%;
}

.statement-copy {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 8vw, 9rem);
  max-width: 72rem;
  margin: clamp(5rem, 10vw, 10rem) 0 0 auto;
}

.statement-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.statement-copy .dropcap {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
}

.statement-copy .dropcap::first-letter {
  float: left;
  margin: -0.07em 0.08em -0.18em 0;
  color: var(--blue);
  font-size: 4.4em;
  line-height: 0.84;
}

.now-section {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 100vh;
  background: var(--red);
  color: #fff;
}

.now-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.now-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(1.08);
}

.now-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(230, 66, 46, 0.82));
  content: "";
}

.image-credit {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-heading {
  margin: clamp(3.5rem, 6vw, 6rem) 0 2.5rem;
}

.now-heading h2 {
  max-width: 7ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.tour-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tour-name strong {
  color: var(--sun);
}

.now-intro {
  max-width: 38rem;
  margin: 0 0 3rem;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.tour-list {
  border-top: 1px solid var(--line);
}

.tour-list--compact {
  margin-bottom: 2.5rem;
  border-color: rgba(255, 255, 255, 0.32);
}

.tour-row {
  display: grid;
  grid-template-columns: 6rem minmax(12rem, 1.25fr) 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.tour-list--compact .tour-row {
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  border-color: rgba(255, 255, 255, 0.25);
}

.tour-list--compact .tour-context {
  display: none;
}

.tour-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-date span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.tour-date strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.tour-place h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 500;
}

.tour-place p,
.tour-context {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  opacity: 0.72;
}

.tour-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.tour-badge {
  padding: 0.35rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  min-width: 15rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.pill-button:hover {
  transform: translateY(-3px);
}

.pill-button--sun { background: var(--sun); color: var(--ink); }
.pill-button--ivory { background: var(--ivory); color: var(--ink); }

.credits-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.credits-section::before {
  position: absolute;
  top: 17%;
  right: -8vw;
  width: 27vw;
  height: 27vw;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.credits-intro {
  margin: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 10rem);
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 10.5rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
}

.credits-intro span,
.credits-intro em {
  display: block;
}

.credits-intro span:nth-child(2) { margin-left: 16%; }
.credits-intro em { margin-left: 43%; color: var(--sun); font-weight: 400; }

.credit-cloud {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12em 0.3em;
  text-align: center;
}

.credit {
  display: inline-block;
  font-family: var(--display);
  line-height: 0.92;
  white-space: nowrap;
}

.credit::after {
  margin-left: 0.25em;
  color: var(--red);
  content: "/";
}

.credit--1 { font-size: clamp(2.5rem, 6vw, 6.6rem); }
.credit--2 { color: var(--sun); font-size: clamp(1.8rem, 3.8vw, 4.4rem); font-style: italic; }
.credit--3 { font-size: clamp(2.1rem, 4.8vw, 5.3rem); }
.credit--4 { color: #88a7ff; font-size: clamp(1.6rem, 3.2vw, 3.8rem); }
.credit--5 { font-size: clamp(2.2rem, 5.5vw, 5.8rem); }

.fact-note {
  max-width: 38rem;
  margin: clamp(5rem, 10vw, 10rem) 0 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  opacity: 0.68;
}

.story-chapter {
  background: var(--ivory);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(3rem, 10vw, 10rem);
  margin-top: clamp(5rem, 10vw, 9rem);
}

.chapter-title-wrap h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.chapter-title-wrap h2 em {
  color: var(--blue);
  font-weight: 400;
}

.chapter-body {
  padding-top: 4rem;
}

.chapter-body p {
  max-width: 38rem;
  margin: 0 0 1.6rem;
}

.chapter-body .lead {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.chapter-body blockquote {
  margin: 4rem 0 0;
  padding: 1.6rem 0 0 2rem;
  border-top: 1px solid var(--ink);
  border-left: 0.5rem solid var(--red);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.05;
}

.story-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  max-width: 74rem;
  margin: clamp(6rem, 14vw, 14rem) auto 0;
}

.portrait-frame {
  position: relative;
  height: min(78vw, 58rem);
  overflow: hidden;
  background: var(--red);
  clip-path: polygon(10% 0, 100% 0, 100% 92%, 0 100%, 0 8%);
}

.portrait-frame::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18%;
  background: var(--sun);
  mix-blend-mode: multiply;
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.story-portrait figcaption {
  display: flex;
  padding-bottom: 4rem;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.legacy-section {
  background: var(--sun);
}

.legacy-title-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 4rem;
  margin: clamp(4rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 9rem);
}

.legacy-title-wrap h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10.5vw, 11rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.legacy-title-wrap h2 span,
.legacy-title-wrap h2 em { display: block; }
.legacy-title-wrap h2 em { margin-left: 10%; color: var(--red); font-weight: 400; }
.legacy-title-wrap p { max-width: 23rem; margin: 0; font-size: 1.05rem; }

.generation-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.generation-line::before {
  position: absolute;
  top: 2.4rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(17, 17, 17, 0.4);
  content: "";
}

.generation-line article {
  position: relative;
  padding-top: 6rem;
}

.generation-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
}

.generation-line h3 {
  max-width: 12ch;
  margin: 0.5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.generation-line article > p:last-child {
  max-width: 28rem;
  margin: 0;
}

.music-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.music-photo {
  position: absolute;
  inset: 0;
}

.music-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.15) brightness(0.62);
}

.music-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 75%), linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  content: "";
}

.music-overlay {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.music-overlay h2 {
  margin: clamp(5rem, 11vw, 10rem) 0 2rem;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 400;
  line-height: 0.62;
  letter-spacing: -0.07em;
}

.music-overlay h2 em {
  color: var(--sun);
  font-weight: 400;
}

.music-overlay > p {
  max-width: 32rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.music-credit {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.live-section {
  background: var(--ivory);
}

.live-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin: clamp(4rem, 8vw, 8rem) 0;
}

.live-heading h2,
.current-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.075em;
}

.live-heading p {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 0.6rem solid var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-state {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 2rem;
}

.current-section {
  background: #f1c39b;
}

.current-section h2 {
  margin: clamp(4rem, 8vw, 8rem) 0;
  color: var(--red);
}

.news-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card a,
.post-card a {
  display: block;
}

.news-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--red);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.news-card a:hover .news-image img { transform: scale(1.035); }
.news-card h3 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(1.8rem, 2.7vw, 3rem); font-weight: 400; line-height: 1; }

.fashion-break {
  position: relative;
  height: min(70vw, 58rem);
  margin: 0;
  overflow: hidden;
  background: var(--red);
}

.fashion-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(1.04);
}

.fashion-break::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 26%;
  height: 100%;
  background: linear-gradient(165deg, rgba(230, 66, 46, 0.76), rgba(243, 181, 27, 0.16));
  mix-blend-mode: multiply;
  content: "";
}

.fashion-break p {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--red);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 10rem);
  margin-top: clamp(4rem, 9vw, 8rem);
}

.contact-intro h2 {
  margin: 0 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9.2vw, 9rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.055em;
}

.contact-intro h2 em {
  color: var(--sun);
  font-weight: 400;
}

.contact-intro > p {
  max-width: 28rem;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-links a {
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label > span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.contact-form input,
.contact-form select {
  min-height: 3.1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option { color: var(--ink); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--sun); }

.form-status {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-status--success { background: var(--emerald); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 4rem var(--gutter) 2rem;
  background: var(--ink);
  color: #fff;
}

.footer-name {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 0.9;
}

.footer-name strong {
  color: var(--sun);
  font-weight: 400;
  font-style: italic;
}

.footer-social {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-social a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
.footer-legal { grid-column: 1 / -1; margin: 3rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.65rem; opacity: 0.65; }

.content-shell {
  min-height: 70vh;
  padding: 10rem var(--gutter) var(--section-y);
}

.has-reveal .statement-title > *,
.has-reveal .credit,
.has-reveal .generation-line article,
.has-reveal .tour-row,
.has-reveal .chapter-body > *,
.has-reveal .news-card {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 45ms);
}

.has-reveal .statement-title > *.is-revealed,
.has-reveal .credit.is-revealed,
.has-reveal .generation-line article.is-revealed,
.has-reveal .tour-row.is-revealed,
.has-reveal .chapter-body > *.is-revealed,
.has-reveal .news-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.page-intro,
.single-content {
  max-width: 82rem;
  margin: 0 auto;
}

.page-intro h1,
.single-content h1 {
  margin: 0 0 4rem;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.single-hero { margin: 0 0 4rem; }
.prose { max-width: 48rem; font-size: 1.1rem; }
.prose > * + * { margin-top: 1.5em; }
.prose h2,
.prose h3 { font-family: var(--display); font-weight: 400; line-height: 1; }

@media (max-width: 960px) {
  .site-header { mix-blend-mode: normal; background: rgba(17, 17, 17, 0.92); }
  .menu-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 0.8rem; color: #fff; cursor: pointer; }
  .menu-toggle-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
  .menu-toggle-lines { position: relative; display: block; width: 1.7rem; height: 0.9rem; }
  .menu-toggle-lines i { position: absolute; right: 0; left: 0; display: block; height: 1px; background: currentColor; transition: transform 220ms ease, top 220ms ease; }
  .menu-toggle-lines i:first-child { top: 0.2rem; }
  .menu-toggle-lines i:last-child { top: 0.7rem; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { top: 0.45rem; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { top: 0.45rem; transform: rotate(-45deg); }
  .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.1rem; transform: translateY(-105%); padding: 7rem var(--gutter) 3rem; background: var(--red); color: #fff; transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1); }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: clamp(3.5rem, 11vw, 7rem); font-weight: 400; line-height: 0.95; letter-spacing: -0.04em; text-transform: none; }
  .hero-portrait { inset: 0; width: 100%; }
  .hero-copy { top: 11%; width: 72%; }
  .now-section { grid-template-columns: 1fr; }
  .now-image { min-height: 75vh; }
  .chapter-grid,
  .legacy-title-wrap,
  .contact-grid { grid-template-columns: 1fr; }
  .chapter-body { padding-top: 0; }
  .legacy-title-wrap p { margin-left: auto; }
  .generation-line { grid-template-columns: 1fr; }
  .generation-line::before { top: 0; bottom: 0; left: 2.4rem; width: 1px; height: auto; }
  .generation-line article { min-height: 9rem; padding: 0 0 2rem 7rem; }
  .news-grid,
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --section-y: 5.8rem; }
  .site-header { min-height: 4.5rem; }
  .hero { min-height: 100svh; background: #070b0a; }
  .hero::after { display: none; }
  .hero-portrait { inset: 0; width: 100%; height: 100%; }
  .hero-portrait img { object-position: 44% 50%; }
  .hero-copy { top: 5.5rem; width: calc(100% - (2 * var(--gutter))); }
  .hero-kicker { display: none; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6rem); line-height: 0.69; letter-spacing: -0.05em; }
  .hero h1 span:nth-child(2) { margin-left: 5%; }
  .hero h1 span:nth-child(3) { margin-left: 0; }
  .hero-line { right: auto; bottom: 2.8rem; left: var(--gutter); justify-content: flex-start; font-size: 0.9rem; }
  .hero-scroll { right: 2.7rem; bottom: 2.2rem; left: auto; }
  .hero-scroll span { display: none; }
  .hero-credit { top: 50%; right: 0.55rem; display: block; font-size: 0.5rem; }
  .statement-title { font-size: clamp(3.5rem, 17vw, 6rem); }
  .statement-title span:nth-child(2),
  .statement-title span:last-child { margin-left: 0; }
  .statement-title em { margin-left: 20%; }
  .statement-copy { grid-template-columns: 1fr; gap: 2.5rem; }
  .now-image { min-height: 62vh; }
  .now-heading h2 { font-size: clamp(4.5rem, 19vw, 7rem); }
  .tour-row,
  .tour-list--compact .tour-row { grid-template-columns: 4rem 1fr auto; gap: 0.7rem; }
  .tour-context { display: none; }
  .tour-action { flex-direction: column; align-items: flex-end; gap: 0.45rem; }
  .tour-place h3 { font-size: 1rem; }
  .tour-place p { font-size: 0.68rem; }
  .credits-intro { font-size: clamp(4.1rem, 18vw, 6.5rem); }
  .credits-intro span:nth-child(2) { margin-left: 0; }
  .credits-intro em { margin-left: 18%; }
  .credit-cloud { justify-content: flex-start; text-align: left; }
  .chapter-title-wrap h2 { font-size: clamp(5rem, 21vw, 8rem); }
  .story-portrait { grid-template-columns: 1fr; }
  .portrait-frame { height: 130vw; }
  .story-portrait figcaption { flex-direction: row; padding: 0; writing-mode: horizontal-tb; transform: none; }
  .legacy-title-wrap { gap: 2rem; }
  .legacy-title-wrap h2 { font-size: clamp(4.4rem, 18vw, 7rem); }
  .legacy-title-wrap h2 em { margin-left: 0; }
  .music-overlay h2 { font-size: clamp(7rem, 34vw, 12rem); }
  .live-heading { grid-template-columns: 1fr; }
  .live-heading h2,
  .current-section h2 { font-size: clamp(7rem, 35vw, 12rem); }
  .news-grid,
  .post-grid { grid-template-columns: 1fr; }
  .fashion-break { height: 96vw; }
  .fashion-break p { align-items: flex-start; flex-direction: column; gap: 0.3rem; }
  .field-pair { grid-template-columns: 1fr; }
  .contact-intro h2 { font-size: clamp(4.6rem, 19vw, 7rem); }
  .site-footer { grid-template-columns: 1fr; }
  .footer-social { flex-wrap: wrap; }
  .footer-legal { grid-column: auto; }
}

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

/* Phase 2 editorial destinations */

.inner-page {
  min-height: 100vh;
  background: var(--ivory);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-content: end;
  padding-top: clamp(8rem, 14vw, 13rem);
  overflow: hidden;
}

.page-hero h1,
.story-page-hero h1,
.dayglow-hero h1,
.press-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.8rem, 14vw, 14rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.page-hero h1 em,
.story-page-hero h1 em,
.dayglow-hero h1 em,
.press-hero h1 em,
.closing-statement h2 em,
.tour-archive h2 em,
.home-section-heading h2 em,
.home-dayglow h2 em,
.home-current-heading h2 em {
  font-weight: 400;
  text-transform: none;
}

.page-hero-intro {
  max-width: 34rem;
  margin: clamp(3rem, 6vw, 6rem) 0 0 auto;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.page-hero--dark {
  background: var(--ink);
  color: #fff;
}

.page-hero--dark h1 em { color: var(--sun); }

.page-hero--warm {
  background: #f1c39b;
}

.page-hero--warm h1 em { color: var(--red); }

.page-hero--contact {
  background: var(--red);
  color: #fff;
}

.page-hero--contact h1 em { color: var(--sun); }

.page-hero--photo {
  min-height: 100svh;
  align-content: center;
  color: #fff;
  isolation: isolate;
}

.page-hero--photo::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 9, 0.86), rgba(5, 10, 9, 0.08) 70%);
  content: "";
}

.page-hero--photo > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-photo-copy h1 {
  color: var(--ivory);
}

.page-hero--photo .image-credit {
  bottom: 2rem;
}

.home-videos {
  background: var(--ink);
  color: #fff;
}

.home-section-heading,
.home-dayglow-grid,
.home-current-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
  margin: clamp(4rem, 9vw, 8rem) 0;
}

.home-section-heading h2,
.home-dayglow h2,
.home-current-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.5rem, 13vw, 13rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.065em;
}

.home-section-heading h2 em { color: var(--sun); }

.home-section-heading p,
.home-dayglow-grid > div,
.home-current-heading > a {
  max-width: 34rem;
}

.home-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.8fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.home-video-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-launch {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.video-launch:hover .video-thumb img,
.video-launch:focus-visible .video-thumb img {
  transform: scale(1.025);
  opacity: 0.78;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(3.4rem, 6vw, 5.5rem);
  height: clamp(3.4rem, 6vw, 5.5rem);
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.45);
  color: #fff;
  font-size: 0.85rem;
  transition: background 220ms ease, transform 220ms ease;
}

.video-launch:hover .video-play,
.video-launch:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--red);
}

.video-card-copy {
  display: block;
  padding-top: 1rem;
}

.video-card-copy .eyebrow {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--sun);
}

.video-card-copy strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.video-description {
  display: block;
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.video-card--vertical .video-thumb {
  aspect-ratio: 9 / 16;
  max-height: 46rem;
}

.video-card--vertical .video-thumb img {
  object-fit: cover;
}

.home-video-secondary .video-card--vertical .video-thumb {
  aspect-ratio: 16 / 9;
}

.video-library {
  background: var(--ink);
  color: #fff;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.filter-bar button {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--ink);
}

.filter-bar--ink button {
  border-color: rgba(17, 17, 17, 0.35);
}

.featured-video-wrap {
  margin-bottom: clamp(5rem, 10vw, 10rem);
}

.featured-video-wrap > .eyebrow { color: var(--sun); }

.video-card--featured .video-card-copy strong {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 5rem) 1.5rem;
}

.video-grid .video-card {
  grid-column: span 6;
}

.video-grid .video-card:nth-child(3n + 1) {
  grid-column: span 7;
}

.video-grid .video-card:nth-child(3n + 2) {
  grid-column: span 5;
  align-self: end;
}

.video-grid .video-card--vertical {
  grid-column: span 4;
}

.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(78rem, 100%);
  color: #fff;
}

.video-modal-close {
  display: block;
  margin: 0 0 1rem auto;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-frame.is-vertical {
  width: min(28rem, 75vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-dialog h2 {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 400;
}

.modal-open { overflow: hidden; }

.closing-statement {
  min-height: 75vh;
}

.closing-statement--red {
  background: var(--red);
  color: #fff;
}

.closing-statement h2,
.tour-archive h2 {
  margin: 0 0 clamp(3rem, 7vw, 7rem);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.06em;
}

.closing-statement h2 em { color: var(--sun); }

.closing-statement p {
  max-width: 35rem;
  margin: 0 0 2.5rem auto;
  font-size: 1.15rem;
}

.tour-archive h2 {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.tour-archive h2 em { color: var(--red); }

.tour-list--archive .tour-row {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.past-dates {
  padding-top: 0;
}

.past-dates-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.tour-list--past {
  opacity: 0.72;
}

.page-photo-break {
  position: relative;
  height: min(72vw, 60rem);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.page-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-photo-break figcaption {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.current-archive {
  min-height: 80vh;
}

.editorial-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.editorial-story--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.editorial-story--no-image .editorial-story-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: 1rem clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.editorial-story--no-image .editorial-story-copy .eyebrow {
  grid-column: 1 / -1;
}

.editorial-story--no-image .editorial-story-copy h2 {
  margin-bottom: 0;
}

.editorial-story--no-image .editorial-story-copy > p:not(.eyebrow),
.editorial-story--no-image .editorial-story-copy > a {
  grid-column: 2;
}

.editorial-story-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--red);
}

.editorial-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-story-copy h2 {
  margin: 1rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.editorial-story-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0 0 2rem;
}

.editorial-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.editorial-story-grid .editorial-story {
  grid-template-columns: 1fr;
}

.archive-note {
  max-width: 46rem;
  margin: clamp(6rem, 12vw, 12rem) 0 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.home-dayglow {
  position: relative;
  overflow: hidden;
  background: #efb83d;
}

.home-dayglow::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 50%;
  content: "";
}

.home-dayglow h2 em { color: var(--red); }

.home-dayglow-grid > div {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
}

.home-current {
  background: #f1c39b;
}

.home-current-heading h2 em { color: var(--red); }

.home-current .editorial-story {
  border-top-color: rgba(17, 17, 17, 0.3);
}

.story-deep-link {
  margin-top: 2rem;
}

.story-page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100svh;
  background: var(--ivory);
}

.story-page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 9rem;
}

.story-page-hero h1 em { color: var(--red); }

.story-page-hero figure {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: var(--red);
}

.story-page-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.editorial-chapter {
  background: var(--ivory);
}

.editorial-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 10vw, 11rem);
  margin-top: clamp(5rem, 10vw, 10rem);
}

.editorial-lead {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 0.98;
}

.editorial-lead p {
  margin: 0 0 0.8em;
}

.editorial-body {
  max-width: 38rem;
  padding-top: 1rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.editorial-body p {
  margin: 0 0 1.6rem;
}

.stacked-line {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1.04;
}

.page-photo-break--tall {
  height: min(68vw, 66rem);
}

.story-collaborations {
  background: var(--ink);
  color: #fff;
}

.story-collaborations > h2,
.family-story > h2,
.innovation-story > h2,
.tools-story > h2,
.story-purpose > h2,
.story-conclusion > h2,
.dayglow-page section > h2,
.press-module > h2 {
  margin: clamp(3rem, 7vw, 7rem) 0 clamp(4rem, 9vw, 9rem);
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 11.5rem);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.06em;
}

.story-collaborations > h2 em { color: var(--sun); }

.story-collaboration-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem clamp(3rem, 8vw, 8rem);
  max-width: 68rem;
  margin: clamp(5rem, 10vw, 10rem) 0 0 auto;
}

.story-collaboration-copy p {
  margin: 0;
}

.family-story {
  background: var(--emerald);
  color: #fff;
}

.family-story > h2 em { color: var(--sun); font-weight: 400; }

.family-story .generation-line::before {
  background: rgba(255, 255, 255, 0.35);
}

.family-story .generation-line article::before {
  border-color: #fff;
  background: var(--emerald);
}

.family-conclusion {
  max-width: 48rem;
  margin: clamp(6rem, 12vw, 12rem) 0 0 auto;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.innovation-story {
  background: var(--ivory);
}

.innovation-story > h2 em { color: var(--red); font-weight: 400; }

.tools-story {
  background: #f1c39b;
}

.tools-story > h2 em { color: var(--red); font-weight: 400; }

.tools-intro {
  max-width: 46rem;
  margin: 0 0 clamp(4rem, 8vw, 8rem) auto;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(5rem, 9vw, 9rem);
}

.profile-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
}

.profile-card img {
  width: calc(100% + (2 * clamp(1.5rem, 3vw, 2.5rem)));
  max-width: none;
  margin: calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) 2rem;
}

.profile-card h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.94;
}

.story-purpose {
  background: #efb83d;
}

.story-purpose > h2 em { color: var(--red); font-weight: 400; }

.story-conclusion {
  min-height: 100svh;
  background: var(--red);
  color: #fff;
}

.story-conclusion > h2 em { color: var(--sun); font-weight: 400; }

.story-conclusion-copy {
  max-width: 40rem;
  margin-left: auto;
  font-size: 1.1rem;
}

.final-manifesto {
  margin: clamp(6rem, 12vw, 12rem) 0 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.final-manifesto em {
  color: var(--sun);
  font-weight: 400;
  text-transform: none;
}

.dayglow-page {
  --dayglow-green: #356f53;
  --dayglow-sky: #9fd1df;
  --dayglow-marigold: #efb83d;
}

.dayglow-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  background: var(--dayglow-green);
  color: #fff;
}

.dayglow-hero h1 {
  position: relative;
  z-index: 1;
}

.dayglow-hero h1 em { color: var(--sun); }

.dayglow-hero-intro {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: clamp(4rem, 8vw, 8rem) 0 0 auto;
}

.dayglow-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.dayglow-orbit--one {
  top: 7%;
  right: -11vw;
  width: 42vw;
  height: 42vw;
}

.dayglow-orbit--two {
  bottom: -18vw;
  left: 18%;
  width: 36vw;
  height: 36vw;
  background: rgba(239, 184, 61, 0.15);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
}

.dayglow-mission { background: var(--ivory); }
.dayglow-mission > h2 em { color: var(--dayglow-green); font-weight: 400; }

.dayglow-why {
  background: var(--dayglow-sky);
}

.dayglow-why > h2 em { color: var(--red); font-weight: 400; }

.dayglow-copy-narrow {
  max-width: 44rem;
  margin-left: auto;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.dayglow-copy-narrow p { margin: 0 0 1.5rem; }

.dayglow-approach {
  background: var(--dayglow-green);
  color: #fff;
}

.dayglow-approach > h2 em { color: var(--sun); font-weight: 400; }

.dayglow-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.dayglow-panel-grid article {
  min-height: 26rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--dayglow-green);
}

.dayglow-panel-grid article > span {
  display: block;
  margin-bottom: 7rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.dayglow-panel-grid h3,
.program-grid h3 {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.94;
}

.dayglow-programs { background: var(--ivory); }
.dayglow-programs > h2 em { color: var(--red); font-weight: 400; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.program-grid article {
  min-height: 23rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--line);
}

.program-grid article:nth-child(2),
.program-grid article:nth-child(5) {
  background: var(--dayglow-marigold);
}

.rhythm-trails {
  background: #dce6d5;
}

.rhythm-trails > h2 em { color: var(--dayglow-green); font-weight: 400; }

.approved-image-placeholders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(5rem, 10vw, 10rem);
}

.approved-image-placeholders span {
  display: flex;
  aspect-ratio: 3 / 4;
  align-items: flex-end;
  padding: 1rem;
  border: 1px dashed rgba(17, 17, 17, 0.38);
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dayglow-impact {
  background: var(--dayglow-marigold);
}

.dayglow-impact > h2 em { color: var(--red); font-weight: 400; }

.impact-intro {
  max-width: 38rem;
  font-size: 1.1rem;
}

.impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.08em 0.3em;
  margin-top: 5rem;
}

.impact-list span {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  line-height: 0.88;
}

.impact-list span::after {
  margin-left: 0.3em;
  color: var(--red);
  content: "/";
}

.verified-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 6rem;
}

.verified-metrics div {
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

.verified-metrics dt {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verified-metrics dd {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: 3rem;
}

.dayglow-vision { background: var(--dayglow-sky); }
.dayglow-vision > h2 em { color: var(--red); font-weight: 400; }

.dayglow-involved {
  background: var(--ivory);
}

.dayglow-involved > h2 em { color: var(--dayglow-green); font-weight: 400; }

.dayglow-involved > p {
  max-width: 40rem;
  margin-left: auto;
}

.dayglow-involved .button-row {
  max-width: 40rem;
  margin-left: auto;
}

.dayglow-conclusion {
  min-height: 85vh;
  background: var(--dayglow-green);
  color: #fff;
}

.dayglow-conclusion > h2 em { color: var(--sun); font-weight: 400; }

.dayglow-conclusion > p {
  max-width: 34rem;
  margin: 0 0 3rem auto;
  font-size: 1.15rem;
}

.press-hero {
  min-height: 100svh;
  padding-top: 10rem;
  background: var(--ink);
  color: #fff;
}

.press-hero h1 {
  max-width: 100%;
  font-size: clamp(5rem, 13vw, 13rem);
}

.press-hero > p:last-child {
  margin: clamp(3rem, 7vw, 7rem) 0 0 auto;
  color: var(--sun);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-style: italic;
}

.press-index {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.press-module {
  background: var(--ivory);
}

.press-module--dark {
  background: var(--ink);
  color: #fff;
}

.press-module--dayglow {
  background: #efb83d;
}

.press-module--photo {
  background: var(--emerald);
  color: #fff;
}

.press-module > h2 em {
  color: var(--red);
  font-weight: 400;
}

.press-module--dark > h2 em,
.press-module--photo > h2 em {
  color: var(--sun);
}

.press-bio-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 10vw, 10rem);
  margin-top: clamp(5rem, 10vw, 10rem);
}

.press-bio-short {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1;
}

.press-bio-long {
  max-width: 44rem;
}

.press-bio-long p { margin: 0 0 1.5rem; }

.press-credit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.08em 0.28em;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.press-credit-list span {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 6rem);
  line-height: 0.9;
}

.press-credit-list span::after {
  margin-left: 0.25em;
  color: var(--red);
  content: "/";
}

.press-module-intro {
  max-width: 42rem;
  margin: 0 0 3rem auto;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
}

.press-resource-grid,
.press-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 5rem;
}

.press-resource-grid article,
.press-contact-grid article {
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
}

.press-resource-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.press-photo-grid figure { margin: 0; }

.press-photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.press-photo-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.usage-note {
  max-width: 38rem;
  margin: 3rem 0 0 auto;
  font-size: 0.8rem;
  opacity: 0.72;
}

.press-contact > h2 {
  margin-bottom: 4rem;
}

.press-contact-grid article > a {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.press-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-page .contact-section {
  background: var(--ink);
}

@media (max-width: 960px) {
  .home-section-heading,
  .home-dayglow-grid,
  .home-current-heading,
  .editorial-columns,
  .editorial-story,
  .story-page-hero,
  .press-bio-grid {
    grid-template-columns: 1fr;
  }

  .home-video-grid {
    grid-template-columns: 1fr;
  }

  .home-video-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .story-page-hero figure {
    min-height: 70svh;
  }

  .story-page-hero-copy {
    min-height: 85svh;
  }

  .profile-card-grid,
  .dayglow-panel-grid,
  .press-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approved-image-placeholders {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 82svh;
    padding-top: 8rem;
  }

  .page-hero h1,
  .story-page-hero h1,
  .dayglow-hero h1,
  .press-hero h1 {
    font-size: clamp(4.3rem, 21vw, 7rem);
  }

  .page-hero--photo {
    min-height: 100svh;
  }

  .page-hero--photo::after {
    background: linear-gradient(180deg, rgba(5, 10, 9, 0.8), rgba(5, 10, 9, 0.12) 70%, rgba(5, 10, 9, 0.64));
  }

  .page-hero--photo > img {
    object-position: 46% center;
  }

  .home-section-heading,
  .home-dayglow-grid,
  .home-current-heading {
    margin: 4rem 0;
  }

  .home-section-heading h2,
  .home-dayglow h2,
  .home-current-heading h2,
  .story-collaborations > h2,
  .family-story > h2,
  .innovation-story > h2,
  .tools-story > h2,
  .story-purpose > h2,
  .story-conclusion > h2,
  .dayglow-page section > h2,
  .press-module > h2 {
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  .home-video-secondary,
  .video-grid,
  .editorial-story-grid,
  .story-collaboration-copy,
  .profile-card-grid,
  .dayglow-panel-grid,
  .program-grid,
  .verified-metrics,
  .press-resource-grid,
  .press-contact-grid,
  .press-photo-grid {
    grid-template-columns: 1fr;
  }

  .video-grid .video-card,
  .video-grid .video-card:nth-child(3n + 1),
  .video-grid .video-card:nth-child(3n + 2),
  .video-grid .video-card--vertical {
    grid-column: auto;
  }

  .video-card--vertical .video-thumb {
    width: min(80vw, 24rem);
    margin: 0 auto;
  }

  .home-video-secondary .video-card--vertical .video-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .filter-bar {
    gap: 0.5rem;
  }

  .editorial-story-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .editorial-story--no-image .editorial-story-copy {
    grid-template-columns: 1fr;
  }

  .editorial-story--no-image .editorial-story-copy > p:not(.eyebrow),
  .editorial-story--no-image .editorial-story-copy > a {
    grid-column: auto;
  }

  .tour-list--archive .tour-row {
    grid-template-columns: 4rem 1fr auto;
  }

  .page-photo-break {
    height: 105vw;
  }

  .page-photo-break img {
    object-position: 50% center;
  }

  .page-photo-break figcaption {
    flex-direction: column;
    gap: 0.35rem;
  }

  .story-page-hero-copy {
    min-height: 78svh;
  }

  .story-page-hero figure {
    min-height: 110vw;
  }

  .editorial-lead {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .approved-image-placeholders {
    grid-template-columns: repeat(2, 1fr);
  }

  .dayglow-panel-grid article,
  .program-grid article {
    min-height: auto;
  }

  .dayglow-panel-grid article > span {
    margin-bottom: 4rem;
  }

  .press-index {
    position: relative;
    top: auto;
  }

  .press-photo-grid figcaption {
    flex-direction: column;
  }
}
