/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: "Speedee";
  src:
    url("assets/fonts/speedee_rg-webfont.woff2") format("woff2"),
    url("assets/fonts/speedee_rg-webfont.woff") format("woff"),
    url("assets/fonts/Speedee_Rg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Speedee";
  src:
    url("assets/fonts/speedee_bd-webfont.woff2") format("woff2"),
    url("assets/fonts/speedee_bd-webfont.woff") format("woff"),
    url("assets/fonts/Speedee_Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Speedee";
  src:
    url("assets/fonts/speedee-black-webfont.woff2") format("woff2"),
    url("assets/fonts/speedee-black-webfont.woff") format("woff"),
    url("assets/fonts/Speedee-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Speedee Condensed";
  src:
    url("assets/fonts/speedeecd_bd-webfont.woff2") format("woff2"),
    url("assets/fonts/speedeecd_bd-webfont.woff") format("woff"),
    url("assets/fonts/SpeedeeCd_Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  /* Layout */
  --site-max: 1280px;
  --content-max: 1120px;
  --content-sm: 480px;
  --media-sm: 440px;
  --grid-min-sm: 280px;
  --grid-min-md: 300px;
  --media-xs: 240px;
  --site-gutter: clamp(20px, 5vw, 64px);
  --site-pad: max(var(--site-gutter), calc((100vw - var(--site-max)) / 2 + var(--site-gutter)));

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* Type */
  --font-sans: "Speedee", Arial, Helvetica, sans-serif;
  --font-display: "Speedee", Arial, Helvetica, sans-serif;
  --font-display-condensed: "Speedee Condensed", "Speedee", Arial, Helvetica, sans-serif;
  --font-body: var(--font-sans);

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.84rem);
  --text-sm: clamp(0.88rem, 0.84rem + 0.18vw, 1rem);
  --text-md: clamp(1rem, 0.96rem + 0.24vw, 1.14rem);
  --text-lg: clamp(1.18rem, 1.08rem + 0.48vw, 1.48rem);
  --text-xl: clamp(1.64rem, 1.34rem + 1.48vw, 2.48rem);
  --text-2xl: clamp(2.2rem, 1.56rem + 3.2vw, 4.1rem);
  --text-3xl: clamp(3.4rem, 2.12rem + 6.4vw, 7.2rem);

  --leading-tight: 0.94;
  --leading-title: 1.02;
  --leading-body: 1.55;

  /* Text styles */
  --tracking-normal: 0;
  --tracking-label: 0.04em;
  --weight-regular: 400;
  --weight-bold: 700;
  --weight-black: 900;

  /* Color */
  --color-paper: #f4e6c2;
  --color-white: #ffffff;
  --color-ink: #161513;
  --color-charcoal: #25231f;
  --color-muted: #312f2c;
  --color-line: #ddd2c0;

  --color-red: #db0007;
  /* --color-red-dark: #8f0f14; */
  --color-mcd-orange: #ffbc0d;
  --color-gold: #ffc72c;
  --color-gold-deep: #e6a900;
  --color-green: #12633a;
  --color-green-dark: #0a3221;
  --color-sky: #78aeca;

  --color-bg: var(--color-paper);
  --color-text: var(--color-ink);
  --color-text-soft: var(--color-muted);
  --color-accent: var(--color-red);
  --color-highlight: var(--color-gold);

  /* Shape and effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: -4px 15px 25px rgba(0, 0, 0, 0.25);
  --shadow-hard: -4px 8px 5px rgba(22, 21, 19, 0.25);

  /* Section edges */
  --rip-edge-height: clamp(54px, 7vw, 104px);

  --hero-parallax-distance: 260px;
  --hero-parallax-start-offset: -20px;
  --hero-bg-position-x: center;
  --hero-bg-position-y: bottom;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: var(--leading-body);
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-4xl);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-md);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

/* ==========================================================================
   Typography
   ========================================================================== */

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

h1,
h2,
h3 {
  font-family: var(--font-display-condensed);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-tight);
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin-bottom: var(--space-lg);
  font-size: var(--text-3xl);
}

p {
  max-width: 64ch;
  margin-bottom: var(--space-lg);
}

.eyebrow {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-title);
  text-transform: uppercase;
}

