
:root{
  --bg:#0b0b0b;
  --bg2:#101010;
  --card:#141414;
  --muted:#b8b8b8;
  --text:#f2f2f2;
  --yellow:#f5c400;
  --yellow2:#ffd94d;
  --green:#37d67a;
  --red:#ff4d4d;
  --gray:#6c6c6c;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:16px;
  --radius2:22px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(245,196,0,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(245,196,0,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), #070707 70%);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--container); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.notice-bar{
  border-bottom:1px solid var(--border);
  background: rgba(245,196,0,.12);
}
.notice-bar__inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.94);
  font-size:14px;
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; gap:10px; align-items:center}
.brand__logo{width:44px; height:44px; border-radius:12px; object-fit:cover; border:1px solid var(--border)}
.brand__name{font-weight:900; letter-spacing:.3px}
.brand__sub{font-size:12px; color:var(--muted); margin-top:-2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{font-size:14px; color:rgba(255,255,255,.85)}
.nav a:hover{color:#fff}
.nav__burger{display:none; border:1px solid var(--border); background:transparent; color:#fff; border-radius:12px; padding:8px 10px; font-size:16px}
.nav__mobile{
  display:none;
  padding:10px 18px 16px;
  border-top: 1px solid var(--border);
  gap:10px;
}
.nav__mobile a{display:block; padding:10px 12px; border-radius:12px; background: rgba(255,255,255,.04); border:1px solid var(--border)}

.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 16px;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn:hover{transform: translateY(-1px); transition: .15s ease; background: rgba(255,255,255,.06)}
.btn--primary{
  background: linear-gradient(180deg, var(--yellow2), var(--yellow));
  color:#101010;
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 12px 30px rgba(245,196,0,.20);
}
.btn--primary:hover{filter:brightness(1.03)}
.btn--ghost{
  background: transparent;
  border-color: rgba(245,196,0,.35);
}
.btn--sm{padding:10px 12px; border-radius:12px; font-size:13px}
.btn--block{width:100%}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid rgba(245,196,0,.25);
  background: rgba(245,196,0,.10);
  color: rgba(255,255,255,.92);
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.2px;
}

.hero{position:relative; overflow:hidden; border-bottom:1px solid var(--border)}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.88), rgba(10,10,10,.62) 55%, rgba(10,10,10,.86)),
    url("../assets/mockup.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  opacity:.35;
  transform: scale(1.05);
}
.hero__inner{position:relative; padding:56px 0 28px; display:grid; grid-template-columns: 1.25fr .95fr; gap:26px; align-items:center}
.hero h1{margin:12px 0 10px; font-size:44px; line-height:1.06}
.hero__lead{margin:0; color:rgba(255,255,255,.84); font-size:16px; line-height:1.55}
.hero__cta{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.hero__chips{margin-top:18px; display:flex; flex-wrap:wrap; gap:10px; color:rgba(255,255,255,.86); font-size:13px}
.hero__chips span{padding:8px 10px; border-radius:999px; border:1px solid var(--border); background: rgba(255,255,255,.03)}

.card{background: rgba(255,255,255,.04); border:1px solid var(--border); border-radius: var(--radius2); box-shadow: var(--shadow)}
.card--media{overflow:hidden}
.card--media img{width:100%; height:auto}
.card__caption{padding:10px 14px; color:rgba(255,255,255,.82); font-size:13px}

.section{padding:64px 0}
.section--alt{
  background: radial-gradient(800px 420px at 20% 20%, rgba(245,196,0,.10), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size:30px}
.section__head p{margin:0; color:rgba(255,255,255,.80); line-height:1.6}

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

.tile{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px 16px 18px;
}
.tile__icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(245,196,0,.12);
  border:1px solid rgba(245,196,0,.22);
  margin-bottom:12px;
  font-size:18px;
}
.tile h3{margin:0 0 6px}
.tile p{margin:0; color:rgba(255,255,255,.78); line-height:1.55; font-size:14px}

.price{
  background: rgba(20,20,20,.70);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  padding:18px;
}
.price--featured{
  border-color: rgba(245,196,0,.40);
  box-shadow: 0 16px 50px rgba(245,196,0,.10);
}
.price__tag{font-weight:900; letter-spacing:.3px}
.price__value{font-size:34px; font-weight:900; margin:8px 0 12px}
.price ul{margin:0 0 14px; padding-left:18px; color:rgba(255,255,255,.78)}
.price li{margin:8px 0; font-size:14px}

.video{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
}
.video__frame{
  position:relative;
  padding-top:56.25%;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.video__frame::after{
  content:"▶";
  position:absolute;
  inset:auto auto 14px 14px;
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(245,196,0,.92);
  color:#111;
  font-weight:900;
  box-shadow: 0 12px 28px rgba(245,196,0,.18);
}
.video__meta{padding:12px 14px; display:flex; flex-direction:column; gap:4px}
.video__meta span{color:rgba(255,255,255,.72); font-size:13px}

.media-strip{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.media-strip img{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  width:100%;
  height:220px;
  object-fit:cover;
}

.testimonial{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.testimonial__quote{
  margin:0;
  color:rgba(255,255,255,.88);
  line-height:1.7;
  font-size:15px;
}
.testimonial__meta{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.testimonial__meta span{
  font-size:13px;
  color:rgba(255,255,255,.66);
}

.availability{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:14px;
  align-items:start;
}
.calendar-card, .day-card{
  background: rgba(20,20,20,.70);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.calendar-card{padding:16px}
.calendar-head{display:flex; align-items:center; justify-content:space-between; gap:10px}
.calendar-title{font-weight:900; letter-spacing:.3px}
.icon-btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.icon-btn:hover{background: rgba(255,255,255,.06)}
.legend{display:flex; flex-wrap:wrap; gap:10px; margin:12px 0 10px; color:rgba(255,255,255,.76); font-size:12px}
.dot{display:inline-block; width:10px; height:10px; border-radius:999px; margin-right:6px}
.dot--green{background:var(--green)}
.dot--yellow{background:var(--yellow)}
.dot--red{background:var(--red)}
.dot--gray{background:var(--gray)}

.calendar{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:8px;
}
.cal-wd{
  font-size:11px;
  color:rgba(255,255,255,.6);
  padding:4px 2px;
  text-align:center;
}
.day{
  padding:10px 10px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  min-height:54px;
  position:relative;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.day--muted{opacity:.45; cursor:default}
.day__num{font-weight:900; font-size:14px}
.badge{
  position:absolute;
  right:10px; top:10px;
  width:10px; height:10px; border-radius:999px;
}
.badge--green{background:var(--green)}
.badge--yellow{background:var(--yellow)}
.badge--red{background:var(--red)}
.badge--gray{background:var(--gray)}
.day--selected{
  outline:2px solid rgba(245,196,0,.65);
  background: rgba(245,196,0,.08);
}

.day-card{padding:16px}
.day-card__head h3{margin:0 0 6px}
.day-card__head p{margin:0; color:rgba(255,255,255,.72); font-size:13px; line-height:1.5}
.slots{margin-top:14px; display:flex; flex-direction:column; gap:10px}
.slot{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  cursor:pointer;
}
.slot__left{display:flex; flex-direction:column; gap:2px}
.slot__label{font-weight:900}
.slot__meta{font-size:12px; color:rgba(255,255,255,.7)}
.slot__state{
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
}
.state--available{background: rgba(55,214,122,.12); border-color: rgba(55,214,122,.22)}
.state--limited{background: rgba(245,196,0,.12); border-color: rgba(245,196,0,.22)}
.state--occupied{background: rgba(255,77,77,.12); border-color: rgba(255,77,77,.22)}
.state--blocked{background: rgba(108,108,108,.18); border-color: rgba(108,108,108,.22)}
.slot--disabled{opacity:.55; cursor:not-allowed}
.slot--selected{outline:2px solid rgba(245,196,0,.65); background: rgba(245,196,0,.10)}

.rules{margin-top:14px; color:rgba(255,255,255,.78)}
.rules h4{margin:0 0 8px}
.rules ul{margin:0; padding-left:18px}
.rules li{margin:8px 0; font-size:13px}

.contact-card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  padding:18px;
}
.contact-mini{margin-top:12px; color:rgba(255,255,255,.72); display:flex; flex-direction:column; gap:8px; font-size:13px}

.form{display:flex; flex-direction:column; gap:12px}
.row{display:flex; flex-direction:column; gap:6px}
label{font-size:12px; color:rgba(255,255,255,.72)}
input, select, textarea{
  background: rgba(0,0,0,.35);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:12px 12px;
  color: #fff;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(245,196,0,.45)}
.form__hint{font-size:12px; color:rgba(255,255,255,.72); line-height:1.5}
.form__note{font-size:13px; color:rgba(255,255,255,.78); min-height:18px}

.footer{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer__left{display:flex; align-items:center; gap:10px}
.footer__logo{width:36px; height:36px; border-radius:12px; object-fit:cover; border:1px solid var(--border)}
.footer__name{font-weight:900}
.footer__small{color:rgba(255,255,255,.62); font-size:12px}

.modal{position:fixed; inset:0; display:none; z-index:80}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.62)}
.modal__panel{
  position:absolute;
  right:16px; left:16px; top:50%;
  transform: translateY(-50%);
  max-width: 760px;
  margin:0 auto;
  background: rgba(18,18,18,.95);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:16px;
}
.modal__head{display:flex; align-items:center; justify-content:space-between; gap:10px; padding-bottom:10px; border-bottom:1px solid var(--border)}
.modal__head h3{margin:0}
.promo-modal-panel{max-width:640px}
.promo-wrap{
  padding-top:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.promo-image{
  width:100%;
  max-height:240px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
}
#promoMessage{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.6;
}

.wa-fab{
  position:fixed;
  right:16px; bottom:16px;
  z-index:100;
  background: #15c46f;
  color:#08130c;
  font-weight:900;
  padding:12px 14px;
  border-radius:999px;
  display:flex; align-items:center; gap:10px;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  border:1px solid rgba(0,0,0,.15);
}
.wa-dot{width:10px; height:10px; background:#fff; border-radius:999px; opacity:.95}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; padding:44px 0 18px}
  .hero h1{font-size:36px}
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .availability{grid-template-columns: 1fr}
  .nav{display:none}
  .nav__burger{display:inline-flex}
  .nav__mobile.open{display:grid}
  .media-strip{grid-template-columns: 1fr}
  .media-strip img{height:180px}
  .hero__chips{gap:8px}
  .hero__chips span{font-size:12px}
  .section{padding:54px 0}
  .notice-bar__inner{font-size:13px; padding:6px 0}
  .notice-bar__inner .btn{padding:8px 10px}
}
