:root{
  --charcoal:#17140f;
  --charcoal-2:#221c14;
  --bone:#f2ecdd;
  --bone-dim:#e7dfca;
  --gold:#c4903f;
  --gold-deep:#9a6c29;
  --maroon:#5e1b1b;
  --maroon-deep:#421212;
  --steel:#78705f;
  --spark:#f6c15c;
  --line: rgba(242,236,221,0.14);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
section[id]{scroll-margin-top:90px;}
#products{scroll-margin-top:10px;}
body{
  background:var(--bone);
  color:var(--charcoal);
  font-family:'Archivo',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  font-weight:700;
  line-height:1.05;
}
.mono{
  font-family:'Space Mono',monospace;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:1180px;margin:0 auto;padding:0 32px;}

/* Rivet corner decoration */
.riveted{position:relative;}
.riveted::before,.riveted::after{
  content:"";
  position:absolute;
  width:9px;height:9px;
  border-radius:50%;
  background:var(--gold);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5), 0 0 0 2px rgba(0,0,0,0.15);
  top:12px;
}
.riveted::before{left:12px;}
.riveted::after{right:12px;}

/* ---------- NAV ---------- */
header.nav{
  position:fixed;top:0;left:0;right:0;
  z-index:200; 
  background:rgba(23,20,15,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(196,144,63,0.25);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 32px;
  max-width:1180px;margin:0 auto;
  min-height:64px;
}
.brand{
  font-family:'Oswald',sans-serif;
  color:var(--bone);
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:0.14em;
  display:flex;align-items:center;gap:10px;
}
.brand .mark{
  width:26px;height:26px;
  display:inline-block;
}
.brand .brand-logo{
   width:42px;
  height:42px;

}
.navlinks{display:flex;gap:34px;}
.navlinks a{
  color:var(--bone-dim);
  font-family:'Space Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  transition:color .2s;
  position:relative;
}
.navlinks a:hover{color:var(--gold);}
.navlinks a::after{
  content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;
  background:var(--gold);transition:width .25s;
}
.navlinks a:hover::after{width:100%;}

/* Hamburger toggle — hidden on desktop, shown only on mobile */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:38px;height:38px;
  background:transparent;
  border:1px solid rgba(196,144,63,0.4);
  cursor:pointer;
  padding:0;
  flex-shrink:0;
}
.nav-toggle span{
  display:block;
  width:18px;height:2px;
  background:var(--bone);
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:760px){
  .nav-toggle{display:flex;}

 .navlinks{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    position:fixed;
    top:64px;
    right:0;
    width:82vw;
    max-width:340px;
    height:calc(100vh - 64px);
    background:rgba(23,20,15,.96);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-left:1px solid rgba(196,144,63,.3);
    padding:35px 24px;
    transform:translateX(100%);
    transition:transform .35s ease;
    z-index:150;
}
  .navlinks.active{transform:translateX(0);}
  .navlinks a{
    font-size:0.8rem;
    padding:16px 0;
    width:100%;
    border-bottom:1px solid rgba(242,236,221,0.08);
  }
  .navlinks a::after{display:none;}

 .nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.25);
    z-index:140;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .3s ease, visibility .3s ease;
}

