/* Home hero — mobile layout */
@media (max-width: 960px) {
  .hero-badge-card {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    row-gap: 0;
  }

  .hero-column--poker {
    display: none;
  }

  .hero-column--bistro {
    border-radius: 0;
    border-left: none;
    border-right: none;
    min-height: min(48vh, 360px);
    box-shadow: none;
  }

  .hero-column--bistro .hero-media {
    width: 100%;
    min-height: min(48vh, 360px);
    height: auto;
    object-fit: cover;
  }

  .hero-badge-card {
    margin-inline: var(--container-padding-x);
    margin-bottom: var(--space-24);
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-bottom: var(--space-24);
  }

  .hero-badge-card {
    margin-bottom: var(--space-20);
  }
}

.section-header-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
}

.section-header-main {
  max-width: 44rem;
}

.specials-grid {
  align-items: flex-start;
}

.occasion-grid .occasion-list,
.poker-bullets,
.coffee-bullets,
.team-bullets,
.ambience-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: var(--font-size-sm);
}

.poker-section {
  margin-top: var(--space-16);
}

.poker-layout {
  display: grid;
  grid-template-columns: 3fr 2.2fr;
  gap: var(--space-24);
  align-items: stretch;
}

.poker-media-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.poker-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-copy {
  align-self: center;
}

.poker-bullets li::before {
  content: "• ";
}

.mt-poker-cta {
  margin-top: var(--space-16);
}

.events-cta-row {
  margin-top: var(--space-24);
  display: flex;
  justify-content: flex-end;
}

.coffee-section .coffee-grid {
  align-items: flex-start;
  gap: var(--space-32);
}

.coffee-highlight {
  background: radial-gradient(circle at top left, #fffdf7 0, #f7ecd2 60%, #f4e5c2 100%);
}

.story-section .story-grid {
  align-items: flex-start;
  gap: var(--space-32);
}

.story-cta {
  margin-top: var(--space-16);
}

.team-section .team-layout {
  display: grid;
  grid-template-columns: 3fr 2.4fr;
  gap: var(--space-24);
  align-items: center;
}

.team-media-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.team-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambience-section .ambience-layout {
  display: grid;
  grid-template-columns: 2.4fr 3fr;
  gap: var(--space-24);
  align-items: center;
}

.ambience-media-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.ambience-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-section .booking-grid {
  align-items: flex-start;
  gap: var(--space-32);
}

.booking-form {
  background: #fffdf7;
}

.hours-list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: var(--space-16);
  font-size: var(--font-size-sm);
}

.hours-list dt {
  font-weight: 600;
}

.hours-list dd {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-links-section .footer-links-grid {
  align-items: stretch;
}

.legal-links {
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .poker-layout {
    grid-template-columns: minmax(0, 1.2fr);
  }

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

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

@media (max-width: 768px) {
  .events-cta-row {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .section-header-group {
    margin-bottom: var(--space-20);
  }

  .poker-section,
  .team-section,
  .ambience-section {
    margin-top: var(--space-20);
  }
}
