/* Design tokens */
:root{
  --ink:#111111;
  --paper:#f7f5f2;
  --white:#ffffff;
  --red:#f20a0a;
  --deep-red:#c90808;
  --charcoal:#242424;
  --muted:#0c0c0c;
  --line:#dedede;
  --soft:#ececec;
  --ease:cubic-bezier(.16,1,.3,1);
  --radius:2px
}
*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth
}
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:Manrope,Arial,sans-serif
}
body,.site-body{
  overflow-x:hidden
}
a{
  color:inherit;
  text-decoration:none
}
button,input,textarea{
  font:inherit
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
::selection{
  background:var(--red);
  color:var(--white)
}
/* Header and navigation */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  height:72px;
  padding:0 4.2vw;
  background:var(--white);
  border-bottom:1px solid var(--soft);
  color:var(--ink)
}
.brand-lockup{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:800
}
.brand-mark{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  overflow:hidden;
  border:1px solid var(--red);
  border-radius:var(--radius);
  background:var(--red)
}
.brand-mark img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover
}
.brand-name b{
  color:var(--red);
  font-weight:800
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:25px;
  color:var(--ink);
  font-size:10px;
  font-weight:700;
  letter-spacing:.04em
}
.desktop-nav a{
  padding:8px 0;
  white-space:nowrap
}
.desktop-nav a:hover,.desktop-nav a.is-active{
  color:var(--red)
}
.desktop-nav .nav-contact{
  padding:13px 17px;
  background:var(--red);
  color:var(--white);
  border-radius:var(--radius)
}
.desktop-nav .nav-contact:hover{
  background:var(--deep-red);
  color:var(--white)
}
.desktop-nav .nav-contact span{
  margin-left:8px;
  font-size:15px
}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  color:var(--ink);
  padding:7px
}
.menu-toggle span:not(.sr-only){
  display:block;
  width:24px;
  height:2px;
  margin:5px 0;
  background:currentColor
}
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:19;
  display:none;
  background:var(--charcoal);
  color:var(--white);
  transform:translateY(-100%);
  transition:transform .55s var(--ease)
}
.mobile-menu.is-open{
  transform:translateY(0)
}
.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
  padding:0 8vw
}
.mobile-menu nav{
  display:flex;
  flex-direction:column;
  margin-top:28px
}
.mobile-menu nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,.22);
  font-size:clamp(28px,8vw,56px);
  letter-spacing:-.07em
}
.mobile-menu nav a span{
  color:var(--red);
  font-size:11px;
  letter-spacing:.08em
}
.mobile-note{
  max-width:260px;
  margin-top:48px;
  color:#c5c5c5;
  font-size:12px;
  line-height:1.6
}
/* Shared controls and type */
.eyebrow{
  margin:0;
  color:var(--red);
  font-size:9px;
  font-weight:800;
  letter-spacing:.17em;
  line-height:1.3;
  text-transform:uppercase
}
.button-primary{
  display:inline-flex;
  align-items:center;
  gap:16px;
  width:max-content;
  padding:14px 18px;
  border:1px solid var(--red);
  border-radius:var(--radius);
  background:var(--red);
  color:var(--white);
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:background-color .25s ease,border-color .25s ease,transform .25s ease
}
.button-primary:hover{
  background:var(--deep-red);
  border-color:var(--deep-red);
  color:var(--white);
  transform:translateY(-2px)
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  border-bottom:1px solid currentColor;
  padding-bottom:7px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase
}




