
:root{
  --bg:#06111b;
  --panel:#091827;
  --text:#f3f6f8;
  --muted:#b8c2ca;
  --green:#93bd15;
  --line:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}
.site-header{
  position:sticky; top:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:14px 28px;
  background:rgba(2,10,17,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text); font-weight:700;
  letter-spacing:.04em;
}
.brand-mark{
  width:34px;height:34px;border:2px solid var(--green);
  display:grid;place-items:center;border-radius:5px;color:var(--green);
  font-weight:800;
}
.brand strong{color:var(--green)}
.nav{display:flex;gap:24px;align-items:center;flex-wrap:wrap}
.nav a{
  color:#fff;text-decoration:none;font-size:14px;padding:8px 0;
  border-bottom:2px solid transparent;
}
.nav a:hover,.nav a.active{color:var(--green);border-color:var(--green)}
.cta{
  background:var(--green);color:#0a1207!important;padding:10px 18px!important;
  border-radius:6px;font-weight:700;border:0!important;
}
.page{
  width:min(1600px,100%);
  margin:0 auto;
}
.hero-shot{
  width:100%;
  display:block;
  height:auto;
  background:#000;
}
.page-caption{
  padding:18px 28px 24px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}
.footer{
  padding:28px;
  text-align:center;
  color:#90a0ab;
  border-top:1px solid var(--line);
}



.brand-logo{
  height:52px;
  width:auto;
  display:block;
}
.nav-item{
  position:relative;
}
.nav-item > a{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  padding:10px;
  background:#07131f;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.18s ease;
  z-index:2000;
}
.dropdown a{
  display:block;
  padding:10px 12px;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  border-bottom:none!important;
}
.dropdown a:hover{
  background:rgba(147,189,21,.10);
  color:var(--green);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}



/* Compact horizontal brand treatment */
.site-header{
  min-height:72px;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  width:245px;
  height:58px;
  overflow:hidden;
}
.brand-logo{
  width:235px;
  height:58px;
  object-fit:cover;
  object-position:center 67%;
  display:block;
}
@media (max-width:1100px){
  .brand{width:205px;height:52px}
  .brand-logo{width:198px;height:52px}
}


/* FINAL HEADER LOGO — exact user-provided horizontal artwork */
.site-header {
  min-height: 76px;
}
.brand {
  display:flex;
  align-items:center;
  flex:0 0 auto;
  width: 300px;
  height: 68px;
  overflow: visible;
}
.brand-logo {
  display:block;
  width: 300px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width:1100px) {
  .brand { width:245px; height:58px; }
  .brand-logo { width:245px; max-height:58px; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* MOBILE MENU */

.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:#fff;
  font-size:30px;
  line-height:1;
  padding:8px;
  cursor:pointer;
}

@media (max-width:900px){

  .site-header{
    position:sticky;
    top:0;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:10px 16px;
    min-height:68px;
  }

  .brand{
    width:200px;
    height:50px;
  }

  .brand-logo{
    width:200px;
    height:auto;
    max-height:50px;
    object-fit:contain;
    object-position:left center;
  }

  .menu-toggle{
    display:block;
    flex:0 0 auto;
  }

  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    padding:16px 22px 20px;
    background:#06111b;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    border-top:1px solid rgba(255,255,255,.10);
    box-shadow:0 12px 30px rgba(0,0,0,.35);
  }

  .nav.open{
    display:flex;
  }

  .nav > a,
  .nav-item{
    width:100%;
  }

  .nav a{
    padding:10px 0;
    font-size:16px;
  }

  .nav-item > a{
    width:100%;
    justify-content:space-between;
  }

  .dropdown{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    min-width:0;
    width:100%;
    padding:4px 0 6px 18px;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
  }

  .nav-item.open .dropdown{
    display:block;
  }

  .dropdown a{
    padding:8px 0;
    font-size:15px;
  }

  .cta{
    display:block !important;
    width:auto !important;
    padding:10px 16px !important;
    margin-top:8px;
  }
}

/* HOME SEO SECTION */

.home-seo{
  max-width:1100px;
  margin:0 auto;
  padding:34px 28px 22px;
  text-align:center;
}

.home-seo h1{
  margin:0 0 14px;
  font-size:clamp(28px,4vw,46px);
  line-height:1.12;
  color:#f3f6f8;
}

.home-seo p{
  max-width:920px;
  margin:0 auto 18px;
  color:#b8c2ca;
  font-size:17px;
  line-height:1.7;
}

.home-seo-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.home-seo-links a{
  display:inline-block;
  padding:9px 14px;
  border:1px solid rgba(147,189,21,.45);
  border-radius:999px;
  color:#f3f6f8;
  text-decoration:none;
  font-size:14px;
}

.home-seo-links a:hover{
  color:#93bd15;
  border-color:#93bd15;
}

/* MOBILE — compact and proportional to the hero image */
@media (max-width:700px){

  .home-seo{
    padding:16px 14px 14px;
  }

  .home-seo h1{
    font-size:21px;
    line-height:1.18;
    margin:0 0 9px;
  }

  .home-seo p{
    max-width:100%;
    font-size:12.5px;
    line-height:1.45;
    margin:0 auto 12px;
  }

  .home-seo-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }

  .home-seo-links a{
    width:100%;
    padding:7px 4px;
    font-size:11.5px;
    line-height:1.2;
    text-align:center;
  }

  .page-caption{
    padding:14px 18px 16px;
    font-size:12px;
  }

  .footer{
    padding:20px 16px;
    font-size:13px;
  }
}
