:root {
  --red: #ef111d;
  --red-dark: #9f0710;
  --black: #050505;
  --ink: #151515;
  --muted: #6c6c6c;
  --line: #e6e6e6;
  --soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --shadow-tight: 0 14px 36px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(3, 3, 3, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 172px;
  height: auto;
  filter: invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.header-cta:hover {
  background: #c90d18;
  border-color: #c90d18;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  min-height: min(840px, calc(92vh - 78px));
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(132deg, transparent 0 58%, var(--red) 58.1% 64%, transparent 64.1%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(54px, 8vw, 120px) clamp(22px, 6vw, 80px);
}

.hero h1,
.section-heading h2,
.showcase-heading h2,
.about h2,
.catalogue h2,
.contact h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(4.4rem, 8.8vw, 8.8rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
  color: var(--white);
}

.hero p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  border-color: var(--red);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--red);
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 520px;
  padding: clamp(32px, 6vw, 70px) clamp(18px, 5vw, 76px) clamp(32px, 5vw, 62px) 0;
}

.hero-media img {
  width: min(100%, 520px);
  height: 100%;
  max-height: 720px;
  margin-left: auto;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  box-shadow: 18px 20px 0 rgba(239, 17, 29, 0.86), var(--shadow);
}

.section-heading,
.showcase-heading {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.showcase-heading h2,
.about h2,
.catalogue h2,
.contact h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
}

.section-heading p,
.showcase-heading p,
.about p,
.catalogue p,
.contact p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.category-strip {
  padding: clamp(68px, 8vw, 108px) 0;
  background: var(--white);
}

.audience-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 2%, rgba(239, 17, 29, 0.92) 2.1% 2.45%, transparent 2.55% 97.45%, rgba(239, 17, 29, 0.92) 97.55% 97.9%, transparent 98%),
    #0b0b0b;
  color: var(--white);
}

.audience-rail span {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
}

.audience-rail span + span::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.audience-rail span::after {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 28px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: translateX(-50%) scaleX(0.45);
  transition: transform 200ms ease;
}

.audience-rail span:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 244px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 260ms ease, opacity 260ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.category-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.category-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-tight);
}

.category-training img,
.category-badminton img {
  background: var(--soft);
  padding: 24px;
  object-fit: contain;
}

.showcase {
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at center top, rgba(239, 17, 29, 0.16), transparent 34%),
    linear-gradient(180deg, #070707 0%, #111 100%);
  color: var(--white);
}

.showcase-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-heading h2 span,
.showcase-heading h2 {
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-rows: 260px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: #151515;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(239, 17, 29, 0.65);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f6f6f6;
  padding: 22px;
}

.product-card div {
  padding: 22px;
}

.product-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(239, 17, 29, 0.08) 0 20%, transparent 20% 100%),
    var(--white);
}

.about-copy {
  max-width: 780px;
}

.about p {
  margin-left: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.value-grid div {
  min-height: 168px;
  padding: 24px;
  background: var(--white);
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid strong {
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.value-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.about-panel {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 3px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 0 62%, rgba(239, 17, 29, 0.08) 62.2% 100%),
    #f7f7f7;
  box-shadow: var(--shadow);
}

.order-flow {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 140px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(126deg, transparent 0 8%, rgba(239, 17, 29, 0.88) 8.1% 8.35%, transparent 8.45% 91.5%, rgba(239, 17, 29, 0.7) 91.6% 91.8%, transparent 91.9%),
    #0a0a0a;
  color: var(--white);
}

.order-flow-heading {
  width: min(800px, 100%);
  margin: 0 auto;
  text-align: center;
}

.order-flow h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.order-flow-heading p {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1120px, 100%);
  margin: 52px auto 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.order-steps li {
  position: relative;
  min-height: 270px;
  padding: 34px;
}

.order-steps li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.order-steps span {
  display: block;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 4.4rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.order-steps h3 {
  margin: 30px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.15rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.order-steps p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.65;
}

.order-steps li::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  background: #0a0a0a;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.order-steps li:last-child::after {
  display: none;
}

.about-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -76px;
  width: 220px;
  height: 360px;
  background: var(--red);
  opacity: 0.18;
  transform: skewX(-18deg);
}

.about-panel-mark {
  position: relative;
  z-index: 1;
  width: 92px;
}

.about-story {
  position: relative;
  z-index: 1;
}

.about-story h3 {
  margin: 0;
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.about-story p {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.about-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.about-links a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.about-links a:hover {
  color: var(--red);
}

.catalogue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 76px) clamp(20px, 6vw, 78px);
  background: var(--red);
  color: var(--white);
}

.catalogue p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.86);
}

