.lounge-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

.lounge-hero-media {
  position: relative;
  height: 100%;
}

.lounge-hero-media-frame {
  height: 100%;
  border-radius: 0;
}

.lounge-hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.lounge-hero-content {
  max-width: 34rem;
}

.lounge-hero-lead {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.lounge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.lounge-section-header {
  text-align: left;
  margin-bottom: var(--space-10);
}

.lounge-section-header .hero-subtitle {
  margin-bottom: var(--space-2);
}

.lounge-feature-grid {
  align-items: center;
}

.lounge-feature-media-wrapper {
  display: flex;
}

.lounge-feature-media {
  width: 100%;
  max-height: 440px;
}

.lounge-feature-body p:last-child {
  margin-bottom: 0;
}

.lounge-inline-cta,
.lounge-inline-cta-group {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.lounge-drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.lounge-drink-card {
  height: 100%;
}

.lounge-intimacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
}

.lounge-final-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.lounge-final-cta-content {
  flex: 1 1 280px;
}

.lounge-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .lounge-hero {
    grid-template-columns: 1.2fr 1fr;
  }

  .lounge-hero-inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}

@media (max-width: 900px) {
  .lounge-hero {
    grid-template-columns: 1fr;
  }

  .lounge-hero-media {
    order: -1;
    max-height: 420px;
  }

  .lounge-hero-media-frame {
    border-radius: 0 0 18px 18px;
  }

  .lounge-hero-inner {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}

@media (max-width: 768px) {
  .lounge-section-header {
    text-align: left;
  }

  .lounge-drinks-grid {
    grid-template-columns: 1fr;
  }

  .lounge-final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .lounge-final-cta-actions {
    justify-content: flex-start;
  }

  .order-media {
    order: -1;
  }
}

@media (max-width: 480px) {
  .lounge-hero-lead {
    font-size: var(--font-size-base);
  }

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