.text-link:hover{
  color:var(--red)
}
/* Home hero slider */
.hero{
  display:grid;
  grid-template-columns:minmax(360px,.88fr) minmax(0,1.42fr);
  grid-template-rows:auto auto auto;
  background:var(--paper)
}
.hero-content{
  grid-column:1;
  grid-row:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:clamp(530px,calc(100svh - 176px),690px);
  padding:clamp(46px,7vw,100px) clamp(28px,6vw,84px);
  background:var(--white)
}
.hero-kicker{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--red);
  font-size:9px;
  font-weight:800;
  letter-spacing:.17em;
  text-transform:uppercase
}
.hero-kicker:before{
  content:"";
  width:28px;
  height:2px;
  background:var(--red)
}
.hero h1{
  max-width:600px;
  margin:22px 0 23px;
  font-size:clamp(50px,6.4vw,94px);
  font-weight:800;
  line-height:.92;
  letter-spacing:-.085em
}
.hero-summary{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:24px;
  max-width:390px
}
.hero-summary p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55
}
.hero-media{
  position:relative;
  grid-column:2;
  grid-row:1;
  min-height:clamp(530px,calc(100svh - 176px),690px);
  overflow:hidden;
  background:var(--soft)
}
.hero-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .75s var(--ease)
}
.hero-slide.is-active{
  opacity:1
}
.hero-projects{
  grid-column:1/-1;
  grid-row:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:21px 4.2vw 18px;
  background:var(--white)
}
.hero-project{
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:10px;
  min-height:58px;
  padding:10px 18px;
  border-top:2px solid var(--soft);
  border-right:1px solid var(--soft);
  background:transparent;
  color:#7b7b7b;
  text-align:left;
  cursor:pointer
}
.hero-project:last-child{
  border-right:0
}
.hero-project:hover,.hero-project.is-active,.hero-project[aria-selected="true"]{
  border-top-color:var(--red);
  color:var(--ink)
}
.hero-project-number{
  grid-row:span 2;
  color:var(--red);
  font-size:10px;
  font-weight:800
}
.hero-project strong{
  color:var(--ink);
  font-size:12px;
  font-weight:800
}
.hero-project small{
  grid-column:2;
  margin-top:5px;
  color:var(--muted);
  font-size:9px;
  line-height:1.35;
  text-transform:uppercase;
  letter-spacing:.04em
}
.hero-project:focus-visible,.collection-category:focus-visible,.button-primary:focus-visible,.text-link:focus-visible{
  outline:2px solid var(--red);
  outline-offset:4px
}
.hero-progress{
  grid-column:1/-1;
  grid-row:3;
  height:3px;
  background:var(--soft)
}
.hero-progress span{
  display:block;
  width:25%;
  height:3px;
  background:var(--red)
}
/* Trust strip */
.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding:23px 4.2vw;
  background:#f1f1f1;
  border-bottom:1px solid var(--soft)
}
.trust-item{
  display:flex;
  align-items:center;
  gap:13px;
  padding:0 25px;
  border-right:1px solid #cfcfcf
}
.trust-item:first-child{
  padding-left:0
}
.trust-item:last-child{
  border-right:0
}
.trust-icon{
  display:grid;
  place-items:center;
  flex:none;
  width:30px;
  height:30px;
  background:var(--red);
  color:var(--white);
  font-size:9px;
  font-weight:800
}
.trust-item div{
  display:grid;
  gap:3px
}
.trust-item strong{
  font-size:11px;
  font-weight:800
}
.trust-item div span{
  color:var(--muted);
  font-size:10px;
  line-height:1.35
}
.selected-section,
/* Home content sections */
.selected-section,.featured-section,.sector-section{
  padding:76px 4.2vw 84px;
  background:var(--paper)
}
.featured-section{
  background:var(--white)
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  max-width:1280px;
  margin:0 auto;
  padding-bottom:28px
}
.section-head h2{
  max-width:760px;
  margin:12px 0 0;
  font-size:clamp(34px,4.5vw,64px);
  font-weight:800;
  line-height:.96;
  letter-spacing:-.075em
}
.section-head .text-link{
  margin:0;
  color:var(--red)
}
.range-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:13px;
  max-width:1280px;
  margin:0 auto
}
.range-card{
  display:grid;
  grid-template-rows:170px 52px;
  overflow:hidden;
  border:1px solid var(--soft);
  background:var(--white);
  color:var(--ink)
}
.range-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease)
}
.range-card span{
  align-self:center;
  padding:0 14px;
  font-size:12px;
  font-weight:800
}
.range-card{
  position:relative
}



