:root{
  --bg:#0b0b0f;
  --bg2:#0f1020;
  --card:#141427;
  --text:#f5f5fb;
  --muted:rgba(245,245,251,.74);
  --line:rgba(255,255,255,.10);
  --accent:#ff5ad6;
  --accent2:#a24dff;
  --good:#35d07f;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 10% 0%, rgba(162,77,255,.18), transparent 60%),
              radial-gradient(700px 400px at 90% 10%, rgba(255,90,214,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #07070a 60%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%;display:block}

.container{width:min(1120px, calc(100% - 40px)); margin-inline:auto;}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 14px; background:var(--card); border-radius:12px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,14,.55);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:14px}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{border-radius:14px; box-shadow: 0 10px 25px rgba(0,0,0,.35)}
.brand__name{font-weight:700; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}
.brand__text{display:flex; flex-direction:column; line-height:1.05}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  text-decoration:none;
  font-size:14px;
  color:rgba(255,255,255,.85);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.navbtn{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  cursor:pointer;
}
.navbtn span{display:block; height:2px; margin:6px 10px; background:rgba(255,255,255,.85); border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b0f;
  font-weight:700;
  text-decoration:none;
  border:0;
  cursor:pointer;
  box-shadow: 0 18px 45px rgba(255,90,214,.18);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.03)}
.btn:active{transform: translateY(0px)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 14px; border-radius:14px; font-size:14px}

.link{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.28);
}
.link:hover{border-bottom-color:rgba(255,255,255,.65)}

.sep{opacity:.35; padding:0 6px}

.hero{
  position:relative;
  min-height: calc(92vh - 72px);
  display:flex; align-items:center;
  border-bottom:1px solid var(--line);
}
.hero__bg{
  position:absolute; inset:0;
  background-image: url("img/hero.webp");
  background-size:cover;
  background-position:center;
  filter:saturate(1.15) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 30% 20%, rgba(0,0,0,.15), rgba(0,0,0,.78) 60%),
              linear-gradient(180deg, rgba(11,11,15,.25), rgba(7,7,10,.92));
}
.hero__content{position:relative; padding:62px 0 40px}
.chip{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height:1.04;
  letter-spacing:-.6px;
}
.accent{
  font-family: Pacifico, cursive;
  font-weight:400;
  color:var(--accent);
  text-shadow: 0 18px 55px rgba(255,90,214,.28);
}
.lead{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 62ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero__meta{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.meta-card{
  padding:14px 14px;
  background: rgba(20,20,39,.52);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.meta-card__k{font-size:12px; color:var(--muted)}
.meta-card__v{margin-top:4px; font-size:14px; color:rgba(255,255,255,.88)}

.section{padding:72px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:22px}
.section__head h2{margin:0; font-size:30px; letter-spacing:-.4px}
.section__head p{margin:8px 0 0; color:var(--muted); max-width:75ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  background: rgba(20,20,39,.62);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover{transform: translateY(-3px); border-color: rgba(255,255,255,.18)}
.card__img{
  height: 190px;
  background-size: cover;
  background-position:center;
}
.card__body{padding:16px}
.card__body h3{margin:0 0 6px; font-size:18px}
.card__body p{margin:0; color:var(--muted); font-size:14px}
.card__actions{margin-top:12px}

.split{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.social{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.note{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.78);
  padding:12px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
}
.embed-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}
.embed-card iframe{width:100%; height:560px}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.g-item{margin:0}
.g-btn{
  width:100%;
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}
.g-btn:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18)}
.g-btn img{width:100%; height:210px; object-fit:cover}

.video{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video iframe{width:100%; height:100%}

.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
  height: 420px;
}
.map iframe{width:100%; height:100%; border:0}

.hours{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.hours__card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(20,20,39,.62);
  box-shadow: var(--shadow);
}
.hours__card h3{margin:0 0 10px}
.hours__card ul{margin:0; padding-left:18px}
.hours__card li{margin:8px 0; color:rgba(255,255,255,.86)}
.muted{color:var(--muted)}

.contact{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  align-items:start;
}
.contact__info{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(20,20,39,.62);
  box-shadow: var(--shadow);
}
.info-row{display:flex; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.08)}
.info-row:last-child{border-bottom:0}
.badge{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.label{font-size:12px; color:var(--muted)}
.value{font-size:14px; margin-top:2px}
.mini{margin-top:18px; display:flex; justify-content:center}
.mini img{border-radius: 24px; border:1px solid rgba(255,255,255,.10); box-shadow: 0 20px 60px rgba(0,0,0,.35)}

.form{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(20,20,39,.62);
  box-shadow: var(--shadow);
}
.form label{display:block; font-size:13px; color:rgba(255,255,255,.90); margin-bottom:12px}
.form input, .form textarea{
  width:100%;
  margin-top:7px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,10,14,.55);
  color:var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{border-color: rgba(255,90,214,.55); box-shadow: 0 0 0 4px rgba(255,90,214,.12)}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}

.footer{
  border-top:1px solid var(--line);
  background: rgba(10,10,14,.65);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:18px 0;
}
.footer__left{display:flex; gap:12px; align-items:center}
.footer__left img{border-radius: 14px; border:1px solid rgba(255,255,255,.12)}
.footer__bottom{padding:0 0 18px}
.footer__bottom p{margin:0; color:rgba(255,255,255,.82); font-size:14px}

.floatwa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px; height:58px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, #2af598, #13d8ff);
  color:#08110b;
  font-size:24px;
  text-decoration:none;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.20);
  z-index:60;
}
.floatwa:hover{filter:brightness(1.03); transform: translateY(-1px)}

.lightbox{
  position:fixed; inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.85);
  z-index:100;
  padding:18px;
}
.lightbox.is-open{display:grid}
.lb__img{
  max-width:min(1100px, 92vw);
  max-height:78vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}
.lb__close{
  position:absolute; top:18px; right:18px;
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-size:28px;
  cursor:pointer;
}
.lb__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:48px; height:48px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-size:32px;
  cursor:pointer;
}
.lb__prev{left:18px}
.lb__next{right:18px}
.lb__caption{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.78);
  text-align:center;
  max-width: 92vw;
}

@media (max-width: 980px){
  .nav{display:none}
  .navbtn{display:block}
  .hero__meta{grid-template-columns:1fr; gap:10px}
  .cards{grid-template-columns:1fr; }
  .split{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .hours{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .g-btn img{height:190px}
}

@media (max-width: 420px){
  .container{width:min(1120px, calc(100% - 28px))}
  .brand__tag{display:none}
  .grid2{grid-template-columns:1fr}
  .g-btn img{height:170px}
}
