:root {
  --black: #050505;
  --ink: #151411;
  --muted: #706b63;
  --paper: #f3efe7;
  --stone: #d4cec3;
  --concrete: #a6a7a4;
  --park: #1f3328;
  --water: #557582;
  --signal: #b51e1e;
  --white: #ffffff;
  --line: rgba(21, 20, 17, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

img.is-broken {
  min-height: 280px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 10px, rgba(0, 0, 0, 0.08) 10px 20px),
    var(--ink);
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 30px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  color: var(--ink);
  background: rgba(243, 239, 231, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.header-links.right {
  justify-self: end;
  padding-right: 92px;
}

.header-links a,
.cart-button,
.text-link {
  position: relative;
}

.header-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.header-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.cart-button,
.icon-button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.cart-button {
  position: absolute;
  right: 30px;
  min-height: 44px;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-left: 4px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.site-header.scrolled .cart-button span,
body.menu-open .cart-button span {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0)),
    linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04));
  content: "";
}

.hero img {
  height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  position: absolute;
  bottom: 8svh;
  left: clamp(20px, 6vw, 96px);
  z-index: 2;
  max-width: min(680px, calc(100% - 40px));
}

.hero-copy p,
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 142px);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.text-link {
  display: inline-block;
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.cinema-reel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.cinema-reel::before,
.cinema-reel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.cinema-reel::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.72)),
    linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.42));
}

.cinema-reel::after {
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 6px);
  mix-blend-mode: screen;
  transform: translateX(-3%);
  animation: reelScan 16s linear infinite;
}

.reel-stage,
.reel-frame,
.reel-frame img {
  position: absolute;
  inset: 0;
}

.reel-stage {
  z-index: 1;
}

.reel-frame {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: reelFade 18s ease-in-out infinite;
}

.reel-frame img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.1) translateX(-1.8%);
  animation: reelDrift 18s ease-in-out infinite;
}

.city-frame {
  animation-delay: 0s;
}

.beach-frame {
  animation-delay: 6s;
}

.park-frame {
  animation-delay: 12s;
}

.city-frame img {
  object-position: center 22%;
}

.beach-frame img {
  object-position: center 18%;
  animation-delay: 6s;
}

.park-frame img {
  object-position: center 38%;
  animation-delay: 12s;
}

.reel-copy {
  position: absolute;
  bottom: clamp(72px, 10svh, 116px);
  left: clamp(20px, 6vw, 96px);
  z-index: 3;
  width: min(720px, calc(100% - 40px));
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.cinema-reel.is-visible .reel-copy {
  opacity: 1;
  transform: translateY(0);
}

.reel-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.4vw, 132px);
  line-height: 0.9;
}

.reel-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 22px 0 28px;
  color: rgba(243, 239, 231, 0.84);
  font-size: 16px;
  line-height: 1.6;
}

.reel-caption {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 26px;
  left: clamp(18px, 4vw, 54px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243, 239, 231, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

@keyframes reelFade {
  0%,
  26% {
    opacity: 1;
    transform: scale(1);
  }

  33%,
  93% {
    opacity: 0;
    transform: scale(1.035);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes reelDrift {
  0%,
  26% {
    transform: scale(1.09) translateX(-1.8%);
  }

  33%,
  93% {
    transform: scale(1.16) translateX(1.8%);
  }

  100% {
    transform: scale(1.09) translateX(-1.8%);
  }
}

@keyframes reelScan {
  to {
    transform: translateX(3%);
  }
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes objectFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes railPulse {
  0%,
  100% {
    translate: 0 var(--lift, 0);
  }

  50% {
    translate: 28px calc(var(--lift, 0) - 18px);
  }
}

@keyframes cardSway {
  0%,
  100% {
    rotate: var(--sway, 0deg);
  }

  50% {
    rotate: calc(var(--sway, 0deg) * -0.65);
  }
}

@keyframes typeSlide {
  0%,
  100% {
    transform: translateX(-4%);
  }

  50% {
    transform: translateX(4%);
  }
}

@keyframes tagBlink {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

@keyframes lineSweep {
  to {
    transform: translateX(72px);
  }
}

.intro-band {
  display: grid;
  place-items: center;
  min-height: 34vh;
  padding: 66px 22px;
  color: var(--ink);
  background: var(--paper);
}

.intro-band p {
  max-width: 1040px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4.4vw, 66px);
  line-height: 1.03;
  text-align: center;
}

.motion-marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.marquee-track span {
  display: inline-grid;
  min-height: 54px;
  place-items: center;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ink);
  background: var(--stone);
}

.category-showcase a {
  display: grid;
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  transform: perspective(900px) rotateX(calc(var(--my, 0) * -2deg)) rotateY(calc(var(--mx, 0) * 2deg));
  transition: background 180ms ease, transform 180ms ease;
}

.category-showcase a:hover {
  background: var(--paper);
}

.category-showcase span,
.product-card p {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.category-showcase strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.category-showcase em {
  max-width: 250px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.product-focus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr) minmax(280px, 0.86fr);
  gap: 1px;
  overflow: hidden;
  color: var(--ink);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.focus-copy,
.focus-stage,
.focus-buy-list {
  min-height: 78vh;
}

.focus-copy {
  display: grid;
  align-content: end;
  padding: clamp(30px, 5vw, 70px);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.82), rgba(31, 51, 40, 0.78)),
    var(--black);
}

.focus-copy h2 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.7vw, 104px);
  line-height: 0.9;
}

.focus-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 30px;
  color: rgba(243, 239, 231, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.focus-stage {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(21, 20, 17, 0.08) 0 1px, transparent 1px 62px),
    linear-gradient(160deg, var(--white), var(--stone));
  isolation: isolate;
}

.focus-stage::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(21, 20, 17, 0.12);
  content: "";
  transform: rotate(-3deg);
}

