
:root {
  --bg: #fff;
  --ink: #080808;
  --muted: #5f5f5f;
  --line: #e5e5e5;
  --soft: #f6f6f6;
  --soft-2: #eeeeee;
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.95), 0 16px 44px rgba(0, 0, 0, 0.08);
  --glow-strong: 0 0 0 1px rgba(255, 255, 255, 0.98), 0 0 36px rgba(255, 255, 255, 1), 0 24px 70px rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 20px 54px rgba(0, 0, 0, 0.13);
  --radius: 8px;
  --max: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 34rem),
    linear-gradient(180deg, #fff 0%, #fbfbfb 46%, #fff 100%);
  color: var(--ink);
  font-family: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

.ticker {
  background: #000;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #000;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span::after { content: "/"; margin-left: 28px; color: #8c8c8c; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  max-width: none;
  margin: 0 auto;
  min-height: 64px;
  padding: 6px 42px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 48%, rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(1px) saturate(140%) contrast(1.03);
  -webkit-backdrop-filter: blur(1px) saturate(140%) contrast(1.03);
}

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

.site-header::before {
  background:
    radial-gradient(130% 90% at 16% -34%, rgba(255, 255, 255, 0.48), transparent 44%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.22), transparent 35%, rgba(255, 255, 255, 0.11) 68%, transparent);
  opacity: 0.46;
}

.site-header::after {
  inset: 1px 20px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0.54;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.74);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before,
  .site-header::after {
    display: none;
  }
}

.site-nav {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav::before {
  display: none;
}

.brand {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 184px;
  min-height: 48px;
  padding: 0;
  overflow: visible;
  pointer-events: auto;
}

.brand::before {
  display: none;
}

.brand::after {
  display: none;
}

.brand-logo {
  position: relative;
  width: 156px;
  max-height: 58px;
  object-fit: contain;
  filter: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(1px) saturate(140%) contrast(1.03);
  -webkit-backdrop-filter: blur(1px) saturate(140%) contrast(1.03);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.site-nav::-webkit-scrollbar { display: none; }

.site-nav::after {
  content: "";
  position: absolute;
  inset: 1px 12px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.site-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px 7px;
  border: 1px solid transparent;
  border-radius: 13px;
  letter-spacing: 0;
  text-shadow:
    0 1px 14px rgba(255, 255, 255, 0.86),
    0 -1px 10px rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0);
  transition: opacity 160ms ease, transform 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms ease, background 160ms ease;
}

.nav-label-short {
  display: none;
}

.site-nav a:hover, .site-nav a:focus-visible {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.32);
  opacity: 1;
  transform: translateY(-1px);
}

main {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 690px;
  margin-top: -1px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.section-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 5.7vw, 86px);
  font-style: italic;
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.46);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 690px;
  padding: 160px 72px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #101214 0%, #060708 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 45%, transparent 57%),
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 78px);
  opacity: 0.44;
  mix-blend-mode: screen;
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.hero-copy > p:not(.section-note) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero-actions, .card-actions, .detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions { margin-top: 30px; }

.hero-drop .secondary-link {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025) 28%, rgba(0, 0, 0, 0) 48%),
    linear-gradient(135deg, #060708 0%, #000 100%);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.18), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 54px);
  mask-image: radial-gradient(circle at 52% 46%, #000 0 34%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 52% 46%, #000 0 34%, transparent 72%);
  opacity: 0.44;
  mix-blend-mode: screen;
}

.hero-product::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 12% 44px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(18px);
  opacity: 0.8;
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: min(86%, 690px);
  max-width: none;
  filter:
    drop-shadow(0 22px 30px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.14));
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1), filter 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-product:hover img,
.hero-product:focus-within img {
  transform: scale(1.035);
}

.primary-link, .secondary-link, .copy-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.88);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(0, 0, 0, 0.07);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.primary-link::before,
.secondary-link::before,
.copy-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.36) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-link {
  background: #000;
  color: #fff;
}

.secondary-link, .copy-button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  color: #000;
  backdrop-filter: blur(1px) saturate(140%);
  -webkit-backdrop-filter: blur(1px) saturate(140%);
}

.secondary-link:hover, .copy-button:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.primary-link:hover::before,
.secondary-link:hover::before,
.copy-button:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.primary-link:active, .secondary-link:active, .copy-button:active {
  transform: scale(0.97);
}

.hero-video {
  width: min(780px, 100%);
  max-width: 780px;
  border: 1px solid #000;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--glow-strong);
}

.reel-desktop-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.reel-mobile-video {
  display: none;
  width: 100%;
  object-fit: cover;
}

.video-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #000;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.stock-reel {
  padding: 42px 36px 52px;
  border-bottom: 1px solid var(--line);
}

.stock-reel .hero-video {
  margin: 0 auto;
}

.story-section {
  padding: 17px 36px 18px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.86);
}

