/* ==========================================================================
   The Havoc — havocpunks.com
   Layout, type and spacing transcribed 1:1 from the production build.
   Base rules = desktop (1440–1799). Three breakpoints override below,
   matching the original exactly:
     ≤809px  phone      810–1439px  tablet      ≥1800px  wide desktop
   ========================================================================== */

:root {
  --cream:      #fff8dd;
  --cream-10:   rgba(255, 248, 221, .1);
  --red:        #f73a22;
  --dark:       #221f1e;
  --gray:       #6e6a63;
  --hairline:   #353330;

  --oswald: "Oswald", "Oswald Placeholder", sans-serif;
  --stencil: "Allerta Stencil", "Allerta Stencil Placeholder", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: inherit; }

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

body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  font-family: var(--oswald);
  overflow-x: hidden;
}

img { border-style: none; }

/* ==========================================================================
   Page shell
   ========================================================================== */
.page {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
  width: 100%;
  min-height: 100vh;
  padding: 0 0 64px;
  background: var(--dark);
  overflow: visible;
}

/* ==========================================================================
   Menu (desktop / tablet)
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 48px;
  will-change: transform;
  opacity: .001;                     /* appear animation takes it to 1 */
}
.nav__brand {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 76px;
}
.razor {
  flex: none;
  display: block;
  width: 40px;
  height: 41px;
  text-decoration: none;
  image-rendering: pixelated;
}
.razor svg { display: block; width: 100%; height: 100%; }

