:root {
  --ink: #182321;
  --pacific-deep: #165d62;
  --pacific: #277a7b;
  --pool: #73b2ae;
  --coral: #de6243;
  --butter: #e8b64a;
  --sea-glass: #a8c9b5;
  --walnut: #5a3524;
  --cream: #f4e8d0;
  --paper: #fffdf8;
  --rule: rgba(24, 35, 33, 0.2);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --page: min(92vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 94px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

.brand img {
  width: 128px;
  filter: none;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  background: var(--paper);
}

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.video-card:focus-visible,
.chapter-media:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
}

.button-small:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  overflow: hidden;
  padding: 144px max(4vw, calc((100vw - 1440px) / 2)) 94px;
  background: var(--cream);
  color: var(--ink);
}

.hero-wave {
  --hero-wave-duration: 14s;
  --hero-wave-shift: -640px;
  --hero-wave-stroke: 10px;
  --hero-wave-track-y: 86px;
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: 210px;
  overflow: hidden;
  color: var(--coral);
  pointer-events: none;
}

.hero-wave__track {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 5760px;
  max-width: none;
  height: 100%;
  overflow: visible;
  transform: translate3d(-50%, var(--hero-wave-track-y), 0);
}

.hero-wave__motion {
  animation: hero-wave-drift-right var(--hero-wave-duration) linear infinite;
  transform-box: view-box;
  will-change: transform;
}

.hero-wave[data-direction="left"] .hero-wave__motion {
  animation-name: hero-wave-drift-left;
}

.hero-wave__line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--hero-wave-stroke);
}

@keyframes hero-wave-drift-right {
  from {
    transform: translate3d(var(--hero-wave-shift), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-wave-drift-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--hero-wave-shift), 0, 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-right: clamp(24px, 5vw, 88px);
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.15;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 8.6vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 span {
  display: block;
  color: var(--pacific-deep);
  font-size: 0.54em;
  letter-spacing: 0.02em;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 36px;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  isolation: isolate;
  z-index: 2;
  align-self: end;
  width: min(46vw, 660px);
  margin: 0 -1vw -66px auto;
  color: var(--paper);
  transform-origin: center bottom;
}

.hero-cutout::before {
  position: absolute;
  z-index: -2;
  top: 9%;
  right: 4%;
  width: min(39vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--butter);
  content: "";
  transform: translate3d(0, var(--circle-parallax, 0px), 0);
}

.hero-cutout::after {
  position: absolute;
  z-index: -3;
  top: 5%;
  right: -1%;
  width: min(39vw, 560px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 253, 248, 0.62);
  border-radius: 50%;
  content: "";
  transform: translate3d(22px, calc(-18px + var(--outline-parallax, 0px)), 0);
}

.hero-cutout-stack {
  position: relative;
  width: 100%;
  height: clamp(700px, 78vh, 830px);
}

.hero-cutout-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translate3d(0, var(--cutout-parallax, 0), 0);
  will-change: transform;
}

.hero-cutout-image {
  z-index: 2;
}

.hero-cutout-stack .hero-cutout-shadow {
  z-index: 1;
  filter: brightness(0.22) saturate(0) opacity(0.28);
  transform: translate3d(18px, calc(20px + var(--shadow-parallax, 0)), 0);
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 102px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(1.5deg);
}

.poster-label {
  position: absolute;
  z-index: 3;
  top: 14%;
  left: -2%;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.hero-mark {
  --ike-mark-scale: 1.48;
  --ike-mark-spacing: -0.05em;
  --ike-mark-y: -84px;
  position: absolute;
  z-index: 0;
  bottom: -4%;
  left: 50%;
  width: 100%;
  color: rgba(101, 184, 196, 0.25);
  font-family: var(--display);
  font-size: clamp(12rem, 36vw, 31rem);
  font-weight: 800;
  letter-spacing: var(--ike-mark-spacing);
  line-height: 0.8;
  text-align: center;
  transform: translate3d(-50%, calc(25% + var(--ike-mark-y) + var(--ike-parallax, 0px)), 0) scale(var(--ike-mark-scale));
  transform-origin: 50% 100%;
  white-space: nowrap;
}

.credential-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(88vw, 1240px);
  grid-template-columns: repeat(4, 1fr);
  margin: -34px auto 0;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.credential-strip div {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--rule);
}

.credential-strip div:last-child {
  border-right: 0;
  background: var(--butter);
}

.credential-strip strong,
.credential-strip span {
  display: block;
}

.credential-strip strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.credential-strip span {
  margin-top: 9px;
  font-size: 0.88rem;
  line-height: 1.2;
}

.section-pad {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 160px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 46px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-kicker p {
  margin: 0;
}

.overview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 5vw;
  width: 100%;
  padding-inline: max(4vw, calc((100vw - 1440px) / 2));
  background: #173444;
  color: var(--paper);
}

.overview .copy-columns {
  border-top-color: rgba(255, 253, 248, 0.55);
}

.overview-backdrop {
  position: absolute;
  inset: calc(-1 * var(--overview-overscan, 0px)) 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 2 * var(--overview-overscan, 0px));
  max-width: none;
  object-fit: cover;
  object-position: 60% top;
  transform: translate3d(0, var(--overview-photo-y, 0px), 0);
  opacity: 0.28;
  pointer-events: none;
}

