:root{
  --ink:#101826;
  --ink-2:#17243a;
  --night:#0b1020;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --surface-2:#f3f5f7;
  --line:#dde3eb;
  --text:#17202f;
  --muted:#667085;
  --primary:#ff7a00;
  --primary-2:#f2b544;
  --teal:#18a3a7;
  --violet:#6d55d8;
  --danger:#d92d20;
  --success:#0f7b50;
  --shadow:0 18px 45px rgba(16,24,38,.13);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font:16px/1.5 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  letter-spacing:0;
}

body.modal-open{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,input,textarea{
  font:inherit;
  letter-spacing:0;
}

button{
  cursor:pointer;
}

img{
  display:block;
  max-width:100%;
}

.shell{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(11,16,32,.92);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(14px);
}

.headerInner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:210px;
}

.brandMark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#111827;
  font-weight:900;
  box-shadow:0 10px 28px rgba(255,122,0,.25);
}

.brandName{
  display:block;
  font-weight:850;
  font-size:18px;
}

.brandSub{
  display:block;
  color:#c6d1df;
  font-size:13px;
}

.topNav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  color:#d8e0ea;
  font-size:14px;
}

.topNav a:hover{
  color:#fff;
}

.headerActions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.phoneLink{
  color:#fff;
  font-weight:800;
  white-space:nowrap;
}

.miniButton{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  padding:8px 12px;
  color:#fff;
  background:rgba(255,255,255,.08);
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:620px;
  background:
    linear-gradient(110deg,rgba(11,16,32,.98) 0%,rgba(16,24,38,.9) 46%,rgba(16,24,38,.38) 72%,rgba(11,16,32,.55) 100%),
    linear-gradient(145deg,#0b1020 0%,#13324a 42%,#5c3f8e 70%,#ff7a00 100%);
  color:#fff;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:90px;
  background:linear-gradient(180deg,rgba(251,250,247,0),var(--paper));
  pointer-events:none;
}

.heroGrid{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  padding:78px 0 110px;
}

.heroCopy{
  position:relative;
  z-index:2;
  width:min(570px,100%);
}

.eyebrow{
  margin:0 0 10px;
  color:var(--primary-2);
  font-size:13px;
  font-weight:850;
  text-transform:uppercase;
}

.hero h1{
  margin:0;
  max-width:570px;
  font-size:50px;
  line-height:1.02;
  font-weight:900;
}

.lead{
  margin:22px 0 0;
  max-width:620px;
  color:#dce6f1;
  font-size:19px;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.button{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  border-radius:8px;
  padding:12px 18px;
  font-weight:850;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background-color .16s ease,color .16s ease;
}

.button:hover{
  transform:translateY(-1px);
}

.button.primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 28px rgba(255,122,0,.28);
}

.button.ghost{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.22);
  color:#fff;
}

.button.small{
  min-height:38px;
  padding:8px 12px;
  background:var(--ink);
  color:#fff;
}

.heroStats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  max-width:620px;
  margin:36px 0 0;
}

.heroStats div{
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:14px;
}

.heroStats dt{
  font-size:30px;
  font-weight:900;
}

.heroStats dd{
  margin:0;
  color:#b9c6d7;
}

.heroShowcase{
  position:absolute;
  inset:42px 0 58px 54%;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2,minmax(160px,1fr));
  gap:16px;
  opacity:.78;
  transform:rotate(-2deg);
}

.showcaseItem{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  min-height:210px;
  background:rgba(255,255,255,.08);
  color:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.3);
}

.showcaseItem:nth-child(2),
.showcaseItem:nth-child(4){
  transform:translateY(44px);
}

.showcaseItem img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04) contrast(1.02);
}

.showcaseItem span{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius:8px;
  background:rgba(11,16,32,.76);
  color:#fff;
  font-size:13px;
  font-weight:800;
  text-align:left;
}

.trustBand{
  position:relative;
  z-index:3;
  margin-top:-42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--line);
  box-shadow:var(--shadow);
}

.trustBand div{
  background:var(--surface);
  padding:22px;
}

.trustBand strong{
  display:block;
  color:var(--ink);
  font-size:17px;
}

.trustBand span{
  display:block;
  margin-top:4px;
  color:var(--muted);
}

.flash{
  margin:24px 0 0;
  padding:14px 16px;
  border-radius:8px;
  font-weight:750;
}

.flash.ok{
  background:#e8f6ef;
  color:#075e3c;
  border:1px solid rgba(15,123,80,.2);
}

