
:root{
  --dark:#0d1115;
  --dark-2:#141a20;
  --white:#ffffff;
  --muted:#c9d0d6;
  --muted-dark:#55606a;
  --line:rgba(255,255,255,0.12);
  --accent:#78d356;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#111111;
}
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(8,10,12,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-wrap{
  min-height:108px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
}
.logo{
  height:98px;
  width:auto;
  display:block;
}
.nav{
  display:flex;
  justify-content:center;
  gap:26px;
  align-items:center;
}
.nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.02em;
}
.nav-item{
  position:relative;
}
.nav-dropdown > a::after{
  content:" ▾";
  font-size:12px;
}
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:190px;
  background:#111111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px 0;
  display:none;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}
.dropdown-menu a{
  display:block;
  padding:12px 16px;
  white-space:nowrap;
}
.dropdown-menu a:hover{
  background:rgba(255,255,255,.06);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu{
  display:block;
}
.call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:var(--accent);
  color:#111111;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#111;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.34) 54%, rgba(0,0,0,.18) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  color:#ffffff;
  padding:88px 0;
  max-width:790px;
}
.subpage-hero{
  background:linear-gradient(180deg, #11161b 0%, #161d24 100%);
  color:#fff;
  padding:68px 0;
}
.subpage-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.subpage-title{
  margin:0;
  font-size:clamp(42px, 6vw, 70px);
  line-height:.98;
}
.subpage-image-wrap{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#0f1216;
}
.subpage-image{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
}
.eyebrow{
  margin:0 0 14px 0;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#e4e9ee;
}
.eyebrow-dark{ color:#597160; }
h1{
  margin:0;
  font-size:clamp(42px, 6vw, 78px);
  line-height:.97;
}
h2{
  margin:0;
  font-size:clamp(32px, 4vw, 52px);
}
h3{
  margin:0 0 10px 0;
  font-size:24px;
}
.hero-text{
  max-width:650px;
  color:#eef2f5;
  font-size:20px;
  line-height:1.65;
  margin:18px 0 0;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.hero-points span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#ffffff;
  font-weight:700;
  font-size:14px;
}
.hero-actions{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
}
.btn-primary{
  background:#ffffff;
  color:#111111;
}
.btn-secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.34);
  color:#ffffff;
}
.btn-secondary-dark{
  border-color:rgba(255,255,255,.22);
}
.section{
  padding:76px 0;
}
.section-dark{
  background:var(--dark);
  color:#ffffff;
}
.section-head{
  margin-bottom:30px;
}
.section-copy{
  max-width:760px;
  margin:16px 0 0;
  font-size:18px;
  line-height:1.7;
  color:var(--muted-dark);
}
.section-copy-light{
  color:var(--muted);
}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.spec-card{
  background:#111111;
  color:#ffffff;
  border-radius:22px;
  padding:24px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}
.spec-label{
  display:block;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#aeb7c1;
  margin-bottom:10px;
}
.spec-card strong{
  font-size:28px;
  line-height:1.2;
}
.machine-band{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}
.band-card{
  background:#f5f7f8;
  border-radius:22px;
  padding:24px;
  border:1px solid #e8ecef;
}
.band-card p{
  margin:0;
  color:#4c565e;
  line-height:1.7;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.gallery-item{
  aspect-ratio:4 / 3;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#1a1f26;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.contact-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:start;
}
.contact-copy p{
  max-width:660px;
  font-size:18px;
  line-height:1.7;
  color:#49525a;
}
.section-dark .contact-copy p,
.section-dark .contact-copy .section-copy-light{
  color:var(--muted);
}
.contact-card{
  background:#111111;
  color:#ffffff;
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.contact-row + .contact-row{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.1);
}
.contact-label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#98a5b3;
  font-weight:800;
  margin-bottom:8px;
}
.contact-value{
  color:#ffffff;
  text-decoration:none;
  font-size:24px;
  font-weight:800;
  word-break:break-word;
}
.blank-specs-box{
  margin-top:24px;
  background:#f5f7f8;
  border:1px dashed #d7dde2;
  border-radius:22px;
  padding:28px;
}
.blank-specs-box p{
  margin:0;
  color:#4c565e;
  line-height:1.7;
}
@media (max-width: 980px){
  .nav-wrap{
    grid-template-columns:1fr;
    justify-items:center;
    padding:14px 0;
    min-height:auto;
  }
  .nav{
    flex-wrap:wrap;
    gap:16px;
  }
  .logo{
    height:78px;
  }
  .spec-grid,
  .machine-band,
  .gallery-grid,
  .contact-wrap,
  .subpage-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 720px){
  .hero{
    min-height:70vh;
  }
  h1{
    font-size:clamp(36px, 10vw, 56px);
  }
  .hero-text{
    font-size:18px;
  }
  .call-btn{
    width:100%;
  }
}