.focus-product {
  position: absolute;
  margin: 0;
  opacity: 0;
  transform: translateY(34px) rotate(var(--focus-rotate, 0deg)) scale(0.94);
  transition: opacity 800ms ease, transform 900ms ease;
}

.product-focus.is-visible .focus-product {
  opacity: 1;
  transform: translateY(0) rotate(var(--focus-rotate, 0deg)) scale(1);
}

.focus-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.24));
}

.focus-main {
  --focus-rotate: -5deg;
  right: 18%;
  bottom: 8%;
  z-index: 2;
  width: min(58%, 420px);
  animation: productFloat 6s ease-in-out infinite;
}

.focus-secondary {
  --focus-rotate: 8deg;
  top: 10%;
  left: 9%;
  width: min(36%, 260px);
  animation: productFloat 7s ease-in-out infinite reverse;
}

.focus-tertiary {
  --focus-rotate: 5deg;
  right: 5%;
  bottom: 26%;
  width: min(38%, 280px);
  animation: productFloat 8s ease-in-out infinite;
  animation-delay: -1.8s;
}

.focus-tertiary.black-column-card {
  right: 8%;
  bottom: 14%;
  width: min(30%, 220px);
}

.focus-tertiary.black-column-card img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center 16%;
}

.focus-buy-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  background: var(--paper);
}

.focus-buy-list article {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  transform:
    perspective(900px)
    rotateX(calc(var(--my, 0) * -2deg))
    rotateY(calc(var(--mx, 0) * 2deg));
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.focus-buy-list article:hover,
.focus-buy-list article.is-pointer-active {
  color: var(--white);
  background: var(--ink);
}

.focus-buy-list span,
.focus-buy-list p {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.focus-buy-list h3,
.focus-buy-list p {
  margin: 0;
}

.focus-buy-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.9vw, 56px);
  line-height: 0.94;
}

.focus-buy-list button {
  min-height: 40px;
  padding: 0 15px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.focus-buy-list button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-3px);
}

@keyframes productFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

.runway-wall {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 118px) 0 clamp(48px, 6vw, 82px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(181, 30, 30, 0.2), transparent 34%, rgba(85, 117, 130, 0.24)),
    var(--black);
  border-top: 1px solid var(--line-light);
  isolation: isolate;
}

.runway-wall::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -72px;
  width: 150%;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 72px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 36%);
  content: "";
  opacity: 0.42;
  animation: lineSweep 8s linear infinite;
}

.runway-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 520px);
  gap: clamp(22px, 6vw, 90px);
  padding: 0 clamp(18px, 6vw, 92px) 28px;
}

.runway-copy .eyebrow {
  grid-column: 1 / -1;
}

.runway-copy h2 {
  grid-column: 1;
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 0.9;
}