.nav-overlay.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

  body.nav-locked{overflow:hidden;}
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:100vh;
  background:radial-gradient(ellipse at 30% 20%, #241d12 0%, var(--charcoal) 55%, #0f0d09 100%);
  color:var(--bone);
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:80px;
}
.hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(242,236,221,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,236,221,0.035) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, black, transparent 85%);
}
#sparks{position:absolute;inset:0;pointer-events:none;}
.hero-inner{
  position:relative;z-index:2;
  max-width:1180px;margin:0 auto;padding:60px 32px 90px;
  width:100%;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  color:var(--gold);
  font-size:0.72rem;
  margin-bottom:26px;
}
.eyebrow::before{content:"";width:34px;height:1px;background:var(--gold);display:inline-block;}
.hero h1{
  font-size:clamp(2.6rem,7vw,5.6rem);
  color:var(--bone);
  max-width:900px;
}
.hero h1 span{color:var(--gold);}
.hero p.lede{
  max-width:560px;
  margin-top:26px;
  color:var(--bone-dim);
  font-size:1.05rem;
}
.hero-cta{
  margin-top:40px;
  display:flex;gap:18px;flex-wrap:wrap;align-items:center;
}
.btn{
  display:inline-block;
  padding:15px 30px;
  font-family:'Space Mono',monospace;
  font-size:0.75rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  border:1px solid var(--gold);
  color:var(--charcoal);
  background:var(--gold);
  transition:all .2s;
}
.btn:hover{background:#aa6f10;color:var(--charcoal);}
.btn.ghost{
  background:transparent;color:var(--bone);border-color:rgba(242,236,221,0.35);
}
.btn.ghost:hover{border-color:var(--gold);color:var(--gold);}

@media (max-width:760px){
  .hero-cta{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }
  .hero-cta .btn{
    width:100%;
    text-align:center;
  }
  .hero-cta .btn.ghost{
    border-color:rgba(242,236,221,0.6);
    background:rgba(242,236,221,0.06);
  }
}

.plate{
  position:absolute;
  right:32px;
  top:140px;
  border:1px solid rgba(196,144,63,0.4);
  padding:18px 22px;
  text-align:right;
  background:rgba(34,28,20,0.5);
}
.plate .num{
  font-family:'Oswald',sans-serif;
  font-size:2.4rem;color:var(--gold);
  line-height:1;
}
.plate .lbl{font-size:0.62rem;color:var(--bone-dim);margin-top:6px;}
@media (max-width:760px){.plate{position:static;margin-top:44px;text-align:left;display:inline-block;}}

.hero{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}
.hero.show{
    opacity:1;
    transform:translateY(0);
}
.hero-inner>*,
.plate{
    opacity:0;
    transform:translateY(30px);
    animation:reveal .8s forwards;
}
.hero.show .eyebrow{animation-delay:.2s;}
.hero.show h1{animation-delay:.4s;}
.hero.show .lede{animation-delay:.6s;}
.hero.show .hero-cta{animation-delay:.8s;}
.hero.show .plate{animation-delay:1s;}

@keyframes reveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ============================================
   ZINTERIORS — STATS STRIP
   Sits directly after <section class="hero">
   ============================================ */

.stats{
  border-bottom:1px solid var(--line);
}

.hero .hero-stats{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  background:rgba(19,16,16,.55);
  backdrop-filter:blur(6px);
  border-bottom:none;
  border-top:1px solid var(--line);
}

.stats .wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat{
  padding:2px 2px;
  text-align:center;
  border-left:1px solid var(--line);
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.stat:first-child{border-left:none;}
.stat.in{opacity:1;transform:translateY(0);}

.stat .n{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:2rem;
  color:var(--gold);
}

.stat .l{
  font-size:.68rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--steel);
  margin-top:1px;
}

@media(max-width:860px){
  .stats .wrap{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:760px){
    .hero .hero-stats{
        position:relative;
        bottom:auto;
        left:auto;
        right:auto;
        margin-top:40px;
    }
}
/* ---------- SECTION LABELS ---------- */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
  flex-wrap:wrap;
  color: #5e1b1b;
}
.section-head .tag{
  color:var(--maroon);
  font-size:0.72rem;
  margin-top:50px;
  display:block;
}
.section-head h2{font-size:clamp(1.8rem,4vw,2.7rem);}
.section-head .idx{
  font-family:'Space Mono',monospace;
  color:var(--steel);
  font-size:0.78rem;
}

.products-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border:1px solid rgba(196,144,63,.25);
    border-radius:6px;
    transition:.4s ease;
    cursor: pointer;
}

.products-visual{
    overflow:hidden;
    border-radius:6px;
}

.products-visual:hover .products-img{
    transform:scale(1.05);
}