.flash.error{
  background:#fff0ee;
  color:#9f1f18;
  border:1px solid rgba(217,45,32,.22);
}

.catalogSection{
  padding:76px 0;
}

.sectionHead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:20px;
}

.sectionHead h2,
.splitBand h2,
.deliverySection h2{
  margin:0;
  color:var(--ink);
  font-size:36px;
  line-height:1.1;
}

.searchBox{
  width:min(420px,100%);
}

.searchBox input{
  width:100%;
  min-height:48px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  color:var(--text);
  padding:12px 14px;
  outline:none;
}

.searchBox input:focus,
.calcRow input:focus,
.formGrid input:focus,
.commentField textarea:focus{
  border-color:rgba(255,122,0,.58);
  box-shadow:0 0 0 4px rgba(255,122,0,.13);
}

.categoryRail{
  display:flex;
  gap:8px;
  overflow:auto;
  padding:2px 0 12px;
  scrollbar-width:thin;
}

.categoryFilter{
  flex:0 0 auto;
  min-height:38px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--surface);
  color:var(--ink);
  padding:8px 12px;
  font-weight:750;
}

.categoryFilter.active{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}

.catalogMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:4px 0 18px;
  color:var(--muted);
  font-size:14px;
}

.productGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.productCard{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  box-shadow:0 12px 28px rgba(16,24,38,.06);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}

.productCard:hover{
  transform:translateY(-2px);
  border-color:#c9d2dd;
  box-shadow:0 18px 42px rgba(16,24,38,.12);
}

.productCard.hidden{
  display:none;
}

.productMedia{
  width:100%;
  height:190px;
  border:0;
  background:#eef1f5;
  padding:0;
}

.productMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.productBody{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:10px;
  padding:14px;
}

.categoryLabel{
  display:inline-flex;
  align-self:flex-start;
  color:#8a3a00;
  background:#fff3e6;
  border:1px solid #ffd5ae;
  border-radius:999px;
  padding:4px 8px;
  font-size:12px;
  font-weight:850;
}

.productBody h3{
  min-height:46px;
  margin:0;
  color:var(--ink);
  font-size:17px;
  line-height:1.3;
}

.productBody p{
  flex:1;
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.cardBottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:4px;
}

.cardBottom strong{
  color:var(--ink);
  white-space:nowrap;
}

.towersBand{
  background:var(--ink);
  color:#fff;
  padding:58px 0;
}

.splitBand{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
}

.splitBand h2{
  color:#fff;
}

.splitBand p:not(.eyebrow){
  max-width:720px;
  margin:14px 0 0;
  color:#c8d3df;
}

.deliverySection{
  padding:76px 0;
}

.deliveryGrid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:30px;
  align-items:center;
}

.deliveryGrid p:not(.eyebrow){
  color:var(--muted);
  font-size:18px;
}

.contactList{
  display:grid;
  gap:10px;
  margin-top:22px;
  color:var(--ink);
  font-weight:800;
}

.mapBox{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.mapBox iframe{
  display:block;
  width:100%;
  height:390px;
  border:0;
}

.siteFooter{
  background:var(--night);
  color:#fff;
  padding:30px 0;
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:24px;
}

.footerGrid strong,
.footerGrid span,
.footerGrid a{
  display:block;
}

.footerGrid span{
  color:#b9c6d7;
}

.footerGrid a{
  text-align:right;
  color:#fff;
  font-weight:800;
}

.modalLayer{
  position:fixed;
  inset:0;
  z-index:60;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(6,10,20,.7);
}

.modalLayer.open{
  display:flex;
}

.modalPanel{
  width:min(1120px,100%);
  max-height:calc(100vh - 36px);
  overflow:auto;
  border-radius:8px;
  background:var(--surface);
  box-shadow:0 30px 90px rgba(0,0,0,.4);
}

.modalPanel form{
  padding:22px;
}

.modalTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.modalTop h2{
  margin:8px 0 0;
  color:var(--ink);
  font-size:28px;
  line-height:1.15;
}

.iconClose{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface-2);
  color:var(--ink);
  font-size:28px;
  line-height:1;
}

.modalGrid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:22px;
}

.galleryMain{
  overflow:hidden;
  height:430px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#eef1f5;
}

.galleryMain img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.thumbRow{
  display:flex;
  gap:8px;
  margin-top:8px;
  overflow:auto;
}

.thumbRow button{
  flex:0 0 76px;
  overflow:hidden;
  height:60px;
  border:2px solid transparent;
  border-radius:8px;
  background:#eef1f5;
  padding:0;
}

.thumbRow button.active{
  border-color:var(--primary);
}

