/* ══════════════════════════════════════════
   PHOTO GALLERY — Infinite Horizontal Scroll
   ══════════════════════════════════════════ */

#gallery {
  padding: 100px 0 60px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.gallery-item {
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.03);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4A3820, #3A2D18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

footer {
  padding: 60px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-note {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}