.nav__links {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: min-content;
  padding: 8px;
}
.nav__item {
  flex: none;
  white-space: pre;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav__item--muted { color: var(--cream-10); }
.nav__contact {
  flex: none;
  width: 76px;
  text-align: right;
  word-break: break-word;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  transition: color .15s linear;
}
.nav a:hover { color: var(--gray); }

/* ==========================================================================
   Menu (phone)
   ========================================================================== */
.mobile-nav-slot {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  flex: none;
  width: 100%;
  will-change: transform;
}
.mobile-nav__bar {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 73px;
  padding: 16px 24px;
  overflow: hidden;
  cursor: pointer;
  background-color: rgba(34, 31, 30, .5);
  transition: height .38s cubic-bezier(.22, .8, .24, 1),
              background-color .38s cubic-bezier(.22, .8, .24, 1);
}
.mobile-nav__brand {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min-content;
}
.mobile-nav__close {
  display: none;
  order: 1;
  flex: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--cream);
  cursor: pointer;
}
.mobile-nav__close svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.mobile-nav__toggle {
  flex: none;
  width: 47px;
  height: 27px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-align: right;
  text-transform: uppercase;
  color: var(--cream);
}
.mobile-nav__links {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav__item {
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}
.mobile-nav__item--muted { color: var(--cream-10); }
.mobile-nav__item a { color: inherit; text-decoration: none; }

.mobile-nav[data-open="true"] .mobile-nav__bar {
  flex-direction: column;
  height: 397px;
  background-color: rgba(0, 0, 0, .8);
}
.mobile-nav[data-open="true"] .mobile-nav__brand {
  order: 0;
  width: 100%;
  gap: 0;
  justify-content: space-between;
}
.mobile-nav[data-open="true"] .mobile-nav__close { display: block; }
.mobile-nav[data-open="true"] .mobile-nav__toggle { display: none; }
.mobile-nav[data-open="true"] .mobile-nav__links {
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 24px;
  height: auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.top {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  position: relative;
}
.hero {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  height: 100vh;
  padding: 24px 0 0;
}
.hero__header {
  position: relative;
  flex: none;
  width: 100%;
  height: 50vh;
  overflow: visible;
}
.hero__photo-frame {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -491px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: min-content;
  overflow: hidden;
  background-color: var(--dark);
}
.hero__photo {
  position: relative;
  flex: none;
  width: 1166px;
  aspect-ratio: .8746246246246246 / 1;
  opacity: .001;                     /* appear animation takes it to .8 */
}
.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}
.hero__logo-wrap {
  position: absolute;
  bottom: -192px;
  left: calc(50% - 677px / 2);
  width: 677px;
  height: 300px;
  overflow: visible;
  opacity: .001;                     /* appear animation takes it to 1 */
}
.hero__logo {
  position: absolute;
  left: -51px;
  right: -51px;
  top: -22px;
  aspect-ratio: 2.256666666666667 / 1;
  transform: rotate(-4deg);
}
.hero__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Videos
   ========================================================================== */
.videos {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 56%;
  max-width: 800px;
}
.video {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 448px;
  overflow: hidden;
  background-color: var(--dark);
  opacity: 0;
  transform: translateX(var(--tx)) rotate(var(--rot));
}
.video[data-enter="left"]  { --tx: -150px; }
.video[data-enter="right"] { --tx:  150px; }
.video::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid var(--cream);
  pointer-events: none;
}
.video__player {
  position: relative;
  flex: 1 0 0px;
  width: 100%;
  height: 1px;
}
.yt {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.yt iframe { display: block; width: 100%; height: 100%; border: 0; }
.yt__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.yt__play-bg {
  transition: fill .1s cubic-bezier(.4, 0, 1, 1), fill-opacity .1s cubic-bezier(.4, 0, 1, 1);
}
.yt:hover .yt__play-bg { fill: #f00; fill-opacity: 1; }

/* ==========================================================================
   Everything below the fold
   ========================================================================== */
.main {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 1442px;
  overflow: hidden;
}
.zipper {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 17.77777777777778 / 1;
  overflow: hidden;
  transform: rotate(var(--rot));
}
.zipper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* --- section headline plates ------------------------------------------- */
.headline {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.label {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: min-content;
  padding: 8px 16px;
  transform: rotate(var(--rot, 0deg));
}
.label--cream { background-color: var(--cream); }
.label--red   { background-color: var(--red); }
.label__text {
  margin: 0;
  flex: none;
  white-space: pre;
  font-family: var(--stencil);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -3.6px;
}
.label--cream .label__text { color: var(--dark); }
.label--red   .label__text { color: var(--cream); }

/* the grain sheet that sits over each plate */
.texture {
  position: absolute;
  z-index: 1;
  width: 800px;
  pointer-events: none;
}
.texture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.texture--tour    { left: -24px; top: -31px; height: 200px; }
.texture--music   { left: calc(50.90090090090092% - 800px / 2); top: -50px; bottom: -86px; }
.texture--history { left: 148px; top: -50px; bottom: -86px; }
.texture--contact { left: 38px; top: -30px; bottom: -106px; }

/* ==========================================================================
   Tour dates
   ========================================================================== */
.tour {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
  width: 100%;
  scroll-margin-top: 96px;
}
.tour__dates {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.headline--tour { width: 800px; height: 102px; overflow: visible; }

.tourdates {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min-content;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tourdate {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 558px;
  height: 27px;
  overflow: hidden;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
}
.tourdate > span { flex: none; white-space: pre; }
.tourdate__when    { color: var(--red); }
.tourdate__slash   { color: var(--cream-10); }
.tourdate__country { color: var(--cream); text-transform: uppercase; }
.tourdate__where {
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min-content;
  height: 27px;
}
.tourdate__city { flex: none; white-space: pre; color: var(--cream); text-transform: uppercase; }
.tourdate__star {
  flex: none;
  display: flex;
  align-items: flex-end;
  height: 15px;
  font-size: 32px;
  font-weight: 300;
  line-height: .1em;
  text-align: center;
  color: var(--red);
}
/* one row in the source uses a fixed-width city slot rather than shrink-wrap */
.tourdate__where--wide { width: 179px; height: min-content; }
.tourdate--note { gap: 8px; }
.tourdate__note {
  font-size: 14px;
  line-height: 1.2em;
  text-align: right;
  color: var(--red);
}

.tour__flyer {
  position: relative;
  flex: none;
  width: 888px;
  height: 1082px;
  transform: rotate(1deg);
}
.tour__flyer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ==========================================================================
   Music
   ========================================================================== */
.music {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 960px;
  scroll-margin-top: 96px;
}
.albums {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding: 0 32px;
}
.album {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
.album--1 { transform: rotate(-1deg); }
.album--3 { transform: rotate(2deg); }

.album__cover {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.album__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  border-bottom-width: 0;
  pointer-events: none;
}
.album--1 .album__cover { width: 346px; aspect-ratio: 1 / 1; }
.album--1 .album__cover-img { position: relative; flex: 1 0 0px; height: 1px; aspect-ratio: 1 / 1; }
/* the second sleeve deliberately hangs past its frame */
.album--2 .album__cover { width: min-content; height: 304px; }
.album--2 .album__cover-img { position: relative; flex: none; width: 346px; aspect-ratio: 1 / 1; }
.album--3 .album__cover { width: 346px; height: 346px; }
.album--3 .album__cover-img { position: relative; flex: none; width: 346px; aspect-ratio: 1 / 1; }
.album__cover-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.album__panel {
  position: relative;
  flex: 1 0 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 1px;
  height: 347px;
  padding: 32px;
}
.album__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.album__title {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
.album__title p {
  margin: 0;
  flex: none;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
}
.album--1 .album__title p,
.album--3 .album__title p {
  width: 216px;
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}
.album--2 .album__title p { width: auto; white-space: pre; text-align: right; }
.album__year  { color: var(--red); }
.album__name  { color: var(--cream); }
.album__label { color: var(--gray); }
.album__embed { position: relative; flex: 1 0 0px; width: 100%; height: 1px; }
.album__embed iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   History
   ========================================================================== */
.history {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  scroll-margin-top: 96px;
}
.headline--history { overflow: visible; }
.headline--history .label { --rot: 1deg; }

.history__photos {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 373px;
  overflow: hidden;
}
.history__photo {
  position: relative;
  flex: none;
  width: 419px;
  aspect-ratio: 1.3774104683195592 / 1;
}
.history__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid var(--cream);
  pointer-events: none;
}
.history__photo--2 { transform: rotate(-1deg); }
.history__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}
.history__photo--3 img { object-fit: cover; }

.history__text {
  position: relative;
  flex: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-template-rows: repeat(1, min-content);
  grid-auto-rows: min-content;
  gap: 16px;
  justify-content: center;
  width: 800px;
  overflow: hidden;
}
.prose { align-self: start; justify-self: start; width: 100%; }
.prose p {
  margin: 0;
  font-family: var(--oswald);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: .01em;
  text-align: left;
  color: var(--cream);
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
}
/* the two columns really do use different paragraph spacing in the original */
.prose--a p + p { margin-top: 20px; }
.prose--b p + p { margin-top: 16px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  height: 100vh;
  padding: 96px 0 0;
  scroll-margin-top: 96px;
}
.contact__art {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -319px;
  aspect-ratio: 1.5015641293013555 / 1;
}
.contact__art-inner {
  position: absolute;
  left: 50%;
  top: 1px;
  width: 100%;
  aspect-ratio: 1.5015641293013555 / 1;
  opacity: 0;
  transform: translateX(-50%) translateY(-80px) scale(4);
}
.contact__art-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.contact__body {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  width: 100%;
}
.headline--contact { width: 100%; }
.contact__links {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: min-content;
}
.contact__row {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  width: min-content;
}
.contact__row:first-child { justify-content: flex-start; }
.contact__row:last-child  { justify-content: center; }
.contact__slot { position: relative; flex: none; transform: rotate(var(--rot)); }
.btn {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: min-content;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s cubic-bezier(.22, .8, .24, 1);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--cream-10);
  border-radius: inherit;
  pointer-events: none;
}
.btn:hover { background-color: rgba(0, 0, 0, .8); }
.btn__label {
  display: block;
  flex: none;
  white-space: pre;
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--cream);
  transform: rotate(var(--rot));
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 240px;
  width: min-content;
  padding: 240px 0 0;
}
.footer__logos {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 400px;
  height: 465px;
  overflow: hidden;
}
.footer__mark { position: relative; flex: none; width: 100%; height: 216px; }
.footer__mark img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.footer__dismantled { position: relative; flex: none; width: 132px; aspect-ratio: 3 / 1; }
.footer__dismantled img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.footer__voltage {
  position: relative;
  flex: none;
  width: 108px;
  aspect-ratio: .9908256880733946 / 1;
  border-radius: 120px;
  overflow: hidden;
}
.footer__voltage::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  border-radius: inherit;
  pointer-events: none;
}
.footer__voltage img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: inherit; }
.footer__copy {
  margin: 0;
  flex: none;
  white-space: pre;
  font-family: var(--oswald);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: .01em;
  color: var(--gray);
}

/* ==========================================================================
   Tablet — 810 to 1439
   ========================================================================== */
@media (min-width: 810px) and (max-width: 1439px) {
  .nav { order: 0; overflow: hidden; }
  .nav__brand { width: min-content; }
  .top { order: 2; }
  .videos { width: 100%; padding: 0 24px; }
  .main { order: 3; width: 100%; }
  .zipper { aspect-ratio: auto; height: 80px; }
  .headline--tour { height: 191px; }
  .tour__flyer { width: 694px; height: 846px; }
  .music,
  .history { padding: 32px 0; }
  .headline--history { width: 960px; }

  .history__photos { flex-direction: column; height: 803px; }
  .history__photo { position: absolute; z-index: 1; width: 419px; }
  .history__photo--1 { left: 51%; top: 0; transform: translateX(-50%); }
  .history__photo--2 { left: 264px; top: 50%; transform: translateY(-50%) rotate(-3deg); }
  .history__photo--3 { left: 45%; bottom: 11px; transform: translateX(-50%) rotate(1deg); }

  .history__text { padding: 0 32px; }
  .contact { height: min-content; }
  .contact__art-inner { top: 120px; width: 130%; }
  .footer { gap: 96px; padding: 328px 0 0; }
}

/* ==========================================================================
   Wide desktop — 1800 and up
   ========================================================================== */
@media (min-width: 1800px) {
  .hero__logo {
    left: -602px;
    right: -602px;
    top: auto;
    bottom: -267px;
  }
}

/* ==========================================================================
   Phone — 809 and down
   ========================================================================== */
@media (max-width: 809px) {
  .page { gap: 0; }
  .nav { display: none; }
  .mobile-nav-slot { display: block; order: 1; }
  .top { order: 2; padding: 0 0 32px; }
  .main { order: 3; gap: 32px; width: 100%; }

  .hero { height: 470px; padding: 0; }
  .hero__header { height: 422px; }
  .hero__photo-frame { top: -281px; bottom: auto; }
  .hero__photo { width: 712px; }
  .hero__logo-wrap { bottom: 80px; height: 116px; left: calc(50% - 262px / 2); width: 262px; }

  .videos {
    width: 100%;
    height: auto;
    aspect-ratio: .423728813559322 / 1;
    gap: 16px;
    padding: 0 24px;
  }
  .video { flex: 1 0 0px; height: 1px; }
  .video::after { border-width: 4px; }

  .zipper { aspect-ratio: auto; height: 80px; }

  .tour { scroll-margin-top: 0; }
  .headline--tour { height: 191px; }
  .tour__flyer { width: 356px; height: 550px; }

  /* rows stack: date / country / (star + city), no slashes */
  .tourdates { gap: 16px; }
  .tourdate { flex-direction: column; gap: 0; height: min-content; }
  .tourdate__slash { display: none; }
  .tourdate__where { flex-direction: row; }
  .tourdate__city { order: 1; }
  .tourdate__star { order: 0; }
  .tourdate--note { flex-direction: row; gap: 8px; height: min-content; }

  .album { flex-direction: column; }
  .album--1 { height: 641px; }
  .album--2 { height: 615px; }
  .album--3 { height: 661px; transform: rotate(1deg); }
  .album--1 .album__cover,
  .album--2 .album__cover { flex: 1 0 0px; height: 1px; width: auto; aspect-ratio: 1 / 1; }
  .album--3 .album__cover { flex: 1 0 0px; height: 1px; width: 100%; }
  .album--1 .album__cover-img { width: auto; }
  .album--2 .album__cover-img { flex: 1 0 0px; height: 1px; width: auto; }
  .album--3 .album__cover-img { flex: 1 0 0px; height: 1px; width: 100%; aspect-ratio: auto; }
  .album__panel { flex: none; height: min-content; width: 100%; padding: 16px; }
  .album__embed { flex: none; height: 153px; }

  .history { gap: 48px; padding: 64px 0 32px; }
  .headline--history { width: 100%; }
  .history__photos { flex-direction: column; height: 737px; }
  .history__photo { position: absolute; z-index: 1; width: 352px; }
  .history__photo::after { border-width: 4px; }
  .history__photo--1 { left: 50%; top: 0; transform: translateX(-50%); }
  .history__photo--2 { left: 54%; top: 46%; transform: translate(-50%, -50%) rotate(2deg); }
  .history__photo--3 { left: 49%; bottom: 22px; transform: translateX(-50%) rotate(-2deg); }
  .history__text { grid-template-columns: repeat(1, minmax(200px, 1fr)); padding: 0 24px; width: 100%; }

  .contact { height: min-content; padding: 64px 0 0; }
  .contact__art-inner { left: 46%; top: 13px; width: 145%; transform: translateX(-50%) translateY(-40px) scale(6); }
  .contact__links { gap: 24px; }
  .contact__row { flex-direction: column; align-items: center; gap: 24px; }

  .footer { gap: 96px; padding: 284px 0 0; width: 100%; }
}

/* ==========================================================================
   Without JavaScript nothing animates in, so show every resting state.
   ========================================================================== */
html:not(.js) .nav,
html:not(.js) .hero__logo-wrap,
html:not(.js) .video { opacity: 1; }
html:not(.js) .hero__photo { opacity: .8; }
html:not(.js) .video { transform: rotate(var(--rot)); }
html:not(.js) .contact__art-inner { opacity: 1; transform: translateX(-50%); }