.runway-copy p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: rgba(243, 239, 231, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.runway-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  min-height: 720px;
  margin-top: clamp(-220px, -13vw, -110px);
  padding: 34px clamp(18px, 6vw, 92px) 46px;
  cursor: grab;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.runway-rail::-webkit-scrollbar {
  display: none;
}

.runway-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.runway-card {
  position: relative;
  display: grid;
  flex: 0 0 min(390px, 72vw);
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  scroll-snap-align: start;
  rotate: var(--sway, 0deg);
  transform:
    perspective(1000px)
    rotateX(calc(var(--my, 0) * -5deg))
    rotateY(calc(var(--mx, 0) * 6deg))
    translateY(var(--lift, 0));
  transition: transform 180ms ease, filter 180ms ease;
  user-select: none;
}

.runway-card.wide {
  flex-basis: min(650px, 86vw);
}

.runway-card.tall {
  flex-basis: min(330px, 68vw);
}

.runway-card.signal {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 42px),
    linear-gradient(160deg, #d93030, #970b0b);
}

.runway-card.water {
  background:
    linear-gradient(160deg, rgba(85, 117, 130, 0.86), rgba(5, 5, 5, 0.72)),
    var(--water);
}

.runway-card.park {
  background: var(--park);
}

.runway-card.object {
  background:
    linear-gradient(150deg, #1c1b19, #050505 58%),
    var(--black);
}

.runway-card.black-card {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 62px),
    radial-gradient(circle at 78% 20%, rgba(181, 30, 30, 0.42), transparent 22%),
    #070707;
}

.runway-card.concrete {
  background:
    linear-gradient(145deg, rgba(166, 167, 164, 0.92), rgba(21, 20, 17, 0.96)),
    var(--concrete);
}

.runway-card.white-puffer-card {
  flex-basis: min(430px, 76vw);
}

.runway-card.white-puffer-card img {
  object-position: center 20%;
}

.runway-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at calc(52% + (var(--mx, 0) * 34%)) calc(36% + (var(--my, 0) * 30%)), rgba(255, 255, 255, 0.18), transparent 21%),
    linear-gradient(20deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.06) 52%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.08) 38px 39px);
  content: "";
  mix-blend-mode: normal;
  pointer-events: none;
}

.runway-card > span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.runway-card img {
  grid-area: 1 / 1;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate(calc(var(--mx, 0) * 14px), calc(var(--my, 0) * 10px));
  transition: transform 240ms ease, filter 240ms ease;
  pointer-events: none;
}

.runway-card.poster-card img {
  width: 82%;
  height: auto;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.45));
  animation: objectFloat 5.8s ease-in-out infinite;
}

.runway-card.black-column-card img {
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
  object-fit: cover;
  object-position: center 16%;
}

.runway-card.signal.poster-card img {
  width: 76%;
  transform:
    scale(1)
    translate(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 13px))
    rotate(-4deg);
}

.runway-card.cut-card img {
  clip-path: polygon(0 0, 100% 5%, 92% 100%, 8% 94%);
}

.runway-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.runway-card h3 {
  max-width: 360px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.88;
}

.runway-card button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.runway-card button:hover {
  color: var(--black);
  background: var(--white);
  transform: translateY(-3px);
}

.runway-card.is-pointer-active,
.runway-card:hover {
  filter: contrast(1.05) saturate(1.05);
  transform:
    perspective(1000px)
    rotateX(calc(var(--my, 0) * -7deg))
    rotateY(calc(var(--mx, 0) * 8deg))
    translateY(calc(var(--lift, 0) - 12px));
}

.runway-card.is-pointer-active img,
.runway-card:hover img {
  transform:
    scale(1.14)
    translate(calc(var(--mx, 0) * 26px), calc(var(--my, 0) * 18px))
    rotate(calc(var(--mx, 0) * 1.8deg));
}

.runway-card.poster-card.is-pointer-active img,
.runway-card.poster-card:hover img {
  transform:
    scale(1.1)
    translate(calc(var(--mx, 0) * 30px), calc(var(--my, 0) * 20px - 14px))
    rotate(calc(-4deg + (var(--mx, 0) * 9deg)));
}

.runway-tag {
  position: absolute;
  top: 54px;
  right: 18px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: tagBlink 2.4s ease-in-out infinite;
}

.graphic-stack,
.type-lines {
  position: absolute;
  inset: 72px 22px 122px;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
}

