:root{
  --bg: #050508;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --soft: rgba(255,255,255,.55);

  --rose: #e85d8c;
  --rose2:#ff8fb0;

  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 12px;background:#111;border:1px solid var(--stroke);border-radius:12px;z-index:9999}

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(5,5,8,.75);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; gap:10px; align-items:center;
  text-decoration:none; color:var(--text);
}
.brand__mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(232,93,140,.30), rgba(255,143,176,.12));
  border: 1px solid rgba(232,93,140,.25);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  font-size:18px;
}
.brand__name{font-weight:900; letter-spacing:.3px}
.brand__tag{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex; gap:10px; align-items:center;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .15s ease;
  font-weight:650;
  font-size:14px;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255,255,255,.04);
}

.navbtn{
  display:none;
  width:44px;height:44px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  padding:10px;
  gap:5px;
}
.navbtn span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
}

.hero{
  padding:48px 0 20px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.kicker{
  display:inline-block;
  color: var(--muted);
  border:1px solid var(--stroke);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  margin:0 0 10px;
  font-size:13px;
}
h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius: 14px;
  border:1px solid rgba(232,93,140,.28);
  background: linear-gradient(135deg, rgba(232,93,140,.26), rgba(255,143,176,.10));
  color: var(--text);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(232,93,140,.40)}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--stroke);
  box-shadow:none;
}
.btn--ghost:hover{border-color: rgba(255,255,255,.18)}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.badge{
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:12px 12px;
}
.badge__title{display:block; font-weight:900}
.badge__text{display:block; color:var(--muted); font-size:12px; margin-top:2px}

.hero__media .frame{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero__media img{width:100%; height:360px; object-fit:cover; display:block}
.strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.strip img{
  width:100%; height:110px; object-fit:cover;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.hint{color:var(--soft); font-size:12px; margin:10px 2px 0}

.section{padding:44px 0}
.section--alt{
  background: radial-gradient(900px 360px at 20% 10%, rgba(232,93,140,.10), transparent 60%),
              radial-gradient(700px 320px at 80% 40%, rgba(255,143,176,.08), transparent 55%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:14px}
.section__head h2{margin:0 0 6px; font-size:28px; letter-spacing:-.3px}
.muted{color: var(--muted)}
.small{font-size:12px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.card{
  border:1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
.card h3{margin:0 0 8px; font-size:16px}
.pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  font-size:12px;
  color: var(--muted);
  padding:6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.notice{
  border:1px solid rgba(232,93,140,.24);
  background: rgba(232,93,140,.09);
  border-radius: var(--radius2);
  padding:12px 14px;
  margin: 10px 0 14px;
}
.notice__title{font-weight:900; margin-bottom:2px}
.notice__text{color: var(--muted); font-size:13px}

.list{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px}
.item{
  border:1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
.item__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.item__name{font-weight:900; margin:0}
.item__type{color:var(--muted); font-size:12px; margin-top:2px}
.tag{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  white-space:nowrap;
}
.tag--available{border-color: rgba(90,255,140,.30); background: rgba(90,255,140,.10)}
.tag--waitlist{border-color: rgba(255,210,80,.28); background: rgba(255,210,80,.10)}
.tag--ask{border-color: rgba(80,160,255,.28); background: rgba(80,160,255,.10)}
.item__details{color:var(--muted); margin:10px 0 0}

.about__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.panel{
  border:1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
.panel h3{margin:0 0 8px}
.bullets{margin:8px 0 0; padding-left: 18px; color: var(--muted)}
.bullets li{margin:6px 0}
.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.gallery img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.mini{margin-top:12px; border-top:1px solid rgba(255,255,255,.08); padding-top:12px}
.mini__row{display:flex; justify-content:space-between; gap:10px; padding:6px 0}
.mini__k{color:var(--muted)}
.mini__v{font-weight:800; color:var(--text)}

.footer{
  padding:18px 0 30px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: var(--muted);
  font-size:13px;
}
.footer a{color: var(--muted); text-decoration:none}
.footer a:hover{color: var(--text)}
.dot{opacity:.55}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__media img{height: 300px}
  .hero__badges{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .list{grid-template-columns: 1fr}
  .about__grid{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
}

@media (max-width: 860px){
  .navbtn{display:grid}
  .nav{
    position:absolute;
    right:16px;
    top:64px;
    background: rgba(8,8,12,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding:10px;
    display:none;
    flex-direction:column;
    min-width: 220px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{width:100%}
}
