:root {
  --ink: #f7f8f5;
  --muted: rgba(247, 248, 245, 0.68);
  --quiet: rgba(247, 248, 245, 0.46);
  --night: #071016;
  --glass: rgba(10, 19, 25, 0.38);
  --glass-strong: rgba(7, 15, 20, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --line-bright: rgba(255, 255, 255, 0.36);
  --shadow: 0 24px 90px rgba(1, 8, 12, 0.34);
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night) url("assets/clouds-02.jpg") center / cover fixed no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #071016;
  background: rgba(244, 237, 209, 0.92);
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: #fff;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.sky {
  position: fixed;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: var(--night) url("assets/clouds-02.jpg") center / cover no-repeat;
}

.sky__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.84) contrast(1.03);
  transform: scale(1.015);
}

.sky__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 14, 0.2) 0%, rgba(4, 10, 14, 0.04) 38%, rgba(4, 10, 14, 0.56) 79%, #061016 100%),
    radial-gradient(circle at 70% 10%, rgba(255, 238, 190, 0.08), transparent 40%);
}

.sky__grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 78rem);
  min-height: 4.25rem;
  padding: 0.55rem 0.65rem 0.55rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 16, 21, 0.32);
  box-shadow: 0 16px 50px rgba(1, 7, 10, 0.16), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transform: translateX(-50%);
}

.wordmark {
  width: fit-content;
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a,
.back-to-top {
  position: relative;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav a:hover,
.back-to-top:hover {
  color: var(--ink);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-button,
.bag-button,
.dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.bag-button:hover,
.dialog-close:hover {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.12);
}

.icon-button:active,
.bag-button:active,
.dialog-close:active {
  transform: scale(0.96);
}

.icon-button {
  width: 2.95rem;
  border-radius: 50%;
}

.icon-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke: none;
}

.play-icon {
  display: none;
}

.icon-button.is-paused .play-icon {
  display: block;
}

.icon-button.is-paused .pause-icon {
  display: none;
}

.bag-button {
  min-width: 6.2rem;
  gap: 0.7rem;
  padding: 0.65rem 0.7rem 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bag-count {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
}

main {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 9rem max(1.25rem, calc((100vw - 76rem) / 2)) 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__eyebrow,
.hero__index {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow {
  width: min(27rem, 100%);
}

.hero__eyebrow .line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.36);
}

.hero__content {
  margin: auto 0 2.5rem;
}

.hero__title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.2rem, 12.8vw, 11.5rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.77;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(2, 10, 14, 0.18);
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  margin-left: clamp(0rem, 6vw, 6.5rem);
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.9);
}