.graphic-stack b,
.type-lines b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 122px);
  line-height: 0.78;
}

.graphic-stack small {
  display: block;
  margin: 24px 0 18px;
  color: rgba(243, 239, 231, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.graphic-stack i {
  color: rgba(243, 239, 231, 0.5);
  font-size: 12px;
  font-style: normal;
}

.type-lines {
  overflow: hidden;
}

.type-lines b {
  display: block;
  font-size: clamp(76px, 10vw, 150px);
  line-height: 0.72;
  animation: typeSlide 3.4s ease-in-out infinite;
}

.type-lines b:nth-child(2) {
  color: rgba(255, 255, 255, 0.52);
  animation-delay: -1s;
}

.type-lines b:nth-child(3) {
  animation-delay: -2s;
}

.runway-wall.is-visible .runway-card:nth-child(odd) {
  animation: railPulse 6.6s ease-in-out infinite, cardSway 5.8s ease-in-out infinite;
}

.runway-wall.is-visible .runway-card:nth-child(even) {
  animation: railPulse 7.8s ease-in-out infinite reverse, cardSway 6.8s ease-in-out infinite reverse;
}

.kinetic-shop {
  padding: clamp(50px, 7vw, 104px) clamp(16px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.kinetic-heading {
  margin-bottom: 22px;
}

.kinetic-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.kinetic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 76vh;
  gap: 1px;
  background: var(--line);
}

.kinetic-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
  transform: perspective(1100px) rotateX(calc(var(--my, 0) * -3deg)) rotateY(calc(var(--mx, 0) * 3deg));
  transition: transform 180ms ease, filter 180ms ease;
}

.kinetic-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at calc(50% + (var(--mx, 0) * 26%)) calc(44% + (var(--my, 0) * 22%)), rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.05) 62%);
  content: "";
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.kinetic-number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.kinetic-product {
  grid-area: 1 / 1;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translate(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px));
  transition: transform 220ms ease, filter 220ms ease;
}

.hat-card .kinetic-product,
.jacket-card .kinetic-product {
  width: 86%;
  height: auto;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.46));
  animation: objectFloat 5.2s ease-in-out infinite;
}

.kinetic-card.black-column-card .kinetic-product {
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
  object-fit: cover;
  object-position: center 16%;
}

.river-shell-card img,
.kinetic-card.river-shell-card .kinetic-product,
.quick-view-image img[src*="pizdon-white-river-shell-rain"] {
  object-position: center 18%;
}

.swim-card .kinetic-product,
.city-card .kinetic-product {
  width: 100%;
  height: 100%;
}

.kinetic-card div {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 2;
}

.kinetic-card h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 0.94;
}

.kinetic-card button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.kinetic-card button:hover {
  color: var(--black);
  background: var(--white);
}

.kinetic-card.is-pointer-active,
.kinetic-card:hover {
  filter: contrast(1.04);
}

.kinetic-card.is-pointer-active::after,
.kinetic-card:hover::after {
  opacity: 1;
}

.hat-card.is-pointer-active .kinetic-product,
.hat-card:hover .kinetic-product {
  transform:
    scale(1.12)
    translate(calc(var(--mx, 0) * 22px), calc(var(--my, 0) * 18px - 18px))
    rotate(calc(var(--mx, 0) * 7deg));
}

.kinetic-card.is-pointer-active .kinetic-product,
.kinetic-card:hover .kinetic-product {
  transform:
    scale(1.1)
    translate(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 14px))
    rotate(calc(var(--mx, 0) * 2.5deg));
}

.hat-card.is-pointer-active .kinetic-product,
.hat-card:hover .kinetic-product {
  transform:
    scale(1.14)
    translate(calc(var(--mx, 0) * 24px), calc(var(--my, 0) * 18px - 18px))
    rotate(calc(var(--mx, 0) * 8deg));
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(310px, 0.64fr) minmax(0, 1.36fr);
  min-height: 92vh;
  background: var(--ink);
}

.split-feature img {
  height: 92vh;
  object-fit: cover;
  object-position: center center;
}

.feature-copy {
  align-self: end;
  padding: clamp(36px, 7vw, 96px);
}

.feature-copy h2,
.section-heading h2,
.campaign-strip h2,
.theme-story h2,
.editorial-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.96;
}

.feature-copy p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 30px;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.62;
}

.motion-campaign {
  background: var(--black);
}

