/* ==========================================================================
   FASUTO RITSU — GT7 Sim Racing League
   Monotone / sporty / bold
   ========================================================================== */

:root {
  --black: #050505;
  --panel: #0c0c0c;
  --panel-2: #131313;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #ffffff;
  --grey: #a6a6a6;
  --grey-dim: #6e6e6e;

  --display: "Orbitron", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 68px;
  --wrap: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto; /* the width/height attributes must not fix the rendered height */
}

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

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Glow button (client-specified style)
   -------------------------------------------------------------------------- */

.glow-btn {
  --glow-color: rgb(255, 255, 255);
  --btn-color: rgb(16, 16, 16);

  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06em;

  padding: 0.9em 2.6em;
  border: 2px solid var(--glow-color);
  border-radius: 0.9em;
  color: var(--glow-color);
  background-color: var(--btn-color);

  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-decoration: none;
  cursor: pointer;
  outline: none;

  box-shadow:
    rgba(255, 255, 255, 0.9)  0 0 0.5em 0.03em,
    rgba(255, 255, 255, 0.55) 0 0 1.4em 0.06em,
    rgba(255, 255, 255, 0.28) 0 0 3em   0.1em,
    rgba(255, 255, 255, 0.45) 0 0 0.8em 0    inset;
  text-shadow:
    rgba(255, 255, 255, 0.95) 0 0 0.25em,
    rgba(255, 255, 255, 0.6)  0 0 0.7em;

  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.glow-btn:hover,
.glow-btn:focus-visible {
  color: var(--btn-color);
  background-color: var(--glow-color);
  text-shadow: none;
  box-shadow:
    rgb(255, 255, 255)        0 0 0.7em 0.06em,
    rgba(255, 255, 255, 0.75) 0 0 2em   0.12em,
    rgba(255, 255, 255, 0.4)  0 0 4em   0.16em,
    rgba(255, 255, 255, 0.5)  0 0 0.8em 0    inset;
}

.glow-btn:active {
  box-shadow:
    rgba(255, 255, 255, 0.85) 0 0 0.45em 0.03em,
    rgba(255, 255, 255, 0.5)  0 0 1.2em  0.05em,
    rgba(255, 255, 255, 0.45) 0 0 0.5em  0 inset;
}

.glow-btn--sm {
  font-size: 12px;
  padding: 0.75em 1.6em;
  border-radius: 0.7em;
  letter-spacing: 0.16em;
}

.glow-btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 34px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  flex: none;
}

.brand__text { min-width: 0; }

.brand__name {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(13px, 3.4vw, 17px);
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.brand__sub {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--grey-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.quicknav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn svg.is-solid {
  fill: currentColor;
  stroke: none;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.icon-btn__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: #000;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  line-height: 19px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.icon-btn__badge.is-visible { display: grid; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .wrap { width: 100%; }

.hero__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

/* Mobile / tablet: the video is the background of the whole top section.
   Absolute positioning is resolved against .hero (the only positioned
   ancestor), so it goes full-bleed behind the content. */
.hero__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__frame video,
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The poster is pinned over the frame from the first paint and only lifts
   once the video is genuinely playing (main.js). iOS draws a native play
   triangle over any video that has not started — Low Power Mode refusing
   autoplay, or just a slow first buffer — and this covers it outright rather
   than letting it flash. The video keeps loading behind the poster; opacity
   hides it without stopping playback the way display/visibility would. */
.hero__frame.is-poster-fallback {
  background-image: url("../video/hero-poster.jpg");
  background-size: cover;
  background-position: center;
}

.hero__frame.is-poster-fallback video {
  opacity: 0;
}

/* Fade the handover so the poster-to-video swap is not a visible cut. */
.hero__frame video {
  transition: opacity 320ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .hero__frame video { transition: none; }
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(5, 5, 5, 0.82) 0%,
    rgba(5, 5, 5, 0.66) 45%,
    rgba(5, 5, 5, 0.96) 100%);
}

.hero__glow { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
}

/* The glow is held back until main.js confirms the PNG has decoded. WebKit
   computes drop-shadow from the element box when the alpha channel is not
   decoded yet, which renders the glow as a rectangle around the image instead
   of hugging the artwork — it only corrects on the repaint a zoom forces. */
.hero__logo {
  width: clamp(140px, 40vw, 210px);
}

.hero__logo.is-lit {
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.45));
}

.hero__title {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 9vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
}

.hero__tagline {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(11px, 2.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero__rule {
  width: 92px;
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}

.section__eyebrow {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin: 0 0 16px;
}

.section__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 6.4vw, 58px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.25);
}

.section__sub {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Events ------------------------------------------------------------------ */

.events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 46px 0 0;
}

