:root {
  --bg: #090607;
  --card: rgba(24, 18, 20, 0.9);
  --text: #fff7f8;
  --muted: #d8c4c8;
  --red: #d64b67;
  --red-dark: #8f2339;
  --gold: #f0c7a1;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 26px clamp(20px, 5vw, 76px);
  background: #050304;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,3,4,0.96) 0%, rgba(12,7,8,0.82) 38%, rgba(12,7,8,0.38) 100%),
    url("assets/brand/boxers-fighting-bg.svg") center right / cover no-repeat;
  transform: scale(1.08);
  transform-origin: center;
  animation: heroFightMove 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% 35%;
  z-index: -1;
  height: 55%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.42), transparent 62%);
  pointer-events: none;
}

@keyframes heroFightMove {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1);
  }
  45% {
    transform: scale(1.12) translate3d(-1.4%, -0.8%, 0);
    filter: saturate(1.12) contrast(1.06);
  }
  100% {
    transform: scale(1.16) translate3d(1.2%, 0.9%, 0);
    filter: saturate(1.04) contrast(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 1px;
}

.logo span {
  color: var(--text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.logo small {
  max-width: 210px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: clamp(70px, 10vw, 130px);
}

.hero-logo-card {
  width: min(360px, 78vw);
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
}

.hero-logo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0.5px;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 108px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 6vw, 70px);
  margin-bottom: 18px;
}

.lead,
.section-note {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  justify-content: flex-start;
}

.btn,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary,
.card-link {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 14px 30px rgba(229, 9, 20, 0.32);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: white;
  backdrop-filter: blur(8px);
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 76px);
}

.products-section {
  background:
    radial-gradient(circle at top right, rgba(214, 75, 103, 0.22), transparent 34%),
    #100b0d;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

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

.product-card {
  display: flex;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: 250px;
  display: block;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
}

.product-card h3 {
  font-size: 24px;
  margin: 0 10px 10px;
}

.product-card p {
  min-height: 78px;
  margin: 0 10px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  margin: auto 10px 10px;
}

.gallery-section {
  background:
    radial-gradient(circle at top left, rgba(240, 199, 161, 0.14), transparent 34%),
    #090607;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
  border-color: rgba(245, 185, 66, 0.7);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  outline: none;
  transform: translateY(-3px) scale(1.015);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.photo-lightbox.is-open {
  display: grid;
}

.lightbox-content {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0;
}

.photo-lightbox img {
  max-width: min(1180px, 96vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 110px rgba(0,0,0,0.7);
  animation: zoomPhotoIn 180ms ease-out;
}

@keyframes zoomPhotoIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lightbox-model {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,255,255,0.08);
  font-weight: 900;
}

.lightbox-request {
  margin-top: 0;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 51;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(229, 9, 20, 0.75);
  transform: scale(1.06);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: clamp(48px, 7vw, 68px);
  height: clamp(48px, 7vw, 68px);
  font-size: clamp(42px, 7vw, 68px);
  line-height: 0.8;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: clamp(12px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 34px);
}

.no-scroll {
  overflow: hidden;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background: #090909;
}

.shipping-section {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(240, 199, 161, 0.14), transparent 42%),
    #100b0d;
}

.shipping-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.custom-steps {
  display: grid;
  gap: 14px;
}

.custom-steps div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
}

.custom-steps strong {
  color: var(--gold);
  font-size: 26px;
}

.custom-steps span {
  color: var(--muted);
  line-height: 1.6;
}

.location-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  background: #080808;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0,0,0,0.48);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(0.45) contrast(1.08);
}

.map-note {
  padding: 14px 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.contact-section {
  text-align: center;
  background:
    linear-gradient(rgba(12,7,8,0.78), rgba(12,7,8,0.92)),
    url("assets/photo-box/photo-12.jpeg") center/cover;
}

.contact-section p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .product-grid,
  .location-section,
  .custom-section {
    grid-template-columns: 1fr;
  }

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

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

  .map-card iframe {
    height: 330px;
  }

  .photo-lightbox {
    padding-inline: 70px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 310px;
  }
}
