/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* === Hero === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/src/assets/images/bg-brand.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.26) saturate(0.85) sepia(0.12);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    /* candlelight pooling at center */
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(224, 168, 90, 0.10) 0%, transparent 60%),
    /* warm nocturnal vignette */
    radial-gradient(ellipse 80% 65% at 50% 50%, transparent 28%, rgba(10, 8, 7, 0.78) 100%),
    linear-gradient(to bottom, rgba(10, 8, 7, 0.45) 0%, transparent 38%, rgba(10, 8, 7, 0.72) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1.5rem;
  padding-top: var(--nav-height);
}

.hero-label {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
  text-shadow: 0 1px 12px rgba(5, 4, 3, 0.85);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 900ms 200ms var(--ease) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 900ms 400ms var(--ease) forwards;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory);
  text-shadow: 0 1px 16px rgba(5, 4, 3, 0.7);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 900ms 600ms var(--ease) forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 900ms 800ms var(--ease) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass-dark);
  border-radius: 50%;
  color: var(--brass-dark);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  animation: heroFadeIn 900ms 1200ms ease forwards, arrowBounce 2.5s 2100ms ease-in-out infinite;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.hero-scroll:hover {
  border-color: var(--brass);
  color: var(--brass);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 0.6; }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* === About Teaser === */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}

.about-teaser-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

/* === Menu Teaser === */
#menu-teaser {
  text-align: center;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--char);
  border: 1px solid var(--brass-dark);
  box-shadow: 0 8px 30px rgba(5, 4, 3, 0.45);
}

.dish-card-img {
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.dish-card-info {
  padding: 1.25rem;
  border-top: 1px solid var(--brass-dark);
}
.dish-card-info .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 0.45rem;
}
.dish-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}
.dish-card-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ivory-dark);
  line-height: 1.6;
}

.menu-teaser-cta {
  margin-top: 3rem;
}

/* === Gallery Teaser === */
#gallery-teaser {
  background: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 2px;
  margin-top: 2.5rem;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item .img-ph { min-height: 100%; height: 100%; }

.gallery-teaser-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === Reservations CTA === */
#reservations-cta {
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(224, 168, 90, 0.14) 0%, transparent 65%),
    linear-gradient(rgba(10, 8, 7, 0.74), rgba(10, 8, 7, 0.82)),
    url('/src/assets/images/bg-brand.png') center / cover;
  text-align: center;
  padding: 120px 0;
}
#reservations-cta::before,
#reservations-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass-dark), transparent);
}
#reservations-cta::before { top: 0; }
#reservations-cta::after { bottom: 0; }

#reservations-cta .section-heading {
  margin-bottom: 1rem;
}
#reservations-cta .body-text {
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* === Responsive === */
@media (max-width: 900px) {
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-teaser-img { aspect-ratio: 16 / 9; }

  .dish-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dish-card { aspect-ratio: 16 / 9; display: flex; }
  .dish-card-img { width: 40%; height: 100%; }
  .dish-card-info { flex: 1; border-top: none; border-left: 1px solid var(--brass-dark); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .dish-card { flex-direction: column; aspect-ratio: auto; }
  .dish-card-img { width: 100%; height: 200px; }
  .dish-card-info { border-left: none; border-top: 1px solid var(--brass-dark); }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    height: 220px;
  }
}
