:root{
  --bg:#070606;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --text:#f3f3f3;
  --muted: rgba(255,255,255,.72);
  --gold:#d8b24a;
  --gold2:#b88b2a;
  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(216,178,74,.18), transparent 55%),
    radial-gradient(900px 700px at 95% 10%, rgba(170,60,30,.18), transparent 55%),
    linear-gradient(180deg, #0a0707, #050404 55%, #000);
}

a{ color:inherit; }

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.pill{
  display:inline-flex;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
  color:var(--muted);
}
.topbar-cta{
  font-size:13px;
  text-decoration:none;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(216,178,74,.35);
  background: rgba(216,178,74,.08);
}

.header{
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-logo{ width:72px; height:auto; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap:20px;
}
.nav a{
  text-decoration:none;
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:14px;
  opacity:.95;
}
.nav a:hover{ opacity:1; }
.nav-btn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(216,178,74,.35);
  background: rgba(216,178,74,.08);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:20px;
  background: rgba(255,255,255,.8);
  margin:5px auto;
  border-radius:2px;
}

.mobile-nav{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:rgba(255,255,255,.88);
  font-weight:600;
}

.hero{
  padding:44px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero-copy p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
  max-width: 58ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:700;
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.btn:hover{ background: rgba(255,255,255,.08); }
.btn.primary{
  border-color: rgba(216,178,74,.40);
  background: linear-gradient(180deg, rgba(216,178,74,.22), rgba(216,178,74,.10));
}
.btn.small{ padding:10px 14px; font-size:14px; }

.hero-meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.meta-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:14px;
}
.meta-title{ font-weight:800; font-size:13px; color:rgba(255,255,255,.78); }
.meta-text{ margin-top:6px; font-weight:700; font-size:14px; }
.meta-text a{ text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.35); }

.hero-panel{
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-inner{
  padding:18px;
  height:100%;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(216,178,74,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18));
}
.panel-title{
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom:10px;
}
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:8px 0; }

.section{
  padding:38px 0;
}
.section h2{
  margin:0 0 10px;
  font-size:28px;
}
.muted{ color: var(--muted); margin:0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}

.deals-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:16px;
}
.deal-card{
  border-radius: 20px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  min-height: 240px;
}
.deal-card img{
  width:100%;
  height:240px;
  display:block;
  object-fit:cover;
  background:#111;
}
.deal-caption{
  padding:12px 12px 14px;
  font-weight:800;
  font-size:14px;
  color: rgba(255,255,255,.90);
}

.map-card{
  margin-top:14px;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.map-card iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}
.map-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding:14px;
  background: rgba(0,0,0,.28);
  border-top:1px solid rgba(255,255,255,.08);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}
.contact-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}
.contact-title{ font-weight:900; margin-bottom:8px; }
.contact-text a{ text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.35); }

.small-note{ margin-top:14px; font-size:18px; }

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  margin-top:18px;
  background: rgba(0,0,0,.22);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  color:rgba(255,255,255,.8);
  font-weight:700;
  font-size:13px;
}

/* Floating navigate button */
.float-nav{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:60;
  padding:14px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  color: rgba(255,255,255,.95);
  border:1px solid rgba(216,178,74,.35);
  background: linear-gradient(180deg, rgba(216,178,74,.20), rgba(216,178,74,.08));
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  display:none;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .deals-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .contact-grid{ grid-template-columns: 1fr; }
  .brand-logo{ width:64px; }
  .hero-copy h1{ font-size:36px; }
}