.campaign-panel {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.campaign-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.6)),
    linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04));
  content: "";
}

.campaign-panel img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 900ms ease, filter 900ms ease;
}

.swim-panel img {
  object-position: center center;
}

.park-panel img {
  object-position: center 44%;
}

.panel-copy {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  align-self: end;
  width: min(620px, calc(100% - 40px));
  margin: 0 0 clamp(34px, 8svh, 86px) clamp(20px, 6vw, 96px);
  opacity: 0.82;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.panel-copy.align-right {
  justify-self: end;
  margin-right: clamp(20px, 6vw, 96px);
  margin-left: 20px;
}

.panel-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
}

.panel-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 28px;
  color: rgba(243, 239, 231, 0.82);
  font-size: 16px;
  line-height: 1.62;
}

.campaign-panel.is-visible img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1);
}

.campaign-panel.is-visible .panel-copy {
  opacity: 1;
  transform: translateY(0);
}

.primary-button,
.product-card button,
.filter-bar button {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.product-card button:hover,
.filter-bar button:hover {
  color: var(--black);
  background: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  gap: 1px;
  background: var(--black);
}

.editorial-card {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--black);
  transform: perspective(1000px) rotateX(calc(var(--my, 0) * -1.4deg)) rotateY(calc(var(--mx, 0) * 1.4deg));
  transition: transform 180ms ease;
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.05) 62%);
  content: "";
}

.editorial-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.editorial-card.wide img {
  object-position: center top;
}

.editorial-card div {
  position: absolute;
  right: 28px;
  bottom: 32px;
  left: 28px;
  z-index: 2;
}

.editorial-card h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

.theme-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(58px, 9vw, 120px) clamp(18px, 6vw, 90px);
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(31, 51, 40, 0.94), rgba(5, 5, 5, 0.78)),
    linear-gradient(90deg, var(--park), var(--water));
}

.theme-story p:not(.eyebrow) {
  align-self: end;
  margin: 0;
  color: rgba(243, 239, 231, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.index-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr) minmax(280px, 0.8fr);
  gap: 1px;
  overflow: hidden;
  color: var(--ink);
  background: var(--black);
}

.index-copy,
.index-list,
.index-image {
  min-height: 86vh;
}

.index-copy {
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 66px);
  color: var(--paper);
  background:
    linear-gradient(155deg, rgba(181, 30, 30, 0.88), rgba(5, 5, 5, 0.92) 58%),
    var(--signal);
}

.index-copy h2 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 106px);
  line-height: 0.9;
}

.index-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(243, 239, 231, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.index-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  background: var(--paper);
}

.index-list a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  transform: perspective(900px) rotateX(calc(var(--my, 0) * -2deg)) rotateY(calc(var(--mx, 0) * 2deg));
  transition: color 160ms ease, background 160ms ease, transform 180ms ease;
}

.index-list a:hover,
.index-list a.is-pointer-active {
  color: var(--white);
  background: var(--ink);
}

.index-list span,
.index-list em,
.index-image figcaption {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.index-list a:hover span,
.index-list a:hover em,
.index-list a.is-pointer-active span,
.index-list a.is-pointer-active em {
  color: rgba(243, 239, 231, 0.7);
}

.index-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.96;
}

.index-list em {
  justify-self: end;
}

.index-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  transform: perspective(1000px) rotateX(calc(var(--my, 0) * -1.6deg)) rotateY(calc(var(--mx, 0) * 1.6deg));
  transition: transform 180ms ease;
}

.index-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.04) 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
  content: "";
}

.index-image img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04) translate(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px));
  transition: transform 240ms ease, filter 240ms ease;
}

.index-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: rgba(243, 239, 231, 0.78);
}

.index-image.is-pointer-active img,
.index-image:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.1) translate(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 12px));
}

.campaign-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.campaign-strip article {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 700px 900px;
  transform: perspective(1000px) rotateX(calc(var(--my, 0) * -1.6deg)) rotateY(calc(var(--mx, 0) * 1.6deg));
  transition: transform 180ms ease;
}

.campaign-strip article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04));
  content: "";
}

