body.page-home {
  background-image: radial-gradient(circle at top left, #fdf7ee 0, var(--color-bg) 52%, #efe4d4 100%);
}

.page-home .page-shell {
  padding-block: var(--space-8);
  min-width: 0;
}

.page-home .container {
  min-width: 0;
}

/* ------------------------------------------------------------------
   Hero — editorial single image
   ------------------------------------------------------------------ */
.page-home .hero--home {
  padding-block: clamp(var(--space-6), 5vw, var(--space-12));
}

.page-home .hero-frame {
  position: relative;
  border: 1px solid rgba(208, 195, 175, 0.85);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-5), 3.5vw, var(--space-8));
  background: linear-gradient(148deg, #fffdf9 0%, #fcf7ee 48%, #f3eadc 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 48px rgba(58, 42, 18, 0.1);
  min-width: 0;
  overflow: hidden;
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 29, 0.75), transparent);
  pointer-events: none;
}

.page-home .hero-grid--home {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(var(--space-6), 4.5vw, var(--space-10));
  align-items: center;
  min-width: 0;
}

.page-home .hero-copy--home {
  min-width: 0;
  gap: clamp(var(--space-4), 2.5vw, var(--space-6));
  padding-block: clamp(var(--space-1), 1.5vw, var(--space-4));
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--space-3);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200, 146, 29, 0.28);
  border-radius: var(--radius-round);
  background: rgba(200, 146, 29, 0.07);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  line-height: var(--line-height-snug);
}

.page-home .hero-kicker::after {
  content: "";
  flex: 0 0 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.page-home .hero-title {
  font-size: clamp(2.05rem, 3.6vw + 0.4rem, 3rem);
  line-height: 1.12;
  max-width: 17ch;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.page-home .hero-lede {
  max-width: 34rem;
  margin: 0;
  padding-left: var(--space-4);
  border-left: 2px solid rgba(200, 146, 29, 0.38);
  font-family: var(--font-serif);
  font-size: clamp(var(--font-size-md), 1.6vw, var(--font-size-lg));
  line-height: var(--line-height-relaxed);
  color: var(--gray-600);
}

.page-home .hero-actions--home {
  padding-top: var(--space-2);
  gap: var(--space-3);
}

.page-home .hero-actions--home .btn {
  min-width: 0;
}

.page-home .hero-actions--home .btn-primary {
  box-shadow: 0 4px 16px rgba(200, 146, 29, 0.28);
}

.page-home .hero-actions--home .btn-primary:hover {
  box-shadow: 0 8px 22px rgba(200, 146, 29, 0.34);
}

.page-home .hero-actions--home .btn-outline {
  border-color: rgba(177, 132, 26, 0.45);
  background: rgba(255, 255, 255, 0.55);
}

.page-home .hero-tags--home {
  padding-top: var(--space-5);
  margin-top: var(--space-1);
  border-top: 1px solid rgba(224, 215, 201, 0.9);
}

/* Single hero image */
.page-home .hero-media--home {
  position: relative;
  margin: 0;
  min-width: 0;
}

.page-home .hero-media__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 195, 175, 0.8);
  border-radius: var(--radius-xl);
  background: #2a2218;
  box-shadow:
    0 16px 44px rgba(36, 24, 8, 0.14),
    0 4px 12px rgba(36, 24, 8, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  aspect-ratio: 5 / 6;
  min-height: clamp(320px, 46vh, 540px);
  max-height: clamp(380px, 52vh, 580px);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.page-home .hero-media__frame::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(200, 146, 29, 0.22) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36, 32, 26, 0.78) 0%,
    rgba(36, 32, 26, 0.28) 40%,
    rgba(36, 32, 26, 0.04) 72%
  );
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.page-home .hero-media__frame:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 146, 29, 0.42);
  box-shadow:
    0 22px 52px rgba(36, 24, 8, 0.18),
    0 6px 16px rgba(36, 24, 8, 0.08);
}

.page-home .hero-media__caption {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2) var(--space-3);
  margin: 0;
  color: #fffdf8;
  pointer-events: none;
}

.page-home .hero-media-caption__lead {
  font-family: var(--font-display);
  font-size: clamp(var(--font-size-sm), 1.4vw, var(--font-size-md));
  font-weight: 500;
  line-height: var(--line-height-snug);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(15, 10, 4, 0.45);
}

.page-home .hero-media-caption__tag {
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-round);
  border: 1px solid rgba(255, 252, 245, 0.32);
  background: rgba(36, 32, 26, 0.52);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  white-space: nowrap;
}

/* ------------------------------------------------------------------
   Section rhythm
   ------------------------------------------------------------------ */
.section-welcome,
.section-menu,
.section-poker,
.section-team,
.section-week,
.section-testimonials,
.section-guarantee,
.section-cta {
  padding-block: var(--space-10);
  min-width: 0;
}

.section-welcome {
  background: linear-gradient(180deg, transparent 0%, rgba(252, 247, 238, 0.45) 100%);
}

.section-menu {
  background: rgba(255, 255, 255, 0.35);
}

.section-poker {
  background: linear-gradient(180deg, rgba(200, 146, 29, 0.04) 0%, transparent 100%);
}

