/* Dual marquee posts + buffet menu section */

.posts-showcase {
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}

.posts-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.posts-kicker,
.buffet-kicker {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.posts-showcase-head h2,
.buffet-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.posts-subheading,
.buffet-subheading {
  margin: 0.65rem 0 0;
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.55;
}

.posts-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.posts-marquee + .posts-marquee {
  margin-top: 1rem;
}

.posts-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: postsMarqueeLtr 42s linear infinite;
}

.posts-marquee--rtl .posts-marquee-track {
  animation-name: postsMarqueeRtl;
}

.posts-marquee:hover .posts-marquee-track {
  animation-play-state: paused;
}

.posts-card {
  flex: 0 0 auto;
  width: clamp(200px, 18vw, 280px);
  height: clamp(300px, 34vw, 420px);
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #111;
}

.posts-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f0f0f;
}

.posts-marquee:hover .posts-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(219, 0, 7, 0.18);
}

@keyframes postsMarqueeLtr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes postsMarqueeRtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Buffet menus */
.buffet-section {
  padding-top: 1rem;
}

.buffet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.buffet-contact-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 188, 13, 0.16);
  border: 1px solid rgba(255, 188, 13, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  color: #3a2f1f;
}

.buffet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.buffet-tab {
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 41, 41, 0.12);
  background: #fff;
  color: #1f1f1f;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.buffet-tab:hover,
.buffet-tab:focus-visible {
  border-color: rgba(219, 0, 7, 0.25);
  transform: translateY(-1px);
}

.buffet-tab.is-active {
  background: linear-gradient(135deg, var(--brand-red), #b80006);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(219, 0, 7, 0.28);
}

.buffet-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(41, 41, 41, 0.08);
  box-shadow: 0 20px 60px rgba(17, 15, 14, 0.08);
}

.buffet-panel[hidden] {
  display: none;
}

.buffet-panel-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 0;
  min-height: 280px;
}

.buffet-panel--sunrise .buffet-panel-hero-copy {
  background: linear-gradient(135deg, #fff8ef 0%, #ffe8c8 100%);
}

.buffet-panel--ember .buffet-panel-hero-copy {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1515 100%);
  color: #fff;
}

.buffet-panel--ember .buffet-panel-hero-copy p,
.buffet-panel--ember .buffet-panel-hero-copy h3 {
  color: #fff;
}

.buffet-panel--cocoa .buffet-panel-hero-copy {
  background: linear-gradient(135deg, #5c4033 0%, #3d2a22 100%);
  color: #fff;
}

.buffet-panel--cocoa .buffet-panel-hero-copy p,
.buffet-panel--cocoa .buffet-panel-hero-copy h3 {
  color: #fff;
}

.buffet-panel-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.buffet-panel-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.buffet-panel-hero-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.buffet-panel-hero-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
}

.buffet-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.buffet-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.buffet-panel--ember .buffet-price-chip,
.buffet-panel--cocoa .buffet-price-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.buffet-price-chip strong {
  font-size: 1rem;
  color: var(--brand-red);
}

.buffet-panel--ember .buffet-price-chip strong,
.buffet-panel--cocoa .buffet-price-chip strong {
  color: var(--brand-yellow);
}

.buffet-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.35rem 1.35rem 1rem;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
}

.buffet-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem 0.95rem 1.25rem;
  border-radius: 16px;
  overflow: visible;
  border: 1px solid rgba(92, 64, 51, 0.08);
  background: #fff;
  box-shadow: 0 2px 10px rgba(92, 64, 51, 0.06);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
}

.buffet-schedule-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #ff9e9e, #e86b6b);
}

.buffet-schedule-row.is-closed::before {
  background: linear-gradient(180deg, #d0d0d0, #a8a8a8);
}

.buffet-schedule-row.is-closed {
  opacity: 0.78;
  background: #fafafa;
}

.buffet-schedule-row.is-special {
  border-color: rgba(232, 107, 107, 0.2);
  background: linear-gradient(90deg, #fff9f6 0%, #fff 100%);
}

.buffet-schedule-row.is-special::before {
  background: linear-gradient(180deg, #ffc72c, #ffbc0d);
}

.buffet-schedule-row:not(.is-closed):hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(92, 64, 51, 0.1);
  border-color: rgba(255, 158, 158, 0.28);
}

.buffet-schedule-day {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.buffet-schedule-day strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c4033;
  font-weight: 800;
}

.buffet-schedule-day span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.35;
}

.buffet-schedule-time {
  flex-shrink: 0;
  min-width: 0;
  max-width: 11rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #5c4033 0%, #3d2a22 100%);
  box-shadow: 0 4px 14px rgba(92, 64, 51, 0.22);
}

.buffet-schedule-row.is-closed .buffet-schedule-time {
  background: linear-gradient(135deg, #b8b8b8, #949494);
  box-shadow: none;
}

.buffet-schedule-row.is-special .buffet-schedule-time {
  background: linear-gradient(135deg, #e86b6b, #c94a4a);
  box-shadow: 0 4px 14px rgba(232, 107, 107, 0.3);
}

.buffet-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
}

.buffet-column h4 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.buffet-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.buffet-column li {
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(41, 41, 41, 0.06);
  font-size: 0.88rem;
  line-height: 1.4;
  color: #333;
}

.buffet-column li:last-child {
  border-bottom: 0;
}

@media (max-width: 959px) {
  .posts-showcase-head,
  .buffet-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .buffet-panel-hero {
    grid-template-columns: 1fr;
  }

  .buffet-panel-hero img {
    min-height: 220px;
    max-height: 280px;
  }

  .buffet-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .posts-card {
    width: clamp(150px, 42vw, 190px);
    height: clamp(220px, 58vw, 280px);
    border-radius: 18px;
  }

  .buffet-columns {
    grid-template-columns: 1fr;
  }

  .buffet-schedule-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: 18px;
  }

  .buffet-schedule-time {
    max-width: none;
    width: 100%;
  }

  .buffet-pricing {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .posts-marquee-track {
    animation: none;
  }

  .hero-video {
    display: none;
  }
}

/* Hero video banner */
.hero-video-banner {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  margin: 0 0 0.5rem;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.hero-video-media {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.45) 45%, rgba(8, 8, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 78vh, 760px);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.hero-video-copy {
  max-width: min(640px, 100%);
  color: #fff;
}

.hero-video-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(220px, 70vw);
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.hero-video-eyebrow {
  color: var(--brand-yellow);
}

.hero-video-copy h1 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 14ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-video-copy p {
  margin: 0 0 1.25rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 1.02rem;
}

.hero-video-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-video-ghost:hover,
.hero-video-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-video-copy .pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 700px) {
  .hero-video-banner,
  .hero-video-content {
    min-height: 560px;
  }

  .hero-video-copy h1 {
    max-width: none;
  }
}
