body.page-home {
  background-color: var(--color-bg);
}

.section-culinary {
  align-items: center;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.philosophy-item h3 {
  font-size: var(--font-size-lg);
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-surface);
}

.image-card--tall {
  height: 100%;
}

.image-card--wide {
  height: 100%;
}

.image-card--shadow {
  box-shadow: var(--shadow-lg);
}

.image-card--evening {
  background: radial-gradient(circle at top, #3b2d25 0, #221814 55%, #000 100%);
}

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

.image-card__caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.9), rgba(240, 231, 217, 0.96));
}

.section-chefs__grid,
.section-drinks__grid,
.section-lounge__grid,
.section-courtyard__grid,
.section-sustainability__grid,
.section-reservation__grid {
  align-items: center;
  gap: var(--space-8);
}

.chef-values,
.lounge-list,
.courtyard-list,
.sustainability-list,
.reservation-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.section-drinks__highlights {
  margin-bottom: var(--space-4);
}

.section-drinks__callout {
  margin-top: var(--space-2);
}

.section-lounge {
  background: radial-gradient(circle at top left, #f9f4ec 0, #f3e6d6 45%, #efe0cd 100%);
}

.section-guest-stories__grid {
  gap: var(--space-6);
}

.testimonial__quote {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.testimonial__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section-sustainability__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-form {
  display: flex;
  flex-direction: column;
}

.reservation-form__submit {
  margin-top: var(--space-2);
}

.reservation-form__privacy {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .page-home .hero {
    padding-block: var(--space-8);
  }

  .page-home .hero__inner {
    gap: var(--space-6);
  }

  /* Cohesive image + overlay card stack (edge-to-edge media block) */
  .page-home .hero__media {
    margin-inline: calc(-1 * var(--layout-gutter));
    width: calc(100% + 2 * var(--layout-gutter));
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background: transparent;
  }

  .page-home .hero__image {
    aspect-ratio: 5 / 4;
    height: auto;
    display: block;
  }

  .page-home .hero__overlay-card {
    position: static;
    margin: 0;
    max-width: none;
    padding: var(--space-5) var(--layout-gutter);
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-surface);
  }

  .page-home .hero-overlay__title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    line-height: 1.3;
    margin-bottom: var(--space-2);
    text-wrap: balance;
  }

  .page-home .hero-overlay__text {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    color: var(--color-text-muted);
    margin-bottom: 0;
  }

  .page-home .hero-overlay__links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    margin-top: var(--space-4);
  }

  .page-home .hero-overlay__links > span[aria-hidden="true"] {
    display: none;
  }

  .page-home .hero-overlay__links .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(127, 140, 58, 0.4);
    border-bottom: 1px solid rgba(127, 140, 58, 0.4);
    background-color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-sm);
    font-weight: 600;
    width: 100%;
  }

  .page-home .hero-overlay__links .btn-ghost:hover {
    border-color: var(--color-primary);
    background-color: rgba(247, 243, 234, 0.95);
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: var(--space-8);
  }

  .image-card__caption {
    padding-inline: var(--space-3);
  }

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

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
