:root {
  --bg: #0b0f14;
  --bg-2: #121821;
  --surface: #161e29;
  --text: #f4f7fb;
  --muted: #9aa8b8;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #e11d2e;
  --brand-2: #ff4d5a;
  --accent: #f5c518;
  --ok: #2dd4a8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 10% -10%, rgba(225, 29, 46, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(245, 197, 24, 0.12), transparent 50%),
    linear-gradient(180deg, #0b0f14 0%, #10161f 40%, #0b0f14 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.announcement {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: linear-gradient(90deg, #8b0f1a, #e11d2e 45%, #8b0f1a);
  font-size: 0.86rem;
  font-weight: 600;
}
.announcement a {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 15, 20, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-tr {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  padding: 4px 9px;
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 22px; font-size: 0.95rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.35);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: #fff;
}
.btn-dark {
  background: #fff;
  color: #111;
}

.hero-banner {
  position: relative;
  margin: 0 0 8px;
}
.hero-stage {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  background: #0a0d12;
}
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1.15fr 0.85fr;
  gap: 8px;
  padding: 8px;
  transform: scale(1.04);
  animation: collageDrift 18s ease-in-out infinite alternate;
}
.hc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(1.08) contrast(1.05);
}
.hc-1 { grid-column: 1 / 3; grid-row: 1; animation: floatA 7s ease-in-out infinite; }
.hc-2 { grid-column: 3 / 5; grid-row: 1; }
.hc-3 { grid-column: 5 / 7; grid-row: 1; animation: floatB 8s ease-in-out infinite; }
.hc-4 { grid-column: 1 / 3; grid-row: 2; }
.hc-5 { grid-column: 3 / 5; grid-row: 2; animation: floatA 9s ease-in-out infinite reverse; }
.hc-6 { grid-column: 5 / 7; grid-row: 2; }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,14,.92) 0%, rgba(8,10,14,.72) 38%, rgba(8,10,14,.35) 68%, rgba(8,10,14,.55) 100%),
    linear-gradient(180deg, rgba(225,29,46,.22) 0%, transparent 42%, rgba(8,10,14,.75) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 56px;
  max-width: min(720px, calc(100% - 32px));
  margin-left: max(16px, calc((100% - 1180px) / 2 + 16px));
}
.hero-content .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 13vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
  animation: titleIn .7s ease-out both;
}
.hero-lead {
  margin: 18px 0 0;
  max-width: 28rem;
  color: #d7dee8;
  font-size: 1.08rem;
  line-height: 1.6;
}
.hero-lead strong { color: #fff; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-pill {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: rgba(11,15,20,.78);
  border: 1px solid rgba(245,197,24,.35);
  backdrop-filter: blur(10px);
  width: fit-content;
}
.hero-pill span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}
.hero-pill b { font-size: 0.86rem; }

@keyframes collageDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes titleIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero { display: none; }
.hero-bg { display: none; }

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

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px 0 10px;
}
.trust article {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.trust h3 { margin: 0 0 8px; font-size: 1rem; }
.trust p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.collection, .categories, .why, .distributor { padding: 54px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.section-head h2, .why h2, .distributor h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
}
.section-sub { margin: 8px 0 0; color: var(--muted); max-width: 40rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 100%;
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 46, 0.45);
}
.product-media {
  aspect-ratio: 1;
  background: #f3f5f8;
  display: grid;
  place-items: center;
  padding: 14px;
  position: relative;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 9px;
}
.product-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  min-height: 2.7em;
}
.product-price {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.05rem;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}
.bridge-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.bridge-note a { color: #fff; text-decoration: underline; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cat {
  aspect-ratio: 1 / 1.05;
  border-radius: 20px;
  display: grid;
  place-items: end start;
  padding: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)),
    linear-gradient(135deg, #243041, #121821);
  font-weight: 800;
  font-size: 1.05rem;
}
.cat:nth-child(2) { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)), linear-gradient(135deg, #3a2a18, #121821); }
.cat:nth-child(3) { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)), linear-gradient(135deg, #1a2d45, #121821); }
.cat:nth-child(4) { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)), linear-gradient(135deg, #2e1f33, #121821); }
.cat:nth-child(5) { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)), linear-gradient(135deg, #163530, #121821); }
.cat:nth-child(6) { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72)), linear-gradient(135deg, #3a1820, #121821); }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--ok));
}
.why-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(225,29,46,.2), rgba(18,24,33,.9));
  padding: 36px 28px;
  min-height: 260px;
  display: grid;
  place-items: center;
}
.why-panel blockquote { margin: 0; text-align: center; }
.why-panel p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.why-panel cite { display: block; margin-top: 16px; color: var(--muted); font-style: normal; }

.distributor-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(245,197,24,.25);
  background:
    linear-gradient(135deg, rgba(245,197,24,.08), transparent 40%),
    rgba(255,255,255,.03);
}
.distributor-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.distributor-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.distributor-meta div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.18);
}
.distributor-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.distributor-meta b { display: block; margin-top: 6px; font-size: 1.02rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  margin-top: 20px;
  background: rgba(0,0,0,.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.footer-grid h4 { margin: 0 0 12px; font-size: 0.86rem; }
.footer-grid a, .footer-grid p {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-logo { filter: brightness(1.05); margin-bottom: 12px; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .hero-collage {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
  }
  .hc-1 { grid-column: 1; grid-row: 1; }
  .hc-2 { grid-column: 2; grid-row: 1; }
  .hc-3 { grid-column: 3; grid-row: 1; }
  .hc-4 { grid-column: 1; grid-row: 2; }
  .hc-5 { grid-column: 2; grid-row: 2; }
  .hc-6 { grid-column: 3; grid-row: 2; }
  .hero-content { margin-left: 16px; max-width: calc(100% - 32px); }
  .hero-stage { min-height: 70vh; }
  .why-grid, .distributor-card, .footer-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .trust, .product-grid, .cat-grid, .distributor-meta { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 4.2rem; }
  .hero-collage { gap: 4px; padding: 4px; }
  .hc { border-radius: 8px; }
}
