/* ============================================
   THE TABLE (Dining) — Tanjung Bayu
   ============================================ */

.table-section {
  background-color: var(--c-deep-teal);
}

/* ---- Hero Image ---- */
.table-section__hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

.table-section__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-section__hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26, 60, 64, 0.85) 100%
  );
}

.table-section__hero-content {
  position: absolute;
  bottom: var(--sp-3xl);
  left: 0;
  right: 0;
  padding: 0 var(--sp-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.table-section__quote {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--c-white);
}

/* ---- Body ---- */
.table-section__body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-section);
}

.table-section__text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-white-80);
  max-width: var(--max-w-text);
  margin-bottom: var(--sp-3xl);
}

/* ---- Dishes ---- */
.table-section__dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.table-section__dish img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-md);
}

.table-section__dish h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--sp-xs);
  line-height: 1.25;
}

.table-section__dish p {
  font-size: 14px;
  line-height: 1.50;
  color: var(--c-white-50);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .table-section__hero {
    height: 50vh;
    min-height: 350px;
  }

  .table-section__hero-content {
    bottom: var(--sp-xl);
    padding: 0 var(--sp-md);
  }

  .table-section__body {
    padding: var(--sp-2xl) var(--sp-md) var(--sp-4xl);
  }

  .table-section__dishes {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
}
