:root{
  --bg:#f7f7f5;
  --text:#17212b;
  --muted:#5a6570;
  --line:#d9dde1;
  --dark:#2f3a43;
  --accent:#ef8f1f;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit}
.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.brand-mark{
  width:46px;
  height:46px;
  border-radius:12px;
  background:var(--dark);
  color:var(--white);
  display:grid;
  place-items:center;
  font-weight:700;
}
.brand-name{
  font-size:1.05rem;
  font-weight:700;
}
.brand-sub{
  font-size:.84rem;
  color:var(--muted);
}
.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{color:var(--text)}

.hero{
  background:linear-gradient(135deg, var(--dark), #44515b);
  color:var(--white);
  padding:88px 0 72px;
}
.hero-inner{
  max-width:800px;
}
.eyebrow{
  color:#ffd9a7;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  font-weight:700;
  margin:0 0 10px;
}
.hero h1{
  font-size:clamp(2rem, 5vw, 4.2rem);
  line-height:1.05;
  margin:0 0 18px;
}
.hero-text{
  max-width:680px;
  font-size:1.08rem;
  color:#f0f2f4;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  text-decoration:none;
  font-weight:700;
  background:transparent;
  color:var(--white);
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--accent);
  color:#111;
  border-color:var(--accent);
}

.section{
  padding:72px 0;
}
.section-alt{
  background:#ffffff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section h2{
  font-size:clamp(1.7rem, 4vw, 2.6rem);
  margin:0 0 18px;
}
.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:820px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:26px;
}
.card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
}
.card h3{
  margin-top:0;
  margin-bottom:10px;
  font-size:1.05rem;
}
.card p{
  margin:0;
  color:var(--muted);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.chips span{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  font-weight:600;
}

.brochure-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.brochure-box .btn{
  color:#111;
  border-color:var(--accent);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:22px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
}
.contact-card p{
  margin:8px 0 0;
  color:var(--muted);
}
.contact-card a{
  color:inherit;
  text-decoration:none;
}

.footer{
  background:var(--dark);
  color:var(--white);
  padding:22px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

@media (max-width: 760px){
  .topbar-inner{
    align-items:flex-start;
    flex-direction:column;
  }
  .hero{
    padding:70px 0 56px;
  }
}