:root{
  --red:#E53935;
  --red-dark:#C62828;
  --gray:#666666;
  --gray-dark:#2B2B2B;
  --gray-light:#F4F4F4;
  --ink:#333333;
  --white:#FFFFFF;
}
*{box-sizing:border-box;}
body{
  background:var(--white);
  color:var(--ink);
  font-family:'Poppins',sans-serif;
  font-weight:400;
  margin:0;
}
h1,h2,h3,.display-font{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--gray-dark);
}
.mono{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:0.8rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
}
a{text-decoration:none;}
a:focus-visible, button:focus-visible, .btn:focus-visible{
  outline:2px solid var(--red);
  outline-offset:2px;
}

/* Top bar */
.topbar{
  background:var(--gray-dark);
  color:#C9C9C9;
  font-size:0.82rem;
  padding:8px 0;
}
.topbar a{color:#DADADA;}
.topbar a:hover{color:var(--red);}

/* Nav */
.navbar-custom{
  background:var(--white);
  padding:14px 0;
  border-bottom:1px solid #ECECEC;
}
.brand-logo{
  height:56px;
  width:auto;
  display:block;
}
.nav-link-custom{
  color:var(--ink);
  font-weight:500;
  font-size:0.95rem;
  margin-left:28px;
  padding-bottom:4px;
  border-bottom:2px solid transparent;
  transition:border-color .2s ease, color .2s ease;
  display:inline-block;
}
.nav-link-custom:hover, .nav-link-custom.active{color:var(--red);border-color:var(--red);}
.dropdown-toggle::after{vertical-align:0.15em;}
.dropdown-menu{
  border-radius:4px;
  border-color:#ECECEC;
  box-shadow:0 12px 26px rgba(0,0,0,0.08);
}
.dropdown-item:hover, .dropdown-item:focus{background:var(--gray-light);color:var(--red);}

.btn-brand{
  background:var(--red);
  color:var(--white) !important;
  font-weight:600;
  padding:11px 26px;
  border-radius:4px;
  border:none;
  transition:transform .15s ease, background .15s ease;
}
.btn-brand:hover{background:var(--red-dark);color:var(--white);transform:translateY(-1px);}
.btn-outline-light-custom{
  border:1px solid #6E6E6E;
  color:#E8E8E8;
  padding:12px 28px;
  border-radius:4px;
  font-weight:500;
  margin-left:14px;
}
.btn-outline-light-custom:hover{border-color:var(--red);color:var(--red);}

/* Seam divider - signature element (echoes the logo's diagonal red/gray split) */
.seam{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
}
.seam .line{flex:1;height:1px;background:#E4E4E4;}
.seam .tick{width:6px;height:6px;background:var(--red);transform:rotate(45deg);flex-shrink:0;}
.seam.on-dark{background:var(--gray-dark);padding:0 0 2px;}
.seam.on-dark .line{background:#454545;}

/* Page hero (interior pages) */
.page-hero{
  background:var(--gray-dark);
  color:#F1F1F1;
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:38%;
  height:100%;
  background:var(--red);
  clip-path:polygon(0 100%, 100% 100%, 0 0);
  opacity:0.9;
}
.page-hero .container{position:relative;z-index:2;}
.page-hero h1{color:#FFFFFF;font-size:2.4rem;}
.page-hero .breadcrumb-mono{color:#B7B7B7;font-size:0.85rem;margin-bottom:10px;text-transform:none;letter-spacing:normal;font-weight:400;}
.page-hero .breadcrumb-mono a{color:#D6D6D6;}
.page-hero .breadcrumb-mono a:hover{color:var(--red);}

/* Home hero — diagonal wedge echoes the logo icon's red/gray split */
/* Home hero carousel */
.hero-carousel{
  background:var(--gray-dark);
  padding: 0px;
}
.hero-slide{
  position:relative;
  min-height:600px;
  background-size:cover;
  background-position:center;
  background-color:var(--gray-dark);
  display:flex;
  align-items:center;
  
}
.hero-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(43,43,43,0.92) 0%, rgba(43,43,43,0.6) 55%, rgba(229,57,53,0.35) 100%);
}
.hero-slide-content{position:relative;z-index:2;}
.hero-slide-content .eyebrow{color:#FF8A80;font-weight:600;font-size:0.85rem;margin-bottom:14px;display:block;text-transform:uppercase;letter-spacing:0.06em;}
.hero-slide-content h1{color:#FFFFFF;font-size:3rem;line-height:1.15;max-width:640px;font-weight:700;}
.hero-slide-content p.lead{color:#D6D6D6;max-width:520px;font-size:1.05rem;margin-top:18px;font-weight:300;}

.carousel-indicators{margin-bottom:28px;}
.carousel-indicators [data-bs-target]{
  background-color:var(--red);
  width:10px;
  height:10px;
  border-radius:50%;
  opacity:0.5;
  margin:0 5px;
}
.carousel-indicators .active{opacity:1;}
.carousel-control-prev, .carousel-control-next{width:60px;opacity:0.9;}
.carousel-control-prev-icon, .carousel-control-next-icon{
  background-color:rgba(229,57,53,0.85);
  border-radius:50%;
  padding:20px;
  background-size:50%;
}

/* Simple fade-up utility - reusable on any element */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}
.fade-up{
  opacity:0;
  animation:fadeUp 0.7s ease forwards;
}
.fade-up.delay-1{animation-delay:0.1s;}
.fade-up.delay-2{animation-delay:0.25s;}
.fade-up.delay-3{animation-delay:0.4s;}
.fade-up.delay-4{animation-delay:0.55s;}

@media (prefers-reduced-motion: reduce){
  .fade-up{animation:none;opacity:1;transform:none;}
}

section{padding:86px 0;}

.section-tag{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  color:var(--red);
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-bottom:10px;
  display:block;
}
.section-title{font-size:2.1rem;margin-bottom:0;font-weight:700;}

/* Product cards */
.product-card{
  background:#fff;
  border:1px solid #ECECEC;
  border-radius:6px;
  padding:0 0 34px;
  height:100%;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,0.08);}
.product-card-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  margin-bottom:24px;
}
.product-card .tag,
.product-card h3,
.product-card p,
.product-card > div{
  margin-left:28px;
  margin-right:28px;
}
.product-card .tag{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:0.75rem;
  color:var(--gray);
  border:1px solid #E4E4E4;
  border-radius:4px;
  display:inline-block;
  padding:3px 10px;
  margin-bottom:22px;
  letter-spacing:0.04em;
}
.product-card h3{font-size:1.25rem;margin-bottom:12px;font-weight:600;}
.product-card p{color:var(--gray);font-size:0.94rem;margin-bottom:20px;}
.product-card .view-link{color:var(--gray-dark);font-weight:600;font-size:0.9rem;border-bottom:1px solid var(--red);padding-bottom:2px;}
.product-card .view-link:hover{color:var(--red);}

/* About / why choose */
.about-section{background:var(--gray-light);}
.about-img, .content-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:6px;
}
.check-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:14px;
  font-size:0.97rem;
  color:var(--ink);
}
.check-list li::before{content:"";width:8px;height:8px;margin-top:6px;background:var(--red);border-radius:50%;flex-shrink:0;}

/* Stat row */
.stat-block{text-align:center;}
.stat-block .num{font-family:'Poppins',sans-serif;font-weight:700;font-size:2.4rem;color:var(--red);}
.stat-block .label{font-size:0.85rem;color:var(--gray);}

/* Testimonials */
.testimonial-card{background:#fff;border-left:3px solid var(--red);border-radius:0 6px 6px 0;padding:30px 28px;height:100%;box-shadow:0 4px 14px rgba(0,0,0,0.04);}
.testimonial-card p{font-size:0.96rem;color:var(--ink);margin-bottom:20px;}
.testimonial-card .name{font-weight:600;color:var(--gray-dark);font-size:0.92rem;}
.testimonial-card .role{font-size:0.82rem;color:var(--gray);}

/* CTA band */
.cta-band{background:var(--gray-dark);color:#F1F1F1;text-align:center;}
.cta-band h2{color:#FFFFFF;}
.cta-band p{color:#CFCFCF;max-width:480px;margin:14px auto 30px;font-weight:300;}

/* Gallery */
.gallery-filters{margin-bottom:34px;}
.filter-btn{
  background:transparent;
  border:1px solid #DDDDDD;
  color:var(--ink);
  font-size:0.85rem;
  font-weight:500;
  padding:8px 18px;
  margin:0 8px 10px 0;
  border-radius:20px;
  transition:all .15s ease;
}
.filter-btn:hover, .filter-btn.active{background:var(--red);color:#fff;border-color:var(--red);}
.gallery-item{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  background:var(--gray-light);
  border-radius:6px;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease;}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-item .cap{
  position:absolute;left:0;right:0;bottom:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color:#fff;
  font-size:0.82rem;
  padding:16px 14px 10px;
}

/* Contact page */
.contact-info-card{
  background:#fff;
  border:1px solid #ECECEC;
  border-radius:6px;
  padding:28px;
  height:100%;
}
.contact-info-card .icon-label{
  font-weight:600;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--red);
  display:block;
  margin-bottom:6px;
}
.form-control-custom{
  border-radius:4px;
  border:1px solid #DDDDDD;
  padding:12px 14px;
  font-size:0.95rem;
  font-family:'Poppins',sans-serif;
}
.form-control-custom:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(229,57,53,0.15);
}
.map-frame{width:100%;height:340px;border:1px solid #ECECEC;border-radius:6px;}

/* Footer */
footer{background:var(--gray-dark);color:#B7B7B7;padding:56px 0 26px;font-size:0.9rem;}
footer h5{font-family:'Poppins',sans-serif;font-weight:600;color:#FFFFFF;font-size:1rem;margin-bottom:18px;}
footer a{color:#C4C4C4;}
footer a:hover{color:var(--red);}
footer .bottom-line{border-top:1px solid #3D3D3D;margin-top:36px;padding-top:20px;font-size:0.8rem;color:#8A8A8A;}

/* Mobile responsive */
@media (max-width:991.98px){
  .navbar-collapse{
    background:var(--white);
    margin-top:16px;
    padding:10px 0 4px;
    border-top:1px solid #ECECEC;
  }
  .nav-link-custom{margin-left:0;padding:10px 0;}
  .btn-brand{display:inline-block;width:fit-content;}
}
@media (max-width:768px){
  .brand-logo{height:44px;}
  .hero-slide{min-height:460px;}
  .hero-slide-content h1{font-size:2.1rem;}
  .page-hero::before{width:100%;height:40%;clip-path:polygon(0 100%, 100% 100%, 100% 40%);opacity:0.9;}
  section{padding:56px 0;}
  .stat-block{margin-bottom:24px;}
}
