
:root{
  --black:#181614;
  --charcoal:#24211f;
  --brown:#5a3d27;
  --rust:#a35c2b;
  --orange:#d66a28;
  --cream:#f5f1e8;
  --tan:#e7d9c2;
  --white:#ffffff;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--cream);color:var(--charcoal);line-height:1.6}
a{text-decoration:none}
.topbar{background:var(--black);color:var(--tan);padding:8px 20px;text-align:center;font-size:14px}
.header{background:rgba(24,22,20,.97);color:white;position:sticky;top:0;z-index:10;border-bottom:3px solid var(--rust)}
.nav{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand img{
  width:90px;
  height:90px;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  padding:4px;
}
.brand h1{
  font-size:26px;
  margin:0;
  letter-spacing:1px;
}
.brand p{margin:0;color:var(--tan);font-size:13px}
.menu{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.menu a{color:white;font-weight:bold;font-size:14px}
.hero{background:linear-gradient(110deg,rgba(24,22,20,.92),rgba(90,61,39,.82)), url('assets/product_01.jpeg');background-size:cover;background-position:center;min-height:620px;display:flex;align-items:center;color:white}
.hero-inner{max-width:1180px;margin:0 auto;padding:70px 20px;display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:center}
.hero h2{font-size:56px;line-height:1.05;margin:0 0 18px;text-transform:uppercase}
.hero p{font-size:20px;max-width:650px;color:#f4eadc}
.hero-actions{margin-top:24px;display:flex;gap:14px;flex-wrap:wrap}
.btn{display:inline-block;background:var(--orange);color:white;padding:14px 22px;border-radius:7px;font-weight:bold;box-shadow:0 5px 18px rgba(0,0,0,.25)}
.btn.secondary{background:transparent;border:2px solid var(--tan);color:var(--tan)}
.hero-card{
  background:#ffffff;
  padding:18px;
  border-radius:16px;
  box-shadow:0 15px 45px rgba(0,0,0,.35);
  color:#222222;
}

.hero-card img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:12px;
}

.hero-card h3{
  margin:14px 0 10px;
  font-size:22px;
  color:#222222;
  font-weight:700;
}

.hero-card p{
  color:#444444;
  font-size:16px;
  line-height:1.6;
  margin:0;
}
.section{max-width:1180px;margin:0 auto;padding:72px 20px}
.section h2{font-size:38px;line-height:1.15;margin:0 0 12px;text-align:center}
.section-intro{text-align:center;max-width:760px;margin:0 auto 34px;font-size:18px;color:#5d5148}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card{background:white;border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.12);border:1px solid #eadfce}
.card img{width:100%;height:210px;object-fit:cover;display:block}
.card-content{padding:18px}
.card h3{margin:0 0 8px;font-size:21px}
.band{background:var(--charcoal);color:white}
.band .section-intro{color:var(--tan)}
.gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.gallery img{width:100%;height:190px;object-fit:cover;border-radius:12px;box-shadow:0 5px 18px rgba(0,0,0,.18);background:white}
.trust{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:center}
.trust-box{background:white;padding:32px;border-radius:16px;box-shadow:0 8px 24px rgba(0,0,0,.12)}
.checks{columns:2;list-style:none;padding:0;margin:20px 0 0}
.checks li{margin:9px 0;font-weight:bold}
.checks li:before{content:"✓";color:var(--orange);font-weight:bold;margin-right:8px}
.cta{background:linear-gradient(135deg,var(--brown),var(--black));color:white;text-align:center;padding:76px 20px}
.cta h2{font-size:42px;margin:0 0 12px}
.cta p{font-size:20px;color:var(--tan)}
.contact-line{font-size:24px;font-weight:bold;margin:24px 0}
.footer{background:var(--black);color:var(--tan);text-align:center;padding:30px 20px}
.footer strong{color:white}
.note{background:#fff7ed;border-left:5px solid var(--orange);padding:16px;border-radius:8px;margin-top:25px;font-size:14px}
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .hero h2{font-size:40px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .trust{grid-template-columns:1fr}
  .menu{display:none}
}
@media(max-width:560px){
  .brand img{width:56px;height:56px}
  .brand h1{font-size:19px}
  .hero h2{font-size:32px}
  .grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .checks{columns:1}
}
.gallery a {
  display: block;
}

.gallery a img {
  width: 100%;
  height: 100%;
  display: block;
}
.photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.photo-lightbox.open {
  display: flex;
}

.photo-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
}

.photo-close,
.photo-prev,
.photo-next {
  position: absolute;
  background: white;
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
}

.photo-close {
  top: 15px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
}

.photo-prev,
.photo-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 70px;
  border-radius: 8px;
  font-size: 48px;
}

.photo-prev {
  left: 15px;
}

.photo-next {
  right: 15px;
}

.gallery a {
  display: block;
}
.quote-form{
  max-width:700px;
  margin:30px auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.quote-form input,
.quote-form textarea{
  width:100%;
  padding:15px;
  border-radius:10px;
  border:2px solid #ddd;
  font-size:16px;
  font-family:Arial, Helvetica, sans-serif;
  box-sizing:border-box;
}

.quote-form textarea{
  min-height:150px;
  resize:vertical;
}

.quote-form input:focus,
.quote-form textarea:focus{
  outline:none;
  border-color:#d66a28;
}

.quote-form button{
  border:none;
  cursor:pointer;
}
.trust-box h3{
  color:#222 !important;
}

.trust-box p{
  color:#444 !important;
}

.checks li{
  color:#222 !important;
}