.range-card:hover img{
  transform:scale(1.045)
}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:1280px;
  margin:0 auto
}
.featured-card{
  display:grid;
  grid-template-rows:260px auto;
  overflow:hidden;
  background:var(--white)
}
.featured-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease)
}
.featured-card>div{
  display:grid;
  gap:5px;
  padding:16px 0 4px
}
.featured-card strong{
  font-size:15px;
  font-weight:800
}
.featured-card span{
  color:var(--muted);
  font-size:12px
}
.featured-card:hover img{
  transform:scale(1.035)
}
/* Dark feature bands */
.proof-section{
  padding:80px 4.2vw;
  background:var(--charcoal);
  color:var(--white)
}
.proof-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:8vw;
  align-items:start;
  max-width:1280px;
  margin:0 auto
}
.proof-title{
  max-width:650px;
  margin:13px 0 0;
  font-size:clamp(42px,5vw,72px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-.075em
}
.proof-copy{
  max-width:390px;
  margin:0;
  color:#d0d0d0;
  font-size:13px;
  line-height:1.65
}
.proof-copy .button-primary{
  margin-top:25px
}
.home-cta{
  max-width:1280px;
  margin:72px auto 86px
}
.cta-panel{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:360px;
  overflow:hidden;
  background:var(--charcoal);
  color:var(--white)
}
.cta-panel>img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover
}
.cta-panel-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:54px 6vw;
  background:var(--charcoal)
}
.cta-panel h2{
  max-width:480px;
  margin:14px 0 23px;
  font-size:clamp(35px,4vw,58px);
  font-weight:800;
  line-height:.97;
  letter-spacing:-.07em
}
/* Products catalogue */
.collection-page{
  background:var(--paper);
  color:var(--ink)
}
.collection-heading{
  max-width:1280px;
  margin:0 auto;
  padding:62px 4.2vw 28px
}
.collection-heading h1{
  max-width:800px;
  margin:13px 0 9px;
  font-size:clamp(48px,6.5vw,88px);
  font-weight:800;
  line-height:.92;
  letter-spacing:-.085em
}
.collection-heading>p:last-child{
  max-width:430px;
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6
}
.collection-categories{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:13px;
  max-width:1280px;
  margin:0 auto;
  padding:5px 4.2vw 34px
}
.collection-category{
  position:relative;
  display:grid;
  grid-template-rows:145px 47px;
  overflow:hidden;
  border:1px solid var(--soft);
  border-radius:var(--radius);
  padding:0;
  background:var(--white);
  color:var(--ink);
  text-align:left;
  cursor:pointer
}
.collection-category img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease)
}
.collection-category span{
  align-self:center;
  padding:0 14px;
  font-size:12px;
  font-weight:800
}

.collection-category:hover img{
  transform:scale(1.05)
}
.collection-category.is-active{
  border:2px solid var(--red)
}
.collection-toolbar{
  display:flex;
  justify-content:space-between;
  max-width:1280px;
  margin:0 auto;
  padding:17px 4.2vw;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em
}
.collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1280px;
  margin:0 auto;
  padding:34px 4.2vw 112px
}
.product-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--soft);
  background:var(--white);
  box-shadow:0 6px 18px rgba(17,17,17,.04);

  transition:transform .3s var(--ease),box-shadow .3s ease
}
.product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 26px rgba(17,17,17,.08)
}
.product-card.is-hidden{
  display:none
}
.product-card>img{
  display:block;
  width:100%;
  height:335px;
  object-fit:cover;
  background:var(--white);
  transition:transform .5s var(--ease)
}
.product-card:hover>img{
  transform:scale(1.02)
}
.product-overlay{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:13px;
  min-height:125px;
  padding:17px
}
.product-overlay h3{
  margin:0;
  font-size:16px;
  font-weight:800
}
.product-overlay p{
  margin:6px 0;
  color:var(--red);
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em
}
.product-overlay span{
  display:block;
  color:var(--muted);
  font-size:11px;
  line-height:1.35
}

.quote-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:14px;
  padding:8px 10px;
  background:var(--red);
  color:var(--white);
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em
}
.quote-link:hover{
  background:var(--deep-red)
}
.quote-link:focus-visible{
  outline:2px solid var(--red);
  outline-offset:4px
}