@media (max-width: 899px) {
  /* Override desktop 2-col rule — more specific than base.css single-col collapse */
  .page-home .hero-grid--home {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
    align-items: stretch;
  }

  .page-home .hero-media--home,
  .page-home .hero-media__frame,
  .page-home .hero-copy--home {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .page-home .page-shell {
    padding-block: var(--space-6);
  }

  .section-welcome,
  .section-menu,
  .section-poker,
  .section-team,
  .section-week,
  .section-testimonials,
  .section-guarantee,
  .section-cta {
    padding-block: var(--space-8);
  }

  .page-home .hero-frame {
    padding: var(--space-4);
  }

  .page-home .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
    max-width: none;
    overflow-wrap: break-word;
  }

  .page-home .hero-lede {
    padding-left: var(--space-3);
    font-size: var(--font-size-md);
  }

  .page-home .hero-media__frame {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: none;
  }

  .page-home .hero-actions--home .btn,
  .page-home .section-actions .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ------------------------------------------------------------------
   Welcome block
   ------------------------------------------------------------------ */
.welcome-grid {
  gap: var(--space-8);
  align-items: start;
  min-width: 0;
}

.welcome-text,
.welcome-panel {
  min-width: 0;
}

.welcome-panel {
  background: linear-gradient(160deg, #fcf7ee 0%, #fffdf8 100%);
  border-color: #d0c3af;
  box-shadow: var(--shadow-soft);
}

.welcome-list li {
  padding-left: var(--space-4);
  border-left: 2px solid rgba(200, 146, 29, 0.35);
}

.welcome-list__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--gray-900);
}

.welcome-list__text {
  font-size: var(--font-size-sm);
}

/* ------------------------------------------------------------------
   Menu preview
   ------------------------------------------------------------------ */
.section-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: var(--space-8);
  align-items: start;
  min-width: 0;
}

.section-header-grid > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .section-header-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.menu-preview {
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border-color: #d0c3af;
}

.menu-preview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d0c3af;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.menu-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-board--compact {
  padding: var(--space-4);
  background-color: rgba(255, 255, 255, 0.7);
}

.menu-footnote {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------------
   Poker lounge card
   ------------------------------------------------------------------ */
.poker-card {
  gap: var(--space-6);
  min-width: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 238, 0.92));
  border-color: #d0c3af;
}

.poker-text,
.poker-image {
  min-width: 0;
}

.poker-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d0c3af;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4 / 3;
}

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

.poker-highlights li {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(200, 146, 29, 0.06);
  border: 1px solid rgba(200, 146, 29, 0.12);
}

.poker-highlights__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
}

.poker-highlights__text {
  font-size: var(--font-size-sm);
}

/* ------------------------------------------------------------------
   Team section
   ------------------------------------------------------------------ */
.team-card {
  background-image: linear-gradient(135deg, rgba(252, 247, 238, 0.95), rgba(247, 241, 230, 0.98));
  border-color: #d0c3af;
}

.team-grid {
  gap: var(--space-6);
  align-items: center;
  min-width: 0;
}

.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d0c3af;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

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

.team-roles {
  gap: var(--space-4);
}

.team-role {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #e0d7c9;
  min-width: 0;
}

.team-role__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
}

.team-role__text {
  font-size: var(--font-size-sm);
}

/* ------------------------------------------------------------------
   Week events
   ------------------------------------------------------------------ */
.week-card {
  background: linear-gradient(180deg, #fcf7ee 0%, #fffdf8 100%);
  border-color: #d0c3af;
}

.week-card .card-header {
  border-bottom-color: #e0d7c9;
}

.event-row {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.event-row:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: #e0d7c9;
}

.event-row:last-child {
  border-bottom: none;
}

/* ------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------ */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  align-items: stretch;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid #d0c3af;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--gray-800);
}

.testimonial__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.testimonial__meta {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid #e0d7c9;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------------
   Guarantee & CTA
   ------------------------------------------------------------------ */
.guarantee-card {
  gap: var(--space-6);
  min-width: 0;
  border-color: #d0c3af;
}

.guarantee-list li {
  padding-left: var(--space-4);
  border-left: 2px solid rgba(200, 146, 29, 0.3);
}

.guarantee-list__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
}

.guarantee-list__text {
  font-size: var(--font-size-sm);
}

.guarantee-panel {
  align-self: stretch;
  min-width: 0;
}

.guarantee-panel__box {
  border-radius: var(--radius-lg);
  border: 1px solid #d0c3af;
  padding: var(--space-4);
  background: linear-gradient(160deg, #fdf7ee 0%, #fffdf8 100%);
  box-shadow: var(--shadow-soft);
}

.guarantee-panel__box--secondary {
  background: #fff;
}

.guarantee-panel__title {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
}

.guarantee-panel__text {
  font-size: var(--font-size-sm);
}

.cta-card {
  background-image: linear-gradient(135deg, rgba(252, 247, 238, 0.98), rgba(247, 241, 230, 1));
  border-color: #d0c3af;
  box-shadow: var(--shadow-medium);
}

.cta-grid {
  gap: var(--space-6);
  min-width: 0;
}

.cta-links {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e0d7c9;
  min-width: 0;
}

.cta-links__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
}

.cta-links__text {
  font-size: var(--font-size-sm);
}

.cta-links__list li + li {
  margin-top: var(--space-2);
}

.cta-links__list a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ------------------------------------------------------------------
   Mobile stacking
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
  .poker-card,
  .team-grid,
  .guarantee-card,
  .cta-grid,
  .welcome-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .week-card .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 599px) {
  .page-home .hero--home {
    padding-block: var(--space-5);
  }

  .page-home .hero-kicker {
    letter-spacing: 0.12em;
    padding: 0.35rem 0.75rem;
  }

  .page-home .hero-kicker::after {
    display: none;
  }

  .page-home .hero-media__frame {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }

  .page-home .hero-media__caption {
    left: var(--space-3);
    right: var(--space-3);
    bottom: var(--space-3);
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .hero-media-caption__tag {
    white-space: normal;
    line-height: 1.4;
  }

  .page-home .hero-actions--home {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .hero-actions--home .btn {
    width: 100%;
    justify-content: center;
  }
}