.catalogue .button-primary {
  flex: 0 0 auto;
  background: var(--black);
}

.catalogue .button-primary:hover {
  background: var(--white);
  color: var(--black);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(120deg, #050505 0 72%, #b30812 72% 78%, #ef111d 78% 100%);
  color: var(--white);
}

.contact h2 {
  max-width: 650px;
  color: var(--white);
  font-style: italic;
}

.contact p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 14px;
  padding-left: clamp(0px, 4vw, 56px);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-list a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-list a:hover {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(180px, 1fr) minmax(240px, 1.2fr) auto;
  gap: 34px;
  align-items: center;
  padding: 42px clamp(20px, 6vw, 78px);
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.footer-brand img {
  width: 150px;
  filter: invert(1);
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.site-footer nav a {
  font-weight: 800;
}

.site-footer nav a:hover {
  color: var(--red);
}

@media (max-width: 980px) {
  .audience-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-rail span:nth-child(4)::before {
    display: none;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .order-steps li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .order-steps li::after {
    top: auto;
    right: auto;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .audience-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-rail span {
    min-height: 96px;
    font-size: 1.28rem;
  }

  .audience-rail span:nth-child(odd)::before {
    display: none;
  }

  .order-flow {
    padding: 64px 18px;
  }

  .order-flow h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .order-steps {
    margin-top: 38px;
  }

  .order-steps li {
    min-height: 0;
    padding: 28px 24px;
  }

  .order-steps h3 {
    margin-top: 22px;
    font-size: 1.9rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 18px;
  }

  .site-footer nav {
    gap: 12px 20px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: catalogue-float 5s 1s ease-in-out infinite;
  }

  html.motion-ready .audience-rail span {
    opacity: 0;
    transform: translateY(16px);
  }

  html.motion-ready .audience-rail.is-visible span {
    animation: rail-item-arrival 440ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.motion-ready .audience-rail.is-visible span:nth-child(2) { animation-delay: 70ms; }
  html.motion-ready .audience-rail.is-visible span:nth-child(3) { animation-delay: 140ms; }
  html.motion-ready .audience-rail.is-visible span:nth-child(4) { animation-delay: 210ms; }
  html.motion-ready .audience-rail.is-visible span:nth-child(5) { animation-delay: 280ms; }
  html.motion-ready .audience-rail.is-visible span:nth-child(6) { animation-delay: 350ms; }

  .product-card img,
  .mini-card img {
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-card:hover img,
  .mini-card:hover img {
    transform: scale(1.045);
  }
}

@keyframes catalogue-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes rail-item-arrival {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-main {
  background: var(--white);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: 460px;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 78px);
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(5, 5, 5, 0.98) 0 57%, rgba(239, 17, 29, 0.88) 57.2% 62%, rgba(5, 5, 5, 0.96) 62.2%),
    var(--black);
  color: var(--white);
}

.page-hero h1,
.page-section h2,
.detail-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.25rem, 7vw, 7.4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero h1 span {
  display: block;
  color: var(--red);
}

.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.page-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 78px);
}

.page-section h2 {
  color: var(--ink);
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
  font-style: normal;
  text-align: center;
}

.page-section > p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  text-align: center;
}

.category-list,
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 36px auto 0;
}

.category-list {
  grid-template-columns: repeat(5, 1fr);
}

.mini-card {
  display: grid;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  transition: transform 180ms ease;
}

.mini-card:hover {
  transform: translateY(-3px);
}

.mini-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.mini-card div {
  padding: 18px;
}

.mini-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.mini-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.product-list .mini-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-list .mini-card img {
  object-fit: contain;
  padding: 20px;
  background: #f6f6f6;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 78px);
}

.detail-media {
  overflow: hidden;
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  padding: clamp(22px, 5vw, 52px);
}

.detail-copy h2 {
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 5.3rem);
  font-style: normal;
}

.detail-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.detail-copy .button-secondary {
  color: var(--ink);
}

.detail-copy .button-secondary:hover {
  color: var(--white);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-list div {
  min-height: 116px;
  padding: 20px;
  background: var(--white);
}

.spec-list strong,
.spec-list span {
  display: block;
}

.spec-list strong {
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.spec-list span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.related-band {
  padding: clamp(48px, 7vw, 76px) clamp(20px, 6vw, 78px);
  background: #111;
  color: var(--white);
}

.related-band h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 12px clamp(16px, 4vw, 36px);
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .hero,
  .about,
  .page-hero,
  .detail-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(112deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 56%, rgba(239, 17, 29, 0.86) 56.2%, rgba(239, 17, 29, 0.86) 61%, rgba(5, 5, 5, 0.97) 61.2%),
      var(--black);
  }

  .hero-media {
    min-height: 0;
    padding: 0 22px 40px;
  }

  .hero-media img {
    width: min(100%, 430px);
    height: 460px;
    margin: 0 auto;
    max-height: none;
    object-fit: cover;
    object-position: top center;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card span {
    right: 44px;
  }

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

  .category-list,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .catalogue .button-primary {
    align-self: stretch;
  }

  .contact-list {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 0;
    padding: 10px 16px 12px;
  }

  .brand img {
    width: 124px;
  }

  .header-cta {
    min-height: 40px;
    padding: 2px 12px 0;
    font-size: 0.82rem;
    border-radius: 5px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    overflow: visible;
    padding: 0;
    font-size: 0.78rem;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
  }

  .main-nav a:active,
  .header-cta:active,
  .button:active {
    transform: translateY(1px);
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding: 34px 18px 24px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(3.45rem, 16vw, 4.4rem);
    line-height: 0.88;
  }

  .hero p {
    max-width: 310px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    width: 100%;
    padding: 0 18px;
  }

  .hero-media {
    width: 100%;
    padding: 4px 18px 32px;
  }

  .hero-media img {
    width: min(100%, 310px);
    height: 330px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
  }

  .section-heading,
  .showcase-heading {
    width: min(100% - 32px, 560px);
    margin-bottom: 24px;
  }

  .section-heading h2,
  .showcase-heading h2,
  .about h2,
  .page-section h2,
  .detail-copy h2,
  .catalogue h2,
  .contact h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    line-height: 0.95;
  }

  .section-heading p,
  .showcase-heading p,
  .about p,
  .page-section > p,
  .detail-copy p,
  .catalogue p,
  .contact p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .category-strip,
  .showcase,
  .about,
  .page-section,
  .detail-section,
  .related-band,
  .contact {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .category-grid,
  .product-grid,
  .category-list,
  .product-list {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 430px);
    gap: 14px;
  }

  .category-card {
    min-height: 0;
    aspect-ratio: 1.34;
    clip-path: none;
    border-radius: 8px;
  }

  .category-card span {
    right: 18px;
    bottom: 16px;
    font-size: 1.8rem;
  }

  .product-card {
    grid-template-rows: minmax(0, 190px) auto;
  }

  .product-card img {
    padding: 18px;
  }

  .product-card div {
    padding: 18px;
  }

  .product-card h3 {
    font-size: 1.75rem;
  }

  .about {
    gap: 28px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .value-grid {
    margin-top: 28px;
  }

  .value-grid div {
    min-height: 0;
    padding: 20px;
  }

  .value-grid strong {
    font-size: 1.48rem;
  }

  .about-panel {
    padding: 24px;
  }

  .about-panel-mark {
    width: 76px;
  }

  .about-story h3 {
    font-size: 1.7rem;
  }

  .page-hero {
    min-height: 0;
    padding: 42px 18px;
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.35rem);
  }

  .page-hero p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .page-hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .page-hero-media img {
    height: 260px;
  }

  .mini-card {
    min-height: 0;
  }

  .mini-card img {
    height: 210px;
  }

  .detail-section {
    gap: 30px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .detail-media img {
    height: 300px;
    padding: 22px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .catalogue {
    padding: 48px 18px;
  }

  .contact {
    gap: 26px;
    padding-left: 18px;
    padding-right: 18px;
    background:
      linear-gradient(118deg, transparent 0 68%, rgba(239, 17, 29, 0.82) 68.2% 78%, #ef111d 78.2% 100%),
      var(--black);
  }

  .contact-list {
    gap: 8px;
  }

  .contact-list a {
    overflow-wrap: anywhere;
    padding: 10px 0;
    font-size: 0.98rem;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .main-nav {
    font-size: 0.72rem;
  }

  .main-nav a {
    min-height: 34px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.7rem);
  }

  .hero-media img {
    width: min(100%, 286px);
    height: 304px;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 900px) {
  .site-header {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    min-height: 58px;
    padding: 8px 18px;
    gap: 16px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .main-nav {
    order: 0;
    display: flex;
    grid-column: auto;
    width: auto;
    gap: 16px;
    font-size: 0.78rem;
  }

  .main-nav a {
    min-height: auto;
    border: 0;
    background: transparent;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
  }

  .hero-copy {
    padding: 22px 24px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .hero p {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    width: auto;
    min-height: 42px;
    padding: 0 16px;
  }

  .hero-media {
    padding: 18px 20px 18px 0;
  }

  .hero-media img {
    width: min(100%, 220px);
    height: 260px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-arrival 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy {
    animation: hero-copy-arrival 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-media {
    animation: hero-media-arrival 820ms 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .category-card,
  .product-card,
  .mini-card {
    animation: card-arrival 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .category-card:nth-child(2),
  .product-card:nth-child(2),
  .mini-card:nth-child(2) {
    animation-delay: 70ms;
  }

  .category-card:nth-child(3),
  .product-card:nth-child(3),
  .mini-card:nth-child(3) {
    animation-delay: 140ms;
  }

  .category-card:nth-child(4),
  .product-card:nth-child(4),
  .mini-card:nth-child(4) {
    animation-delay: 210ms;
  }

  .category-card:nth-child(5),
  .product-card:nth-child(5),
  .mini-card:nth-child(5) {
    animation-delay: 280ms;
  }

  .category-card:nth-child(6),
  .product-card:nth-child(6),
  .mini-card:nth-child(6) {
    animation-delay: 350ms;
  }
}

@media (hover: hover) {
  .button-primary:hover {
    box-shadow: 0 10px 24px rgba(239, 17, 29, 0.35);
  }

  .header-cta:hover,
  .button:hover {
    transition-duration: 140ms;
  }
}

@keyframes header-arrival {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-arrival {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-media-arrival {
  from { opacity: 0; transform: translateX(34px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes card-arrival {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inner pages share the same editorial black/red framing as the homepage. */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--black);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(132deg, transparent 0 59%, var(--red) 59.1% 65%, transparent 65.1%);
  content: "";
}

.page-hero h1 span {
  color: var(--white);
}

.page-hero-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  box-shadow: 15px 18px 0 rgba(239, 17, 29, 0.82), var(--shadow-tight);
}

.detail-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 17, 29, 0.07) 0 16%, transparent 16.1%);
}

.detail-media {
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 14px 16px 0 rgba(239, 17, 29, 0.82), var(--shadow-tight);
}

.page-section h2::after,
.related-band h2::after {
  display: block;
  width: 52px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--red);
  content: "";
}

html.motion-ready .motion-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--motion-delay);
}

html.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

/* Shared final polish: active navigation, reading progress, and tactile depth. */
:root {
  --scroll-progress: 0;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.main-nav a.is-active {
  color: var(--red);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.page-main {
  background: linear-gradient(135deg, rgba(239, 17, 29, 0.035) 0 9%, transparent 9.1% 100%);
}

.category-card,
.product-card,
.mini-card {
  position: relative;
  isolation: isolate;
}

.category-card::before,
.product-card::before,
.mini-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.order-steps li {
  transition: background 220ms ease, transform 220ms ease;
}

@media (hover: hover) {
  .category-card:hover::before,
  .product-card:hover::before,
  .mini-card:hover::before {
    transform: scaleX(1);
  }

  .order-steps li:hover {
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-5px);
  }

  .site-footer a,
  .contact-list a,
  .about-links a {
    transition: color 180ms ease, transform 180ms ease;
  }

  .site-footer a:hover,
  .contact-list a:hover,
  .about-links a:hover {
    transform: translateX(4px);
  }
}

@media (max-width: 640px) {
  .site-header::after {
    height: 2px;
  }

  .page-main {
    background: linear-gradient(135deg, rgba(239, 17, 29, 0.03) 0 5%, transparent 5.1% 100%);
  }
}