.campaign-strip img {
  height: 86vh;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.park-model-edit .path-model img {
  object-position: 58% center;
}

.park-model-edit .reservoir-model img {
  object-position: 66% center;
}

.campaign-strip .puffer-feature img {
  object-position: center 18%;
}

.campaign-strip div {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  z-index: 2;
}

.products {
  padding: clamp(52px, 8vw, 112px) clamp(16px, 4vw, 52px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(243, 239, 231, 0.95)),
    var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.shop-note {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.shop-controls {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sort-control select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 12px;
}

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

.shop-status {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 16px;
  background: var(--line);
}

.shop-status span {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: clamp(280px, 38vh, 420px) auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(21, 20, 17, 0.08);
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: 430px 720px;
  transform: translateY(0);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
  isolation: isolate;
}

.product-card::before {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  padding: 0 10px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.82);
  content: attr(data-category);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: min(48%, 360px);
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), transparent 56%),
    radial-gradient(circle at calc(48% + (var(--mx, 0) * 22%)) calc(42% + (var(--my, 0) * 18%)), rgba(255, 255, 255, 0.18), transparent 20%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card.featured {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 4vw, 44px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(232, 226, 215, 0.62) 58%, rgba(190, 181, 166, 0.18)),
    #f3efe7;
  transform: scale(1.001) translate(0, 0);
  transition: transform 240ms ease, filter 240ms ease;
}

.product-card.featured img,
.product-card:nth-child(8) img {
  object-position: center center;
}

.product-card.white-puffer-card img,
.product-card.black-column-card img,
.quick-view-image img[src*="pizdon-white-puffer-tunnel"],
.quick-view-image img[src*="pizdon-black-column-jacket-rain"] {
  object-position: center center;
}

.product-card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto minmax(44px, auto) auto;
  align-items: start;
  gap: 14px 16px;
  min-height: 244px;
  padding: 22px;
  background: var(--white);
}

.product-card p,
.product-card h3,
.product-card small {
  margin: 0;
}

.product-card h3 {
  grid-column: 1 / -1;
  min-width: 0;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.product-card span {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-card button,
.quick-view-button {
  width: fit-content;
  min-height: 40px;
  align-self: end;
  color: var(--ink);
  font-size: 12px;
}

.product-card button:not(.quick-view-button) {
  grid-column: 1;
  grid-row: 4;
}

.product-card .quick-view-button {
  grid-column: 2;
  grid-row: 4;
  justify-self: end;
}

.quick-view-button {
  background: var(--ink);
  color: var(--white);
}

.product-card button:hover,
.quick-view-button:hover {
  color: var(--white);
  background: var(--ink);
}

.product-card.is-pointer-active,
.product-card:hover {
  box-shadow: 0 22px 46px rgba(21, 20, 17, 0.18);
  transform: translateY(-6px);
  border-color: rgba(21, 20, 17, 0.2);
}

.product-card.is-pointer-active::after,
.product-card:hover::after {
  opacity: 1;
}

.product-card.is-pointer-active img,
.product-card:hover img,
.editorial-card.is-pointer-active img,
.editorial-card:hover img,
.campaign-strip article.is-pointer-active img,
.campaign-strip article:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.08) translate(calc(var(--mx, 0) * 12px), calc(var(--my, 0) * 10px));
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  justify-content: end;
  background: rgba(0, 0, 0, 0.48);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(440px, 100%);
  min-height: 100%;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -24px 0 60px var(--shadow);
}

.cart-head,
.cart-item,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.close-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 18px;
}

.cart-items {
  min-height: 45vh;
  padding: 34px 0;
}

.empty {
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-copy {
  min-width: 0;
}

.cart-item p {
  margin: 0 0 5px;
  font-weight: 700;
}

.cart-item span {
  color: var(--muted);
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 28px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.quantity-control button {
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.quantity-control span {
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.cart-total {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.checkout {
  width: 100%;
  color: var(--ink);
}

.checkout.disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.62;
}

.checkout:hover {
  color: var(--white);
  background: var(--ink);
}

.checkout.disabled:hover {
  color: var(--muted);
  background: transparent;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.58);
}

.quick-view.open {
  display: grid;
}

.quick-view-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.72fr);
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 28px));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.46);
  animation: quickViewIn 220ms ease both;
}

.quick-view-panel .close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(243, 239, 231, 0.82);
}

.quick-view-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(21, 20, 17, 0.08) 0 1px, transparent 1px 58px),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.94), rgba(229, 222, 210, 0.68) 58%, rgba(181, 170, 153, 0.22)),
    var(--white);
  outline: 0;
  isolation: isolate;
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  padding: clamp(22px, 5vw, 58px);
  object-fit: contain;
  transform: none;
}

