:root{
  --bg:#0f0f10;
  --bg2:#18181b;
  --text:#f5f5f5;
  --muted:#b9b9b9;
  --accent:#d6b15e;
  --white:#ffffff;
  --danger:#d04747;
  --ok:#4caf70;
  --card:#202024;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6
}

a{color:inherit;text-decoration:none}

.container{width:min(1120px,92%);margin:auto}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(15,15,16,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #2c2c32
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0
}

/* 🔥 LOGO FIX */
.brand-box{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo{
  height:52px;
  width:52px;
  object-fit:contain;
  border-radius:50%;
  filter:drop-shadow(0 0 6px rgba(214,177,94,.45));
}

.brand-text{
  font-size:1.5rem;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--white);
}

.brand-text span{
  color:var(--accent);
}

/* NAV */
.menu{
  display:flex;
  gap:18px;
  align-items:center
}

.menu a{
  color:#eee;
  font-weight:600
}

.menu a:hover,.active{
  color:var(--accent)!important
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#111!important;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  border:0;
  cursor:pointer
}

.btn.secondary{background:#2e2e35;color:#fff!important}
.btn.danger{background:var(--danger);color:#fff!important}

.mobile-toggle{
  display:none;
  background:none;
  color:#fff;
  border:1px solid #444;
  border-radius:8px;
  padding:8px 10px
}

/* HERO */
.hero{position:relative}

.hero-img{
  width:100%;
  height:400px;
  object-fit:cover
}

.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  text-align:center
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px
}

.grid img{
  width:100%;
  border-radius:10px
}

/* SLOTS */
.slot{
  padding:10px;
  border-radius:6px;
  margin:5px
}

.free{background:#2ecc71}
.booked{background:#e74c3c;color:white}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  width:min(720px,92%);
  margin-left:4vw
}

.eyebrow{
  color:var(--accent);
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase
}

.hero h1{
  font-size:clamp(2.4rem,6vw,5.4rem);
  line-height:1;
  margin:12px 0
}

.hero p{
  font-size:1.2rem;
  color:#ddd;
  max-width:620px
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px
}

/* NOTICE */
.notice{
  background:linear-gradient(90deg,#402010,#24140a);
  border:1px solid var(--accent);
  padding:14px;
  border-radius:14px;
  margin:20px 0;
  color:#fff
}

.notice strong{color:var(--accent)}

/* SECTION */
.section{padding:70px 0}
.section h2{font-size:2.2rem;margin:0 0 24px}

.grid.two{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--card);
  border:1px solid #313139;
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.22)
}

.card h3{
  margin-top:0;
  color:var(--accent)
}

.muted{color:var(--muted)}

/* HOURS */
.hours{
  list-style:none;
  padding:0;
  margin:0
}

.hours li{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid #34343a;
  padding:9px 0
}

/* SOCIALS */
.socials{
  display:flex;
  gap:12px;
  margin-top:14px
}

.socials a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#2c2c32;
  border:1px solid #444;
  font-weight:800
}

.socials a:hover{
  background:var(--accent);
  color:#111
}

/* MAP */
.map{
  width:100%;
  height:360px;
  border:0;
  border-radius:18px;
  filter:grayscale(.15)
}

/* FORM */
.form{
  display:grid;
  gap:14px
}

.form input,.form textarea,.form select{
  width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid #444;
  background:#151519;
  color:#fff
}

.form textarea{min-height:140px}
.form label{font-weight:700}

/* MESSAGES */
.msg{
  padding:12px;
  border-radius:12px;
  margin:14px 0
}

.msg.ok{background:#123b22;border:1px solid var(--ok)}
.msg.err{background:#451717;border:1px solid var(--danger)}

/* FOOTER */
.footer{
  padding:35px 0;
  border-top:1px solid #2c2c32;
  background:#0a0a0b;
  color:#cfcfcf
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap
}

/* COOKIE */
.cookie{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:100;
  background:#1f1f25;
  border:1px solid #444;
  border-radius:18px;
  padding:18px;
  display:none;
  box-shadow:0 20px 50px rgba(0,0,0,.35)
}

.cookie.show{display:block}

/* TABLE */
.table{
  width:100%;
  border-collapse:collapse
}

.table th,.table td{
  border-bottom:1px solid #333;
  padding:10px;
  text-align:left
}

/* BADGES */
.badge{
  display:inline-block;
  padding:5px 10px;
  border-radius:999px;
  background:#333
}

.badge.ok{background:#174c2a}
.badge.wait{background:#4c3d17}

/* MOBILE */
@media(max-width:820px){
  .mobile-toggle{display:block}

  .menu{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:64px;
    background:#111;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 4%;
    border-bottom:1px solid #333
  }

  .menu.open{display:flex}

  .grid,.grid.two{grid-template-columns:1fr}

  .hero-content{margin:auto}

  .footer-grid{display:block}

  /* 🔥 MOBILE LOGO FIX */
  .logo{
    height:44px;
    width:44px;
  }

  .brand-text{
    font-size:1.25rem;
  }
}