:root{
  --bg:#0b0f14;
  --panel:#101824;
  --text:#e7eef7;
  --muted:#9fb0c2;
  --brand:#d7b65d;
  --border:rgba(255,255,255,0.12);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{color:inherit}

.container{max-width:1100px;margin:0 auto;padding:0 1rem}

/* Header */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  background:rgba(11,15,20,0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
  z-index:50;
}

.header-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.75rem 1rem;
  gap:1rem;
  flex-wrap:nowrap;
  position:relative; /* anchors mobile dropdown */
}

.brand{
  display:flex;
  align-items:center;
  gap:0.75rem;
  text-decoration:none;
  min-width:0;
}

.brand-logo{
  display:block;
  border-radius:14px;
  height:64px;
  width:auto;
}

.brand-name{
  font-weight:700;
  letter-spacing:0.2px;
  line-height:1.1;
}

.site-nav{
  display:flex;
  gap:0.9rem;
  flex-wrap:wrap;
}

.site-nav a{
  text-decoration:none;
  color:var(--muted);
}

.site-nav a:hover{color:var(--text)}

/* Main spacing under fixed header */
.site-main{padding-top:225px}

/* Hero */
.hero{padding:3rem 0;border-bottom:1px solid var(--border)}
.hero-content{max-width:850px;margin:0 auto;text-align:left;padding:0 1rem}
h1{font-size:2.25rem;margin:0 0 0.75rem}
.highlight{color:var(--brand)}
.tagline{color:var(--muted);margin:0 0 0.75rem}
.description{color:var(--text);opacity:0.95;margin:0 0 1.25rem}
.hero-cta{display:flex;gap:0.75rem;flex-wrap:wrap}

/* Buttons */
.btn{
  display:inline-block;
  padding:0.65rem 1rem;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
}

.btn-primary{
  background:var(--brand);
  color:#1b1300;
  border-color:transparent;
  font-weight:700;
}

.btn-secondary{background:transparent;color:var(--text)}

/* Sections / Forms */
.section-title{margin:0 0 0.35rem}
.section-subtitle{margin:0 0 1.25rem;color:var(--muted)}

.form-block{
  margin-top:1.5rem;
  padding:1rem;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(16,24,36,0.55);
}

.contact-form{display:grid;gap:0.85rem}

.form-group label{
  display:block;
  margin-bottom:0.35rem;
  color:var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:0.65rem 0.7rem;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
}

.form-group textarea{min-height:110px;resize:vertical}

.checklist{display:grid;gap:0.5rem}
.checklist label{color:var(--text)}

/* Honeypot */
.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Alerts */
.alert{
  padding:0.75rem 0.9rem;
  border-radius:12px;
  border:1px solid var(--border);
  margin-bottom:0.75rem;
}

.alert-success{background:rgba(0,128,0,0.15)}
.alert-error{background:rgba(180,0,0,0.15)}
.alert-info{background:rgba(0,90,180,0.15)}

/* Footer */
.site-footer{border-top:1px solid var(--border);padding:2rem 1rem;margin-top:3rem}
.footer-content{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  justify-content:space-between;
}

.footer-section ul{list-style:none;padding:0;margin:0}
.footer-section li{margin:0.25rem 0}
.footer-section a{text-decoration:none;color:var(--muted)}
.footer-section a:hover{color:var(--text)}
.footer-bottom{max-width:1100px;margin:1rem auto 0;color:var(--muted);padding:0 1rem}
.small-note{color:var(--muted)}

/* Hamburger toggle (desktop hidden) */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:0.55rem 0.7rem;
}

.nav-toggle-bars{
  display:block;
  width:24px;
  height:2px;
  background:currentColor;
  position:relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width:24px;
  height:2px;
  background:currentColor;
}

.nav-toggle-bars::before{top:-7px}
.nav-toggle-bars::after{top:7px}

/* Mobile */
@media (max-width: 820px){
  .brand-logo{height:52px}
  .brand-name{font-size:1rem}

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:1rem;
    right:1rem;
    flex-direction:column;
    gap:0.25rem;
    padding:0.6rem;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(11,15,20,0.95);
    backdrop-filter:blur(8px);
  }

  .site-nav.is-open{display:flex}

  .site-nav a{
    display:block;
    padding:0.75rem;
    border-radius:12px;
  }

  .site-nav a:hover{background:rgba(255,255,255,0.06)}
}
