
/* =========================================================
   Home Page Sections — Phase 2
   ========================================================= */

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(26,19,16,0.55), rgba(26,19,16,0.82)), 
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  color: var(--ivory);
  padding-block: clamp(5rem, 14vw, 9rem) clamp(3.5rem, 8vw, 6rem);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  color: rgba(247,241,232,0.85);
}
.hero h1 {
  color: var(--ivory);
  max-width: 15ch;
  font-size: var(--step-4);
}
.hero p.lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  max-width: 46ch;
  color: rgba(247, 241, 232, 0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-on-dark);
}
.hero-facts dt {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hero-facts dd {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  color: var(--ivory);
}

/* Section headers */
.section-head {
  max-width: 42ch;
  margin-bottom: 3rem;
}
.section-head.center { margin-inline: auto; text-align: center; }

/* Signature dishes */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dish-card {
  background: #fff;
  border: 1px solid var(--line);
}
.dish-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; }
.dish-card__body { padding: 1.25rem; }
.dish-card__tag {
  font-size: 0.75rem;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  display: block;
}
.dish-card__body h4 { font-size: 1.0625rem; }

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 0.5rem;
}
.gallery-strip a { grid-column: span 2; grid-row: span 1; overflow: hidden; }
.gallery-strip a:nth-child(1),
.gallery-strip a:nth-child(4) { grid-row: span 2; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.04); }

/* Story split */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-split img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem;
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-card p.quote {
  color: var(--ink);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.testimonial-card .attribution {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* Info grid (hours + location) */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.info-block dt {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.info-block dd { margin-bottom: 1rem; color: rgba(247,241,232,0.85); }

/* FAQ accordion */
.faq-list { max-width: 62rem; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  color: var(--charcoal);
}
.faq-item .icon { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[data-open="true"] .icon { transform: rotate(45deg); }
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-item[data-open="true"] .answer { max-height: 20rem; }
.faq-item .answer p { padding-bottom: 1.5rem; max-width: 64ch; }

/* CTA banner */
.cta-banner {
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.cta-banner .btn-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 900px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; }
  .gallery-strip a:nth-child(1), .gallery-strip a:nth-child(4) { grid-row: span 2; }
}
@media (max-width: 560px) {
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