/* ==========================================================================
  Site Header
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--site-pad);
  color: var(--color-white);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(44px, 5vw, 68px);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-md), 3vw, var(--space-xl));
}

.site-nav a {
  position: relative;
  color: inherit;
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-title);
  padding: var(--space-xs) var(--space-sm);
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  transition:
    color 160ms ease,
    text-shadow 160ms ease;
}

.site-nav a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-white);
  text-shadow: none;
}

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

/* ==========================================================================
  Hero
   ========================================================================== */

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: clamp(620px, 82svh, 900px);
  padding: var(--space-4xl) var(--site-pad);
  background: transparent;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    url("assets/images/SVG/rip2-hero-mask.svg");
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size:
    100% calc(100% - var(--rip-edge-height) + 1px),
    100% var(--rip-edge-height);
  -webkit-mask-position:
    center top,
    center bottom;
  mask-image:
    linear-gradient(#000 0 0),
    url("assets/images/SVG/rip2-hero-mask.svg");
  mask-repeat: no-repeat, no-repeat;
  mask-size:
    100% calc(100% - var(--rip-edge-height) + 1px),
    100% var(--rip-edge-height);
  mask-position:
    center top,
    center bottom;
}

.hero__image {
  position: absolute;
  inset: 0 0 calc(-1 * var(--hero-parallax-distance) + 0px);
  background:
    linear-gradient(180deg, rgba(22, 21, 19, 0), rgba(22, 21, 19, 0.34)),
    url("assets/images/mural-hero.webp") var(--hero-bg-position-x) var(--hero-bg-position-y) / cover no-repeat;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display-condensed);
  margin-right: auto;
  margin-left: auto;
}

.hero__headline {
  width: min(68vw, 632px);
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--color-highlight);
}

.hero p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.86);
}

/* ==========================================================================
  Story
   ========================================================================== */

.story {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--rip-edge-height));
  overflow: hidden;
  background: var(--color-paper);
  color: var(--color-text);
  padding: calc(var(--rip-edge-height) + var(--space-3xl)) var(--site-pad) var(--space-4xl);
}

.story__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(var(--grid-min-sm), 0.95fr) minmax(var(--grid-min-md), 1.05fr);
  gap: clamp(var(--space-xl), 5vw, var(--space-3xl));
  align-items: center;
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.story__copy {
  max-width: var(--content-sm);
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  text-align: center;
}

.story p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
}

.story__media {
  position: relative;
  z-index: 2;
  --story-pattern-right: -25%;
  --story-pattern-width: 225%;
  --story-pattern-opacity: 1;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  width: min(100%, var(--media-sm));
  justify-self: center;
  transform: rotate(-2.5deg);
}

.story__media::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: var(--story-pattern-right);
  width: var(--story-pattern-width);
  aspect-ratio: 1121 / 837;
  background: url("assets/images/pattern2.webp") center / contain no-repeat;
  content: "";
  opacity: var(--story-pattern-opacity);
  pointer-events: none;
  transform: translateY(-50%) rotate(2.5deg);
}

.story__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: 8px solid rgba(255, 248, 235, 0.72);
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
  Artists
   ========================================================================== */

.artists {
  position: relative;
  padding: var(--space-3xl) var(--site-pad);
  background: var(--color-mcd-orange);
  color: var(--color-ink);
}

.artists::before {
  position: absolute;
  inset: 0;
  background: url("assets/images/artistbg.webp") center / cover no-repeat;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.artists__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.artists__header {
  display: grid;
  justify-items: center;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  isolation: isolate;
}

.artist-card {
  position: relative;
  display: grid;
  grid-template-columns: var(--media-xs) minmax(0, 1fr);
  align-items: stretch;
  /* gap: var(--space-md); */
  width: 100%;
  padding:0;
  background: var(--color-paper);
  box-shadow: var(--shadow-hard);
}

.artist-card:first-child {
  z-index: 1;
  transform: rotate(-2deg);
}

.artist-card:nth-child(2) {
  z-index: 2;
  transform: translateY(var(--space-sm)) rotate(2deg);
}

.artist-card__image {
  width: var(--media-xs);
  height: auto;
  aspect-ratio: 3 / 4.5;
  object-fit: cover;
  object-position: center 20%;
}

.artist-card__body {
  align-self: start;
  padding: var(--space-md);
}

.artist-card h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  font-size: var(--text-xl);
  padding-block-start: 10px;
  padding-inline: 5px;
}

