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

html { scroll-behavior: smooth; }

body{
  margin:0;
  font-family:'Montserrat',sans-serif;
  background:#000;
  color:#fff;
}

/* top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(0,0,0,0.96);
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.logo{
  font-size:16px;
  font-weight:900;
  letter-spacing:1px;
  color:#ff0000;
  white-space:nowrap;
}
.logo span{ color:#fff; font-weight:700; }

/* hamburger */
.hamburger{
  width:48px;
  height:44px;
  padding:10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  user-select:none;
  appearance:none;
  -webkit-appearance:none;
  outline:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.hamburger span{
  display:block;
  width:100%;
  height:3px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

/* nav panel */
.mnav{
  display:none;
  position:sticky;
  top:68px;
  z-index:9998;
  background:rgba(0,0,0,0.96);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.mnav.open{ display:block; }

.mnav a{
  display:block;
  padding:16px 14px;
  color:#fff;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,0.08);
}
.mnav a:hover{ color:#ff0000; }

/* hero mobile */
.hero-m{
  padding:26px 16px 10px;
  background: radial-gradient(rgba(255,0,0,0.22), rgba(0,0,0,1));
}
.hero-m h1{
  margin:0;
  font-size:34px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:1px;
}
.hero-m p{
  margin:10px 0 0;
  color:#ff3c3c;
  font-size:14px;
}

.cta{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* buttons */
.btn{
  display:block;
  padding:14px 16px;
  border-radius:6px;
  font-weight:800;
  text-decoration:none;
  text-align:center;
  border:none;
}
.primary{ background:#ff0000; color:#fff; }
.secondary{ background:transparent; border:2px solid #ff0000; color:#fff; }

/* sections */
.products{
  padding:24px 16px 34px;
  background: url("/images/background.png") center top no-repeat;
  background-size:cover;
}
.products h2{
  margin:0 0 14px;
  font-size:22px;
  color:#ff0000;
}

.product-card{
  background:rgba(5,5,10,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:16px;
}
.product-card img{
  width:100%;
  max-width:340px;
  display:block;
  margin:0 auto 14px;
}
.product-info h3{
  margin:0 0 10px;
  font-size:18px;
}
.product-info p{ margin:0 0 12px; color:#ddd; font-size:14px; }
.product-info ul{ margin:0 0 14px; padding-left:18px; color:#d5d5d5; font-size:13px; }
.product-info li{ margin-bottom:6px; }

.section{
  padding:26px 16px 34px;
  background: radial-gradient(rgba(255,0,0,0.18), rgba(0,0,0,1));
}
.container{ max-width:820px; margin:0 auto; }

.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.card{
  background:rgba(5,5,10,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:14px;
}
.card h3{ margin:0 0 8px; font-size:14px; letter-spacing:.08em; text-transform:uppercase; }
.card p{ margin:0; color:#d5d5d5; font-size:13px; }

.footer{
  text-align:center;
  padding:22px 14px;
  color:#888;
  background:#000;
  border-top:1px solid rgba(255,255,255,0.06);
}
/* MOBILE CONTACT */
.contact-m {
  background: radial-gradient(circle at top, rgba(255,0,0,0.18), #050509);
}

.contact-m h2 {
  margin-bottom: 0.4rem;
}

.contact-lead {
  font-size: 0.9rem;
  color: #c2c2c2;
  margin-bottom: 1rem;
}

.contact-box {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,5,10,0.95);
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a9a9a9;
  margin-bottom: 0.35rem;
}

.contact-email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: #ff4b4b;
  text-decoration: none;
  word-break: break-all;
}

.contact-email:active {
  opacity: 0.85;
}

.contact-note {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: #bdbdbd;
}


/* ===== Peptides hero video ===== */
.hero-video{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  min-height:360px;
  background:#000;
}
.hero-video__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:contrast(1.05) saturate(1.05);
}
.hero-video__overlay{
  position:relative;
  z-index:2;
  padding:26px 16px 22px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.92)),
    radial-gradient(circle at top, rgba(255,0,0,0.20), rgba(0,0,0,0.35));
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.hero-video__overlay h2{
  margin:0;
  font-size:28px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:1px;
}
.hero-video__overlay p{
  margin:10px 0 0;
  color:#ff3c3c;
  font-size:14px;
}

/* ===== Peptides section ===== */
.peptides h2{
  margin:0 0 10px;
  font-size:22px;
  color:#ff0000;
}
.peptides-lead{
  margin:0 0 16px;
  color:#d5d5d5;
  font-size:13px;
  line-height:1.5;
}
.peptides-note{
  display:block;
  margin-top:6px;
  color:#a9a9a9;
  font-size:12px;
}

.peptide-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}
.peptide-card{
  background:rgba(5,5,10,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:14px;
}
.peptide-card h3{
  margin:0 0 8px;
  font-size:16px;
}
.peptide-card .dose{
  display:inline-block;
  margin-left:6px;
  font-size:12px;
  font-weight:800;
  color:#ff4b4b;
}
.peptide-card p{
  margin:0 0 10px;
  color:#ddd;
  font-size:13px;
}
.peptide-card ul{
  margin:0;
  padding-left:18px;
  color:#d5d5d5;
  font-size:13px;
}
.peptide-card li{ margin-bottom:6px; }

.peptides-disclaimer{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.45);
  color:#bdbdbd;
  font-size:12px;
  line-height:1.45;
}
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.85) 70%
    );
    padding: 20px;
}

.hero-overlay h1,
.hero-overlay h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-overlay p {
    color: #cfcfcf;
    max-width: 700px;
    margin-top: 15px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #b30000, #ff1a1a);
    color: #fff;
    padding: 14px 34px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}




/* optional: 2 columns on wider screens */
@media (min-width: 760px){
  .peptide-grid{ grid-template-columns:1fr 1fr; }
  .hero-video{ min-height:420px; }
  .hero-video__overlay{ min-height:420px; padding:34px 22px 26px; }
  .hero-video__overlay h2{ font-size:36px; }
}

@media (max-width: 768px) {
    .hero-video {
        height: 85vh;
    }

    .hero-overlay h1,
    .hero-overlay h2 {
        font-size: 2rem;
    }
}

