.restaurant-hours {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
}

.restaurant-hours__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.restaurant-hours__eyebrow,
.sunset-dinners__eyebrow {
  color: var(--clay);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
}

.restaurant-hours__title,
.sunset-dinners__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
}

.restaurant-hours__season-note {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.45;
  max-width: 13ch;
}

.restaurant-hours__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.restaurant-hours__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--sand-lightest);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.restaurant-hours__item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
}

.restaurant-hours__days {
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.35;
}

.restaurant-hours__time {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clay);
  text-align: right;
  white-space: nowrap;
  line-height: 1.35;
}

.sunset-dinners {
  margin-top: 0.875rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--charcoal), var(--plum-deep));
  border-radius: var(--radius-lg);
  color: var(--sand-lightest);
  overflow: hidden;
}

.sunset-dinners__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.sunset-dinners__eyebrow {
  color: rgba(196, 168, 130, 0.85);
}

.sunset-dinners__title {
  color: var(--sand-lightest);
  font-style: italic;
}

.sunset-dinners__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--clay-soft);
  line-height: 1;
}

.sunset-dinners__price span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
}

.sunset-dinners__price small {
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.65);
  white-space: nowrap;
}

.sunset-dinners__summary {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.88);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}

.sunset-dinners__menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(196, 168, 130, 0.22);
  border-bottom: 1px solid rgba(196, 168, 130, 0.22);
}

.sunset-dinners__row {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196, 168, 130, 0.14);
}

.sunset-dinners__row:last-child {
  border-bottom: none;
}

.sunset-dinners__day {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay-soft);
  line-height: 1.3;
}

.sunset-dinners__item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--sand-lightest);
  line-height: 1.2;
}

.sunset-dinners__desc {
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.68);
  line-height: 1.45;
}

.sunset-dinners__footer {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sunset-dinners__footer p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.82);
  line-height: 1.45;
}

.sunset-dinners__fine-print {
  font-size: 0.66rem !important;
  color: rgba(250, 246, 240, 0.52) !important;
}

@media (max-width: 720px) {
  .restaurant-hours__intro,
  .sunset-dinners__header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .restaurant-hours__season-note {
    max-width: none;
    text-align: left;
  }

  .sunset-dinners__price {
    align-items: flex-start;
  }

  .restaurant-hours__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-hours__item {
    align-items: flex-start;
  }

  .sunset-dinners__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 420px) {
  .restaurant-hours {
    padding: 0.875rem;
  }

  .restaurant-hours__item {
    flex-direction: column;
    gap: 0.35rem;
  }

  .restaurant-hours__time {
    text-align: left;
  }

  .sunset-dinners {
    padding: 0.875rem;
  }
}