.artist-card h3::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 60%;
  width: 120%;
  height: 1.28em;
  background: var(--color-red);
  content: "";
  transform: translate(-50%, -48%) rotate(0deg);
}

.artist-card p {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  hyphens: none;
  line-height: var(--leading-body);
  overflow-wrap: normal;
  text-wrap: pretty;
}

/* ==========================================================================
  BTS
   ========================================================================== */

.bts {
  padding: var(--space-3xl) var(--site-pad);
  background: #000000;
  color: var(--color-white);
}

.bts__content {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.bts__header {
  display: grid;
  justify-items: center;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.bts__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(34px, 4vw, 56px);
  gap: var(--space-xs);
  isolation: isolate;
}

.bts-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: visible;
  background: var(--color-charcoal);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.bts-tile::before {
  position: absolute;
  inset: 0;
  background: var(--color-charcoal);
  content: "";
}

.bts-tile:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: span 4;
}

.bts-tile:nth-child(2) {
  grid-column: 5 / span 4;
  grid-row: span 2;
}

.bts-tile:nth-child(3) {
  grid-column: 9 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(4) {
  grid-column: 11 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(5) {
  grid-column: 5 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(6) {
  grid-column: 7 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(7) {
  grid-column: 9 / span 4;
  grid-row: span 2;
}

.bts-tile:nth-child(8) {
  grid-column: 1 / span 3;
  grid-row: span 3;
}

.bts-tile:nth-child(9) {
  grid-column: 4 / span 3;
  grid-row: span 3;
}

.bts-tile:nth-child(10) {
  grid-column: 7 / span 3;
  grid-row: span 3;
}

.bts-tile:nth-child(11) {
  grid-column: 10 / span 3;
  grid-row: span 3;
}

.bts-tile:nth-child(12) {
  grid-column: 1 / span 6;
  grid-row: span 2;
}

.bts-tile:nth-child(13) {
  grid-column: 7 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(14) {
  grid-column: 9 / span 2;
  grid-row: span 2;
}

.bts-tile:nth-child(15) {
  grid-column: 11 / span 2;
  grid-row: span 2;
}

.bts-tile img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.bts-tile:nth-child(2) img {
  object-position: center 18%;
}

.bts-tile.is-active {
  z-index: 20;
  cursor: zoom-out;
}

.bts-tile.is-active img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58vw, 720px);
  height: auto;
  max-width: none;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
  animation: bts-preview-pop 150ms ease-out;
  transform: translate(-50%, -50%);
  transition: none;
}

@keyframes bts-preview-pop {
  from {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ==========================================================================
  Spot
   ========================================================================== */

.spot {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--site-pad) calc(var(--space-4xl) + var(--space-xl));
  background: url("assets/images/pattern3.webp") center / cover repeat;
  color: var(--color-white);
}

.spot__content {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.spot__header {
  display: grid;
  justify-items: center;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.spot .section-divider {
  filter: brightness(0) invert(1);
}

.spot__video {
  position: relative;
  width: min(100%, 920px);
  margin-right: auto;
  margin-left: auto;
  background: #000000;
  box-shadow: var(--shadow-soft);
}

.spot__video::before {
  position: absolute;
  z-index: 0;
  inset: calc(-1 * var(--space-md));
  background: var(--color-highlight);
  box-shadow: var(--shadow-hard);
  content: "";
  transform: rotate(-0.8deg);
}

.spot__video video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #000000;
}

.director {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
  width: min(100%, 820px);
  margin: calc(var(--space-4xl) + var(--space-xl)) auto 0;
  padding: var(--space-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-hard);
  color: var(--color-ink);
}

.director__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.director__copy {
  padding-right: var(--space-md);
}

.director__label {
  margin-bottom: var(--space-xs);
  color: var(--color-red);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-title);
  text-transform: uppercase;
}

.director h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.director p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
}

/* ==========================================================================
  Mural Location
   ========================================================================== */

.mural-location {
  position: relative;
  overflow: hidden;
  --map-pin-x: 73%;
  --map-pin-y: 30%;
  --map-pin-offset-x: -70%;
  --map-pin-offset-y: -50%;
  --map-min-width: 1600px;
  --map-width: 160vw;
  --map-max-width: 2400px;
  --map-edge-solid: 0px;
  --map-edge-fade: 10%;
  --map-edge-opacity: 0.28;
  --map-mask-start: 5%;
  --map-mask-end: 95%;
  background: #000000;
  color: var(--color-white);
  padding: var(--space-3xl) var(--site-pad);
}

.mural-location::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #000000 0 var(--map-edge-solid),
      rgba(0, 0, 0, var(--map-edge-opacity)) var(--map-edge-solid),
      rgba(0, 0, 0, 0) calc(var(--map-edge-solid) + var(--map-edge-fade)),
      rgba(0, 0, 0, 0) calc(100% - var(--map-edge-solid) - var(--map-edge-fade)),
      rgba(0, 0, 0, var(--map-edge-opacity)) calc(100% - var(--map-edge-solid)),
      #000000 calc(100% - var(--map-edge-solid)) 100%
    ),
    linear-gradient(90deg, rgba(22, 21, 19, 0.68) 0%, rgba(22, 21, 19, 0.42) 34%, rgba(22, 21, 19, 0.08) 62%, rgba(22, 21, 19, 0) 100%);
  content: "";
  pointer-events: none;
}

.mural-location__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(var(--grid-min-sm), 0.95fr) minmax(var(--grid-min-md), 1.05fr);
  gap: clamp(var(--space-xl), 5vw, var(--space-3xl));
  align-items: center;
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.mural-location__copy {
  position: relative;
  z-index: 2;
  max-width: var(--content-sm);
  justify-self: center;
  text-align: center;
  text-wrap: balance;
}

.mural-location__intro {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-md);
}