.services-wrap,
/* Services, About, and Contact layouts */
.services-wrap,.about-wrap,.contact-wrap{
  padding:70px 4.2vw 88px;
  background:var(--paper)
}
.services-intro,.about-intro,.contact-intro{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:8vw;
  align-items:end;
  max-width:1280px;
  margin:0 auto
}
.services-intro h1,.about-intro h1,.contact-intro h1{
  max-width:850px;
  margin:13px 0 0;
  font-size:clamp(48px,6.4vw,88px);
  font-weight:800;
  line-height:.92;
  letter-spacing:-.085em
}
.services-intro>p,.contact-intro>p,.about-intro>p{
  max-width:370px;
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65
}
.service-list{
  max-width:1280px;
  margin:70px auto 0
}
.service-row{
  display:grid;
  grid-template-columns:52px 1.2fr .8fr;
  gap:28px;
  align-items:start;
  padding:27px 0;
  border-top:1px solid var(--line)
}
.service-row:last-child{
  border-bottom:1px solid var(--line)
}
.service-number{
  color:var(--red);
  font-size:10px;
  font-weight:800
}
.service-row h2{
  margin:0;
  font-size:clamp(25px,3vw,45px);
  font-weight:800;
  line-height:.98;
  letter-spacing:-.065em
}
.service-row p{
  max-width:370px;
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.6
}
.service-feature{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  align-items:center;
  gap:30px;
  padding:65px 4.2vw;
  background:var(--charcoal);
  color:var(--white)
}
.service-feature>div{
  max-width:580px;
  margin-left:max(0px,calc((100vw - 1280px)/2))
}
.service-feature h2{
  margin:13px 0 0;
  font-size:clamp(36px,4.5vw,66px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-.075em
}
.service-feature img{
  width:100%;
  height:230px;
  object-fit:cover
}
.service-feature .button-primary{
  margin-right:max(0px,calc((100vw - 1280px)/2))
}
.about-intro{
  display:block;
  padding-bottom:52px
}
.about-intro h1{
  max-width:930px
}
.about-intro>p{
  margin-top:22px
}
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:8vw;
  align-items:center;
  max-width:1280px;
  margin:0 auto
}
.about-copy{
  max-width:475px;
  font-size:15px;
  line-height:1.7
}
.about-copy p{
  margin:0 0 23px
}
.about-image{
  height:560px;
  overflow:hidden
}
.about-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover
}
.about-values{
  padding-top:76px;
  padding-bottom:82px
}
.about-value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px
}
.about-value-grid article{
  padding:19px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.04)
}
.about-value-grid strong{
  font-size:13px
}
.about-value-grid p{
  margin:12px 0 0;
  color:#cfcfcf;
  font-size:11px;
  line-height:1.55
}
.sector-section{
  padding-top:78px
}
.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:1280px;
  margin:0 auto
}
.sector-grid article{
  display:grid;
  grid-template-rows:220px 52px;
  overflow:hidden;
  background:var(--white)
}
.sector-grid img{
  width:100%;
  height:100%;
  object-fit:cover
}
.sector-grid strong{
  align-self:center;
  padding:0 15px;
  font-size:12px
}
.contact-intro{
  padding-bottom:46px
}
.contact-rail{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1280px;
  margin:0 auto 45px;
  padding:21px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.contact-rail>div{
  display:grid;
  gap:5px;
  padding:0 25px;
  border-right:1px solid var(--line)
}
.contact-rail>div:first-child{
  padding-left:0
}
.contact-rail>div:last-child{
  border-right:0
}
.contact-rail a,.contact-rail strong{
  font-size:13px;
  font-weight:800
}
.contact-layout{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  max-width:1280px;
  margin:0 auto;
  background:var(--white)
}
.contact-form{
  padding:42px 4vw 45px
}
.contact-form h2{
  margin:13px 0 9px;
  font-size:clamp(35px,4vw,55px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-.075em
}
.form-intro{
  max-width:460px;
  margin:0 0 30px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:23px
}
.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:20px
}
.form-field label{
  font-size:10px;
  font-weight:800
}
.form-field input,.form-field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:0;
  background:var(--white);
  padding:12px;
  color:var(--ink);
  outline:0;
  font-size:13px;
  resize:vertical
}
.form-field input:focus,.form-field textarea:focus{
  border-color:var(--red);
  box-shadow:0 0 0 2px rgba(242,10,10,.12)
}
.form-field textarea{
  min-height:130px
}
.form-field input::placeholder,.form-field textarea::placeholder{
  color:#8b8b8b
}
.form-submit{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:0;
  border-radius:var(--radius);
  padding:14px 18px;
  background:var(--red);
  color:var(--white);
  font-size:11px;
  font-weight:800;
  cursor:pointer
}
.form-submit:hover{
  background:var(--deep-red)
}
.contact-side{
  display:grid;
  grid-template-rows:260px 1fr;
  background:var(--charcoal);
  color:var(--white)
}
.contact-side>img{
  width:100%;
  height:100%;
  object-fit:cover
}
.contact-side>div{
  padding:28px 30px
}
.contact-side h2{
  margin:10px 0 7px;
  font-size:25px;
  letter-spacing:-.04em
}
.contact-side p:not(.eyebrow){
  max-width:360px;
  margin:0;
  color:#cfcfcf;
  font-size:12px;
  line-height:1.55
}
.contact-side .text-link{
  color:var(--white)
}
.contact-process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:1280px;
  margin:0 auto;
  padding:0 4.2vw 90px;
  background:var(--paper)
}
.contact-process article{
  padding:26px 23px;
  border:1px solid var(--line);
  background:var(--white)
}
.contact-process strong{
  font-size:13px
}
.contact-process p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:11px;
  line-height:1.55
}
/* Footer */
.site-footer{
  border-top:4px solid var(--red);
  background:var(--charcoal);
  color:var(--white)
}
.footer-inner{
  display:grid;
  grid-template-columns:1.1fr .7fr 1.2fr;
  gap:7vw;
  max-width:1280px;
  margin:0 auto;
  padding:54px 4.2vw 42px
}
.footer-brand .brand-name{
  color:var(--white)
}
.footer-brand .brand-name b{
  color:var(--red)
}
.footer-brand>p{
  margin:20px 0;
  color:#cfcfcf;
  font-size:12px;
  line-height:1.55
}
.footer-contact{
  display:grid;
  gap:8px;
  color:#fff;
  font-size:11px
}
.footer-contact a:hover,.footer-links a:hover,.footer-gallery-link:hover{
  color:var(--red)
}
.footer-links,.footer-gallery{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px
}
.footer-links .eyebrow,.footer-gallery /* Shared controls and type */
.eyebrow{
  margin-bottom:4px
}
.footer-links a{
  font-size:11px
}
.footer-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:5px;
  width:100%
}
.footer-gallery-grid a{
  height:65px;
  overflow:hidden
}
.footer-gallery-grid img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s var(--ease)
}
.footer-gallery-grid a:hover img{
  transform:scale(1.06)
}
.footer-gallery-link{
  margin-top:4px;
  border-bottom:1px solid currentColor;
  padding-bottom:5px;
  font-size:10px;
  font-weight:800
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  max-width:1280px;
  margin:0 auto;
  padding:16px 4.2vw 22px;
  border-top:1px solid rgba(255,255,255,.22);
  color:#cfcfcf;
  font-size:10px
}

