:root {
  --black: #000000;
  --charcoal: #171717;
  --charcoal-soft: #1c1c1c;
  --gray: #464646;
  --white: #f7f7f7;
  --magenta: #c321bd;
  --line: rgba(255, 255, 255, 0.72);
  --page-pad: clamp(24px, 3.15vw, 60px);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  border-top: 2px solid var(--magenta);
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  font-weight: 700;
}

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

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

/* -------------------------------------------------------------------------- */
/* Cabeçalho                                                                  */
/* -------------------------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 30;
  height: 184px;
  background: #000;
}

.header-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.brand-mark {
  position: absolute;
  top: 28px;
  left: clamp(42px, 6vw, 112px);
  width: 82px;
  height: 98px;
  z-index: 2;
  display: grid;
  place-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.brand-mark.is-empty {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.header-rule {
  position: absolute;
  top: 91px;
  left: clamp(158px, 15.2vw, 285px);
  right: 101px;
  height: 1px;
  background: var(--line);
}

.header-tools {
  position: absolute;
  top: 41px;
  right: 93px;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 30px;
  color: #fff;
}

.tool-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #090909;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.profile-dot {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, #2b2b2b 0 47%, #111 48% 100%);
}

.bag-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 20px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 2px;
  font-size: 10px;
}

.bag-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 5px;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.bag-icon b {
  font-weight: 400;
}

.desktop-nav {
  position: absolute;
  top: 126px;
  right: 96px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav a {
  position: relative;
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--magenta);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.menu-button {
  position: absolute;
  z-index: 42;
  top: 16px;
  right: 12px;
  display: flex;
  width: 74px;
  height: 68px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 0;
  background: #080808;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  border-color: var(--magenta);
  outline: none;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(3px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-panel {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 88vw);
  padding: 110px 55px 45px;
  transform: translateX(105%);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: #080808;
  transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-open .menu-backdrop {
  visibility: visible;
  opacity: 1;
}

.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 25px;
  right: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 45px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.menu-kicker {
  margin: 0 0 54px;
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-panel nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-panel nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 700;
}

.menu-panel nav a[aria-current="page"],
.menu-panel nav a:hover,
.menu-panel nav a:focus-visible {
  color: var(--magenta);
  outline: none;
}

.site-header-compact {
  height: 98px;
}

.site-header-compact .brand-mark {
  top: 14px;
  width: 58px;
  height: 68px;
}

.site-header-compact .header-rule {
  top: 81px;
}

.site-header-compact .desktop-nav {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* Mídias vazias                                                              */
/* -------------------------------------------------------------------------- */

.media-slot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #101010;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.035) 25%, #0b0b0b 25%);
  background-position: 12px 0, 12px 0, 0 0, 0 0;
  background-size: 24px 24px;
  background-repeat: repeat;
}

.media-slot.has-media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.media-slot::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.slot-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: block;
  width: min(78%, 380px);
  padding: 11px 15px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
}

.has-media > .slot-label {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* Elementos compartilhados                                                   */
/* -------------------------------------------------------------------------- */

.eyebrow {
  margin: 0 0 17px;
  color: #686868;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow-light {
  color: #929292;
}

.button {
  display: inline-flex;
  width: max-content;
  min-width: 150px;
  min-height: 44px;
  padding: 11px 24px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-solid {
  background: #000;
  color: #fff;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--magenta);
  outline: none;
}

.button-outline {
  min-width: auto;
  min-height: 40px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--magenta);
  background: var(--magenta);
  outline: none;
}

.short-rule {
  display: block;
  width: 65px;
  height: 1px;
  margin: 25px 0 23px;
  background: rgba(255, 255, 255, 0.85);
}

.text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--magenta);
  outline: none;
}