.mural-location__address {
  display: grid;
  gap: var(--space-xs);
  margin: var(--space-lg) 0;
  color: var(--color-white);
  font-family: var(--font-display-condensed);
  font-size: var(--text-xl);
  font-style: normal;
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-title);
  text-transform: uppercase;
}

.mural-location__map-anchor {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 100%;
}

.mural-location__map {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(var(--map-min-width), var(--map-width), var(--map-max-width));
  transform: translate(var(--map-pin-offset-x), var(--map-pin-offset-y));
}

.mural-location__map img {
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000000 var(--map-mask-start), #000000 var(--map-mask-end), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000000 var(--map-mask-start), #000000 var(--map-mask-end), transparent 100%);
}

/* ==========================================================================
  Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: #000000;
  color: var(--color-white);
}

.site-footer__cta {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(76px, 8vw, 112px);
  place-items: center;
  overflow: visible;
  background: var(--color-mcd-orange);
  box-shadow: inset 0 8px 15px rgba(0, 0, 0, 0.25);
  color: var(--color-ink);
}

.site-footer__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-xl);
  border: 3px solid currentColor;
  border-radius: 999px;
  font-size: var(--text-lg);
  font-weight: var(--weight-black);
  line-height: var(--leading-title);
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
  background: var(--color-white);
  color: var(--color-ink);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(86px, 9vw, 128px);
  place-items: center;
  overflow: hidden;
  background: #141414;
}

.site-footer__logo {
  display: inline-flex;
  width: clamp(32px, 4vw, 48px);
  margin: 0;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.footer-art {
  position: absolute;
  z-index: 2;
  width: clamp(130px, 20vw, 250px);
  height: auto;
  max-width: none;
  pointer-events: none;
}

.footer-art--left {
  bottom: 0;
  left: max(var(--site-gutter), calc((100vw - var(--content-max)) / 2));
}

.footer-art--right {
  bottom: 0;
  right: max(var(--site-gutter), calc((100vw - var(--content-max)) / 2));
}

/* ==========================================================================
  Shared Components
   ========================================================================== */

.section-title {
  margin-bottom: var(--space-sm);
  font-size: var(--text-2xl);
}

.section-divider {
  width: min(100%, 200px);
  margin: 0 auto var(--space-lg);
}

.artists__header .section-divider {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--space-lg);
  background: var(--color-highlight);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-title);
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-red);
  box-shadow: var(--shadow-hard);
  color: var(--color-white);
  transform: translateY(-2px);
}

