:root {
  color-scheme: dark;
  --black: #030303;
  --white: #ffffff;
  --soft: #e8e8e8;
  --muted: #9b9b9b;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(0, 0, 0, 0.14);
  --glow: 0 0 34px rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 116% 76% at var(--lava-core-x, 50%) var(--lava-core-y, 18%), rgba(255, 255, 255, 0.13), transparent 50%),
    linear-gradient(180deg, #030303 0%, #070707 46%, #030303 100%);
  color: var(--white);
  font-size: 16px;
  isolation: isolate;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

.lava-bg {
  position: fixed;
  inset: -26%;
  z-index: 0;
  pointer-events: none;
  contain: strict;
  opacity: calc(0.92 + var(--lava-active, 0) * 0.18);
  filter: blur(calc(22px - var(--lava-active, 0) * 6px)) brightness(calc(1.12 + var(--lava-active, 0) * 0.34));
  transform: translate3d(var(--lava-x, 0), var(--lava-y, 0), 0) scale(var(--lava-scale, 1))
    rotate(var(--lava-rotate, 0deg)) skewY(var(--lava-skew, 0deg));
  transform-origin: 50% 50%;
  will-change: transform, filter, opacity;
  transition:
    filter 420ms ease,
    opacity 520ms ease;
}

.lava-bg::before,
.lava-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 26% 58% at calc(14% + var(--lava-wave, 0%)) 12%, rgba(255, 255, 255, 0.72), transparent 68%),
    radial-gradient(ellipse 24% 54% at calc(82% - var(--lava-wave, 0%)) 16%, rgba(255, 255, 255, 0.52), transparent 70%),
    radial-gradient(ellipse 34% 60% at 50% 92%, rgba(255, 255, 255, 0.58), transparent 72%),
    radial-gradient(ellipse 18% 32% at var(--lava-hot-x, 50%) var(--lava-hot-y, 50%), rgba(255, 255, 255, 0.84), transparent 66%),
    linear-gradient(122deg, transparent 10%, rgba(255, 255, 255, 0.24), transparent 52%);
  mix-blend-mode: screen;
  animation:
    lavaFloat 26s ease-in-out infinite alternate,
    lavaGlow 7.5s ease-in-out infinite;
}

.lava-bg::after {
  opacity: 0.72;
  transform: rotate(24deg) scale(1.16);
  animation-duration: 34s, 9s;
  animation-direction: alternate-reverse;
}

body > *:not(.lava-bg) {
  position: relative;
  z-index: 1;
}

@keyframes lavaFloat {
  from {
    transform: translate3d(-2vw, 1vh, 0) scale(1);
  }

  to {
    transform: translate3d(3vw, -3vh, 0) scale(1.08);
  }
}

@keyframes lavaGlow {
  0%,
  100% {
    opacity: 0.78;
  }

  48% {
    opacity: 1;
  }
}

button,
select {
  font: inherit;
}

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

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

main {
  flex: 1 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 16px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.brand img {
  width: auto;
  height: 35px;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 18px rgba(255, 255, 255, 0.25));
}

.brand img:first-child {
  height: 30px;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a,
.nav-login {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-transform: inherit;
}

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

.shop-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.cart-button {
  width: 50px;
  min-height: 46px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  box-shadow: var(--glow);
}

.cart-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.cart-button span {
  position: absolute;
  right: -7px;
  top: -7px;
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: 76px;
  background: transparent;
}

.hero-copy,
.hero-media,
.manifesto,
.fit-finder,
.store {
  background: transparent;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(34px, 5.5vw, 82px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(74px, 15vw, 210px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lightning-text {
  position: relative;
  display: inline-block;
}

.lightning-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent calc(var(--strike-x, 34%) - 18%),
      rgba(0, 0, 0, 0.92) calc(var(--strike-x, 34%) - 7%),
      transparent calc(var(--strike-x, 34%) - 1%),
      rgba(0, 0, 0, 0.84) calc(var(--strike-x, 34%) + 5%),
      transparent calc(var(--strike-x, 34%) + 16%)
    );
  background-clip: text;
  -webkit-background-clip: text;
  animation: lightningRipple 3.8s ease-in-out infinite;
}

@keyframes lightningRipple {
  0%,
  72%,
  100% {
    opacity: 0.1;
  }

  78%,
  84% {
    opacity: 1;
  }
}

.cta {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--glow);
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 2200ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid var(--line);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 46%);
  pointer-events: none;
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto a {
  min-height: clamp(320px, 32vw, 520px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.manifesto a:last-child {
  border-right: 0;
}

.manifesto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 700ms ease,
    opacity 700ms ease;
}

.manifesto a:hover img {
  transform: scale(1.045);
  opacity: 0.88;
}

.manifesto span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  color: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  text-transform: uppercase;
}

.fit-finder {
  padding: clamp(58px, 7vw, 98px) clamp(16px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.fit-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(14px, 1.6vw, 22px);
}

.fit-copy,
.fit-tool {
  background: rgba(3, 3, 3, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: clamp(18px, 3vw, 36px);
}

.fit-copy {
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr);
  gap: 24px;
  min-height: clamp(620px, 76vh, 840px);
}

.fit-copy h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.fit-preview {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
}

.fit-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
}

.fit-tool {
  display: grid;
  align-content: center;
  gap: 18px;
}

.fit-row {
  display: grid;
  gap: 10px;
}

.fit-row label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fit-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fit-options button,
.fit-add {
  min-height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fit-options button.active,
.fit-add {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--glow);
}

.fit-result {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
}

.fit-result img {
  width: 86px;
  height: 106px;
  object-fit: cover;
  object-position: center top;
}

.fit-result strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.fit-result span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.store {
  min-height: 100svh;
  padding: clamp(58px, 7vw, 98px) clamp(16px, 4vw, 58px);
}

.shop-page .store {
  padding-top: calc(76px + clamp(58px, 7vw, 98px));
}

.section-head {
  max-width: 1180px;
  margin: 0 auto clamp(20px, 2.4vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: end;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.85;
  text-transform: uppercase;
}

.store-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.filter,
.sort {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter {
  cursor: pointer;
}

.filter[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--glow);
}

.sort option {
  color: var(--black);
}

.product-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.1vw, 24px);
  align-items: stretch;
}

