:root{
  --bg:#0f1720;
  --muted:#9aa4ae;
  --accent:#e6e2d3;
  --max-width:1100px;
  --container-padding:20px;
  --radius:12px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0 20px;
  color:#111827;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

address a {
  color:#374151;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

section.hero {
  margin: 0 -20px;
}

/* layout */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-padding);
}

/* header */
.site-header{
  position:sticky;
  top:0;
  background:white;
  border-bottom:1px solid #eee;
  z-index:40;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand-title{
  font-weight:700;
  letter-spacing:0.2px;
  color:#111827;
  text-decoration:none;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#374151;
  font-weight:600;
  padding:6px 8px;
  border-radius:8px;
}

a.cta{
  text-decoration:none;
  font-weight:600;
  background:#111827;
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
}

/* Highlight active nav link */
.nav a.active {
  background-color: #111827;
  color: #ffffff;
}

/* Optionally, slightly different hover effect for nav */
.nav a:not(.active):hover {
  background-color: #f3f4f6; /* light gray on hover */
}

a.cta:not(.active):hover {
  background:#1c2840;
}

/* If you want a variant for .cta when active (if .cta used on services etc) */
a.cta.active {
  background-color: #333;
  color: #fff;
}

.menu-toggle{
  display:none;
  background:transparent;
  border:0;
  font-size:20px;
}

/* hero */
.hero{
  position:relative;
  min-height:52vh;
  display:flex;
  align-items:center;
  color:white;
  margin-bottom:28px;
}

.hero-image{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(15, 23, 32, 0.7) 0%, rgba(15, 23, 32, 0.4) 60%),
    /* linear-gradient(90deg, rgba(12,16,20,0.65), rgba(12,16,20,0.35)), */
    url('hero.jpg');
  background-size:cover;
  background-position:center;
  filter:contrast(1.05) saturate(0.95);
  z-index:0;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:48px 0;
}

.hero h1{
  margin:0 0 8px;
  font-size:clamp(28px,5vw,48px);
  letter-spacing:-0.02em;
}

.lead{
  margin:0 0 18px;
  font-size:1.05rem;
  color:rgba(255,255,255,0.92);
}

.btn{
  display:inline-block;
  background:#ffffff;
  color:#0f1720;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.btn:hover {
  background: #f3f4f6;
}

/* content sections */
.panel{
  padding:28px 0;
  border-top:1px solid #f2f4f7;
}

.small{padding-bottom:48px}

.site-footer{
  padding:18px 0;
  border-top:1px solid #eee;
  background:#fff;
  margin-top:20px;
  text-align:center;
  color:#6b7280;
  font-size:0.9rem;
}

/* responsive */
@media (max-width:800px){
  .nav{display:none}
  .menu-toggle{display:block}
  .nav.open{display:flex;flex-direction:column;position:absolute;right:16px;top:70px;background:#fff;padding:12px;border-radius:8px;box-shadow:0 6px 18px rgba(16,24,40,0.08)}
  .hero{min-height:48vh}
  .hero-content{padding:32px 0}
}

.social-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
}