/* Responsive layout */
@media(max-width:900px){
  /* Header and navigation */
  .site-header{
    height:66px;
    padding:0 5vw
  }
  .desktop-nav{
    display:none
  }
  .menu-toggle{
    display:block
  }
  .mobile-menu{
    display:block
  }
  /* Home hero slider */
  .hero{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto auto
  }
  .hero-content{
    grid-column:1;
    grid-row:2;
    min-height:0;
    padding:47px 7vw 52px
  }
  .hero-media{
    grid-column:1;
    grid-row:1;
    min-height:58svh;
    max-height:620px
  }
  .hero-projects{
    grid-column:1;
    grid-row:3;
    display:flex;
    overflow-x:auto;
    padding:17px 7vw 15px
  }
  .hero-project{
    min-width:160px;
    margin-right:17px;
    padding:9px 17px 4px 0
  }
  .hero-progress{
    grid-column:1;
    grid-row:4
  }
  /* Trust strip */
  .trust-strip{
    grid-template-columns:1fr;
    gap:17px;
    padding:20px 7vw
  }
  .trust-item,.trust-item:first-child{
    padding:0;
    border-right:0
  }
  .selected-section,
  /* Home content sections */
  .selected-section,.featured-section,.sector-section{
    padding:58px 7vw 65px
  }
  .section-head{
    display:block;
    padding-bottom:24px
  }
  .section-head h2{
    font-size:clamp(36px,10vw,58px)
  }
  .section-head .text-link{
    margin-top:18px
  }
  .range-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px
  }
  .range-card{
    grid-template-rows:145px 50px
  }
  .featured-grid,.sector-grid{
    grid-template-columns:1fr;
    gap:25px
  }
  .featured-card{
    grid-template-rows:250px auto
  }
  /* Dark feature bands */
  .proof-section{
    padding:63px 7vw 70px
  }
  .proof-grid{
    grid-template-columns:1fr;
    gap:35px
  }
  .home-cta{
    margin:56px 7vw 70px
  }
  .cta-panel{
    grid-template-columns:1fr
  }
  .cta-panel>img{
    min-height:260px
  }
  .cta-panel-content{
    padding:40px 7vw 45px
  }
  .collection-heading{
    padding:45px 7vw 23px
  }
  .collection-heading h1{
    font-size:clamp(48px,13vw,78px)
  }
  .collection-categories{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:4px 5vw 27px
  }
  .collection-category{
    grid-template-rows:120px 44px
  }
  .collection-toolbar{
    margin:0 5vw;
    padding:15px 0;
    font-size:9px
  }
  .collection-grid{
    grid-template-columns:1fr 1fr;
    gap:11px;
    padding:27px 5vw 80px
  }
  .product-card>img{
    height:260px
  }
  .product-overlay{
    min-height:126px;
    padding:13px
  }
  .product-overlay h3{
    font-size:14px
  }
  .product-overlay span{
    font-size:10px
  }
  .services-wrap,
  /* Services, About, and Contact layouts */
  .services-wrap,.about-wrap,.contact-wrap{
    padding:58px 7vw 72px
  }
  .services-intro,.contact-intro{
    display:block
  }
  .services-intro h1,.about-intro h1,.contact-intro h1{
    font-size:clamp(48px,13vw,78px)
  }
  .services-intro>p,.contact-intro>p,.about-intro>p{
    margin-top:23px
  }
  .service-list{
    margin-top:47px
  }
  .service-row{
    grid-template-columns:34px 1fr;
    gap:15px;
    padding:25px 0
  }
  .service-row p{
    grid-column:2
  }
  .service-feature{
    grid-template-columns:1fr;
    padding:55px 7vw;
    gap:26px
  }
  .service-feature>div{
    margin:0
  }
  .service-feature img{
    height:220px
  }
  .service-feature .button-primary{
    margin:0
  }
  .about-intro{
    padding-bottom:40px
  }
  .about-grid{
    grid-template-columns:1fr;
    gap:35px
  }
  .about-image{
    height:400px
  }
  .about-values{
    padding-top:60px
  }
  .about-value-grid{
    grid-template-columns:1fr;
    gap:10px
  }
  .sector-grid{
    gap:12px
  }
  .sector-grid article{
    grid-template-rows:230px 50px
  }
  .contact-intro{
    padding-bottom:36px
  }
  .contact-rail{
    grid-template-columns:1fr;
    gap:16px;
    margin-bottom:35px;
    padding:18px 0
  }
  .contact-rail>div,.contact-rail>div:first-child{
    padding:0;
    border-right:0
  }
  .contact-layout{
    grid-template-columns:1fr
  }
  .contact-form{
    padding:32px 7vw 38px
  }
  .form-row{
    grid-template-columns:1fr;
    gap:0
  }
  .contact-side{
    grid-template-rows:240px auto
  }
  .contact-side>div{
    padding:25px 7vw 30px
  }
  .contact-process{
    grid-template-columns:1fr;
    gap:10px;
    padding:0 7vw 70px
  }
  .footer-inner{
    grid-template-columns:1fr 1fr;
    gap:42px 30px;
    padding:45px 7vw 35px
  }
  .footer-brand{
    grid-column:1/-1
  }
  .footer-gallery-grid a{
    height:58px
  }
  .footer-bottom{
    display:block;
    padding:15px 7vw 20px;
    line-height:1.7
  }
  .footer-bottom span{
    display:block
  }
  .footer-bottom span+span{
    margin-top:5px
  }
}
/* Reduced-motion fallback */
@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }
  .hero-slide,.button-primary,.product-card,.range-card img,.featured-card img,.footer-gallery-grid img,.mobile-menu{
    transition:none
  }
  .button-primary:hover,.product-card:hover{
    transform:none
  }
}
/* Compact type and hero scale */
body{
  font-size:13px
}
.desktop-nav{
  font-size:9px;
  gap:22px
}
.brand-lockup{
  font-size:10px
}
/* Shared controls and type */
.eyebrow{
  font-size:8px
}
.hero-content,.hero-media{
  min-height:clamp(410px,calc(100svh - 245px),515px)
}
.hero-content{
  padding-top:48px;
  padding-bottom:42px
}
.hero h1{
  max-width:520px;
  font-size:clamp(43px,5vw,72px);
  margin:17px 0 19px
}
.hero-summary{
  gap:18px;
  max-width:350px
}
.hero-summary p{
  font-size:11px;
  line-height:1.5
}
.hero-projects{
  padding-top:15px;
  padding-bottom:13px
}
.hero-project{
  min-height:51px;
  padding-top:7px
}
.hero-project strong{
  font-size:11px
}
.hero-project small{
  font-size:8px
}
/* Trust strip */
.trust-strip{
  padding-top:18px;
  padding-bottom:18px
}
.trust-item strong{
  font-size:10px
}
.trust-item div span{
  font-size:9px
}
.section-head h2{
  font-size:clamp(31px,3.7vw,53px)
}
.collection-heading h1,.services-intro h1,.about-intro h1,.contact-intro h1{
  font-size:clamp(42px,5.2vw,72px)
}
.collection-heading>p:last-child,.services-intro>p,.contact-intro>p,.about-intro>p{
  font-size:11px
}
.proof-title{
  font-size:clamp(37px,4.3vw,62px)
}
.cta-panel h2,.service-feature h2{
  font-size:clamp(32px,3.7vw,52px)
}
.product-overlay h3{
  font-size:14px
}
.product-overlay span{
  font-size:10px
}
.service-row h2{
  font-size:clamp(23px,2.7vw,40px)
}
.contact-form h2{
  font-size:clamp(31px,3.5vw,48px)
}
.footer-brand>p,.footer-links a,.footer-contact{
  font-size:10px
}
/* Responsive layout */
@media(max-width:900px){
  .hero-content,.hero-media{
    min-height:0
  }
  .hero-media{
    min-height:340px;
    max-height:390px
  }
  .hero-content{
    padding-top:37px;
    padding-bottom:42px
  }
  .hero h1{
    font-size:clamp(42px,11vw,62px);
    margin:15px 0 18px
  }
  .hero-summary p{
    font-size:11px
  }
  .hero-project{
    min-width:145px
  }
  .section-head h2{
    font-size:clamp(30px,9vw,49px)
  }
  .collection-heading h1,.services-intro h1,.about-intro h1,.contact-intro h1{
    font-size:clamp(42px,11vw,64px)
  }
  .proof-title{
    font-size:clamp(37px,10vw,56px)
  }
  .cta-panel h2,.service-feature h2{
    font-size:clamp(31px,9vw,48px)
  }
  .service-row h2{
    font-size:clamp(23px,7vw,35px)
  }
}
/* Image-backed inner page banners */
.page-hero{
  position:relative;
  display:flex;
  align-items:flex-end;
  min-height:286px;
  overflow:hidden;
  background:var(--charcoal);
  color:var(--white)
}
.page-hero>img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.58) saturate(.82)
}
.page-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(17,17,17,.33)
}
.page-hero-overlay{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:54px 4.2vw 48px
}
/* Shared controls and type */
.page-hero .eyebrow{
  color:var(--red)
}
.page-hero h1{
  max-width:760px;
  margin:13px 0 12px;
  font-size:clamp(42px,5.3vw,72px);
  font-weight:800;
  line-height:.94;
  letter-spacing:-.08em
}
.page-hero-overlay>p:last-child{
  max-width:450px;
  margin:0;
  color:#ededed;
  font-size:12px;
  line-height:1.55
}
.products-hero>img{
  object-position:center 58%
}
.services-hero>img{
  object-position:center 45%
}
.about-hero>img{
  object-position:center 48%
}
.contact-hero>img{
  object-position:center 50%
}
/* Responsive layout */
@media(max-width:900px){
  .page-hero{
    min-height:235px
  }
  .page-hero-overlay{
    padding:38px 7vw 33px
  }
  .page-hero h1{
    font-size:clamp(40px,10vw,59px);
    margin:11px 0 10px
  }
  .page-hero-overlay>p:last-child{
    font-size:11px
  }
  .collection-heading{
    padding-top:38px
  }
}
/* Navigation scale and spacing */
.desktop-nav{
  gap:30px;
  font-size:10.5px;
  letter-spacing:.07em
}
.desktop-nav a,.desktop-nav .nav-contact{
  text-transform:uppercase
}
.mobile-menu nav a{
  text-transform:uppercase
}
@media(max-width:1100px) and (min-width:901px){
  .desktop-nav{
    gap:20px;
    font-size:9.5px
  }
}
/* Show complete door height inside the existing hero frame */
.hero-media{
  background:#242424
}
.hero-media img.hero-slide{
  object-fit:cover;
  object-position:center center;
  background:#242424
}
/* Improve secondary text readability */
/* Design tokens */
:root{
  --muted:#0c0c0c
}
.hero-summary p,.trust-item div span,.collection-heading>p:last-child,.services-intro>p,.about-intro>p,.contact-intro>p,.service-row p,.featured-card span,.product-overlay span,.form-intro,.contact-process p{
  color:#0c0c0c;
  font-size:11px
}
.collection-toolbar{
  color:#0c0c0c
}
/* About history and company context */
.about-origin{
  padding:72px 4.2vw;
  background:var(--white);
  border-bottom:1px solid var(--soft)
}
.about-origin-inner{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:8vw;
  align-items:start;
  max-width:1280px;
  margin:0 auto
}
.about-origin-marker{
  display:grid;
  gap:8px
}
.about-origin-marker strong{
  font-size:clamp(70px,9vw,128px);
  font-weight:800;
  line-height:.82;
  letter-spacing:-.1em
}
.about-origin-marker span{
  color:#0c0c0c;
  font-size:11px
}
.about-origin-copy{
  max-width:700px
}
.about-origin-copy h2{
  max-width:620px;
  margin:13px 0 20px;
  font-size:clamp(36px,4.2vw,60px);
  font-weight:800;
  line-height:.96;
  letter-spacing:-.075em
}
.about-origin-copy p:not(.eyebrow){
  max-width:620px;
  margin:0 0 16px;
  color:#0c0c0c;
  font-size:11px;
  line-height:1.7
}
.about-timeline{
  padding:70px 4.2vw 78px;
  background:var(--paper)
}
.about-timeline .section-head{
  padding-bottom:26px
}
.about-timeline-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:1280px;
  margin:0 auto
}
.about-timeline-grid article{
  min-height:145px;
  padding:22px 20px;
  border-top:3px solid var(--red);
  background:var(--white)
}
.about-timeline-grid strong{
  font-size:13px;
  font-weight:800
}
.about-timeline-grid p{
  max-width:300px;
  margin:12px 0 0;
  color:#0c0c0c;
  font-size:11px;
  line-height:1.6
}
/* Responsive layout */
@media(max-width:900px){
  .about-origin{
    padding:55px 7vw
  }
  .about-origin-inner{
    grid-template-columns:1fr;
    gap:35px
  }
  .about-origin-marker strong{
    font-size:82px
  }
  .about-origin-copy h2{
    font-size:clamp(34px,9vw,50px)
  }
  .about-timeline{
    padding:58px 7vw 65px
  }
  .about-timeline-grid{
    grid-template-columns:1fr;
    gap:10px
  }
  .about-timeline-grid article{
    min-height:0
  }
}