.products-text h3 .view-more{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-family:'Space Mono',monospace;
  font-size:0.68rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid var(--gold);
  border-radius:20px;
  padding:6px 14px;
  vertical-align:middle;
  margin-left:10px;
  transition:all .2s ease;
}
.products-text h3 .view-more:hover{
  background:var(--gold);
  color:var(--charcoal);
  transform:translateX(3px);
}
/* ---------- ABOUT ---------- */
.about{
  padding:120px 0 90px;
  background:var(--bone);
}
.about-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:60px;
  align-items:start;
}
.stat-block{
  border:1px ;
  padding:28px 24px;
  background:var(--charcoal);
  color:var(--bone);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 10, 10, 0.116), rgba(10,10,10,.75)),
        url("../images/about.jpg"); /* ABOUT PAGE IMAGE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.stat-block .big{
  font-family:'Oswald',sans-serif;
  font-size:4.2rem;
  color:var(--gold);
  line-height:0.9;
}
.stat-block .cap{
  margin-top:10px;
  font-size:0.72rem;
  color:var(--bone-dim);
}
.stat-block hr{border:none;border-top:1px solid rgba(242,236,221,0.15);margin:20px 0;}
.stat-block ul{list-style:none;font-family:'Space Mono',monospace;font-size:0.7rem;color:var(--bone-dim);}
.stat-block li{padding:6px 0;border-bottom:1px dashed rgba(242,236,221,0.12);display:flex;justify-content:space-between;}
.about-text p{max-width:640px;color:#3a352b;font-size:1.02rem;margin-bottom:18px;}
.about-text .lead{
  font-family:'Oswald',sans-serif;
  font-size:1.5rem;
  text-transform:none;
  font-weight:600;
  color:var(--charcoal);
  margin-bottom:22px;
  max-width:640px;
}
.sector-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px;}
.sector-tags span{
  font-family:'Space Mono',monospace;
  font-size:0.65rem;
  border:1px solid rgba(23,20,15,0.25);
  padding:7px 12px;
  color:var(--maroon);
}

/* ---------- MISSION BANNER ---------- */
.mission{
  background:var(--maroon);
  background:linear-gradient(120deg,var(--maroon) 0%, var(--maroon-deep) 100%);
  color:var(--bone);
  padding:90px 0;
  position:relative;
}
.mission blockquote{
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:clamp(1.5rem,3.4vw,2.4rem);
  text-transform:none;
  max-width:900px;
  line-height:1.35;
}
.mission .attr{
  margin-top:26px;
  font-family:'Space Mono',monospace;
  font-size:0.72rem;
  color:rgba(242,236,221,0.75);
}

/* ---------- DIVIDER ---------- */
.divider{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line);
  border-bottom:1px solid rgba(23,20,15,0.12);
}
.divider .half{
  padding:54px 32px;
}
.divider .half.services{background:var(--gold);color:var(--charcoal);}
.divider .half.products{background:var(--bone);color:var(--charcoal);}
.divider h3{font-size:clamp(1.6rem,4vw,2.6rem);}
.divider p{margin-top:14px;font-size:0.9rem;max-width:360px;}
@media (max-width:700px){.divider{grid-template-columns:1fr;}}

