:root{
  --bg0:#05070a;
  --bg1:#070b12;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --green:#9fd33b;
  --blue:#0f4c81;
  --radius:22px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(15,76,129,.15), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(159,211,59,.12), transparent 60%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* HEADER */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,7,10,.65);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--stroke);
}

.navrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
  min-height:92px;
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  height:72px;
  width:auto;
  display:block;
}

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

.nav a{
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
}

.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.nav a.active{
  color:var(--text);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:16px;
  border:1px solid var(--stroke);
  font-weight:800;
}

.btn-primary{
  background:linear-gradient(135deg, rgba(159,211,59,.35), rgba(15,76,129,.25));
}

.btn-ghost{
  background:rgba(255,255,255,.05);
}

/* HERO */
.hero{padding:70px 0 40px}

.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.h1{
  font-size:clamp(38px,4vw,64px);
  line-height:1.05;
  margin:12px 0;
}

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:64ch;
}

.panel{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:22px;
}

/* CONTENT */
.section{padding:56px 0}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:22px;
}

.list{
  padding-left:18px;
  color:var(--muted);
}

/* HIGH VISIBILITY CONTACT + ADDRESS */
.contactStack{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.contactLink{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
}

.contactLink:hover{
  background:rgba(255,255,255,.08);
}

.contactLeft{display:flex;flex-direction:column;gap:4px}

.contactLabel{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.contactValue{
  font-size:18px;
  font-weight:900;
  color:rgba(255,255,255,.96);
  line-height:1.25;
}

.contactHint{
  color:rgba(255,255,255,.66);
  font-size:12px;
}

.contactArrow{
  color:rgba(255,255,255,.70);
  font-weight:900;
  font-size:18px;
  line-height:1;
  padding-top:18px;
}

.locationCallout{
  margin-top:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(159,211,59,.32);
  background:rgba(159,211,59,.10);
  box-shadow:
    0 0 0 1px rgba(159,211,59,.25),
    0 10px 30px rgba(0,0,0,.35);
}

.locationTitle{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.locationTitle::before{content:"📍 "}

.locationAddr{
  margin-top:6px;
  font-size:20px;
  font-weight:900;
  line-height:1.25;
  color:rgba(255,255,255,.98);
}

.locationSub{
  margin-top:6px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}

.mapBtn{
  margin-top:12px;
  width:100%;
  justify-content:center;
}

/* MAP EMBED */
.mapWrap{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
}

.mapFrame{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

/* FOOTER */
.footer{
  border-top:1px solid var(--stroke);
  padding:30px 0;
  color:var(--muted);
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footerAddr{
  font-size:16px;
  font-weight:800;
  color:rgba(255,255,255,.84);
  line-height:1.35;
}

/* RESPONSIVE */
@media(max-width:900px){
  .heroGrid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .brand img{height:60px}
  .nav{flex-wrap:wrap;justify-content:flex-end}
  .mapFrame{height:320px}
}

@media(max-width:600px){
  .brand img{height:52px}
  .contactValue{font-size:17px}
  .locationAddr{font-size:18px}
  .mapFrame{height:300px}
}
