:root{
  --bg:#0b0b0f; --card:#121220; --text:#f2f2f6; --muted:#cdcde0; --line:#23233a;
  --accent:#ff6a00; --accent2:#ffb000; --good:#22c55e;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:16.5px;
  line-height:1.6;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(255,106,0,.22), transparent 60%),
              radial-gradient(900px 600px at 85% 0%, rgba(255,176,0,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{padding:24px 18px 96px; max-width:920px; margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:10;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  background: rgba(11,11,15,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.brand{font-weight:800; letter-spacing:.3px; text-decoration:none}
.topnav{display:flex; gap:14px}
.topnav a{text-decoration:none; color:var(--muted)}
.topnav a:hover{color:var(--text)}
.topnav a.active{color:var(--accent)}
.topnav .quiet{display:none}

.hero{
  padding:28px 24px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,18,32,.92), rgba(18,18,32,.55));
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.kicker{color:var(--muted); font-weight:600; font-size:15px; letter-spacing:.4px}
.h1{font-size:38px; line-height:1.1; margin:10px 0 8px; font-weight:900}
.tagline{color:var(--accent2); font-weight:800}
.sub{color:var(--muted); margin:12px 0 18px; line-height:1.6; font-size:16px}
.btnrow{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-block; text-decoration:none;
  padding:13px 18px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  font-size:15px;
}
.btn.primary{
  background: linear-gradient(90deg, rgba(255,106,0,.95), rgba(255,176,0,.92));
  border-color: rgba(255,176,0,.25);
  color:#111;
}
.grid{display:grid; gap:16px; margin-top:18px}
@media(min-width:720px){ .grid{grid-template-columns:1fr 1fr} .topnav .quiet{display:inline} }

.card{
  border:1px solid var(--line);
  background: rgba(18,18,32,.72);
  border-radius:18px;
  padding:20px;
}
.card h3{margin:0 0 10px; font-size:19px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:15.5px}
.muted{color:var(--muted)}

.reviewsbar{display:flex;justify-content:space-between;align-items:center;gap:16px}
.reviewsbar .h3{margin:2px 0 6px; font-size:20px; font-weight:900}
@media(max-width:720px){
  .reviewsbar{flex-direction:column;align-items:flex-start}
}
.pill{display:inline-flex; align-items:center; gap:8px; color:var(--muted); font-weight:700; font-size:13px}
.pill .dot{width:7px; height:7px; border-radius:99px; background:var(--good); display:inline-block}
.section{margin-top:22px}
.section h2{margin:0 0 12px; font-size:22px}
.list{margin:0; padding-left:20px; color:var(--muted); line-height:1.7; font-size:15.5px}
.hr{height:1px; background:var(--line); margin:16px 0}
.bottomnav{
  position:fixed; left:0; right:0; bottom:0; z-index:9;
  display:flex; justify-content:space-around;
  padding:10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,11,15,.9);
  border-top:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.bottomnav a{
  text-decoration:none; color:var(--muted); font-weight:800; font-size:14px;
  padding:10px 10px; border-radius:12px;
}
.bottomnav a:hover{color:var(--text); background: rgba(255,255,255,.03)}
.bottomnav a.active{color:var(--accent)}
.callfab{
  position:fixed; right:14px; bottom:74px; z-index:11;
  text-decoration:none;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,106,0,.95), rgba(255,176,0,.92));
  color:#111; font-weight:900;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.footer{border-top:1px solid var(--line); margin-top:28px; padding:24px 0 96px}
.footer-inner{color:var(--muted); line-height:1.65; font-size:15px}
.footer-brand{color:var(--text); font-weight:900}
.footer-meta a{color:var(--muted); text-decoration:none}
.footer-meta a:hover{color:var(--text)}
.dot{margin:0 8px; opacity:.7}

form .field{margin-bottom:16px}
label{display:block; margin-bottom:8px; font-weight:800; font-size:15px}
input, select, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size:16px;
}
textarea{min-height:100px}
small{color:var(--muted); font-size:14px; line-height:1.5}
.checkbox{display:flex; gap:10px; align-items:flex-start}
.checkbox input{width:18px; height:18px; margin-top:2px}
.notice{
  border:1px solid rgba(255,176,0,.25);
  background: rgba(255,176,0,.08);
  border-radius:16px;
  padding:12px 14px;
  color:var(--text);
}


.hero.hero--image{
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  color:var(--text);
}
.hero.hero--image::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,11,15,.30), rgba(11,11,15,.85));
}
.hero.hero--image > *{ position:relative; z-index:1; }

.hero--sign{ background-image:url('/img/hero-sign.jpg'); }
.hero--nightclub{ background-image:url('/img/hero-nightclub.jpg'); }
.hero--cowgirl{ background-image:url('/img/hero-cowgirl.jpg'); }
.hero--polewhite{ background-image:url('/img/hero-pole-white.jpg'); }

.banner{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  min-height:180px;
  margin-bottom:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.banner--sign{ background-image:url('/img/oh-sign.jpg'); }
.banner--nightclub{ background-image:url('/img/hero-nightclub.jpg'); }
.banner--cowgirl{ background-image:url('/img/hero-cowgirl.jpg'); }
.banner--polewhite{ background-image:url('/img/hero-pole-white.jpg'); }
.banner--guestlist{ background-image:url('/img/guestlist-redbikini.jpg'); }
.banner--guestlist2{ background-image:url('/img/guestlist-whitebikini.jpg'); }
.banner--darkhat{ background-image:url('/img/hero-darkhat.jpg'); }
.banner--denim{ background-image:url('/img/gallery-denim.jpg'); }
.banner::before{
  content:"";
  display:block;
  width:100%; height:100%;
  background: linear-gradient(180deg, rgba(11,11,15,.15), rgba(11,11,15,.85));
}
@media (min-width:720px){
  .banner{ min-height:240px; }
  .banner--sign{ min-height:320px; }
}