/* Six product groups fit across the desktop catalogue row. */
@media(min-width:901px){
  .collection-categories{
    grid-template-columns:repeat(6,1fr)
  }
}


/* Keep all five home hero categories on one desktop row. */
@media(min-width:901px){
  .hero-projects{
    grid-template-columns:repeat(5,minmax(0,1fr));
    grid-auto-flow:column
  }
  .hero-project{
    min-width:0
  }
  .range-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
    grid-auto-flow:column
  }
}

/* Direct contact panel used after removing the contact form. */
.contact-direct{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  max-width:1280px;
  margin:48px auto 0;
  padding:44px;
  border:1px solid var(--soft);
  background:var(--white)
}
.contact-direct-copy{
  max-width:650px
}
.contact-direct-copy h2{
  max-width:620px;
  margin:13px 0 18px;
  font-size:clamp(35px,4vw,55px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-.075em
}
.contact-direct-copy>p:last-child{
  max-width:550px;
  margin:0;
  color:#0c0c0c;
  font-size:11px;
  line-height:1.65
}
.requested-product{
  margin:0 0 16px;
  color:#0c0c0c;
  font-size:11px
}
.contact-direct-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:12px
}
.contact-direct-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom:1px solid currentColor;
  padding-bottom:5px;
  color:var(--ink);
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em
}
.contact-direct-link:hover{
  color:var(--red)
}

@media(max-width:900px){
  .contact-direct{
    display:block;
    margin-top:35px;
    padding:32px 7vw 36px
  }
  .contact-direct-actions{
    justify-content:flex-start;
    margin-top:27px
  }
}




