:root{
  --red:#c8151b;
  --red-dark:#8f0f13;
  --black:#0c0c0c;
  --off-black:#151515;
  --white:#f5f5f5;
  --grey:#9a9a9a;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Arial Black', Arial, sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.5;
}
h1,h2,h3{
  font-family:Arial, sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.container{max-width:1100px;margin:0 auto;padding:0 24px;}

/* NAV */
header.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(12,12,12,0.92);
  border-bottom:2px solid var(--red);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  max-width:1100px;margin:0 auto;padding:10px 24px;
  gap:20px;
}
.nav-inner img{height:44px;width:auto;}
.nav-links{
  display:flex;align-items:center;gap:26px;
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
  flex-wrap:wrap;
}
.nav-links a{color:var(--white);transition:color .2s;}
.nav-links a:hover,.nav-links a.active{color:var(--red);}
.nav-right{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.nav-cta{
  background:var(--red);color:var(--white);
  padding:10px 20px;font-weight:900;font-size:14px;
  text-transform:uppercase;letter-spacing:1px;
  border-radius:2px;
  transition:background .2s;
}
.nav-cta:hover{background:var(--red-dark);}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.95) 100%),
    url('images/Gallery/HROR8079.JPG');
  background-size:cover;
  background-position:center;
  padding:120px 20px 60px;
}
.hero-content{max-width:780px;}
.hero-logo{
  width:min(420px, 78vw);
  margin:0 auto 24px;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.hero h1{
  font-size:clamp(28px, 5vw, 48px);
  color:var(--white);
  line-height:1.15;
  margin-bottom:16px;
  text-shadow:0 4px 12px rgba(0,0,0,0.8);
}
.hero h1 span{color:var(--red);}
.hero p.sub{
  font-family:Arial, sans-serif;
  font-size:clamp(16px,2.4vw,20px);
  color:var(--white);
  font-weight:400;
  margin-bottom:32px;
  text-shadow:0 2px 8px rgba(0,0,0,0.8);
}
.hero-ctas{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:16px 34px;
  font-weight:900;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1px;
  border-radius:2px;
  border:2px solid transparent;
  transition:transform .15s, background .2s;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--red);color:var(--white);}
.btn-primary:hover{background:var(--red-dark);}
.btn-outline{background:transparent;color:var(--white);border-color:var(--white);}
.btn-outline:hover{background:var(--white);color:var(--black);}
.hero-price-tag{
  margin-top:28px;
  display:inline-block;
  background:var(--red);
  color:var(--white);
  font-family:Arial, sans-serif;
  font-weight:700;
  padding:8px 18px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:.5px;
}

/* PAGE HEADER (for sub-pages) */
.page-header{
  position:relative;
  padding:150px 20px 60px;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%),
    url('images/Gallery/REUP9162.JPG');
  background-size:cover;
  background-position:center;
}
.page-header.equipment-header{
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%),
    url('images/weightsandequipmentbackground.jpeg');
  background-size:cover;
  background-position:center;
}
.page-header.gallery-header{
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%),
    url('images/Gallery/BOMP4146.JPG');
  background-size:cover;
  background-position:center 20%;
}
.page-header h1{
  font-size:clamp(28px,5vw,46px);
  color:var(--white);
  text-shadow:0 4px 12px rgba(0,0,0,0.8);
}
.page-header h1 span{color:var(--red);}
.page-header p{
  font-family:Arial, sans-serif;
  color:#ddd;
  max-width:640px;
  margin:14px auto 0;
  font-size:16px;
  text-shadow:0 2px 8px rgba(0,0,0,0.8);
}

/* SECTION GENERIC */
section{padding:70px 0;}
.section-title{
  text-align:center;
  font-size:clamp(26px,4vw,38px);
  margin-bottom:10px;
}
.section-title span{color:var(--red);}
.section-sub{
  text-align:center;
  color:var(--grey);
  font-family:Arial, sans-serif;
  max-width:600px;
  margin:0 auto 44px;
  font-size:16px;
}

/* ABOUT / STRIP */
.strip{
  background:var(--red);
  color:var(--white);
  text-align:center;
  padding:22px 20px;
  font-weight:900;
  letter-spacing:1px;
  font-size:clamp(14px,2vw,18px);
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}
.feature-card{
  background:var(--off-black);
  border:1px solid #2a2a2a;
  border-top:4px solid var(--red);
  padding:30px 24px;
  text-align:center;
  border-radius:4px;
}
.feature-card .icon{
  font-size:36px;
  margin-bottom:14px;
}
.feature-card h3{
  font-size:17px;
  margin-bottom:10px;
  color:var(--white);
}
.feature-card p{
  font-family:Arial, sans-serif;
  color:var(--grey);
  font-size:14.5px;
}

