.hero {
  position: relative;
  padding-top: var(--space-16);
}

.hero__layout {
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
}

.hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.hero__highlight dt {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.hero__highlight dd {
  font-size: var(--font-size-sm);
}

.section--accent {
  background: radial-gradient(circle at top left, rgba(255, 51, 102, 0.18), transparent 60%),
              radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 60%),
              var(--color-bg-elevated);
}

.section__layout {
  align-items: center;
  gap: var(--space-10);
}

.section__layout--reverse {
  direction: rtl;
}

.section__layout--reverse > * {
  direction: ltr;
}

.section__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__list li {
  font-size: var(--font-size-sm);
}

.steps {
  counter-reset: steps-counter;
}

.steps__item {
  padding-left: var(--space-2);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.food-grid,
.zone-grid,
.guide-grid,
.testimonials-grid {
  gap: var(--space-4);
}

.food-card .card-body ul li,
.certificates .card-body ul li {
  font-size: var(--font-size-sm);
}

.zone-grid__item,
.guide-grid__item {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial__author {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.contact-card .card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-12);
  }

  .hero__highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__layout,
  .section__layout--reverse {
    gap: var(--space-6);
  }
}
