/* ── VENUE PAGE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Quattrocento', Georgia, serif; background: #FAF8F4; color: #423B25; overflow-x: hidden; }

/* ── HERO ── */
#vh-hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#vh-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.28);
}
.vh-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vh-hero-content h1 {
  font-family: 'Quattrocento', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 1.1;
  margin-bottom: 36px;
}
.vh-explore {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.vh-explore i {
  font-size: 16px;
  animation: vh-bounce 2.2s ease-in-out infinite;
}
@keyframes vh-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── CONTENT SECTIONS ── */
.vh-section {
  background: #FAF8F4;
  padding: 100px 0 90px;
  display: flex;
  justify-content: center;
}
.vh-section-inner {
  width: min(680px, 88vw);
}
.vh-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}
.vh-header h2 {
  font-family: 'Quattrocento', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #574E2D;
  min-width: 0;
}
.vh-header h2 .special-lower {
  font-style: italic;
  text-transform: none;
  letter-spacing: 2px;
}
.vh-rule {
  flex: 1;
  height: 1px;
  background: #A59350;
}
.vh-sub {
  font-family: 'Quattrocento', serif;
  font-size: 16px;
  color: #695E36;
  margin-bottom: 44px;
  letter-spacing: 0.2px;
}
.vh-list {
  list-style: disc;
  padding-left: 16px;
  margin-bottom: 48px;
}
.vh-list li {
  font-family: 'Quattrocento', serif;
  font-size: 16px;
  color: #423B25;
  line-height: 1.9;
  padding-left: 4px;
}
.vh-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #695E36;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(105,94,54,0.4);
}
.vh-more-link:hover {
  text-decoration-color: #695E36;
}

/* ── NEED MORE ── */
#vh-need-more {
  height: 62vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#vh-need-more::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.28);
}
.vh-need-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.vh-need-content h2 {
  font-family: 'Quattrocento', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 1;
}
.vh-click-here {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding-bottom: 2px;
  text-transform: lowercase;
  transition: border-color 0.2s;
}
.vh-click-here:hover { border-bottom-color: #fff; }

/* ── GALLERY ── */
.vh-gallery {
  background: #FAF8F4;
  padding: 80px 0 100px;
}
.vh-gallery-header {
  width: min(680px, 88vw);
  margin: 0 auto 52px;
}
.vh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.vh-gallery-grid .wide { grid-column: span 2; }
.vh-gallery-grid .tall { grid-row: span 2; }
.vh-gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vh-gallery-grid img:hover { transform: scale(1.03); }
.vh-gallery-grid a { overflow: hidden; display: block; cursor: pointer; }

/* ── LIGHTBOX ── */
#vh-lb {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
#vh-lb.open { opacity: 1; pointer-events: all; }
#vh-lb-img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; display: block;
  border-radius: 4px;
  transition: opacity 0.15s ease;
  user-select: none;
}
.vh-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 34px; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10000; padding: 0;
  transition: background 0.2s;
}
.vh-lb-nav:hover { background: rgba(255,255,255,0.22); }
#vh-lb-prev { left: 16px; }
#vh-lb-next { right: 16px; }
#vh-lb-close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10000; padding: 0;
  transition: background 0.2s;
}
#vh-lb-close:hover { background: rgba(255,255,255,0.22); }
#vh-lb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-family: 'Quattrocento', serif;
  font-size: 13px; letter-spacing: 0.1em; z-index: 10000;
  pointer-events: none;
}
@media (max-width: 600px) {
  .vh-lb-nav { width: 40px; height: 40px; font-size: 26px; }
  #vh-lb-prev { left: 8px; }
  #vh-lb-next { right: 8px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #vh-hero { background-attachment: scroll; }
  #vh-need-more { background-attachment: scroll; height: 50vh; }
  .vh-hero-content h1 { letter-spacing: 5px; }

  /* Gallery → mobile slider */
  .vh-gallery { padding: 60px 0 70px; }
  .vh-gallery-header { width: 88vw; margin-bottom: 32px; }
  .vh-gallery-wrap { position: relative; overflow: hidden; }
  .vh-gallery-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 0;
    grid-template-columns: unset;
    grid-auto-rows: unset;
  }
  .vh-gallery-grid::-webkit-scrollbar { display: none; }
  .vh-gallery-grid a,
  .vh-gallery-grid a.wide {
    flex: 0 0 100%;
    grid-column: unset;
    scroll-snap-align: start;
    height: 72vw;
    max-height: 380px;
    display: block;
    overflow: hidden;
  }
  .vh-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: none; }
  .vh-gallery-grid img:hover { transform: none; }

  /* Arrows */
  .vh-slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.88);
    border: none; border-radius: 50%;
    width: 38px; height: 38px;
    cursor: pointer; font-size: 24px; line-height: 1;
    color: #695E36;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    padding: 0;
  }
  .vh-slider-arrow.prev { left: 10px; }
  .vh-slider-arrow.next { right: 10px; }

  /* Dots */
  .vh-slider-dots {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px; padding: 14px 16px 0;
  }
  .vh-slider-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(105,94,54,0.25);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .vh-slider-dot.active { background: #695E36; transform: scale(1.35); }
}
