:root{
  --bg:#0f0f12; --card:#15161a; --text:#eef0f2; --muted:#aeb3bb;
  --brand:#ff5ca8; --brand-2:#8a4fff; --danger:#ff4d4f; --border:#23252b; --ok:#1db954;
}
*{box-sizing:border-box} html,body{margin:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.5}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

/* Sticky header */
.site-header{position:sticky;top:0;z-index:1000;backdrop-filter:saturate(1.2) blur(8px);
  background:linear-gradient(90deg, rgba(21,22,26,.85), rgba(15,15,18,.6));border-bottom:1px solid var(--border)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo img {
  height: 50px;        /* Adjust logo size */
  width: auto;
  display: block;
}
.nav a{color:var(--muted);text-decoration:none;margin-left:14px;padding:8px 10px;border-radius:8px;transition:all .2s}
.nav a:hover,.nav a.active{color:var(--text);background:#1c1f25}

.hero-logo {
  max-width: 340px;   /* adjust size */
  width: 60%;
  height: auto;
  margin-bottom: 24px;
}
.hero-media{position:relative;height:68vh;min-height:440px;max-height:720px;overflow:hidden;border-bottom:1px solid var(--border)}
.hero-video{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.15) contrast(1.05)}
.hero-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:0 7%;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.1) 40%, rgba(0,0,0,.45))}
.hero-overlay h1{font-size: clamp(28px, 4vw, 56px);margin:0 0 8px}
.hero-overlay p{color:#e9e9eecc;margin:0 0 22px;max-width:560px}
.btn{display:inline-block;border:1px solid var(--border);padding:10px 16px;border-radius:10px;color:var(--text);text-decoration:none;background:#1b1e24;transition:.2s;cursor:pointer}
.btn:hover{transform:translateY(-1px)}
.btn-primary{border-color:transparent;background-image:linear-gradient(90deg,var(--brand),var(--brand-2));box-shadow:0 6px 20px rgba(255,92,168,.2)}
.btn-ghost{background:transparent;border-color:var(--border)}
.btn-danger{background:var(--danger);border-color:transparent;color:white}

.section-alt{background:#101217;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.gallery-preview{padding:48px 0}
.gallery-preview h2{margin:0 0 16px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid img{width:100%;height:220px;object-fit:cover;border-radius:12px;border:1px solid var(--border)}
.grid img.more{display:none}
.grid.expanded img.more{display:block}
.center{text-align:center;margin-top:18px}

.booking{padding:48px 0}
.card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:22px}
.card.success{border-color:#234a32;box-shadow:0 0 0 1px #234a32 inset}
.card.error{border-color:#4a2323;box-shadow:0 0 0 1px #4a2323 inset}
.details{list-style:none;padding:0;margin:8px 0}
.divider{height:1px;background:var(--border);margin:18px 0}
.muted{color:var(--muted)}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}

.form-row{display:flex;flex-direction:column;margin-bottom:14px}
.form-row.inline{display:grid;grid-template-columns:1fr 1fr auto;gap:12px}
.form-row label{font-weight:600;margin-bottom:6px}
.form-row input,.form-row textarea{padding:12px;border-radius:10px;border:1px solid var(--border);background:#101216;color:var(--text);outline:none}
.form-row input:focus,.form-row textarea:focus{border-color:var(--brand)}
.err{color:#ff8f8f;min-height:16px;display:block;margin-top:4px}

.booking-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px}
.booking-item{display:flex;align-items:center;justify-content:space-between;background:#12151a;border:1px solid var(--border);border-radius:12px;padding:12px}

.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.review{background:#12141a;border:1px solid var(--border);border-radius:14px;padding:18px}
.person img{width:100%;height:200px;object-fit:cover;border-radius:12px;margin-bottom:10px;border:1px solid var(--border)}
.person h3{margin:4px 0 2px}

.hours-grid{display:grid;grid-template-columns:1fr auto;gap:10px}
.map-wrap{border:1px solid var(--border);border-radius:14px;overflow:hidden}
.map-wrap iframe{width:100%;height:380px;border:0}

.site-footer{padding:28px 0;border-top:1px solid var(--border);margin-top:40px}

@media (max-width: 900px){
  .grid{grid-template-columns:1fr 1fr}
  .cards-3{grid-template-columns:1fr}
  .hero-media{height:56vh;min-height:360px}
}

/* Services */
.services{padding:48px 0}
.service-filters{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0 18px}
.chip{
  border:1px solid var(--border); background:#12141a; color:var(--text);
  padding:8px 12px; border-radius:999px; cursor:pointer; transition:.2s
}
.chip:hover{transform:translateY(-1px)}
.chip.active{background-image:linear-gradient(90deg,var(--brand),var(--brand-2)); border-color:transparent}

.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width: 900px){ .services-grid{grid-template-columns:1fr 1fr} }
@media (max-width: 600px){ .services-grid{grid-template-columns:1fr} }

.service-card{
  background:linear-gradient(180deg,#16181f,#12141a); border:1px solid var(--border); border-radius:18px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.25); transition:transform .25s ease, box-shadow .25s ease
}
.service-card:hover{ transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,.35)}

.service-card .media{position:relative; overflow:hidden}
.service-card .media img{width:100%;height:200px;object-fit:cover;display:block;filter:saturate(1.05) contrast(1.02)}
.service-card .price{
  position:absolute; right:12px; top:12px; padding:6px 10px; border-radius:999px; font-weight:700; font-size:14px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2)); color:#fff; box-shadow:0 8px 24px rgba(255,92,168,.25)
}

.service-card .content{padding:16px}
.service-card h3{margin:2px 0 6px}
.service-card .excerpt{color:var(--muted); margin:0 0 12px}

.service-card .actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:8px}
.service-card .details{
  background:#0f1116; border:1px dashed var(--border); border-radius:12px; padding:12px; color:#dbe0e7;
}
.service-card .details p{margin:0 0 8px}
.service-card .bullets{margin:0;padding-left:18px}
.service-card .bullets li{margin:4px 0}

/* Nice focus & accessibility */
.details-toggle[aria-expanded="true"]{background:#1b1e24}

.book-tag{
  display:inline-block; margin-left:8px; padding:3px 8px; border-radius:8px; font-size:12px;
  border:1px solid var(--border); color:var(--muted)
}
/* Wizard */
.wizard{display:flex;flex-direction:column;gap:16px}
.wizard-steps{display:flex;gap:8px;flex-wrap:wrap}
.wizard-steps .step{padding:6px 10px;border-radius:999px;border:1px solid var(--border);color:var(--muted);font-size:13px}
.wizard-steps .step.current{background-image:linear-gradient(90deg,var(--brand),var(--brand-2));color:#fff;border-color:transparent}

.wizard-page h3{margin-top:0}
.cols{display:grid;grid-template-columns:1.2fr 1fr .8fr;gap:16px}
@media (max-width: 980px){ .cols{grid-template-columns:1fr} }

.picker, .cart{background:#12141a;border:1px solid var(--border);border-radius:14px;padding:14px}

.service-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media (max-width: 600px){ .service-list{grid-template-columns:1fr} }
.service-row{display:flex;align-items:center;gap:10px;border:1px solid var(--border);border-radius:12px;padding:10px;background:#0f1116}
.service-row img{width:64px;height:64px;object-fit:cover;border-radius:10px;border:1px solid var(--border)}
.service-row .meta{flex:1}
.service-row .meta h5{margin:0 0 2px}
.service-row .meta .muted{font-size:13px}
.service-row .price{font-weight:700}
.service-row .add{margin-left:8px}

.cart h4{margin-top:0}
#cartItems{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px;max-height:260px;overflow:auto}
.cart-item{display:flex;align-items:center;justify-content:space-between;border:1px solid var(--border);border-radius:10px;padding:8px;background:#0f1116}
.cart-item .x{background:#2b2f38;border:0;color:#fff;border-radius:8px;padding:6px 8px;cursor:pointer}
.cart-total{display:flex;justify-content:space-between;margin-top:10px;font-size:18px}

.guest-editor{display:flex;flex-direction:column;gap:12px}
.guest-card{background:#12141a;border:1px solid var(--border);border-radius:12px;padding:12px}
.guest-card .title{display:flex;justify-content:space-between;align-items:center}
.guest-card .title .rm{background:#2b2f38;border:0;color:#fff;border-radius:8px;padding:6px 8px;cursor:pointer}

.time-grid{display:grid;grid-template-columns:240px auto;gap:12px;align-items:end}
.slots{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.slot{padding:8px 12px;border:1px solid var(--border);border-radius:10px;background:#12141a;cursor:pointer}
.slot.selected{background-image:linear-gradient(90deg,var(--brand),var(--brand-2));color:#fff;border-color:transparent}

.confirm-summary{display:grid;grid-template-columns:1fr;gap:10px}
.summary-card{background:#12141a;border:1px solid var(--border);border-radius:12px;padding:12px}
.summary-card h4{margin:0 0 6px}

.actions.end{display:flex;justify-content:flex-end;gap:10px}
