/* ==========================================================================
   DIA BONITO · dining.css
   Dining: overview, a day of eating, local sourcing, the bar.
   Hero, breaks, notes grid, and closing CTA come from style.css.
   ========================================================================== */

/* The kitchen photo's brightness is now handled by the card behind
   .din-overview-body (see [data-media-slot="dining-kitchen"] .container-narrow
   below), not by darkening the whole panel-scrim. */
[data-media-slot="dining-kitchen"] .container-narrow {
  background: rgba(10, 19, 16, 0.8);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 44px);
  max-width: 760px;
}

/* --- Overview
   The chef's intro now sits inside the "dining-kitchen" full-bleed panel (see
   style.css for .panel). Just the text styling lives here. ------------- */

.din-overview-body {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.62;
  color: var(--bone);
  margin-bottom: 32px;
}

.din-overview-body:last-child {
  margin-bottom: 0;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--bone-2);
}

/* --- Narrative sections
   "Drinking" now sits inside the "dining-drinking" full-bleed panel (see
   style.css for .panel-center). Just the text styling lives here. ----- */

.din-section-title {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(27px, 4.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 740px;
  margin: 0 auto;
  text-shadow:
    0 1px 3px rgba(10, 19, 16, 0.9),
    0 2px 20px rgba(10, 19, 16, 0.7),
    0 4px 40px rgba(10, 19, 16, 0.5);
}

.din-section-rule { margin-top: 34px; margin-bottom: 42px; }

.din-section-body {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.8;
  color: var(--bone-2);
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: left;
}

.din-section-body:last-child { margin-bottom: 0; }

/* --- The kitchen has a story
   Flowing text between the hero and the kitchen panel; reuses the
   narrative title, rule, and body styles above. ------------------------ */

.din-story {
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
}

/* --- A day of eating -------------------------------------------------------- */

.din-day {
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 11vw, 140px);
}

.din-day .container {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

/* Sourcing, dietary, and cook-along notes folded in after the meals */
.din-day-notes {
  margin-top: clamp(56px, 8vw, 96px);
  margin-bottom: 0;
}

.din-day-notes .din-section-body { margin-bottom: 24px; }
.din-day-notes .din-section-body:last-child { margin-bottom: 0; }

.din-meals {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 0;
}

@media (min-width: 860px) {
  .din-meals {
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(56px, 6vw, 96px);
  }
}

.din-meal {
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
}

.din-meal-name {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.din-meal-rule { margin: 24px 0; width: 36px; }

.din-meal-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--bone-2);
  max-width: 480px;
}
