:root {
  --coffee-1: #1a120f;
  --coffee-2: #2a1b16;
  --coffee-3: #3b241d;
  --coffee-4: #5d4033;
  --gold: #d2a45e;
  --gold-soft: #f0d6ab;
  --text: #f7f1eb;
  --muted: rgba(255,255,255,0.72);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  --shadow-heavy: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210,164,94,0.08), transparent 20%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 20%),
    linear-gradient(180deg, #120c0a 0%, #231712 28%, #3b241d 62%, #2a1b16 100%);
  min-height: 100vh;
  position: relative;
}

img {
  width: 100%;
  display: block;
}

/* PARTICLES */
.snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snow span {
  position: absolute;
  top: -10%;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow:
    0 0 6px rgba(255,255,255,0.95),
    0 0 14px rgba(255,255,255,0.55);
  animation: snowfall linear infinite;
  opacity: 0.95;
}

.snow span:nth-child(1)  { left: 4%;  animation-duration: 10s; animation-delay: 0s;   width: 4px; height: 4px; }
.snow span:nth-child(2)  { left: 10%; animation-duration: 13s; animation-delay: 1s;   width: 6px; height: 6px; }
.snow span:nth-child(3)  { left: 16%; animation-duration: 11s; animation-delay: 2s;   width: 5px; height: 5px; }
.snow span:nth-child(4)  { left: 22%; animation-duration: 14s; animation-delay: 0.5s; width: 7px; height: 7px; }
.snow span:nth-child(5)  { left: 29%; animation-duration: 12s; animation-delay: 1.5s; width: 5px; height: 5px; }
.snow span:nth-child(6)  { left: 36%; animation-duration: 15s; animation-delay: 2.5s; width: 6px; height: 6px; }
.snow span:nth-child(7)  { left: 43%; animation-duration: 11s; animation-delay: 0.7s; width: 4px; height: 4px; }
.snow span:nth-child(8)  { left: 51%; animation-duration: 14s; animation-delay: 1.7s; width: 6px; height: 6px; }
.snow span:nth-child(9)  { left: 58%; animation-duration: 10s; animation-delay: 2.4s; width: 5px; height: 5px; }
.snow span:nth-child(10) { left: 65%; animation-duration: 13s; animation-delay: 1.1s; width: 6px; height: 6px; }
.snow span:nth-child(11) { left: 72%; animation-duration: 12s; animation-delay: 0.4s; width: 5px; height: 5px; }
.snow span:nth-child(12) { left: 78%; animation-duration: 16s; animation-delay: 2.2s; width: 7px; height: 7px; }
.snow span:nth-child(13) { left: 84%; animation-duration: 11s; animation-delay: 0.8s; width: 4px; height: 4px; }
.snow span:nth-child(14) { left: 89%; animation-duration: 14s; animation-delay: 1.6s; width: 6px; height: 6px; }
.snow span:nth-child(15) { left: 94%; animation-duration: 15s; animation-delay: 2.8s; width: 5px; height: 5px; }
.snow span:nth-child(16) { left: 8%;  animation-duration: 17s; animation-delay: 3s;   width: 3px; height: 3px; }
.snow span:nth-child(17) { left: 33%; animation-duration: 16s; animation-delay: 3.4s; width: 4px; height: 4px; }
.snow span:nth-child(18) { left: 55%; animation-duration: 18s; animation-delay: 3.8s; width: 3px; height: 3px; }
.snow span:nth-child(19) { left: 74%; animation-duration: 17s; animation-delay: 4.2s; width: 4px; height: 4px; }
.snow span:nth-child(20) { left: 92%; animation-duration: 19s; animation-delay: 4.6s; width: 3px; height: 3px; }

@keyframes snowfall {
  0% {
    transform: translateY(-12vh) translateX(0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(30px) scale(1.05);
    opacity: 0.25;
  }
}

/* NAVBAR */
.topbar {
  width: min(1200px, calc(100% - 32px));
  margin: 18px auto;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 16px;
  z-index: 50;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coffee-3), var(--coffee-4));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.brand-tag {
  font-size: 0.78rem;
  opacity: 0.72;
}

#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar a {
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(-2px);
}

/* PAGE */
.gallery-page {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title p {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* HERO */
.gallery-hero {
  margin-top: 8px;
  min-height: 52vh;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 50px 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(210,164,94,0.10), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 20%),
    linear-gradient(135deg, #18100d, #2b1b16 45%, #4a2f24 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.25);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 30%),
    linear-gradient(300deg, rgba(210,164,94,0.05), transparent 40%);
}

.gallery-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}

.gallery-hero-glow.glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(210,164,94,0.18);
  top: 30px;
  left: 30px;
}

.gallery-hero-glow.glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.08);
  bottom: 20px;
  right: 40px;
}

.gallery-hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.gallery-hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.gallery-hero-text p {
  color: rgba(255,255,255,0.84);
  line-height: 1.9;
}

/* SLIDER */
.gallery-slider-section {
  margin-top: 30px;
}

.slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider-frame {
  flex: 1;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(14px);
}

.slider-track {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  height: 72vh;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.45));
}

.slide-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background: rgba(20, 12, 8, 0.45);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.slide-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.slide-overlay p {
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

.slider-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.slider-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.18);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0d6ab);
}

/* INFO STRIP */
.gallery-info-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-box {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.info-box:hover {
  transform: translateY(-8px);
}

.info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.info-box p {
  color: var(--muted);
}

/* FOOTER */
.footer {
  width: min(1200px, calc(100% - 32px));
  margin: 24px auto;
  padding: 22px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 99px;
  }

  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
  }

  #nav-toggle:checked ~ .navbar {
    display: flex;
  }

  .slider-shell {
    gap: 10px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .slide {
    height: 58vh;
  }

  .gallery-info-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 32px 20px;
  }

  .gallery-hero-text h2,
  .section-title h2 {
    font-size: 2rem;
  }

  .slider-shell {
    flex-direction: column;
  }

  .slider-btn {
    display: none;
  }

  .slide {
    height: 48vh;
  }

  .slide-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .slide-overlay h3 {
    font-size: 1.5rem;
  }

  .gallery-info-strip {
    grid-template-columns: 1fr;
  }
}