.story-rail {
  display: flex;
  gap: 18px;
  justify-content: center;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

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

.story-chip {
  flex: 0 0 auto;
  width: 88px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.story-chip span {
  display: block;
  position: relative;
  isolation: isolate;
  width: 74px;
  height: 74px;
  margin: 0 auto 9px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    conic-gradient(from 200deg, #feda75 0deg, #fa7e1e 58deg, #d62976 145deg, #962fbf 230deg, #4f5bd5 302deg, #feda75 360deg);
  box-shadow: 0 0 0 2px #fff, 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-chip span::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  border-radius: 50%;
  background: #fff;
}

.story-chip img {
  position: absolute;
  inset: 7px;
  z-index: 1;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 50%;
}

.story-chip em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 740;
  text-transform: uppercase;
}

.story-chip.is-active span, .story-chip:hover span {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 0, 0, 0.84), var(--glow);
}

.story-chip:active span {
  transform: translateY(0) scale(0.98);
}

.catalog-section {
  padding: 52px 36px 78px;
  background:
    linear-gradient(180deg, #fff 0%, #fafafa 42%, #fff 100%);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.product-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 255, 255, 0.98), rgba(8, 8, 8, 0.16), transparent 58%) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    var(--shadow-soft);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(300px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 255, 255, 0.64), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card[hidden] { display: none; }

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    border-color: rgba(0, 0, 0, 0.78);
    transform: translateY(-4px);
    box-shadow: var(--glow-strong);
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card:hover .product-media::after {
    opacity: 1;
    transform: translateX(0);
  }

  .product-card:hover .product-media img { transform: scale(1.025); }
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.44) 48%, transparent 58%),
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 255, 255, 0.22), transparent 34%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.23, 1, 0.32, 1);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-info {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.2;
}

.card-actions {
  justify-content: space-between;
}

.card-actions a {
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid #000;
}

.card-actions .copy-button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

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

.footer-link {
  align-self: start;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}

.toast {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(380px, calc(100vw - 32px));
  min-height: 54px;
  transform: translate(-50%, -16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.86), rgba(8, 8, 8, 0.76)),
    rgba(8, 8, 8, 0.78);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(1px) saturate(150%) contrast(1.04);
  -webkit-backdrop-filter: blur(1px) saturate(150%) contrast(1.04);
  transition: opacity 190ms ease, transform 190ms cubic-bezier(0.23, 1, 0.32, 1);
}

.toast::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.toast strong,
.toast span {
  display: block;
}

.toast strong {
  font-size: 13px;
  line-height: 1.05;
  font-weight: 820;
  text-transform: uppercase;
}

.toast span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
}

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

.detail-page {
  padding: 34px 36px 72px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.detail-media > img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow-strong);
}

.detail-info {
  position: sticky;
  top: 86px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.92));
  box-shadow: var(--glow-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.detail-info h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
}

.availability {
  margin: 18px 0 24px;
  color: #383838;
  font-size: 16px;
}

.detail-actions { margin-bottom: 26px; }

.info-list {
  border-top: 1px solid var(--line);
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.info-list span {
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 740;
}

.related-items {
  margin-top: 92px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding-bottom: 4px;
}

.related-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.related-card:hover .related-media {
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: var(--glow-strong);
}

.related-card:hover img {
  transform: scale(1.025);
}

.related-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.related-card strong {
  font-size: 18px;
  line-height: 1.1;
}

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

@media (max-width: 1040px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

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

  .hero-copy,
  .hero-product {
    min-height: 500px;
  }

  .hero h1 { font-size: 64px; }

  .hero-video {
    width: min(680px, 100%);
  }

  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-info { position: static; }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header,
  .story-section,
  .catalog-section,
  .detail-page,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 0;
    padding-top: 0;
  }

  .site-header {
    min-height: 108px;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: stretch;
    gap: 3px;
    width: min(356px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    overflow: visible;
    padding: 5px;
    font-size: clamp(8px, 2.2vw, 10px);
  }

  .site-nav a {
    flex: initial;
    min-width: 0;
    padding: 8px 3px 7px;
    border-radius: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .brand {
    width: 154px;
    min-height: 52px;
    padding: 0;
  }

  .brand-logo {
    width: 136px;
    max-height: 52px;
  }

  .story-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px 4px;
    justify-content: stretch;
    overflow: visible;
    padding-bottom: 0;
  }

  .story-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .story-chip {
    width: 100%;
    min-width: 0;
  }

  .story-chip span {
    width: clamp(38px, 11vw, 48px);
    height: clamp(38px, 11vw, 48px);
    margin-bottom: 6px;
    box-shadow: 0 0 0 1.5px #fff, 0 6px 14px rgba(0, 0, 0, 0.08);
  }

  .story-chip span::before {
    inset: 2px;
  }

  .story-chip img {
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-width: 3px;
  }

  .story-chip em {
    max-width: 100%;
    font-size: clamp(6px, 1.55vw, 7px);
    line-height: 1.05;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 0.92;
  }

  .hero-copy {
    min-height: 390px;
    padding: 126px 22px 34px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-product {
    min-height: 300px;
  }

  .hero-product img {
    width: min(76%, 310px);
  }

  .hero-copy > p:not(.section-note) {
    font-size: 16px;
  }

  .hero-video video {
    min-height: 520px;
  }

  .stock-reel .hero-video {
    width: min(380px, 100%);
  }

  .reel-desktop-image {
    display: none;
  }

  .reel-mobile-video {
    display: block;
    height: min(68vh, 640px);
    min-height: 520px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 10px;
  }

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

  .product-info {
    padding: 10px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .card-actions {
    display: grid;
    gap: 9px;
  }

  .card-actions .copy-button {
    width: 100%;
  }

  .detail-info {
    padding: 18px;
  }

  .detail-info h1 {
    font-size: 34px;
  }

  .related-items {
    margin-top: 58px;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .related-card strong {
    font-size: 15px;
  }

  .site-footer {
    display: block;
  }

  .footer-link {
    display: inline-flex;
    margin-top: 18px;
  }
}