@media (max-width: 760px) {
  .overview-backdrop { object-position: 58% center; opacity: 0.2; }
}

@media print {
  .overview-backdrop { display: none; }
}

.overview h2,
.story-heading h2,
.swell-copy h2,
.booking h2 {
  max-width: 1100px;
  margin-bottom: 46px;
  font-size: clamp(3.2rem, 6.4vw, 7.1rem);
  letter-spacing: -0.035em;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 56px);
  border-top: 2px solid var(--ink);
  padding-top: 30px;
}

.copy-columns > p:first-child {
  font-size: 1.16rem;
  font-weight: 600;
}

.overview-quote {
  margin: 0;
}

.overview-quote p {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.36;
}

.overview-quote cite,
.chapter-quote cite {
  display: block;
  margin-top: 18px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.overview-quote a,
.chapter-quote a {
  color: inherit;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) max(5vw, calc((100vw - 1220px) / 2));
  background: var(--coral);
  color: var(--paper);
}

.quote-band blockquote {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0;
}

.quote-band blockquote > p {
  margin-bottom: 36px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.2vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.quote-band footer {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.92rem;
}

.quote-band footer strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-sun {
  position: absolute;
  right: -8vw;
  bottom: -26vw;
  width: 54vw;
  height: 54vw;
  border: 70px solid rgba(232, 182, 74, 0.55);
  border-radius: 50%;
}

.story-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr;
  align-items: end;
  gap: 6vw;
  padding-bottom: 58px;
  border-bottom: 2px solid var(--ink);
}

.story-heading h2 {
  margin-bottom: 0;
}

.story-heading > p {
  margin-bottom: 6px;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13.5%;
  width: 1px;
  background: var(--ink);
  content: "";
}

.chapter {
  position: relative;
  display: grid;
  grid-template-columns: 0.3fr 1.05fr 0.62fr;
  gap: 4vw;
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}

.chapter::before {
  position: absolute;
  top: 82px;
  left: calc(13.5% - 7px);
  width: 12px;
  height: 12px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px var(--ink);
  content: "";
}

.chapter-year {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.chapter h3 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  letter-spacing: -0.03em;
}

.chapter-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.chapter-note {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--ink);
  background: rgba(232, 182, 74, 0.17);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
}

.chapter-quote {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.chapter-quote p {
  margin: 0;
}

.chapter-media {
  position: relative;
  align-self: start;
  padding: 9px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--pool);
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(1.4deg);
  transition: transform 180ms ease;
}

.chapter:nth-child(2) .chapter-media {
  box-shadow: 8px 8px 0 var(--butter);
  transform: rotate(-1.6deg);
}

.chapter-media:hover {
  transform: rotate(0deg) translateY(-4px);
}

