:root{
  --white: #f5f5f2;
  --grey: #9a9a9a;
  --line: rgba(255,255,255,0.18);
  --accent-blue: #3949e8;
  --accent-orange: #ff5b2e;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html, body{
  height:100%;
  background:#050506;
  color:var(--white);
  font-family:'Poppins', sans-serif;
  overflow-x:hidden;
}

body{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* ---------- Header ---------- */
.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px clamp(20px, 5vw, 64px);
  border-bottom:1px solid var(--line);
}

.header-logo{
  display:flex;
  align-items:center;
}

.header-logo-img{
  width:clamp(95px, 20vw, 190px);
  height:auto;
  object-fit:contain;
  cursor:pointer;
}

.instagram-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border:1px solid var(--line);
  border-radius:6px;
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--white);
  text-decoration:none;
  transition:all 0.2s ease;
}

.instagram-btn:hover{
  color:var(--accent-orange);
  border-color:var(--accent-orange);
  background:rgba(255,91,46,0.1);
}

/* ---------- Main content ---------- */
main{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px clamp(20px, 6vw, 64px) 40px;
  gap:28px;
}

.logo-container{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.logo{
  width:clamp(180px, 45vw, 420px);
  height:auto;
  object-fit:contain;
}

.by-one-star{
  font-size:clamp(12px, 1.8vw, 16px);
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--grey);
  margin:0;
  text-align:center;
}

/* ---------- Gallery ---------- */
.gallery-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

.gallery-wrapper{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  width:100%;
}

.gallery-slide{
  width:100%;
  overflow:hidden;
  border-radius:12px;
  aspect-ratio:3/4;
}

.gallery-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.3s ease;
}

.gallery-slide:hover .gallery-image{
  transform:scale(1.02);
}

@media (max-width:1024px){
  .gallery-wrapper{
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
}

@media (max-width:768px){
  .gallery-wrapper{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
  }

  .gallery-slide{
    flex:0 0 calc(50vw - 8px);
    scroll-snap-align:start;
    border-radius:8px;
  }

  .gallery-wrapper::-webkit-scrollbar{
    height:6px;
  }

  .gallery-wrapper::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.05);
    border-radius:3px;
  }

  .gallery-wrapper::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.2);
    border-radius:3px;
  }

  .gallery-wrapper::-webkit-scrollbar-thumb:hover{
    background:rgba(255,255,255,0.3);
  }
}

@media (max-width:480px){
  .gallery-slide{
    flex:0 0 calc(100vw - 40px);
  }
}

h1{
  font-size:clamp(18px, 2.5vw, 24px);
  font-weight:600;
  letter-spacing:0.02em;
  max-width:800px;
  line-height:1.4;
  margin:0;
}

/* ---------- Countdown-free "coming soon" chip ---------- */
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:11px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--grey);
  margin-top:8px;
}

.chip .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  box-shadow:0 0 12px rgba(255,91,46,0.6);
  animation:pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.4; transform:scale(0.75); }
}

footer.bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:32px clamp(20px, 5vw, 64px);
  font-size:11px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--grey);
  padding-bottom:28px;
}

footer.bar span{ color:var(--grey); }