.hero__bottom {
  width: min(42rem, 100%);
  margin-top: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero__bottom p {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.primary-button {
  position: relative;
  min-height: 3.45rem;
  padding: 0.85rem 1.15rem 0.85rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(1, 9, 13, 0.15);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease;
}

.primary-button::before {
  position: absolute;
  inset: 0;
  background: var(--night);
  content: "";
  transform: translateX(-102%);
  transition: transform 300ms var(--ease);
}

.primary-button > * {
  position: relative;
  z-index: 1;
}

.primary-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.primary-button:hover::before {
  transform: translateX(0);
}

.primary-button:active {
  transform: translateY(0) scale(0.98);
}

.primary-button--wide {
  width: 100%;
}

.hero__index {
  justify-content: space-between;
}

.section-shell {
  width: min(calc(100% - 2rem), 78rem);
  margin-inline: auto;
}

.collection {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 13, 18, 0.5);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(1.1);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.manifesto h2,
.product-dialog h2,
.bag-drawer h2 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-copy {
  max-width: 23rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.product-card {
  min-width: 0;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease);
}

.product-card__inner {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 50px rgba(0, 7, 12, 0.2), inset 0 1px rgba(255, 255, 255, 0.1);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover .product-card__inner,
.product-card:focus-visible .product-card__inner {
  border-color: var(--line-bright);
  box-shadow: 0 24px 65px rgba(0, 7, 12, 0.3), inset 0 1px rgba(255, 255, 255, 0.14);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 0.81;
  overflow: hidden;
  background: #718992;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 13, 0.03), rgba(5, 10, 13, 0.48));
  content: "";
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.product-card:hover .product-card__media img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.product-card__code,
.product-card__type {
  position: absolute;
  z-index: 2;
  top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__code {
  left: 1rem;
}

.product-card__type {
  right: 1rem;
}

.product-card__ghost {
  position: absolute;
  z-index: 2;
  right: -0.08em;
  bottom: -0.14em;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(4.2rem, 7.8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.8;
  transform: translateZ(24px);
}

.product-card__info {
  padding: 1.1rem 1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
}

.product-card__name,
.product-card__price {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card__price {
  color: rgba(255, 255, 255, 0.76);
}

.product-card__color {
  margin: 0;
  color: var(--quiet);
  font-size: 0.78rem;
}

.noscript {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.manifesto {
  min-height: 74vh;
  padding: clamp(6rem, 13vw, 11rem) clamp(1rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.65fr;
  align-items: center;
  gap: 2rem;
}

.manifesto__number {
  align-self: start;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.manifesto__content h2 {
  max-width: 13ch;
}

.manifesto__content > p:last-child {
  max-width: 35rem;
  margin: 2rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.manifesto__stamp {
  width: min(10rem, 100%);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-content: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.manifesto__stamp span {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.manifesto__stamp small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-footer {
  margin-bottom: 1rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.footer-mark {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--quiet);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.back-to-top {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.product-dialog,
.bag-drawer {
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-bright);
  color: var(--ink);
  background: rgba(7, 15, 20, 0.88);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
}

.product-dialog::backdrop,
.bag-drawer::backdrop {
  background: rgba(0, 6, 9, 0.46);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.product-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(calc(100% - 2rem), 62rem);
  height: min(43rem, calc(100svh - 2rem));
  display: none;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-radius: 28px;
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  transition: opacity 230ms ease, transform 300ms var(--ease), overlay 230ms ease allow-discrete, display 230ms ease allow-discrete;
}

.product-dialog[open] {
  display: grid;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@starting-style {
  .product-dialog[open] {
    opacity: 0;
    transform: translate(-50%, -47%) scale(0.98);
  }
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  border-radius: 50%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-dialog__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.product-dialog__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 12, 16, 0.48));
  content: "";
}

.product-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog__code {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-dialog__details {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.35rem, 4vw, 3.5rem) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-dialog h2 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 4vw, 3.9rem);
}

.dialog-price {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 700;
}

.dialog-description {
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.size-picker {
  margin: 2rem 0;
  padding: 0;
  border: 0;
}

.size-picker legend {
  margin-bottom: 0.8rem;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.size-picker > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size-option {
  position: relative;
}

.size-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.size-option label {
  width: 3.1rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.size-option input:focus-visible + label {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.size-option input:checked + label {
  border-color: #fff;
  color: var(--night);
  background: #fff;
}

.product-note,
.checkout-note {
  margin: 0.9rem 0 0;
  color: var(--quiet);
  font-size: 0.75rem;
  text-align: center;
}

.bag-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 31rem);
  height: 100%;
  display: none;
  overflow: hidden;
  border-width: 0 0 0 1px;
  transform: translateX(102%);
  transition: transform 350ms var(--ease), overlay 250ms ease allow-discrete, display 250ms ease allow-discrete;
}

.bag-drawer[open] {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}

@starting-style {
  .bag-drawer[open] {
    transform: translateX(102%);
  }
}

.bag-drawer__header {
  padding: 1.4rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.bag-drawer h2 {
  font-size: 2.6rem;
}

.dialog-close--inline {
  position: static;
  flex: 0 0 auto;
}

.bag-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.empty-bag {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
}

.empty-bag strong {
  display: block;
  font-size: 1.2rem;
}

.empty-bag span {
  max-width: 18rem;
  margin-top: 0.45rem;
  color: var(--quiet);
  font-size: 0.88rem;
}

.bag-item {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.bag-item img {
  width: 5rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 14px;
}

.bag-item__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bag-item__meta,
.bag-item__price {
  margin: 0.35rem 0 0;
  color: var(--quiet);
  font-size: 0.77rem;
}

.remove-item {
  padding: 0.5rem;
  border: 0;
  color: var(--quiet);
  background: transparent;
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  cursor: pointer;
}

.bag-summary {
  padding: 1.4rem;
  border-top: 1px solid var(--line);
}

.bag-summary.is-empty {
  display: none;
}

.bag-total {
  margin-bottom: 1.1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  max-width: min(24rem, calc(100% - 2rem));
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(5, 13, 18, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 0.84rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

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

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 800ms var(--ease);
}

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

.product-card.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.product-card.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  transition: width 160ms ease, height 160ms ease, background 160ms ease, opacity 160ms ease;
}

.cursor.is-active {
  width: 19px;
  height: 19px;
  background: rgba(255, 255, 255, 0.18);
}

@media (pointer: fine) {
  body,
  a,
  button,
  label {
    cursor: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero__title {
    font-size: clamp(4rem, 20vw, 7rem);
    line-height: 0.8;
  }

  .hero__title span:last-child {
    margin: 0.12em 0 0;
  }

  .hero__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__bottom .primary-button {
    width: fit-content;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .product-card__media {
    aspect-ratio: 1.05;
  }

  .product-card__ghost {
    font-size: clamp(5rem, 23vw, 8rem);
  }

  .manifesto {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .manifesto__number {
    writing-mode: initial;
  }

  .manifesto__stamp {
    width: 8rem;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .product-dialog {
    width: calc(100% - 1rem);
    height: calc(100svh - 1rem);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(12rem, 41%) 1fr;
    overflow-y: auto;
    border-radius: 24px;
  }

  .product-dialog__details {
    justify-content: start;
  }
}

@media (max-width: 480px) {
  :root {
    --radius: 22px;
  }

  .site-header {
    top: 0.65rem;
    width: calc(100% - 1rem);
    min-height: 3.8rem;
    padding: 0.42rem 0.45rem 0.42rem 0.75rem;
  }

  .wordmark {
    padding: 0.58rem 0.75rem;
  }

  .icon-button {
    width: 2.7rem;
    min-height: 2.7rem;
  }

  .bag-button {
    min-width: auto;
    min-height: 2.7rem;
    padding-block: 0.45rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero__title {
    font-size: clamp(3.55rem, 19vw, 5rem);
  }

  .hero__index span:last-child {
    display: none;
  }

  .section-shell {
    width: calc(100% - 1rem);
  }

  .collection,
  .manifesto,
  .site-footer {
    padding-inline: 1rem;
  }

  .product-card__media {
    aspect-ratio: 0.92;
  }

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

  .back-to-top {
    justify-self: start;
  }

  .bag-item {
    grid-template-columns: 4.2rem 1fr auto;
    gap: 0.75rem;
  }

  .bag-item img {
    width: 4.2rem;
    height: 5.2rem;
  }
}

@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;
  }

  .sky__video {
    display: none;
  }

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