.chapter-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
  object-fit: cover;
}

.chapter-media strong {
  color: var(--coral);
}

.chapter-evidence {
  align-self: start;
}

.chapter-photo {
  margin: 0;
  padding: 9px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--pool);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  transform: rotate(1.4deg);
}

.chapter:nth-child(2) .chapter-photo {
  box-shadow: 8px 8px 0 var(--butter);
  transform: rotate(-1.6deg);
}

.chapter-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
  object-fit: cover;
}

.chapter-photo-portrait img {
  aspect-ratio: 4 / 5;
  object-position: 50% 55%;
}

.chapter-watch-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.chapter-watch-link span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  font-size: 0.65rem;
}

.play {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-size: 0.9rem;
}

.chapter-media .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -85%);
}

.watch {
  width: 100%;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--paper);
}

.watch-head {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 56px;
}

.watch-head h2 {
  margin: 0;
  color: var(--butter);
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  letter-spacing: -0.04em;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.video-card {
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  text-decoration: none;
}

.video-card:nth-child(2) {
  margin-top: 54px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border: 8px solid var(--paper);
}

.video-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 350ms ease, filter 350ms ease;
}

.video-card:hover .video-frame img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.02);
}

.video-frame .play {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.video-era {
  color: var(--sea-glass);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card > strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.swell-value {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.swell-photo {
  margin: 0;
  position: relative;
  transform: rotate(-2deg);
}

.swell-photo::before {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  background: var(--pool);
  content: "";
}

.swell-photo img {
  width: 100%;
  height: auto;
  border: 10px solid var(--paper);
  object-fit: cover;
}

.swell-photo span {
  position: absolute;
  right: -26px;
  bottom: 40px;
  padding: 8px 16px;
  background: var(--butter);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: rotate(5deg);
}

.swell-copy h2 {
  margin-bottom: 30px;
}

.swell-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.12rem;
}

.value-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.value-list span {
  color: var(--coral);
  font-family: var(--display);
  font-weight: 800;
}

.value-list strong {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.booking {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 170px) max(6vw, calc((100vw - 1160px) / 2));
  background: var(--butter);
}

.booking::after {
  position: absolute;
  top: 50%;
  right: -130px;
  width: 380px;
  height: 380px;
  border: 60px solid var(--coral);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.booking > * {
  position: relative;
  z-index: 2;
}

.booking h2 {
  max-width: 980px;
  margin-bottom: 24px;
}

.booking > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 34px;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.source-notes {
  width: var(--page);
  margin-inline: auto;
  padding-block: 58px;
  font-size: 0.9rem;
}

.source-notes summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}

.source-grid a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 126px;
  padding: 30px max(4vw, calc((100vw - 1440px) / 2));
  background: var(--pacific-deep);
  color: var(--paper);
  font-size: 0.85rem;
}

.site-footer img {
  width: 110px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    min-height: 760px;
    grid-template-columns: 1fr 0.75fr;
  }

  .hero-cutout-stack {
    height: 650px;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  .overview > .section-kicker {
    margin-bottom: 0;
  }

  .chapter {
    grid-template-columns: 0.26fr 1fr;
  }

  .chapter-media {
    grid-column: 2;
    width: min(420px, 100%);
  }

  .chapter-evidence {
    grid-column: 2;
    width: min(420px, 100%);
  }

  .timeline::before {
    left: 11.5%;
  }

  .chapter::before {
    left: calc(11.5% - 7px);
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .site-nav {
    display: none;
  }

  .brand img {
    width: 102px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.66rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(4.1rem, 19vw, 6.4rem);
  }

  .hero-lede {
    font-size: 1.22rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-portrait {
    width: min(100%, 610px);
    margin: 60px auto -54px;
  }

  .hero-cutout-stack {
    height: min(140vw, 700px);
  }

  .hero-cutout-stack .hero-cutout-shadow {
    transform: translate3d(12px, 14px, 0);
  }

  .hero-cutout::before,
  .hero-cutout::after {
    top: 10%;
    right: 6%;
    width: 84%;
  }

  .hero-cutout::after {
    transform: translate(12px, -12px);
  }

  .hero-portrait figcaption {
    right: 3%;
    bottom: 84px;
    max-width: 230px;
    line-height: 1.15;
  }

  .poster-label {
    top: 16%;
    left: 2%;
  }

  .credential-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-strip div {
    min-height: 108px;
    padding: 18px;
    border-bottom: 1px solid var(--rule);
  }

  .credential-strip div:nth-child(2) {
    border-right: 0;
  }

  .copy-columns,
  .story-heading,
  .watch-head,
  .swell-value,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .overview h2,
  .story-heading h2,
  .swell-copy h2,
  .booking h2 {
    font-size: clamp(3.1rem, 15vw, 5.1rem);
  }

  .copy-columns {
    gap: 8px;
  }

  .quote-band blockquote > p {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .quote-band footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .story-heading {
    gap: 22px;
  }

  .timeline::before {
    left: 8px;
  }

  .chapter {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 36px;
  }

  .chapter::before {
    top: 78px;
    left: 1px;
  }

  .chapter-year {
    flex-direction: row;
    font-size: 1.7rem;
  }

  .chapter-year span + span::before {
    content: " / ";
  }

  .chapter-media {
    grid-column: auto;
  }

  .chapter-evidence {
    grid-column: auto;
  }

  .watch-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-column: auto;
  }

  .video-card:nth-child(2) {
    margin-top: 0;
  }

  .swell-value {
    gap: 80px;
  }

  .swell-photo {
    width: 88%;
    margin-inline: auto;
  }

  .booking::after {
    right: -240px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    row-gap: 20px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-wave__motion {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  @page {
    margin: 0.55in;
    size: letter portrait;
  }

  :root {
    --page: 100%;
  }

  html,
  body {
    background: white;
    color: black;
    font-size: 10pt;
  }

  .site-header,
  .hero-actions,
  .quote-sun,
  .play,
  .booking .button,
  .site-footer,
  .source-notes,
  .hero-mark {
    display: none !important;
  }

  .hero {
    display: grid;
    min-height: auto;
    grid-template-columns: 1.2fr 0.55fr;
    padding: 0 0 0.25in;
    background: white;
    color: black;
    page-break-after: avoid;
  }

  .hero-wave,
  .hero-portrait::before,
  .hero-portrait::after {
    display: none;
  }

  .hero-copy {
    padding: 0.25in 0.2in 0 0;
  }

  h1 {
    font-size: 54pt;
  }

  h1 span,
  .watch-head h2 {
    color: black;
  }

  .hero-portrait {
    width: 100%;
    margin: 0;
    transform: none;
  }

  .hero-cutout-stack {
    height: 4.35in;
  }

  .hero-cutout-stack img,
  .hero-cutout-stack .hero-cutout-shadow {
    transform: none;
    will-change: auto;
  }

  .hero-cutout-shadow {
    display: none;
  }

  .hero-portrait figcaption {
    right: 0;
    bottom: 0.1in;
    padding: 5px 7px;
    border: 1px solid black;
    background: white;
    color: black;
    font-size: 7pt;
    transform: none;
  }

  .credential-strip {
    width: 100%;
    margin: 0;
    border: 1px solid black;
  }

  .credential-strip div {
    min-height: auto;
    padding: 10px;
  }

  .section-pad,
  .quote-band,
  .booking {
    padding-block: 0.35in;
  }

  .overview h2,
  .story-heading h2,
  .swell-copy h2,
  .booking h2 {
    margin-bottom: 18px;
    font-size: 34pt;
  }

  .overview,
  .copy-columns,
  .story-heading,
  .swell-value {
    gap: 0.25in;
  }

  .copy-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-band,
  .watch,
  .booking {
    background: white;
    color: black;
  }

  .quote-band {
    border-block: 2px solid black;
  }

  .quote-band blockquote > p {
    margin-bottom: 16px;
    font-size: 36pt;
  }

  .chapter {
    grid-template-columns: 0.25fr 1fr 0.45fr;
    gap: 0.2in;
    padding: 0.32in 0;
    break-inside: avoid;
  }

  .chapter-media,
  .chapter-photo,
  .video-card {
    box-shadow: none;
    transform: none;
  }

  .watch-grid {
    gap: 0.18in;
  }

  .video-card:nth-child(2) {
    margin-top: 0;
  }

  .swell-photo,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .booking::after {
    display: none;
  }

  a[href^="http"]::after {
    content: "";
  }
}

.parallax-tuner-shell {
  position: fixed;
  z-index: 1000;
  top: 90px;
  right: 16px;
  width: min(310px, calc(100vw - 32px));
}
.parallax-tuner-help {
  margin: 0;
  padding: 10px 12px;
  background: #202126;
  color: #d7d9df;
  font: 12px/1.45 sans-serif;
}
@media print { #parallax-tuner-root { display: none !important; } }

.quote-video-feature {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  margin-top: 38px;
}

@media screen and (min-width: 768px) {
  .quote-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    align-items: center;
    column-gap: clamp(32px, 5vw, 80px);
    padding-block: clamp(48px, 5vw, 72px);
  }

  .quote-band blockquote > p {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.4vw, 4rem);
    line-height: 1;
  }

  .quote-band footer {
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .quote-band footer strong {
    white-space: nowrap;
  }

  .quote-video-feature {
    margin-top: 0;
    justify-self: end;
  }
}

.quote-video-trigger {
  display: block;
  text-decoration: none;
}
.quote-video-poster { position: relative; display: block; }
.quote-video-poster img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.quote-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding-left: 3px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  transform: translate(-50%, -50%);
}
.quote-video-trigger:hover .quote-video-play { background: var(--butter); }
.quote-video-trigger:focus-visible,
.quote-video-dialog :focus-visible { outline: 3px solid var(--butter); outline-offset: 5px; }
.quote-video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 7px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
}
.quote-video-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-weight: 600;
}
.quote-video-feature p { margin: 4px 0; font-size: 0.85rem; }
.quote-video-source { font-size: 0.85rem; text-underline-offset: 4px; }
.quote-video-dialog {
  width: min(1000px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  overflow: auto;
}
.quote-video-dialog::backdrop { background: rgba(12, 20, 19, 0.85); }
.quote-video-heading,
.quote-video-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; }
.quote-video-heading h2 { margin: 0; font-size: 1.6rem; }
.quote-video-close {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.quote-video-close span { margin-left: 8px; }
.quote-video-dialog video { display: block; width: 100%; max-height: 65dvh; aspect-ratio: 16 / 9; background: var(--ink); }
.quote-video-footer { font-size: 0.85rem; flex-wrap: wrap; }
.quote-video-footer p { margin: 0; }
.quote-video-footer a { text-underline-offset: 4px; }
.quote-video-error { padding: 0 20px 20px; margin: 0; }
html:has(.quote-video-dialog[open]) { overflow: hidden; }
@media print { .quote-video-feature, .quote-video-dialog { display: none !important; } }

.chapter-cutout-evidence { padding-top: 30px; }
.chapter-cutout {
  position: relative;
  isolation: isolate;
  margin: 0;
}
.chapter-cutout-disc,
.chapter-cutout-outline {
  position: absolute;
  pointer-events: none;
  aspect-ratio: 1;
  border-radius: 50%;
}
.chapter-cutout-disc {
  z-index: -2;
  width: 90%;
  top: -7%;
  right: -5%;
  background: var(--butter);
  transform: translate3d(0, var(--chapter-back-y, 0px), 0);
}
.chapter-cutout-outline {
  z-index: -1;
  width: 98%;
  top: -3%;
  right: 3%;
  border: 3px solid var(--pacific);
  transform: translate3d(0, var(--chapter-ring-y, 0px), 0);
}
.chapter-cutout-image {
  display: block;
  width: 100%;
  height: auto;
  transform: translate3d(0, var(--chapter-subject-y, 0px), 0);
}
@media (prefers-reduced-motion: reduce), (max-width: 1050px) {
  .chapter-cutout-disc,
  .chapter-cutout-outline,
  .chapter-cutout-image { transform: none; }
}
@media print {
  .chapter-cutout-evidence { padding-top: 0; }
  .chapter-cutout-disc,
  .chapter-cutout-outline { display: none; }
  .chapter-cutout-image { transform: none; }
}

/* The photo rests on the chapter divider; decorative layers set behind it. */
#four-freshmen {
  /* Clip at both chapter dividers while retaining horizontal decoration. */
  clip-path: inset(0 -100vmax);
}

#four-freshmen .chapter-cutout-evidence {
  align-self: end;
  margin-bottom: -72px;
  clip-path: inset(-100vmax -100vmax 0);
}
#four-freshmen .chapter-cutout-image {
  transform: translate3d(0, calc(var(--photo-y, 0px) + var(--chapter-subject-y, 0px)), 0) scale(var(--photo-scale, 1));
  transform-origin: center bottom;
}
#four-freshmen .chapter-cutout-disc {
  top: auto;
  bottom: -25%;
  width: var(--sun-size, 120%);
  transform: translate3d(var(--sun-x, 0px), calc(var(--sun-y, 0px) + var(--chapter-back-y, 0px)), 0);
}
#four-freshmen .chapter-cutout-outline {
  top: auto;
  bottom: -29%;
  width: var(--ring-size, 125%);
  transform: translate3d(var(--ring-x, 0px), calc(var(--ring-y, 0px) + var(--chapter-ring-y, 0px)), 0);
}
.freshmen-tuner-shell {
  position: fixed;
  z-index: 1000;
  top: 24px;
  left: 16px;
  width: min(320px, calc(100vw - 32px));
  overflow: visible;
}
/* Scroll the draggable panel itself, never its stationary parent. */
.freshmen-tuner-shell > div {
  max-height: calc(100dvh - 48px);
  overflow: auto;
}
@media (max-width: 1050px), (prefers-reduced-motion: reduce) {
  #four-freshmen .chapter-cutout {
    --chapter-subject-y: 0px !important;
    --chapter-back-y: 0px !important;
    --chapter-ring-y: 0px !important;
  }
}
@media print {
  #four-freshmen .chapter-cutout-evidence { margin-bottom: 0; clip-path: none; }
  #four-freshmen .chapter-cutout-image { transform: none; }
  #freshmen-tuner-root { display: none !important; }
}