.product {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(3, 3, 3, 0.68);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.product-visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: var(--product-fit, cover);
  object-position: var(--product-focus, center 38%);
  transition:
    transform 550ms ease,
    opacity 550ms ease;
}

.product:hover .product-visual img {
  transform: scale(1.04);
  opacity: 0.92;
}

@media (min-width: 981px) {
  .product-grid > .product:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 14px;
  min-height: 132px;
  border-top: 1px solid var(--line);
}

.product-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-title span:last-child {
  white-space: nowrap;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: auto;
}

.size-row button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.size-row button:hover {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .product-title {
    grid-template-columns: 1fr;
  }

  .product-title span:last-child {
    white-space: normal;
  }
}

.empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  background: rgba(3, 3, 3, 0.62);
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

footer {
  margin-top: auto;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: #000;
  color: var(--muted);
  box-shadow: 0 -18px 70px rgba(0, 0, 0, 0.6);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(120px, 0.75fr));
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 56px) clamp(28px, 4vw, 44px);
}

.footer-mark {
  height: 24px;
  width: auto;
  margin-bottom: 16px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-heading {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col button {
  width: max-content;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 56px) clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.drawer.open {
  display: block;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: none;
}

.auth-modal.open {
  display: block;
}

.scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.auth-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(460px, calc(100% - 28px));
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.auth-panel > .close {
  justify-self: end;
}

.auth-panel h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label,
.auth-note {
  color: #555;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-field input {
  min-height: 46px;
  border: 1px solid var(--black);
  padding: 0 12px;
  background: var(--white);
  color: var(--black);
  font: inherit;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.captcha-code {
  min-height: 46px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 6px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  user-select: none;
}

.auth-status {
  min-height: 18px;
  margin: 0;
  color: #555;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-head,
.panel-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-foot {
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.panel-head strong,
.panel-foot strong {
  font-size: 18px;
  text-transform: uppercase;
}

.close,
.checkout {
  min-height: 42px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-body {
  overflow: auto;
  padding: 18px;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line-dark);
  padding: 8px;
}

.cart-thumb {
  width: 72px;
  height: 88px;
  overflow: hidden;
  background: #eee;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cart-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.cart-item span {
  color: #595959;
  font-size: 12px;
}

.cart-empty {
  margin: 0;
  color: #666;
  font-weight: 900;
  text-transform: uppercase;
}

.remove {
  width: 34px;
  height: 34px;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  min-width: min(340px, calc(100% - 32px));
  padding: 13px 16px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--glow);
  transform: translate(-50%, 90px);
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  clip-path: inset(8% 0 0 0);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}

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

  .nav {
    display: none;
  }

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

  .hero-media {
    min-height: clamp(420px, 62svh, 680px);
    order: -1;
  }

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

  .section-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-grid > .product:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - clamp(14px, 2.1vw, 24px)) / 2);
  }

  .fit-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-copy {
    grid-template-rows: auto minmax(460px, 58vh);
    min-height: auto;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .store-controls {
    justify-content: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand img {
    height: 28px;
  }

  .brand img:first-child {
    height: 24px;
  }

  .cart-button {
    width: 44px;
    min-height: 42px;
  }

  .shop-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 11px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-copy {
    padding: 30px 16px 42px;
  }

  .hero-media {
    min-height: 62svh;
  }

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

  .product-grid > .product:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .fit-options,
  .fit-result {
    grid-template-columns: 1fr;
  }

  .manifesto a {
    min-height: 96vw;
  }

  .fit-copy {
    grid-template-rows: auto minmax(340px, 92vw);
  }

  .store {
    padding: 44px 12px;
  }

  .shop-page .store {
    padding-top: 112px;
  }

  .product {
    background: rgba(3, 3, 3, 0.74);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-bottom: 8px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

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