/* ============================================
   HOME PAGE — Specific Styles
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(61,43,31,0.82) 0%,
    rgba(61,43,31,0.55) 50%,
    rgba(61,43,31,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--nav-h);
  gap: 2rem;
}

.hero-text {
  max-width: 580px;
  animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
  color: var(--cream);
  margin: 0.5rem 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-text h1 em {
  font-style: italic;
  color: var(--terracotta-lt);
}

.hero-text p {
  color: rgba(242,230,217,0.85);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Badge */
.hero-badge {
  animation: heroFadeUp 1s ease 0.6s both;
  flex-shrink: 0;
}

.badge-ring {
  position: relative;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
}

.badge-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: badgeSpin 18s linear infinite;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.badge-icon {
  font-size: 2.5rem;
  z-index: 1;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: heroFadeUp 1s ease 1s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.6);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(242,230,217,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--terracotta);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.9);
}

.marquee-track .dot {
  color: rgba(242,230,217,0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(181,86,62,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Section Header ── */
.section-header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Featured Menu ── */
.menu-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-item-featured {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-item-featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.menu-item-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-item-featured:hover .menu-item-img img {
  transform: scale(1.06);
}

.menu-item-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.menu-item-info {
  padding: 1.5rem;
}

.menu-item-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.menu-item-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* ── Story Interlude ── */
.story-grid {
  gap: 5rem;
}

.story-images {
  position: relative;
  height: 520px;
}

.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.story-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%; height: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--warm-white);
}

.story-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-text p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(242,230,217,0.07);
  border: 1px solid rgba(242,230,217,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background var(--transition);
}

.testimonial-card:hover {
  background: rgba(242,230,217,0.12);
}

.stars {
  color: var(--terracotta-lt);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(242,230,217,0.8);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--cream);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(242,230,217,0.5);
}

/* ── Hours CTA ── */
.hours-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hours-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 0.95rem;
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--terracotta);
}

.hours-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  height: 460px;
}

.hours-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hours-image { height: 320px; }
}

@media (max-width: 768px) {
  .hero-badge { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-showcase { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-images { height: 320px; }
  .story-grid { gap: 3rem; }
}