.swell-photo-caption {
  margin: 0;
  padding: 0 10px 10px;
  background: var(--paper);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
}

/* Slow decorative motion, clipped to the Mike Love section. */
.quote-circle {
  position: absolute;
  left: var(--circle-x, 90%);
  top: var(--circle-y, 100%);
  right: auto;
  bottom: auto;
  width: var(--circle-size, 54vw);
  height: var(--circle-size, 54vw);
  border: var(--circle-thickness, 70px) solid var(--butter);
  border-radius: 50%;
  opacity: var(--circle-opacity, .55);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: quote-circle-drift var(--circle-duration, 40s) ease-in-out infinite;
}
.quote-circle--small { border-color: var(--paper); animation-delay: -11s; }
.quote-circle--medium { animation-delay: -23s; }
.quote-band .quote-video-feature { position: relative; z-index: 2; }
@keyframes quote-circle-drift {
  0%, 100% { transform: translate(-50%, -50%) translate(calc(var(--circle-drift, 22px) * -1), 0); }
  33% { transform: translate(-50%, -50%) translate(0, var(--circle-drift, 22px)); }
  66% { transform: translate(-50%, -50%) translate(var(--circle-drift, 22px), calc(var(--circle-drift, 22px) * -.5)); }
}
@media (prefers-reduced-motion: reduce) { .quote-circle { animation: none; } }
@media print { .quote-circle, #quote-circles-tuner-root { display: none; } }
