:root{
  --bg:#0b1220;
  --panel:#0f1a30;
  --card:#111c34;
  --card2:#0e1730;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.12);
  --accent:#ffb020;
  --accent2:#2dd4bf;
  --shadow: 0 18px 45px rgba(0,0,0,.28);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:linear-gradient(180deg, #081025 0%, #050a14 55%, #050a14 100%);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.topbar{
  background:rgba(255,255,255,.04);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-weight:600;
  font-size:12px;
  background:rgba(255,255,255,.06);
}
.topbar-right{
  display:flex;
  gap:14px;
  align-items:center;
}
.toplink{
  font-size:13px;
  text-decoration:none;
  color:rgba(234,240,255,.9);
}
.toplink:hover{opacity:.9}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,10,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(255,176,32,.95), rgba(45,212,191,.85));
  color:#091021;
}
.brand-name{display:block;font-weight:900;letter-spacing:.2px}
.brand-sub{display:block;font-size:12px;color:var(--muted)}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color:rgba(234,240,255,.9);
  font-weight:600;
  font-size:14px;
}
.nav a:hover{opacity:.9}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  height:2px;
  width:18px;
  background:rgba(234,240,255,.85);
  margin:4px auto;
  border-radius:99px;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:12px 18px 18px 18px;
  display:grid;
  gap:10px;
}
.mobile-nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.1px;
  cursor:pointer;
}
.btn-wide{width:100%}
.btn-row{display:flex;gap:10px;flex-wrap:wrap}

.btn-primary{
  background:linear-gradient(135deg, rgba(255,176,32,.98), rgba(255,125,0,.92));
  border-color:rgba(255,176,32,.28);
  color:#091021;
}
.btn-primary:hover{filter:brightness(1.02)}
.btn-ghost{
  background:rgba(255,255,255,.04);
  color:rgba(234,240,255,.95);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

.hero{
  position:relative;
  padding:48px 0 26px 0;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,16,37,.22), rgba(5,10,20,.92)),
    url("https://images.unsplash.com/photo-1530731141654-5993c3016c77?auto=format&fit=crop&w=1920&q=70");
  background-size:cover;
  background-position:center;
  opacity:.95;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.hero-copy{
  padding:18px 0;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero p{
  margin:0 0 18px 0;
  color:rgba(234,240,255,.82);
  font-size:16px;
  max-width:54ch;
}
.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:16px;
}
.meta-card{
  background:rgba(8,16,37,.58);
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px 12px;
  box-shadow: var(--shadow);
}
.meta-title{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}
.meta-value{
  font-weight:900;
  margin-top:4px;
  font-size:13px;
}

.hero-panel{
  display:flex;
  justify-content:flex-end;
}
.panel-card{
  width:100%;
  max-width:420px;
  background:rgba(9,16,33,.72);
  border:1px solid rgba(234,240,255,.16);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.panel-title{font-weight:900;font-size:16px}
.panel-actions{display:grid;gap:10px;margin-top:14px}
.panel-note{
  margin:12px 0 0 0;
  font-size:12px;
  color:var(--muted);
}
.panel-note a{color:rgba(255,176,32,.98)}
.checklist{
  list-style:none;
  padding:0;
  margin:10px 0 0 0;
  display:grid;
  gap:8px;
}
.checklist li{
  padding-left:26px;
  position:relative;
  color:rgba(234,240,255,.86);
  font-weight:600;
  font-size:14px;
}
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:18px;
  height:18px;
  border-radius:8px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:rgba(45,212,191,.16);
  border:1px solid rgba(45,212,191,.3);
  color:rgba(45,212,191,.98);
}

.section{
  padding:26px 0;
}
.section-alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  margin-bottom:18px;
}
.section-head p{
  margin:0;
  color:var(--muted);
}

.grid{
  display:grid;
  gap:12px;
}
.grid-2{grid-template-columns: repeat(2, minmax(0, 1fr))}
.grid-3{grid-template-columns: repeat(3, minmax(0, 1fr))}

.card{
  background:rgba(10,18,36,.72);
  border:1px solid rgba(234,240,255,.14);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card-tight{padding:16px}
.card h3{
  margin:0 0 8px 0;
  font-size:16px;
}
.card p{margin:0;color:rgba(234,240,255,.78)}
.card-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(255,176,32,.12);
  border:1px solid rgba(255,176,32,.24);
  margin-bottom:10px;
  font-size:18px;
}

.callout{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(45,212,191,.18);
  background:linear-gradient(135deg, rgba(45,212,191,.10), rgba(255,176,32,.08));
}
.callout-title{font-weight:900}
.callout-sub{color:rgba(234,240,255,.78);font-size:13px;margin-top:2px}

.hours-table{
  width:100%;
  border-collapse:collapse;
  font-weight:700;
}
.hours-table td{
  padding:10px 0;
  border-bottom:1px solid rgba(234,240,255,.10);
}
.hours-table tr:last-child td{border-bottom:none}
.hours-table td:last-child{
  text-align:right;
  color:rgba(234,240,255,.84);
  font-weight:800;
}

.bullets{
  margin:10px 0 0 18px;
  color:rgba(234,240,255,.80);
  display:grid;
  gap:8px;
  font-weight:600;
}
.spacer{height:14px}

.map-card iframe,
.map-mini iframe{
  width:100%;
  height:340px;
  border:0;
  border-radius:16px;
}
.map-mini iframe{height:260px}

.mini{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(234,240,255,.10);
}
.mini-title{
  font-weight:900;
  margin-bottom:6px;
}
.mini a{color:rgba(255,176,32,.98);text-decoration:none}

.review-summary{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:12px;
}
.stars{
  font-weight:900;
  letter-spacing:.8px;
}
.quote{
  font-size:26px;
  font-weight:900;
  opacity:.85;
  margin-bottom:6px;
}
.reviewer{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}

.form{
  display:grid;
  gap:10px;
  margin-top:10px;
}
label{
  display:grid;
  gap:6px;
  font-weight:800;
  font-size:13px;
  color:rgba(234,240,255,.90);
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color:rgba(255,176,32,.45);
  box-shadow: 0 0 0 4px rgba(255,176,32,.12);
}
.small{font-size:12px}
.muted{color:var(--muted)}
.detail{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(234,240,255,.10);
}
.detail:last-of-type{border-bottom:none}
.detail-label{color:var(--muted);font-weight:900;font-size:12px}
.detail-value{font-weight:800;color:rgba(234,240,255,.88)}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background:rgba(255,255,255,.02);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{text-decoration:none;color:rgba(234,240,255,.85);font-weight:800;font-size:13px}
.footer-links a:hover{opacity:.9}

.call-fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:60;
  width:62px;
  height:62px;
  border-radius:22px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.2px;
  color:#091021;
  background:linear-gradient(135deg, rgba(255,176,32,.98), rgba(45,212,191,.88));
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}
.call-fab:hover{filter:brightness(1.03)}


.hide-sm{display:flex}
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr}
  .hero h1{font-size:38px}
  .hero-meta{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .nav{display:none}
  .menu-btn{display:inline-block}
  .hide-sm{display:none}
  .topbar-right{gap:10px}
}