/* ---------- PRODUCTS ROWS ---------- */
.products{padding:30px 0;}
.products-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:80px 0;
  border-bottom:1px solid rgba(23,20,15,0.1);
}
.products-row:nth-child(even) .products-visual{order:2;}
.products-visual{
  background:var(--charcoal-2);
  aspect-ratio:4/3;
  position:relative;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.products-visual svg{width:56%;height:56%;}
.products-num{
  position:absolute;top:16px;left:18px;
  font-family:'Space Mono',monospace;
  font-size:0.68rem;color:var(--gold);
}
.products-text .tag{
  color:var(--maroon);font-size:0.7rem;display:block;margin-bottom:14px;
}
.products-text h3{font-size:clamp(1.5rem,3.4vw,2.2rem);margin-bottom:18px;}
.products-text p{color:#3a352b;max-width:520px;margin-bottom:16px;}
.materials{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px;}
.materials span{
  font-family:'Space Mono',monospace;
  font-size:0.63rem;
  border:1px solid rgba(23,20,15,0.2);
  padding:6px 10px;
}
@media (max-width:800px){
  .products-row{grid-template-columns:1fr;gap:30px;padding:50px 0;}
  .products-row:nth-child(even) .products-visual{order:0;}
}

/* ---------- CLIENTELE ---------- */
.client-slider{
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.client-track{
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.client-track img{
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 1;          /* Full visibility */
    filter: none;        /* Keep original colors */
    transition: none;    /* Remove hover animation */
    cursor: default;
    pointer-events: none; /* Not clickable */
    user-select: none;
}

.client-track img:hover{
    opacity: 1;
    filter: none;
    transform: none;
}

@keyframes scrollLogos{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ---------- CONTACT ---------- */
.contact{
  background:var(--bone);
  padding:110px 0 60px;
}
.contact-panel{
  background:var(--charcoal);
  color:var(--bone);
  padding:60px 50px;
  position:relative;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
}
.contact-panel h2{font-size:clamp(1.8rem,4vw,2.6rem);color:var(--bone);}
.contact-panel p.lede{color:var(--bone-dim);margin-top:16px;max-width:420px;}
.contact-list{margin-top:34px;list-style:none;}
.contact-list li{
  padding:16px 0;
  border-top:1px solid rgba(242,236,221,0.12);
  display:flex;gap:16px;
}
.contact-list li:last-child{border-bottom:1px solid rgba(242,236,221,0.12);}
.contact-list .k{
  font-family:'Space Mono',monospace;
  font-size:0.65rem;color:var(--gold);
  min-width:90px;
  padding-top:2px;
}
.contact-list .v{font-size:0.95rem;color:var(--bone-dim);}
.contact-list a{color:var(--bone-dim);}
.contact-list a:hover{color:var(--gold);}
.contact-cta{
  align-self:start;
  border:1px solid rgba(196,144,63,0.35);
  padding:30px;
}
.contact-cta .mono{color:var(--gold);font-size:0.68rem;}
.contact-cta h3{margin-top:12px;font-size:1.3rem;color:var(--bone);}
.contact-cta .btn{margin-top:22px;width:100%;text-align:center;}
@media (max-width:800px){
  .contact{
    padding:70px 0 40px;
  }

  .contact-panel{
    display:flex;
    flex-direction:column;
    gap:30px;
    padding:30px 20px;
  }

  .contact-list li{
    flex-direction:column;
    gap:6px;
  }

  .contact-list .k{
    min-width:auto;
  }

  .contact-cta{
    width:100%;
    padding:22px;
    margin-top:10px;
  }

  .contact-cta .btn{
    width:100%;
    text-align:center;
    margin-top:14px;
  }
}
 
/*-- FOOTER---*/

.footer{
    background:#111;
    color:#ddd;
    padding:40px 0 0;
    border-top:1px solid rgba(196,144,63,.25);
    margin-top: 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:35px;
}

.footer-logo{
  height:100px;
  width:auto;
  margin-bottom:12px;
  margin-left: 50px;
  display:block;
}

.footer h3,
.footer h4{
    color:var(--gold);
    margin-bottom:10px;
}

.footer p,
.footer li{
    color:#b8b8b8;
    line-height:1.5;
    margin-bottom:6px;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:6px;
}

.footer a{
    color:var(--bone);
    text-decoration:none;
    transition:all .3s ease;
}

.footer ul li a:hover{
    color:var(--gold);
    padding-left:6px;
}

.footer-bottom{
    margin-top:25px;
    padding:12px 0;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    font-size:.85rem;
}

.social-links{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.social-links a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(196,144,63,.35);
    border-radius:50%;
    color:var(--gold);
    font-size:1rem;
    transition:.35s ease;
}

.social-links a:hover{
    background:var(--gold);
    color:#111;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(196,144,63,.35);
}

@media(max-width:768px){
    .footer{
        padding-top:35px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-bottom{
        margin-top:20px;
    }
}
/* reveal on scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1;transform:none;transition:none;}
}

/* ============================================
   PRODUCT SUBPAGE — RAILINGS (railing.php)
   Append to css/style.css
   ============================================ */

.product-hero{
  padding:190px 0 90px;
  background:var(--bone);
}
.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.product-hero-text h1{
  font-size:clamp(2.4rem,6vw,4.2rem);
  margin:16px 0 26px;
  color:var(--charcoal);
}
.product-hero-text .tag{
  color:var(--maroon);
  font-size:0.72rem;
}
.product-hero-text p{
  color:#3a352b;
  max-width:520px;
  margin-bottom:16px;
}
.product-hero-text .hero-cta{
  margin-top:32px;
}
.railing-types-heading{
  font-size:1.1rem;
  color:var(--maroon);
  margin:22px 0 12px;
}
.railing-types-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  max-width:480px;
}
.railing-types-list li{
  font-family:'Space Mono',monospace;
  font-size:0.82rem;
  color:#3a352b;
  padding:9px 0 9px 20px;
  position:relative;
  border-bottom:1px dashed rgba(23,20,15,0.15);
}
.railing-types-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color:var(--gold);
}
.product-hero-visual{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:6px;
}
.product-hero-visual .products-num{
  z-index:2;
  color:var(--gold);
  background:rgba(23,20,15,0.55);
  padding:4px 8px;
  border-radius:3px;
}
@media (max-width:800px){
  .product-hero{padding:100px 0 20px;}
  .product-hero-grid{grid-template-columns:1fr;gap:34px;}
}
.product-gallery{
  padding:40px 0 100px;
  background:var(--bone);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:220px;
  gap:16px;
}
.gallery-item{
  overflow:hidden;
  border-radius:6px;
  border:1px solid rgba(196,144,63,.25);
}
.gallery-item img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.gallery-item.large{
  grid-column:span 2;
  grid-row:span 2;
}

@media (max-width:800px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px;}
  .gallery-item.large{grid-column:span 2;grid-row:span 1;}
}
@media (max-width:500px){
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-item.large{grid-column:span 1;}
}
.product-hero{
  padding:100px 0 15px;
  background:var(--bone);
}
.product-cta{
  background:linear-gradient(120deg,var(--maroon) 0%, var(--maroon-deep) 100%);
  color:var(--bone);
  padding:70px 0;
}
.product-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.product-cta-inner .tag{
  color:var(--gold);
  font-size:0.7rem;
}
.product-cta-inner h2{
  font-size:clamp(1.6rem,3.6vw,2.4rem);
  color:var(--bone);
  margin:10px 0 10px;
}
.product-cta-inner p{
  color:var(--bone-dim);
  max-width:460px;
}
.product-cta-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.product-cta .btn.ghost-light{
  background:transparent;
  color:var(--bone);
  border-color:rgba(242,236,221,0.4);
}
.product-cta .btn.ghost-light:hover{
  border-color:var(--gold);
  color:var(--gold);
}

/* ---------- INDIAMART SECTION ---------- */
.indiamart-section{
  background:var(--maroon);
  padding:70px 0;
  border-top:1px solid rgba(196,144,63,0.2);
  border-bottom:1px solid rgba(196,144,63,0.2);
}
.indiamart-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  flex-wrap:wrap;
}
.indiamart-logo-wrap{
  background:var(--bone);
  height:100px;
  width:100px;
  border-radius:8px;
  padding:6px 2px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.indiamart-logo-img{
  height:54px;
  width:auto;
  display:block;
}
.indiamart-text{
  flex:1;
  min-width:240px;
}
.indiamart-text .tag{
  color:var(--gold);
  font-size:0.7rem;
}
.indiamart-text h2{
  color:var(--bone);
  font-size:clamp(1.4rem,3vw,2rem);
  margin:10px 0 8px;
}
.indiamart-text p{
  color:var(--bone-dim);
  max-width:520px;
  font-size:0.95rem;
}
.indiamart-btn{
  flex-shrink:0;
}

@media (max-width:760px){
  .indiamart-inner{flex-direction:column;text-align:center;}
  .indiamart-text{text-align:center;}
}

/* ============================================
   MISSING RESPONSIVE FIXES
   ============================================ */

/* ABOUT SECTION — stat-block + text ka koi mobile stacking nahi tha */
@media (max-width:800px){
  .about{padding:80px 0 60px;}
  .about-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .stat-block{
    padding:24px 20px;
  }
}

/* MISSION BANNER — badi screens ke liye hi padding tha */
@media (max-width:700px){
  .mission{padding:60px 0;}
}

/* FOOTER LOGO — margin-left:50px fixed tha, 1-column footer pe weird push ho raha tha */
@media (max-width:768px){
  .footer-logo{
    margin-left:0;
    height:70px;
  }
}

/* CONTACT PANEL — cta box padding bahut zyada tha chhoti screens pe */
@media (max-width:800px){
  .contact{padding:70px 0 40px;}
  .contact-cta{padding:22px;}
}

/* CLIENT LOGOS SLIDER — gap 70px mobile pe bahut jyada tha */
@media (max-width:600px){
  .client-track{gap:36px;}
  .client-track img{height:42px;}
}

/* INDIAMART SECTION — box thoda bada tha chhoti screens pe */
@media (max-width:600px){
  .indiamart-section{padding:50px 0;}
  .indiamart-logo-wrap{height:76px;width:76px;}
  .indiamart-logo-img{height:40px;}
}

/* PRODUCT SUBPAGE HERO — gallery + cta ka thoda aur tightening */
@media (max-width:600px){
  .product-hero{padding:90px 0 10px;}
  .product-cta{padding:50px 0;}
}

/* GENERAL WRAP PADDING — chhoti screens (small phones) pe edges bahut tight the */
@media (max-width:480px){
  .wrap{padding:0 20px;}
  .hero h1{font-size:clamp(2.1rem,9vw,3rem);}
  .section-head h2{font-size:clamp(1.5rem,6vw,2.1rem);}
  .stat-block .big{font-size:3.2rem;}
  .stat .n{font-size:1.6rem;}
}

/* NAVBAR — brand text chhoti screens pe overflow/wrap ho sakta tha */
@media (max-width:400px){
  .brand{font-size:0.9rem;gap:8px;}
  .brand .brand-logo{width:34px;height:34px;}
}