.event-card {
  position: relative;
  padding: 30px 26px 32px;
  background:
    linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.06) 100%);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.event-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

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

.event-card__index {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--grey-dim);
}

.event-card__name {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(20px, 4.6vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card__desc {
  margin: 0;
  color: var(--grey);
  font-size: 15px;
}

.events__cta {
  display: flex;
  justify-content: center;
  margin: 46px 0 0;
}

/* Merch ------------------------------------------------------------------- */

.merch__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.merch__price-note {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dim);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 46px 0 0;
}

.product {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.product:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 44px rgba(255, 255, 255, 0.08);
}

.product__media {
  position: relative;
  aspect-ratio: 19 / 20;
  background: #000;
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product:hover .product__media img { transform: scale(1.04); }

.product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 24px;
  border-top: 1px solid var(--line);
}

.product__collection {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.product__name {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product__desc {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--grey);
}

.product__price {
  margin: auto 0 0;
  padding-top: 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.product__price span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--grey-dim);
  margin-left: 8px;
}

.product__controls {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin: 18px 0 0;
}

.product__custom {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin: 18px 0 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.control {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  background: #000;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: border-color 0.25s, box-shadow 0.25s;
}

select.control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
  cursor: pointer;
}

.control::placeholder {
  color: var(--grey-dim);
  letter-spacing: 0.1em;
}

.control:hover { border-color: var(--line-strong); }

.control:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 16px rgba(255, 255, 255, 0.22);
}

.product__add { margin: 18px 0 0; }

/* --------------------------------------------------------------------------
   Cart drawer
   -------------------------------------------------------------------------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(430px, 100%);
  height: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  border-left: 1px solid var(--line-strong);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.8);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.38s;
}

.cart.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--line);
  flex: none;
}

.cart__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cart__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s, background-color 0.25s;
}

.cart__close:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.cart__close svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.cart__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.cart__empty {
  padding: 50px 10px;
  text-align: center;
  color: var(--grey-dim);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.cart-item__thumb {
  width: 62px;
  height: 66px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.cart-item__name {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.cart-item__meta {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey-dim);
  text-transform: uppercase;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__price {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cart-item__remove {
  border: 0;
  background: none;
  padding: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
  cursor: pointer;
  transition: color 0.25s;
}

.cart-item__remove:hover { color: var(--white); }

.cart__totals {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 20px 0 4px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart__totals span:last-child { font-size: 20px; }

.cart__note {
  margin: 0 0 22px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--grey-dim);
}

.cart__form {
  display: grid;
  gap: 14px;
}

.cart__form .field__label { color: var(--grey); }

textarea.control {
  height: auto;
  min-height: 84px;
  padding: 12px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  resize: vertical;
}

.cart__foot {
  flex: none;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.form-status {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  display: none;
}

.form-status.is-visible { display: block; }

.form-status.is-error { color: #ff8f8f; }

.form-status.is-ok { color: var(--white); }

.cart__submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  text-shadow: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 58px 0 26px;
  background: #030303;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand img {
  width: 58px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.3));
}

.site-footer__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__sub {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: var(--grey);
  transition: color 0.25s, text-shadow 0.25s;
}

.site-footer__links a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.site-footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.credit {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.3s;
}

.credit:hover { color: rgba(255, 255, 255, 0.5); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Small phones: keep the brand block clear of the quick-nav icons */
@media (max-width: 560px) {
  .wrap { padding: 0 15px; }
  .brand { gap: 9px; }
  .brand__mark { width: 29px; }
  .brand__sub { display: none; }
  .brand__name { font-size: 13px; letter-spacing: 0.14em; }
  .quicknav { gap: 5px; }
  .icon-btn { width: 38px; height: 38px; border-radius: 10px; }
  .icon-btn svg { width: 17px; height: 17px; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 0; letter-spacing: 0; }
  .brand__mark { width: 32px; }
}

@media (min-width: 620px) {
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .events__grid { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .quicknav { gap: 10px; }
  .brand__mark { width: 40px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 78px; }

  /* Desktop: content left, video right */
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 56px) 0 80px;
  }

  .hero__inner {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
  }

  /* Desktop: info + logo + buttons left, video right */
  .hero__frame {
    position: relative;
    inset: auto;
    z-index: auto;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    aspect-ratio: 10 / 13;
    max-height: 74svh;
    margin-left: auto;
    width: 100%;
    max-width: 520px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 60px rgba(255, 255, 255, 0.14),
      0 40px 90px rgba(0, 0, 0, 0.75);
  }

  .hero__frame::after {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.5) 100%);
  }

  .hero__glow {
    display: block;
    position: absolute;
    z-index: -1;
    inset: -14% -6% -14% 6%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 72%);
    filter: blur(10px);
    pointer-events: none;
  }
}

@media (min-width: 1180px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}

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