.button:focus-visible,
.site-footer__button:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 4px;
}

/* ==========================================================================
  Responsive
   ========================================================================== */

@media (min-width: 1935px) {
  .hero {
    --hero-bg-position-y: 10%;
  }
}

@media (min-width: 2000px) {
  .mural-location {
    --map-edge-solid: max(0px, calc((100vw - var(--content-max)) / 6));
    --map-edge-fade: 240px;
    --map-edge-opacity: 0.86;
    --map-mask-start: 5%;
    --map-mask-end: 95%;
  }
}

@media (max-width: 1100px) {
  .mural-location {
    --map-min-width: 900px;
  }

  .story__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .story__copy {
    max-width: min(100%, 520px);
  }

  .story__copy,
  .story__media {
    grid-column: auto;
    grid-row: auto;
  }

  .story__media {
    --story-pattern-width: 150%;
    --story-pattern-opacity: 0.22;
    width: min(100%, 420px);
  }

  .artists__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
  }

  .bts__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(42px, 8vw, 66px);
  }

  .bts-tile:nth-child(n) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bts-tile:nth-child(1),
  .bts-tile:nth-child(7),
  .bts-tile:nth-child(12) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .artist-card,
  .artist-card:first-child,
  .artist-card:nth-child(2) {
    width: min(100%, 820px);
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .artist-card__image {
    height: 100%;
    aspect-ratio: 1;
  }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .mural-location {
    background: url("assets/images/map-location-v2.webp") 70% center / cover no-repeat #000000;
  }

  .mural-location__map-anchor {
    display: none;
  }
}

@media (min-width: 561px) and (max-width: 820px) {
  .director {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .director__image {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 800px) {
  .mural-location {
    background:
      linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
      url("assets/images/map-mobile.webp") center / cover no-repeat;
  }

  .mural-location__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .mural-location__copy {
    max-width: min(100%, 520px);
  }

  .mural-location__map-anchor {
    display: none;
  }
}

@media (max-width: 560px) {
  .spot {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-3xl);
  }

  .hero {
    --hero-parallax-distance: 0px;
    --hero-parallax-start-offset: 0px;
    align-items: start;
    min-height: clamp(460px, 68svh, 620px);
  }

  .hero__content {
    align-self: start;
    margin-top: 60%;
    transform: translateY(-50%);
  }

  .site-header {
    gap: var(--space-md);
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .site-nav {
    gap: var(--space-sm);
  }

  .site-nav a {
    font-size: var(--text-xs);
  }

  .artist-card {
    grid-template-columns: 1fr;
    transform: none;
  }

  .artist-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .bts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(96px, 32vw, 150px);
  }

  .bts-tile:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bts-tile:nth-child(1),
  .bts-tile:nth-child(7),
  .bts-tile:nth-child(12) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bts-tile img {
    height: 100%;
  }

  .spot__video {
    width: calc(100% + 2 * var(--site-pad));
    margin-right: calc(-1 * var(--site-pad));
    margin-left: calc(-1 * var(--site-pad));
    border-top: var(--space-xs) solid var(--color-highlight);
    border-bottom: var(--space-xs) solid var(--color-highlight);
    box-shadow: none;
  }

  .spot__video::before {
    display: none;
  }

  .director {
    --director-mobile-image: min(36vw, 145px);
    display: block;
    margin: var(--space-xl) auto 0;
    padding: var(--space-md);
  }

  .director__image {
    float: right;
    width: var(--director-mobile-image);
    aspect-ratio: 1;
    margin-bottom: var(--space-sm);
    margin-left: var(--space-md);
    object-position: center 22%;
  }

  .director__copy {
    display: block;
    padding: 0;
  }

  .director__label,
  .director h3 {
    grid-column: auto;
  }

  .director__label {
    margin-bottom: var(--space-xs);
  }

  .director h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
  }

  .director p:last-child {
    margin-top: 0;
    font-size: var(--text-xs);
  }

  .site-footer__button {
    max-width: calc(100% - 2 * var(--space-xl));
    padding: 0 var(--space-lg);
    font-size: var(--text-md);
  }

  .footer-art--left,
  .footer-art--right {
    display: none;
  }

  .story {
    background: var(--color-paper);
  }
}