/* PRICING */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}
.price-card{
  background:var(--off-black);
  border:1px solid #2a2a2a;
  border-radius:6px;
  padding:36px 28px;
  text-align:center;
  position:relative;
}
.price-card.featured{
  border:2px solid var(--red);
  transform:scale(1.03);
}
.badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--red);color:var(--white);
  font-size:12px;font-weight:900;
  padding:5px 14px;border-radius:999px;
  letter-spacing:.5px;
  font-family:Arial,sans-serif;
}
.price-card h3{font-size:16px;color:var(--grey);margin-bottom:12px;letter-spacing:1px;}
.price-card .amount{
  font-size:44px;color:var(--red);font-weight:900;font-family:Arial,sans-serif;
  margin-bottom:4px;
}
.price-card .amount sup{font-size:18px;top:-1.2em;}
.price-card .amount small{font-size:15px;color:var(--grey);font-weight:400;}
.price-card ul{
  list-style:none;
  margin:20px 0 26px;
  font-family:Arial,sans-serif;
  color:#ccc;
  font-size:14.5px;
  text-align:left;
}
.price-card ul li{padding:6px 0;border-bottom:1px solid #262626;}
.price-card ul li:last-child{border-bottom:none;}
.price-list{list-style:none;font-family:Arial,sans-serif;text-align:left;margin-top:4px;}
.price-list li{display:flex;justify-content:space-between;align-items:baseline;gap:12px;padding:11px 0;border-bottom:1px solid #262626;color:#ccc;font-size:14.5px;}
.price-list li:last-child{border-bottom:none;}
.price-list .price-amt{color:var(--red);font-weight:900;font-size:18px;font-family:Arial,sans-serif;white-space:nowrap;}

.pricing-note-wrap{text-align:center;margin-bottom:10px;}
.pricing-note{
  display:inline-block;
  border:1px solid var(--red);
  color:var(--red);
  font-family:Arial,sans-serif;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:999px;
}

/* TESTIMONIALS */
.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}
.testimonial{
  background:var(--off-black);
  border-left:4px solid var(--red);
  padding:26px 24px;
  font-family:Arial,sans-serif;
  border-radius:2px;
}
.testimonial p.quote{color:#ddd;font-size:14.5px;margin-bottom:14px;font-style:italic;}
.testimonial .stars{color:var(--red);letter-spacing:2px;margin-bottom:10px;}
.testimonial .who{font-weight:700;color:var(--white);font-size:13.5px;}
.testimonial .who .source{font-weight:400;color:var(--grey);}

/* LOCATION / CONTACT */
.location-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:stretch;
}
@media (max-width:820px){ .location-wrap{grid-template-columns:1fr;} }
.location-info{
  background:var(--off-black);
  border:1px solid #2a2a2a;
  border-radius:6px;
  padding:36px;
}
.location-info h3{font-size:20px;margin-bottom:18px;color:var(--red);}
.location-info p{font-family:Arial,sans-serif;color:#ccc;margin-bottom:14px;font-size:15px;}
.location-info .label{color:var(--grey);font-size:12px;text-transform:uppercase;letter-spacing:1px;display:block;margin-bottom:4px;}
.hours-table{width:100%;font-family:Arial,sans-serif;font-size:14.5px;margin-top:10px;}
.hours-table td{padding:6px 0;border-bottom:1px solid #262626;color:#ccc;}
.hours-table td:last-child{text-align:right;color:var(--white);font-weight:700;}
.map-frame{
  border-radius:6px;overflow:hidden;border:1px solid #2a2a2a;min-height:320px;
}
.map-frame iframe{width:100%;height:100%;min-height:320px;border:0;filter:grayscale(0.3) contrast(1.1);}

/* EQUIPMENT */
.equipment-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}
.equipment-card{
  background:var(--off-black);
  border:1px solid #2a2a2a;
  border-top:4px solid var(--red);
  border-radius:4px;
  overflow:hidden;
}
.equipment-card .card-img-wrap{
  width:100%;height:170px;overflow:hidden;background:#000;
}
.equipment-card .card-img-wrap img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.equipment-card .card-body{padding:22px 26px 26px;}
.equipment-card h3{
  font-size:17px;
  color:var(--white);
  margin-bottom:16px;
}
.equipment-card .spec-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  font-family:Arial,sans-serif;
  padding:8px 0;
  border-bottom:1px solid #262626;
}
.equipment-card .spec-row:last-child{border-bottom:none;}
.equipment-card .spec-label{color:var(--grey);font-size:13px;text-transform:uppercase;letter-spacing:.5px;}
.equipment-card .spec-value{color:var(--red);font-weight:900;font-size:18px;}

/* PRODUCTS */
.product-category{margin-bottom:60px;}
.product-category:last-child{margin-bottom:0;}
.product-category-title{
  font-size:clamp(20px,3vw,26px);
  color:var(--white);
  margin-bottom:6px;
  padding-bottom:12px;
  border-bottom:2px solid var(--red);
}
.product-category-sub{
  font-family:Arial,sans-serif;
  color:var(--grey);
  font-size:14px;
  margin:10px 0 26px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}
.product-card{
  background:var(--off-black);
  border:1px solid #2a2a2a;
  border-radius:6px;
  overflow:hidden;
}
.product-card .card-img-wrap{
  width:100%;height:170px;background:#f2f0ec;
  display:flex;align-items:center;justify-content:center;
  padding:16px;
}
.product-card .card-img-wrap img{
  max-width:100%;max-height:100%;object-fit:contain;display:block;
}
.product-card .card-body{padding:22px 24px 24px;}
.product-card h4{
  font-family:Arial,sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size:16px;
  color:var(--white);
  margin-bottom:10px;
}
.product-card .tags{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-bottom:12px;
}
.product-card .tag{
  background:rgba(200,21,27,0.15);
  color:var(--red);
  font-family:Arial,sans-serif;
  font-weight:700;
  font-size:11.5px;
  padding:4px 10px;
  border-radius:999px;
  letter-spacing:.3px;
  text-transform:uppercase;
}
.product-card p{
  font-family:Arial,sans-serif;
  color:#ccc;
  font-size:14px;
}
.product-note{
  font-family:Arial,sans-serif;
  color:var(--grey);
  font-size:13px;
  font-style:italic;
  margin-top:12px;
}

/* FINAL CTA */
.final-cta{
  text-align:center;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.75), rgba(10,10,10,0.92)),
    url('images/Gallery/BZVY7538.JPG');
  background-size:cover;
  background-position:center;
  padding:90px 20px;
}
.final-cta h2{font-size:clamp(26px,4.5vw,40px);margin-bottom:14px;}
.final-cta p{font-family:Arial,sans-serif;color:#ddd;margin-bottom:30px;font-size:16px;}
.final-cta .phone{color:var(--red);}

footer{
  background:var(--off-black);
  border-top:2px solid var(--red);
  padding:36px 20px;
  text-align:center;
  font-family:Arial,sans-serif;
  color:var(--grey);
  font-size:13px;
}
footer img{height:36px;margin:0 auto 14px;}
footer .socials{margin:14px 0;}
footer .socials a{margin:0 10px;color:var(--white);font-weight:700;font-size:13px;}

/* IMAGE ZOOM */
.card-img-wrap,.gallery-item{position:relative;cursor:zoom-in;}
.card-img-wrap::after,.gallery-item::after{
  content:"⤢";
  position:absolute;top:10px;right:10px;
  width:30px;height:30px;border-radius:50%;
  background:rgba(0,0,0,0.6);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;line-height:1;
  opacity:0;transform:scale(0.8);
  transition:opacity .15s,transform .15s;
  pointer-events:none;
}
.card-img-wrap:hover::after,.gallery-item:hover::after{opacity:1;transform:scale(1);}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  grid-auto-rows:220px;
  gap:16px;
}
.gallery-item{
  overflow:hidden;
  border-radius:4px;
  border:1px solid #2a2a2a;
  background:#000;
}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .35s ease;
}
.gallery-item:hover img{transform:scale(1.06);}

.lightbox{
  display:none;
  position:fixed;inset:0;z-index:1000;
  background:rgba(6,6,6,0.94);
  align-items:center;justify-content:center;
  flex-direction:column;
  padding:60px 24px;
}
.lightbox.active{display:flex;}
.lightbox img{
  max-width:min(880px,90vw);
  max-height:72vh;
  object-fit:contain;
  border-radius:6px;
  box-shadow:0 20px 60px rgba(0,0,0,0.7);
}
.lightbox-caption{
  margin-top:20px;
  color:var(--white);
  font-family:Arial,sans-serif;
  font-weight:700;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1px;
  text-align:center;
}
.lightbox-close{
  position:absolute;top:20px;right:20px;
  width:44px;height:44px;border-radius:50%;
  background:transparent;border:2px solid var(--white);
  color:var(--white);font-size:24px;line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,color .2s;
}
.lightbox-close:hover{background:var(--white);color:var(--black);}