.quick-view-highlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(5, 5, 5, 0.34);
  opacity: 0;
  transition: opacity 160ms ease;
}

.quick-view-highlight svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.quick-view-highlight polygon {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 0.65;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.58)) drop-shadow(0 12px 22px rgba(0, 0, 0, 0.55));
}

.quick-view-image.has-highlight:hover .quick-view-highlight,
.quick-view-image.has-highlight.is-highlight-active .quick-view-highlight,
.quick-view-image.has-highlight:focus .quick-view-highlight,
.quick-view-image.has-highlight:focus-within .quick-view-highlight {
  opacity: 1;
}

.quick-view-image.has-highlight:hover img,
.quick-view-image.has-highlight.is-highlight-active img,
.quick-view-image.has-highlight:focus img,
.quick-view-image.has-highlight:focus-within img {
  filter: saturate(1.06) contrast(1.05);
}

.quick-view-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 5vw, 54px);
}

.quick-view-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.92;
}

.quick-view-copy strong {
  font-size: 20px;
}

.quick-view-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-row span {
  display: inline-grid;
  min-width: 42px;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

@keyframes quickViewIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 30px clamp(18px, 4vw, 52px);
  color: var(--paper);
  background: var(--black);
}

.site-footer .brand {
  justify-self: start;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer a:last-child {
  justify-self: end;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .site-header {
    padding: 0 22px;
  }

  .brand {
    font-size: 25px;
  }

  .header-links {
    gap: 16px;
    font-size: 11px;
  }

  .header-links:not(.right) a:nth-child(6),
  .header-links:not(.right) a:nth-child(7) {
    display: none;
  }

  .header-links.right {
    padding-right: 76px;
  }
}

@media (max-width: 1180px) {
  .kinetic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 48px 1fr auto;
    min-height: 68px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: block;
  }

  .header-links {
    position: fixed;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 0 18px;
    color: var(--ink);
    background: var(--paper);
  }

  .header-links:not(.right) {
    top: 68px;
  }

  .header-links.right {
    top: 392px;
    justify-self: stretch;
    padding-right: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.14);
  }

  body.menu-open .header-links {
    display: flex;
  }

  .header-links a {
    width: 100%;
    min-height: 54px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    justify-self: center;
    font-size: 22px;
  }

  .cart-button {
    position: static;
    justify-self: end;
  }

  .hero {
    min-height: 92svh;
  }

  .hero img {
    height: 92svh;
    object-position: 57% center;
  }

  .hero::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08));
  }

  .hero-copy {
    right: 20px;
    bottom: 7svh;
  }

  .cinema-reel {
    min-height: 92svh;
  }

  .runway-copy,
  .index-board {
    grid-template-columns: 1fr;
  }

  .runway-copy h2,
  .runway-copy p:not(.eyebrow) {
    grid-column: 1;
  }

  .runway-copy p:not(.eyebrow) {
    align-self: start;
  }

  .reel-copy {
    bottom: 76px;
    width: min(620px, calc(100% - 36px));
  }

  .reel-copy h2 {
    font-size: clamp(52px, 15vw, 92px);
  }

  .reel-caption {
    flex-wrap: wrap;
    justify-content: start;
  }

  .category-showcase,
  .product-focus,
  .kinetic-grid,
  .split-feature,
  .campaign-strip,
  .theme-story,
  .editorial-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-showcase a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-copy,
  .focus-stage,
  .focus-buy-list {
    min-height: auto;
  }

  .focus-copy {
    min-height: 58vh;
  }

  .focus-stage {
    min-height: 68vh;
  }

  .focus-buy-list article {
    min-height: 132px;
  }

  .runway-card {
    min-height: 72vh;
  }

  .runway-rail {
    min-height: 78vh;
    margin-top: 0;
  }

  .runway-card.wide,
  .runway-card.tall,
  .runway-card {
    flex-basis: min(420px, 84vw);
  }

  .kinetic-shop {
    padding-right: 12px;
    padding-left: 12px;
  }

  .kinetic-heading > p {
    margin-top: 18px;
  }

  .kinetic-card {
    min-height: 74vh;
  }

  .split-feature img {
    height: 62vh;
    order: -1;
  }

  .editorial-card {
    min-height: 78vh;
  }

  .editorial-card.wide {
    min-height: 86vh;
  }

  .theme-story p:not(.eyebrow) {
    align-self: start;
  }

  .index-copy,
  .index-list,
  .index-image {
    min-height: auto;
  }

  .index-copy {
    min-height: 62vh;
  }

  .index-list a {
    min-height: 150px;
  }

  .index-image {
    min-height: 72vh;
  }

  .campaign-strip article,
  .campaign-strip img {
    min-height: 76vh;
    height: 76vh;
  }

  .product-card,
  .product-card.featured {
    grid-column: auto;
    grid-template-rows: clamp(280px, 44vh, 440px) auto;
  }

  .section-heading {
    display: block;
  }

  .shop-controls {
    justify-items: start;
    margin-top: 22px;
  }

  .filter-bar {
    justify-content: start;
  }

  .quick-view-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .quick-view-image {
    min-height: 48vh;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand,
  .site-footer a:last-child {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .header-links:not(.right) {
    top: 64px;
  }

  .header-links.right {
    top: 388px;
  }

  .hero h1 {
    font-size: clamp(48px, 18vw, 78px);
  }

  .cinema-reel {
    min-height: 88svh;
  }

  .cinema-reel::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
  }

  .reel-copy {
    bottom: 66px;
    left: 0;
    width: 100%;
    padding: 0 18px;
  }

  .reel-copy h2 {
    font-size: 54px;
  }

  .reel-copy p:not(.eyebrow) {
    max-width: 340px;
    font-size: 15px;
  }

  .marquee-track span {
    min-height: 48px;
    padding: 0 24px;
  }

  .focus-copy h2 {
    font-size: 52px;
  }

  .focus-stage {
    min-height: 58vh;
  }

  .focus-main {
    width: 62%;
    right: 16%;
  }

  .focus-secondary {
    width: 42%;
  }

  .focus-tertiary {
    width: 44%;
  }

  .focus-buy-list article {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .focus-buy-list button {
    grid-column: 2;
    justify-self: start;
  }

  .runway-wall {
    padding-top: 46px;
  }

  .runway-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .runway-copy h2 {
    font-size: 52px;
  }

  .runway-rail {
    padding-right: 18px;
    padding-left: 18px;
  }

  .runway-action {
    display: grid;
    justify-items: start;
  }

  .runway-card h3 {
    font-size: 42px;
  }

  .kinetic-card {
    min-height: 72vh;
  }

  .kinetic-card h3 {
    font-size: 42px;
  }

  .hat-card .kinetic-product,
  .jacket-card .kinetic-product {
    width: 82%;
  }

  .beach-frame img {
    object-position: 47% center;
  }

  .park-frame img {
    object-position: center top;
  }

  .intro-band p {
    text-align: left;
  }

  .feature-copy,
  .theme-story,
  .panel-copy {
    padding: 34px 18px;
  }

  .campaign-panel,
  .campaign-panel img {
    min-height: 88svh;
    height: 88svh;
  }

  .campaign-panel::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.14));
  }

  .swim-panel img {
    object-position: 48% center;
  }

  .beach-frame img,
  .swim-panel.river-shell-card img {
    object-position: center 18%;
  }

  .park-panel img {
    object-position: center top;
  }

  .park-model-edit .path-model img,
  .park-model-edit .reservoir-model img {
    object-position: 63% center;
  }

  .panel-copy,
  .panel-copy.align-right {
    width: 100%;
    margin: 0;
  }

  .panel-copy h2 {
    font-size: 48px;
  }

  .editorial-card div,
  .campaign-strip div {
    right: 18px;
    left: 18px;
  }

  .products {
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-card div {
    grid-template-columns: 1fr auto;
    min-height: 252px;
    padding: 20px 18px;
  }

  .product-card h3 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 0.98;
  }

  .shop-status span {
    flex: 1 1 140px;
  }

  .sort-control,
  .sort-control select {
    width: 100%;
  }

  .quick-view {
    padding: 10px;
  }

  .quick-view-copy {
    padding: 24px 18px;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
  }

  .cart-item strong {
    grid-column: 1 / -1;
  }

  .index-list a {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .index-list em {
    grid-column: 2;
    justify-self: start;
  }
}

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

  .reel-frame {
    opacity: 0;
  }

  .reel-frame:first-child {
    opacity: 1;
  }
}