.section-heading {
  margin: 0 auto 32px;
  width: min(1065px, calc(100% - 48px));
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

/* -------------------------------------------------------------------------- */
/* Home                                                                       */
/* -------------------------------------------------------------------------- */

.home-hero {
  display: grid;
  height: clamp(320px, 19vw, 420px);
  place-items: center;
  background-color: #080808;
}

.hero-brand {
  position: relative;
  z-index: 4;
  display: grid;
  width: clamp(170px, 14vw, 260px);
  height: clamp(170px, 14vw, 260px);
  place-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-brand.is-empty {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: rotate(-4deg);
}

.hero-brand.is-empty span {
  transform: rotate(4deg);
}

.home-hero > .slot-label {
  top: auto;
  bottom: 18px;
  transform: translateX(-50%);
}

.about-band {
  padding: 60px var(--page-pad);
  background: var(--charcoal);
}

.about-card {
  display: grid;
  max-width: 1800px;
  min-height: 430px;
  margin: 0 auto;
  grid-template-columns: 2.05fr 1fr;
  background: #fff;
}

.about-copy {
  display: flex;
  padding: 64px 55px 64px clamp(80px, 16.4vw, 312px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #000;
}

.about-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(44px, 3.3vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(21px, 1.55vw, 29px);
  line-height: 1.15;
}

.about-description {
  max-width: 470px;
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.social-list {
  display: flex;
  margin: 18px 0 40px;
  gap: 8px;
}

.social-list a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.social-list a:hover,
.social-list a:focus-visible {
  background: var(--magenta);
  outline: none;
}

.about-image {
  min-height: 430px;
}

.welcome-band {
  display: grid;
  min-height: 284px;
  grid-template-columns: 40% 60%;
  background: #000;
}

.welcome-image {
  min-height: 284px;
}

.welcome-copy {
  display: grid;
  min-width: 0;
  padding: 35px clamp(32px, 4.5vw, 84px) 35px clamp(52px, 14.5vw, 270px);
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: 35px;
}

.welcome-intro {
  max-width: 390px;
}

.welcome-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.welcome-title {
  margin: 0;
  white-space: pre-line;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.soon-strip {
  display: flex;
  min-height: 150px;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #181818;
  color: #050505;
  text-align: center;
}

.soon-strip p {
  margin: 0 0 7px;
  color: #666;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.soon-strip h2 {
  margin: 0;
  font-size: clamp(30px, 2.4vw, 44px);
  letter-spacing: -0.035em;
}

/* -------------------------------------------------------------------------- */
/* Work                                                                       */
/* -------------------------------------------------------------------------- */

.work-intro {
  display: grid;
  min-height: 267px;
  grid-template-columns: 62.5% 37.5%;
  background: #000;
}

.work-copy {
  display: flex;
  min-height: 267px;
  padding: 42px 55px 42px clamp(70px, 13vw, 245px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--charcoal);
}

.work-copy h1 {
  margin: 0 0 15px;
  font-size: 42px;
  line-height: 1;
}

.work-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.work-cover {
  min-height: 267px;
}

.work-gallery-section {
  min-height: 650px;
  padding: 64px 24px 32px;
  overflow: hidden;
  background: #000;
}

.work-collage {
  position: relative;
  width: min(1080px, 92vw);
  height: 560px;
  margin: 0 auto;
}

.collage-item {
  position: absolute;
  margin: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: filter 180ms ease, transform 180ms ease;
}

.collage-item:hover {
  z-index: 20 !important;
  filter: brightness(1.15);
  transform: translateY(-6px) scale(1.015);
}

.collage-item-1 { z-index: 2; top: 42px; left: 0; width: 24%; height: 330px; }
.collage-item-2 { z-index: 3; top: 12px; left: 9%; width: 24%; height: 286px; }
.collage-item-3 { z-index: 5; top: 62px; left: 19%; width: 35%; height: 360px; }
.collage-item-4 { z-index: 7; top: 68px; left: 34%; width: 31%; height: 345px; }
.collage-item-5 { z-index: 6; top: 22px; left: 53%; width: 25%; height: 365px; }
.collage-item-6 { z-index: 4; top: 0; left: 66%; width: 27%; height: 305px; }
.collage-item-7 { z-index: 5; top: 51px; left: 78%; width: 22%; height: 325px; }
.collage-item-8 { z-index: 8; top: 272px; left: 47%; width: 28%; height: 245px; }

.collage-item:nth-child(2n).is-empty { background-color: #151515; }
.collage-item:nth-child(3n).is-empty { background-color: #202020; }

/* -------------------------------------------------------------------------- */
/* Events                                                                     */
/* -------------------------------------------------------------------------- */

.events-page {
  min-height: 560px;
  background: #000;
}

.events-layout {
  display: grid;
  width: min(980px, calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  grid-template-columns: minmax(350px, 1fr) 414px;
  align-items: center;
  gap: clamp(70px, 8vw, 145px);
}

.events-copy h1 {
  margin: 0 0 32px;
  font-size: 38px;
  line-height: 1;
}

.events-copy p:not(.eyebrow) {
  max-width: 370px;
  margin: 0 0 55px;
  font-size: 16px;
  line-height: 1.85;
}

.event-poster-wrap {
  position: relative;
  width: 414px;
  height: 414px;
}

.event-poster-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 19px;
  left: 18px;
  width: 100%;
  height: 100%;
  background: #fff;
}

.event-poster {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #111;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px 4px);
  background-size: 7px 7px, 9px 9px;
}

.event-poster.has-media {
  background-size: cover;
}

/* -------------------------------------------------------------------------- */
/* Collections                                                                */
/* -------------------------------------------------------------------------- */

.collections-logos {
  position: relative;
  padding: 34px 0 36px;
  background: var(--gray);
}

.collections-logos > .section-heading,
.collections-videos > .section-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.logo-grid {
  display: grid;
  width: min(1065px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.collection-logo {
  aspect-ratio: 1;
  margin: 0;
  background-color: #0d0d0d;
}

.collection-logo:nth-child(2n).is-empty {
  background-color: #171717;
}

.collection-logo:nth-child(3n).is-empty {
  background-color: #f3f3f3;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.045) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0, 0, 0, 0.045) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.045) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.045) 25%, #f7f7f7 25%);
  background-size: 24px 24px;
  color: #000;
}

.collection-logo:nth-child(3n).is-empty .slot-label {
  border-color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.82);
  color: #000;
}

.collection-logo-5 {
  grid-column: 1;
}

.collection-logo-6 {
  grid-column: 4;
}

.collections-videos {
  position: relative;
  min-height: 438px;
  padding: 49px 53px;
  background: #151515;
}

.video-grid {
  display: grid;
  max-width: 1210px;
  grid-template-columns: repeat(2, minmax(0, 605px));
  gap: 0;
}

.video-card {
  display: block;
  min-width: 0;
}

.video-card:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 4px;
}

.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
}

.video-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-card:hover .video-play,
.video-card:focus-visible .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.video-duration {
  position: absolute;
  z-index: 4;
  right: 9px;
  bottom: 8px;
  padding: 3px 5px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 10px;
}

.video-title {
  display: block;
  padding: 10px 2px 0;
  color: #a8a8a8;
  font-size: 12px;
}

/* -------------------------------------------------------------------------- */
/* Rodapé                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  display: grid;
  min-height: 190px;
  padding: 30px;
  place-items: center;
  background: #000;
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer-compact {
  min-height: 98px;
}

/* -------------------------------------------------------------------------- */
/* Responsivo                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .about-copy {
    padding-left: 80px;
  }

  .welcome-copy {
    padding-left: 70px;
    grid-template-columns: 1fr 0.8fr;
  }

  .events-layout {
    gap: 55px;
  }

  .collections-videos {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 118px;
  }

  .brand-mark,
  .site-header-compact .brand-mark {
    top: 17px;
    left: 24px;
    width: 58px;
    height: 72px;
  }

  .header-rule,
  .site-header-compact .header-rule {
    top: 90px;
    left: 101px;
    right: 91px;
  }

  .header-tools,
  .desktop-nav {
    display: none;
  }

  .menu-button {
    top: 14px;
    right: 14px;
    width: 64px;
    height: 60px;
  }

  .home-hero {
    height: 360px;
  }

  .about-card {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .about-copy {
    padding: 55px 44px;
  }

  .welcome-band {
    grid-template-columns: 1fr;
  }

  .welcome-image {
    min-height: 310px;
  }

  .welcome-copy {
    min-height: 310px;
    padding: 55px 45px;
    grid-template-columns: 1fr 0.75fr;
  }

  .work-intro {
    grid-template-columns: 1fr 0.72fr;
  }

  .work-copy {
    padding-left: 52px;
  }

  .work-collage {
    width: 850px;
    max-width: none;
    transform: translateX(calc((100vw - 850px) / 2));
    transform-origin: center;
  }

  .events-layout {
    width: min(680px, calc(100% - 48px));
    padding: 70px 0 90px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .events-copy {
    max-width: 470px;
  }

  .event-poster-wrap {
    justify-self: end;
  }

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

  .collection-logo-5,
  .collection-logo-6 {
    grid-column: auto;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  body {
    border-top-width: 3px;
  }

  .menu-panel {
    padding: 95px 30px 35px;
  }

  .home-hero {
    height: 330px;
  }

  .hero-brand {
    width: 150px;
    height: 150px;
  }

  .home-hero > .slot-label {
    bottom: 12px;
  }

  .about-band {
    padding: 22px 18px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-copy {
    min-height: 480px;
    padding: 52px 30px;
  }

  .about-copy h1 {
    font-size: 50px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-image {
    min-height: 360px;
  }

  .welcome-image {
    min-height: 260px;
  }

  .welcome-copy {
    min-height: 410px;
    padding: 50px 30px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .welcome-title {
    font-size: 44px;
  }

  .soon-strip {
    min-height: 140px;
  }

  .work-intro {
    grid-template-columns: 1fr;
  }

  .work-copy {
    min-height: 390px;
    padding: 55px 28px;
  }

  .work-cover {
    min-height: 290px;
  }

  .work-gallery-section {
    padding: 30px 18px;
  }

  .work-collage {
    display: grid;
    width: 100%;
    height: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .collage-item {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .collage-item:nth-child(3n) {
    aspect-ratio: 1;
  }

  .collage-item:hover {
    transform: none;
  }

  .events-layout {
    width: calc(100% - 40px);
    padding-top: 50px;
  }

  .events-copy h1 {
    font-size: 34px;
  }

  .event-poster-wrap {
    width: calc(100% - 18px);
    height: auto;
    aspect-ratio: 1;
    justify-self: start;
  }

  .logo-grid {
    width: calc(100% - 28px);
    gap: 3px;
  }

  .collections-videos {
    min-height: auto;
    padding: 28px 14px 48px;
  }

  .video-title {
    padding-left: 4px;
  }

  .site-footer {
    min-height: 145px;
  }
}

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

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