:root {
  --bg: #020202;
  --text: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.62);
  --soft: rgba(247, 247, 247, 0.28);
  --line: rgba(255, 255, 255, 0.16);
  --page: min(1180px, calc(100vw - 48px));

  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(circle at 78% 43%, rgba(255, 255, 255, 0.035), transparent 20%),
    #010101;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.75) 0 0.45px, transparent 0.55px 2px);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 29px;
  left: 50%;
  width: min(1178px, calc(100vw - 74px));
  height: 74px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 51px;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease,
    top 0.24s ease;
}

.site-header.is-scrolled {
  top: 18px;
  background: rgba(6, 6, 6, 0.48);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.brand,
.nav a,
.cart-link,
.tagline,
.side-index,
.mini-mark p,
.scroll-cue,
.feature-strip h2,
.feature-strip p,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.42em;
}

.brand {
  justify-self: start;
  display: block;
  width: 166px;
  pointer-events: auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1);
}

.nav {
  display: flex;
  gap: 58px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  pointer-events: auto;
}

/* cart inside the nav is mobile-only; on desktop the header cart-link is used */
.nav-cart {
  display: none;
}

.nav a,
.cart-link {
  transition: opacity 0.2s ease;
}

.nav a:hover,
.cart-link:hover {
  opacity: 0.62;
}

.cart-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  pointer-events: auto;
}

.cart-link[hidden] {
  display: none;
}

.cart-link span {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.menu-btn {
  display: none;
  justify-self: end;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: auto;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 25;
  inset: 28px calc((100vw - min(1180px, calc(100vw - 74px))) / 2);
  border: 2px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 40px rgba(255, 255, 255, 0.03);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.48) 67%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.06), transparent 36%),
    radial-gradient(ellipse at 50% 72%, transparent 0%, rgba(0, 0, 0, 0.86) 58%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin-top: -45vh;
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(702px, 66.6vw);
  height: auto;
  margin: 0 auto 18px;
  filter: invert(1);
  opacity: 0.96;
}

.tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.54em;
}

.side-index {
  position: absolute;
  z-index: 3;
  left: max(70px, calc((100vw - 1180px) / 2 + 41px));
  top: 32.2vh;
  display: grid;
  gap: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.side-index .active {
  color: white;
}

.side-index .active::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  margin-left: 13px;
  background: rgba(255, 255, 255, 0.62);
  vertical-align: middle;
}