.thumbRow img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.detailBlock{
  display:grid;
  gap:14px;
}

.detailBlock p{
  margin:0;
  color:var(--muted);
}

.specGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.specGrid div{
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface-2);
  padding:10px;
}

.specGrid span{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.specGrid strong{
  display:block;
  margin-top:2px;
  color:var(--ink);
  font-size:14px;
}

.ratePanel{
  border:1px solid var(--line);
  border-radius:8px;
  padding:14px;
  background:#fffaf4;
}

.ratePanel h3{
  margin:0 0 10px;
  color:var(--ink);
  font-size:18px;
}

.rateRows{
  display:grid;
  gap:6px;
  margin-bottom:12px;
}

.rateRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid rgba(255,122,0,.18);
  border-radius:8px;
  background:#fff;
  padding:8px 10px;
  color:var(--muted);
  font-size:14px;
}

.rateRow.active{
  border-color:rgba(255,122,0,.7);
  color:var(--ink);
  box-shadow:0 0 0 3px rgba(255,122,0,.1);
}

.rateRow strong{
  color:var(--ink);
  white-space:nowrap;
}

.calcRow{
  display:grid;
  grid-template-columns:1fr 120px;
  align-items:center;
  gap:12px;
  margin-top:10px;
}

.calcRow input,
.formGrid input,
.commentField textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  color:var(--text);
  padding:10px 12px;
  outline:none;
}

.totalLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  border-radius:8px;
  background:var(--ink);
  color:#fff;
  padding:12px 14px;
}

.totalLine strong{
  font-size:22px;
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.formGrid label,
.commentField,
.calcRow label{
  color:var(--ink);
  font-weight:800;
  font-size:14px;
}

.commentField{
  display:grid;
  gap:6px;
}

.commentField textarea{
  resize:vertical;
}

.modalActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.modalActions .ghost{
  color:var(--ink);
  border-color:var(--line);
  background:#fff;
}

.trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}

@media (max-width:1080px){
  .productGrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .hero h1{
    font-size:48px;
  }
}

@media (max-width:880px){
  .headerInner{
    min-height:auto;
    flex-wrap:wrap;
    padding:12px 0;
  }

  .topNav{
    order:3;
    width:100%;
    justify-content:flex-start;
    overflow:auto;
    padding-bottom:2px;
  }

  .hero{
    min-height:auto;
  }

  .heroGrid{
    min-height:0;
    padding:54px 0 92px;
  }

  .heroShowcase{
    inset:48% -18px 24px 28%;
    opacity:.42;
  }

  .hero h1{
    font-size:40px;
  }

  .sectionHead,
  .deliveryGrid,
  .modalGrid,
  .splitBand{
    grid-template-columns:1fr;
  }

  .sectionHead{
    display:grid;
    align-items:start;
  }

  .productGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .trustBand{
    grid-template-columns:1fr;
  }

  .splitBand .button{
    justify-self:start;
  }

  .footerGrid{
    display:grid;
  }

  .footerGrid a{
    text-align:left;
  }
}

@media (max-width:620px){
  .shell{
    width:min(100% - 24px,1180px);
  }

  .brand{
    min-width:0;
  }

  .brandSub{
    display:none;
  }

  .headerActions{
    width:100%;
    justify-content:space-between;
  }

  .topNav{
    gap:16px;
    font-size:13px;
    padding-bottom:0;
  }

  .headerInner{
    gap:10px;
  }

  .miniButton{
    min-height:34px;
    padding:6px 10px;
  }

  .heroGrid{
    padding:40px 0 78px;
  }

  .hero h1{
    font-size:34px;
  }

  .lead{
    font-size:17px;
  }

  .heroStats{
    grid-template-columns:1fr;
  }

  .heroShowcase{
    display:none;
  }

  .catalogSection,
  .deliverySection{
    padding:54px 0;
  }

  .sectionHead h2,
  .splitBand h2,
  .deliverySection h2{
    font-size:30px;
  }

  .catalogMeta{
    display:grid;
  }

  .productGrid{
    grid-template-columns:1fr;
  }

  .productMedia{
    height:220px;
  }

  .modalLayer{
    padding:0;
    align-items:stretch;
  }

  .modalPanel{
    max-height:100vh;
    border-radius:0;
  }

  .modalPanel form{
    padding:14px;
  }

  .galleryMain{
    height:280px;
  }

  .specGrid,
  .formGrid,
  .calcRow{
    grid-template-columns:1fr;
  }

  .modalTop h2{
    font-size:24px;
  }
}
