/* ══ HERO ══ */
.hero {
  background: linear-gradient(160deg, var(--color-bg-alt) 55%, var(--color-accent-soft) 100%);
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(200,144,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { animation: fadeUp .7s ease both; }
.hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.hero__content p {
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--color-text-soft);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__media { animation: fadeUp .7s .15s ease both; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Badges row below hero */
.hero-badges {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  padding-block: 1.5rem;
}
.hero-badges__inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem 3rem;
}
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .9375rem; font-weight: 600; color: var(--color-text-soft); }
.hero-badge span:first-child { font-size: 1.25rem; }

/* ══ MENU (dishes grid) ══ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.dish-card { padding: 0; overflow: hidden; }
.dish-card__photo { aspect-ratio: 4/3; overflow: hidden; }
.dish-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dish-card:hover .dish-card__photo img { transform: scale(1.05); }
.dish-card__body { padding: 1.5rem; }
.dish-card__icon {
  width: 44px; height: 44px;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
  color: var(--color-accent);
}
.dish-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.dish-card p  { font-size: .9375rem; color: var(--color-text-soft); }

/* ══ STEPS ══ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { position: relative; padding: 2rem; background: var(--color-bg); border-radius: var(--radius-md); border: 1px solid var(--color-border-soft); }
.step__icon {
  width: 52px; height: 52px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: #fff;
}
.step h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.step p  { color: var(--color-text-soft); font-size: .9375rem; line-height: 1.65; }

/* ══ HOW IT WORKS ══ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: steps; }
.step { position: relative; }
.step::before {
  content: counter(steps); counter-increment: steps;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--color-accent); color: #fff;
  font-size: 1.25rem; font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.125rem; margin-bottom: .4rem; }
.step p  { color: var(--color-text-soft); font-size: .9375rem; line-height: 1.65; }

/* ══ BOOKING ══ */
.booking-section { background: var(--color-bg-alt); }
.booking-wrapper {
  margin-inline: auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-mid));
  padding: 2rem 2.5rem;
  text-align: center;
  color: #fff;
}
.booking-header h2 { font-size: 1.75rem; margin-bottom: .4rem; }
.booking-header p  { color: rgba(255,255,255,.75); }
.booking-body { padding: 2.5rem; }

/* Bokun widget container */
.bokun-widget-wrap { min-height: 320px; }

/* ══ TESTIMONIALS ══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card__stars { color: var(--color-accent); display: flex; gap: 2px; margin-bottom: .6rem; }
.testimonial-card__title { font-weight: 700; font-size: .9375rem; color: var(--color-primary); margin-bottom: .65rem; }
.testimonial-card blockquote { font-size: .9rem; line-height: 1.7; color: var(--color-text-soft); flex: 1; margin-bottom: 1.1rem; }
.testimonial-card__footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--color-border-soft); padding-top: .75rem; margin-top: auto; }
.testimonial-card__author { font-weight: 700; font-size: .875rem; }
.testimonial-card__country { font-size: .8rem; color: var(--color-text-muted); }

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══ INCLUDES ══ */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; } /* hero image hidden on small screens */
  .steps { grid-template-columns: 1fr; }
}

/* ══ LANDSCAPE VIDEO ══ */
.video-section { background: var(--color-bg-alt); }

.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.video-thumb--landscape img { aspect-ratio: 16/9; }
.video-thumb--portrait  img { aspect-ratio: 9/16; max-height: 600px; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.12); }
.play-btn svg   { width: 80px; height: 80px; display: block; }

/* Dim image slightly so play button pops */
.video-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
  transition: background .2s;
  pointer-events: none;
  z-index: 1;
}
.play-btn { z-index: 2; }
.video-thumb:hover::before { background: rgba(0,0,0,.28); }