.feature-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-mark {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 27.1vh;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.mini-mark svg {
  width: 58px;
  height: 38px;
  margin-bottom: 7px;
}

.mini-mark path {
  fill: none;
  stroke: white;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-mark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
}

.scroll-cue b {
  width: 14px;
  height: 14px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
}

.feature-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 112px;
  width: min(700px, calc(100vw - 220px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.feature-strip article {
  min-height: 58px;
  padding: 0 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-icon {
  display: none;
}

.feature-strip h2 {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.feature-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-transform: none;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #050505;
  background: #f4f4f4;
}

.strava-btn {
  gap: 9px;
}

.strava-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 128px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 600;
}

.copy {
  font-size: 18px;
}

.copy p,
.reveal-card p,
.contact p,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
  max-width: min(836px, var(--page));
}

.reveal-card,
.poster-preview,
.contact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.reveal-card {
  padding: clamp(20px, 2.75vw, 33px);
}

.reveal-card h2,
.contact h2 {
  margin-top: 0;
}

.poster-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  justify-self: stretch;
  align-self: stretch;
}

.praga-preview {
  background: #020202;
}

.praga-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.poster-title {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(20px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
}

#posterCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.contact {
  text-align: center;
  padding: clamp(40px, 8vw, 92px);
}

.contact h2 {
  margin-right: auto;
  margin-left: auto;
}

.contact p {
  max-width: 560px;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.gallery {
  display: grid;
  gap: 40px;
}

.gallery-head h2 {
  margin: 0;
}

.gallery-note {
  margin: 16px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-note strong,
.cart-ship-note strong {
  color: var(--text);
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}

.tab.is-active {
  color: #050505;
  background: #f4f4f4;
  border-color: #f4f4f4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ffffff;
}

.product-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.media-rear {
  opacity: 0;
}

.product:hover .media-front {
  opacity: 0;
}

.product:hover .media-rear {
  opacity: 1;
}

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

/* Concept badge on product media */
.concept-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  color: #f4f4f4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.concept-badge.static {
  position: static;
  display: inline-block;
}

.product-info .soon {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Concept notice inside the product modal */
.pm-concept {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-top: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.pm-concept p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 20px 22px 24px;
}

.product-info h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-info .price {
  margin-top: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product {
  cursor: pointer;
}

.product:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

/* cart-link is a button now */
button.cart-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.cart-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

/* --- Overlays / modal / drawer ----------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.overlay[hidden] {
  display: none;
}

.modal {
  margin: auto;
  width: min(860px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, #0c0c0c, #060606);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.intro-modal {
  position: relative;
  width: min(460px, calc(100vw - 40px));
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 14px;
}

.intro-modal h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-modal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.intro-modal strong {
  color: var(--text);
}

.intro-modal .btn {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.pm-media {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.pm-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.pm-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
}

.pm-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pm-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.pm-dot.on {
  background: #111111;
}

.pm-concept-note {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.pm-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
}

.pm-body h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pm-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pm-body .price {
  font-size: 18px;
  font-weight: 700;
}

.opt-group {
  display: grid;
  gap: 8px;
}

.opt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.seg-btn {
  min-width: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.seg-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.seg-btn.is-active {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #050505;
}

.pm-add {
  margin-top: 6px;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.pm-hint {
  margin: 0;
  color: #ff9b9b;
  font-size: 12px;
}

/* Size chart in product modal */
.pm-sizes {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pm-sizes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.seg-sm .seg-btn {
  min-width: 0;
  padding: 7px 12px;
  font-size: 11px;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.size-table th,
.size-table td {
  padding: 9px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.size-table th {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.size-table td:first-child,
.size-table th:first-child {
  text-align: left;
  font-weight: 600;
}

.size-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Cart drawer */
.cart-drawer {
  position: relative;
  margin-left: auto;
  width: min(440px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #0b0b0b, #050505);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-head h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cart-head .modal-close {
  position: static;
}

.cart-items {
  flex: 0 1 auto;
  overflow-y: auto;
  padding: 18px 26px;
  display: grid;
  gap: 12px;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 30px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-main strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 12px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.qty button:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}

.cart-remove:hover {
  color: var(--text);
}

.cart-form {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding: 22px 26px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.cart-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cart-summary {
  padding: 18px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 8px;
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 14px;
}

.cart-summary-row strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.cart-summary-row.muted {
  color: var(--muted);
  font-size: 13px;
}

.cart-ship-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cart-form label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-form label.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
}

.cart-form label.consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #f4f4f4;
}

.cart-form label.consent a {
  color: var(--text);
  text-decoration: underline;
}

.intro-modal .intro-sub {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
}

.cart-form input,
.cart-form textarea {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.cart-form input:focus,
.cart-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.cart-form .btn {
  border: 0;
  cursor: pointer;
}

.cart-msg {
  margin: 0;
  font-size: 13px;
  min-height: 16px;
}

.cart-msg.ok {
  color: #8be59a;
}

.cart-msg.err {
  color: #ff9b9b;
}

.footer {
  width: var(--page);
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 820px) {
  :root {
    --page: min(100vw - 38px, 390px);
  }

  body {
    background: #010101;
  }

  .site-header {
    top: 0;
    width: 100%;
    height: 64px;
    padding: 0 25px;
    grid-template-columns: 1fr auto;
    border-radius: 0;
  }

  .site-header.is-scrolled {
    top: 0;
    background: rgba(6, 6, 6, 0.54);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  }

  .brand {
    align-self: center;
    width: 111px;
  }

  .cart-link,
  .nav {
    display: none;
  }

  /* Cart appears as the last item inside the open mobile menu */
  .site-header.open .nav .nav-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .site-header.open .nav {
    position: fixed;
    top: 64px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(6, 6, 6, 0.72);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
  }

  .site-header.open .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .site-header.open .nav a:last-child {
    border-bottom: 0;
  }

  .menu-btn {
    display: block;
    align-self: center;
  }

  .menu-btn span {
    width: 20px;
    height: 2px;
    margin: 3px auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.open .menu-btn span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.open .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .site-header.open .menu-btn span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
    width: 100vw;
    max-width: 100vw;
  }

  .hero::before {
    display: none;
  }

  .hero-bg {
    top: 118px;
    height: 45vh;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.04) 31%, rgba(0, 0, 0, 0.56) 58%, rgba(0, 0, 0, 0.98) 100%),
      radial-gradient(ellipse at 50% 35%, rgba(255, 255, 255, 0.08), transparent 38%);
  }

  .hero-content {
    width: var(--page);
    margin-top: 16vh;
    overflow: hidden;
  }

  .hero-logo {
    width: min(263px, calc(100vw - 62px));
    margin-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }

  .tagline {
    font-size: 10px;
    letter-spacing: 0.29em;
  }

  .side-index {
    display: none;
  }

  .mini-mark {
    bottom: 25.4vh;
    gap: 7px;
  }

  .mini-mark svg {
    width: 54px;
    margin-bottom: 4px;
  }

  .mini-mark p {
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .scroll-cue {
    bottom: 16.2vh;
    font-size: 8px;
    letter-spacing: 0.32em;
  }

  .scroll-cue b {
    width: 12px;
    height: 12px;
  }

  .feature-strip {
    left: 50%;
    right: auto;
    bottom: 42px;
    width: min(330px, calc(100vw - 42px));
    transform: translateX(-50%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .feature-strip article {
    min-height: 66px;
    padding: 0 5px;
  }

  .feature-icon {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin: 0 auto 9px;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
  }

  .feature-icon svg {
    width: 15px;
    height: 15px;
  }

  .feature-strip h2 {
    margin-bottom: 0;
    font-size: 6px;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .feature-strip p {
    display: none;
  }

  .split,
  .reveal {
    grid-template-columns: 1fr;
  }

  .gallery {
    gap: 28px;
  }

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

  .tab {
    padding: 11px 20px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

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

  /* On mobile cap the photo height so the buy controls stay reachable */
  .pm-slide {
    aspect-ratio: auto;
    height: 52vh;
  }

  .cart-drawer {
    width: 100vw;
  }

  .section {
    padding: 52px 0;
  }

  .section h2 {
    font-size: clamp(32px, 12vw, 52px);
  }

  .copy {
    font-size: 16px;
  }

  .poster-preview {
    width: min(100%, 74vw);
    aspect-ratio: 8 / 12;
    justify-self: center;
    align-self: center;
  }

  .praga-preview img {
    min-height: 0;
  }

  .contact-actions,
  .footer {
    flex-direction: column;
  }

  .contact {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .contact-actions {
    width: 100%;
    align-items: center;
  }

  .btn {
    width: min(100%, 390px);
  }

  .contact-actions .btn {
    width: min(100%, 390px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
