:root{
  --bg:#080808;
  --bg2:#0e0d0c;
  --card:#141210;
  --gold:#e7b62c;
  --gold2:#ffe08a;
  --red:#e01f26;
  --red2:#ff414a;
  --text:#f5f0e6;
  --muted:#8f827a;
  --line:rgba(224,31,38,.30);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,sans-serif;
  line-height:1.6;overflow-x:hidden;
}
h1,h2,h3{font-family:'Bebas Neue',sans-serif;letter-spacing:.02em;line-height:.92;font-weight:400}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
b,strong{color:var(--gold2)}

/* subtle grain texture everywhere */
body::before{
  content:"";position:fixed;inset:0;z-index:1;pointer-events:none;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- NAV ---------- */
.nav{position:sticky;top:0;z-index:50;background:rgba(8,8,8,.86);
  backdrop-filter:blur(12px);border-bottom:2px solid var(--red)}
.nav__inner{max-width:1200px;margin:0 auto;padding:.45rem 1rem;display:flex;align-items:center;gap:1rem}
.brand{display:flex;align-items:center;gap:.7rem}
.brand__logo{width:46px;height:46px;border-radius:50%;border:2px solid var(--red);object-fit:cover;
  box-shadow:0 0 14px rgba(224,31,38,.5)}
.brand__name{font-family:'Bungee';font-size:.78rem;line-height:1;color:var(--text);text-shadow:0 0 10px rgba(224,31,38,.5)}
.nav__links{margin-left:auto;display:flex;gap:1.7rem;font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.06em}
.nav__links a{color:var(--muted);transition:color .2s;position:relative}
.nav__links a:hover{color:var(--red2)}
.nav__links a::after{content:"";position:absolute;left:0;bottom:-5px;width:0;height:2px;background:var(--red);transition:width .25s}
.nav__links a:hover::after{width:100%}
.nav__cta{background:linear-gradient(135deg,var(--red),var(--red2));color:#fff;border:2px solid #000;
  font-family:'Bungee';font-size:.66rem;text-transform:uppercase;padding:.5rem 1rem;border-radius:8px;
  box-shadow:3px 3px 0 #000;transition:.15s;white-space:nowrap}
.nav__cta:hover{transform:translate(-1px,-1px);box-shadow:4px 4px 0 #000}

/* ---------- HERO ---------- */
.hero{position:relative;min-height:78vh;display:grid;place-items:center;text-align:center;
  padding:2.4rem 1rem 3.4rem;overflow:hidden;
  background:radial-gradient(circle at 50% 18%,#1a0f0c,#080808 60%)}
.hero__grid{position:absolute;inset:0;opacity:.5;
  background-image:linear-gradient(rgba(224,31,38,.09) 1px,transparent 1px),
    linear-gradient(90deg,rgba(224,31,38,.09) 1px,transparent 1px);
  background-size:46px 46px;mask-image:radial-gradient(circle at 50% 35%,#000,transparent 72%)}
.hero__glow{position:absolute;width:80vw;max-width:680px;aspect-ratio:1;border-radius:50%;
  top:6%;background:radial-gradient(circle,rgba(224,31,38,.28),transparent 65%);filter:blur(20px);
  animation:pulse 5s ease-in-out infinite}
@keyframes pulse{50%{transform:scale(1.12);opacity:.8}}
.hero__content{position:relative;z-index:2;max-width:760px}
.hero__logo{width:128px;height:128px;border-radius:50%;margin:0 auto 1rem;border:3px solid var(--red);
  box-shadow:0 0 60px rgba(224,31,38,.55);object-fit:cover;animation:float 4s ease-in-out infinite}
@keyframes float{50%{transform:translateY(-10px)}}
.hero__kick{font-family:'Bungee';font-size:.8rem;color:var(--red2);letter-spacing:.2em;margin-bottom:.6rem}
.hero__title{font-size:clamp(3.4rem,15vw,8.5rem);text-transform:uppercase}
.hero__title .line{display:block}
.line--stroke{color:transparent;-webkit-text-stroke:2px var(--red);text-stroke:2px var(--red)}
.line--fill{background:linear-gradient(180deg,var(--red2),var(--red) 50%,#7a0d11 130%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  filter:drop-shadow(0 4px 24px rgba(224,31,38,.5))}
.hero__sub{margin:.9rem auto 1.5rem;color:var(--muted);font-size:1.04rem;max-width:480px}
.hero__cta{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}
.hero__scroll{position:absolute;bottom:1.5rem;left:0;right:0;text-align:center;z-index:2;
  font-family:'Bungee';font-size:.62rem;letter-spacing:.25em;color:var(--muted);animation:bob 1.8s infinite}
@keyframes bob{50%{transform:translateY(6px);opacity:.5}}

/* ---------- BUTTONS ---------- */
.btn{display:inline-block;padding:.72rem 1.5rem;font-family:'Bungee';font-size:.78rem;letter-spacing:.04em;
  cursor:pointer;border:none;transition:transform .15s,box-shadow .2s,background .2s;text-transform:uppercase}
.btn--gold{background:linear-gradient(135deg,var(--red),var(--red2));color:#fff;
  box-shadow:5px 5px 0 #000;border:2px solid #000}
.btn--gold:hover{transform:translate(-2px,-2px);box-shadow:7px 7px 0 #000}
.btn--gold:active{transform:translate(3px,3px);box-shadow:2px 2px 0 #000}
.btn--ghost{background:transparent;color:var(--text);border:2px solid var(--red);box-shadow:5px 5px 0 rgba(224,31,38,.3)}
.btn--ghost:hover{background:var(--red);color:#fff;transform:translate(-2px,-2px)}
.btn--lg{padding:.95rem 2rem;font-size:.9rem}
.btn--full{width:100%}

/* ---------- STATS ---------- */
.stats{position:relative;z-index:2;max-width:1000px;margin:-2rem auto 0;padding:0 1rem;
  display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem}
.stats div{background:var(--card);border:2px solid var(--line);border-radius:12px;padding:.7rem .5rem;text-align:center;
  transition:.2s}
.stats div:hover{border-color:var(--red);transform:translateY(-4px)}
.stats b{display:block;font-family:'Bebas Neue';font-size:2.2rem;color:var(--red2);line-height:1}
.stats span{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted)}

/* ---------- SECTION HEAD ---------- */
.section-head{text-align:center;margin-bottom:1.6rem;position:relative;z-index:2}
.section-head__kick{font-family:'Bungee';font-size:.72rem;color:var(--red2);letter-spacing:.18em}
.section-head h2{font-size:clamp(2.8rem,8vw,4.6rem);color:var(--text);text-transform:uppercase;margin-top:.4rem;
  text-shadow:0 0 30px rgba(224,31,38,.45)}
.section-head p{color:var(--muted);margin-top:.6rem;max-width:480px;margin-inline:auto}

/* ---------- CATALOG ---------- */
.catalog{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:2.8rem 1rem}
.filters{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:1.6rem}
.filter{background:#000;border:2px solid var(--line);color:var(--muted);padding:.55rem 1.3rem;
  font-family:'Bungee';font-size:.7rem;letter-spacing:.04em;border-radius:50px;cursor:pointer;transition:.2s;text-transform:uppercase}
.filter:hover{color:var(--red2);border-color:var(--red)}
.filter.active{background:var(--red);color:#fff;border-color:var(--red);box-shadow:3px 3px 0 #000}

.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}
.product{position:relative;background:var(--card);border:2px solid var(--line);border-radius:16px;overflow:hidden;
  display:flex;flex-direction:column;transition:transform .2s,border-color .2s,box-shadow .2s}
.product:hover{transform:translateY(-7px);border-color:var(--red);box-shadow:0 14px 40px rgba(0,0,0,.6),0 0 0 1px var(--red)}
.product__img{position:relative;aspect-ratio:4/5;overflow:hidden;background:#0a0a0a}
.product__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.product:hover .product__img img{transform:scale(1.08) rotate(-1deg)}
.product__img::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(8,8,8,.6),transparent 45%)}
.product__tag{position:absolute;top:.8rem;left:-.3rem;z-index:2;background:var(--red);color:#fff;
  font-family:'Bungee';font-size:.62rem;letter-spacing:.05em;padding:.34rem .8rem;text-transform:uppercase;
  transform:rotate(-4deg);box-shadow:3px 3px 0 rgba(0,0,0,.4)}
.product__body{padding:.7rem .8rem .8rem;display:flex;flex-direction:column;flex:1}
.product__brand{font-family:'Bungee';font-size:.6rem;letter-spacing:.12em;color:var(--red2);text-transform:uppercase}
.product__name{font-family:'Bebas Neue';font-size:1.4rem;margin:.15rem 0 .3rem;line-height:.95;color:var(--text)}
.product__desc{font-size:.78rem;color:var(--muted);flex:1;margin-bottom:.7rem}
.consult{width:100%;background:#25d366;color:#062a13;border:2px solid #000;
  font-family:'Bungee';font-size:.64rem;padding:.6rem .5rem;cursor:pointer;transition:.15s;
  box-shadow:3px 3px 0 var(--red);text-transform:uppercase;border-radius:8px}
.consult:hover{transform:translate(-1px,-1px);box-shadow:4px 4px 0 var(--red);background:#2be673}
.consult:active{transform:translate(2px,2px);box-shadow:1px 1px 0 var(--red)}

/* ---------- ABOUT ---------- */
.about{position:relative;z-index:2;background:
  linear-gradient(rgba(8,8,8,.92),rgba(8,8,8,.92)),
  repeating-linear-gradient(135deg,#120f0c 0 40px,#0c0a08 40px 80px);
  border-block:2px solid var(--red);padding:3rem 1rem}
.about__inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:.8fr 1.4fr;gap:2rem;align-items:center}
.about__badge img{width:220px;height:220px;border-radius:50%;margin:0 auto;border:3px solid var(--red);
  box-shadow:0 0 50px rgba(224,31,38,.4);object-fit:cover}
.about__text h2{font-size:clamp(2.2rem,6vw,3.6rem);color:var(--text);margin:.4rem 0 1rem;text-transform:uppercase}
.about__text p{color:var(--muted);margin-bottom:1rem}
.about__perks{list-style:none;margin-top:1.4rem;display:flex;flex-wrap:wrap;gap:.6rem}
.about__perks li{font-family:'Bungee';font-size:.66rem;color:var(--text);border:2px solid var(--red);
  padding:.5rem .9rem;border-radius:50px;text-transform:uppercase}

/* ---------- CONTACT ---------- */
.contact{position:relative;z-index:2;text-align:center;padding:3.5rem 1rem;max-width:620px;margin:0 auto;overflow:hidden}
.contact__glow{position:absolute;inset:0;z-index:-1;
  background:radial-gradient(circle at 50% 40%,rgba(224,31,38,.18),transparent 60%)}
.contact h2{font-size:clamp(2.6rem,8vw,4.4rem);color:var(--text);margin:.4rem 0 .6rem;text-transform:uppercase;
  text-shadow:0 0 30px rgba(224,31,38,.5)}
.contact p{color:var(--muted);margin-bottom:1.4rem}
.contact__socials{margin-top:1.4rem;display:flex;gap:1.6rem;justify-content:center}
.contact__socials a{font-family:'Bungee';font-size:.72rem;color:var(--muted);letter-spacing:.06em;transition:.2s}
.contact__socials a:hover{color:var(--red2)}

/* ---------- FOOTER ---------- */
.footer{position:relative;z-index:2;text-align:center;padding:2.2rem 1rem;border-top:2px solid var(--red);background:#050505}
.footer__logo{width:70px;height:70px;border-radius:50%;margin:0 auto 1rem;border:2px solid var(--red);object-fit:cover}
.footer__name{font-family:'Bungee';font-size:1rem;color:var(--text);letter-spacing:.06em}
.footer__tag{color:var(--red2);font-style:italic;margin:.3rem 0 1.2rem;font-size:.9rem}
.footer__copy{font-size:.72rem;color:var(--muted);opacity:.7}

/* ---------- WA FLOAT ---------- */
.wa-float{position:fixed;bottom:1.4rem;right:1.4rem;z-index:55;width:60px;height:60px;border-radius:50%;
  background:#25d366;color:#fff;display:grid;place-items:center;
  box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,.5);transition:transform .2s;animation:ring 2.4s infinite}
@keyframes ring{0%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,.5)}
  70%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 16px rgba(37,211,102,0)}
  100%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,0)}}
.wa-float:hover{transform:scale(1.1)}

/* ---------- RESPONSIVE ---------- */
@media(max-width:760px){
  .nav__links{display:none}
  .stats{grid-template-columns:repeat(2,1fr);margin-top:-1.5rem}
  .about__inner{grid-template-columns:1fr;text-align:center}
  .about__perks{justify-content:center}
  .about__badge img{width:190px;height:190px}
  .hero__cta{flex-direction:column;align-items:center}
  .hero__cta .btn{width:100%;max-width:320px}
}
