.bar-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bar-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.bar-hero__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bar-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bar-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.3), rgba(10, 10, 11, 0.8));
  z-index: 1;
}

.bar-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-24) 0;
}

.bar-hero__subtitle {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.bar-hero__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
  font-weight: 800;
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.bar-hero__description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.bar-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.bar-feature {
  padding: var(--space-24) 0;
  background-color: var(--color-bg);
}

.bar-feature:nth-child(even) {
  background-color: var(--color-bg-secondary);
}

.bar-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .bar-feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
  
  .bar-feature--reversed .bar-feature__grid {
    direction: rtl;
  }
  
  .bar-feature--reversed .bar-feature__content {
    direction: ltr;
  }
  
  .bar-feature--reversed .bar-feature__image-wrapper {
    direction: ltr;
  }
}

.bar-feature__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.bar-feature__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bar-feature__image-wrapper:hover .bar-feature__image {
  transform: scale(1.05);
}

.bar-feature__content {
  padding: var(--space-4) 0;
}

.bar-feature__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.bar-feature__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.bar-feature__link {
  margin-top: var(--space-6);
  display: inline-flex;
}

.bar-menu-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  text-align: center;
}

.bar-menu-section__content {
  max-width: 800px;
  margin: 0 auto;
}

.bar-menu-section__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.bar-menu-section__description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.bar-menu-section__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.bar-highlight {
  padding: var(--space-6);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.bar-highlight:hover {
  border-color: var(--color-accent-subtle);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bar-highlight__title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.bar-highlight__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.bar-menu-section__cta {
  margin-top: var(--space-8);
}

.bar-experiences {
  padding: var(--space-24) 0;
  background-color: var(--color-bg);
}

.bar-experiences__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.bar-experiences__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.bar-experiences__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

.bar-experiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.bar-experience__name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.bar-experience__description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.bar-experience__list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
}

.bar-experience__list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bar-experience__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.bar-experiences__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.bar-cta {
  padding: var(--space-24) 0;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.bar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.bar-cta__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bar-cta__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.bar-cta__text {
  font-size: var(--text-lg);
  color: rgba(250, 250, 250, 0.8);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.bar-cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .bar-hero__actions,
  .bar-cta__actions,
  .bar-experiences__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bar-hero__actions .btn,
  .bar-cta__actions .btn,
  .bar-experiences__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .bar-experiences__grid {
    grid-template-columns: 1fr;
  }
  
  .bar-menu-section__highlights {
    grid-template-columns: 1fr;
  }
}