.cm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8) var(--space-6) var(--space-9);
  overflow: hidden;
}

.cm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cm-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
}

.cm-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--color-surface-primary) 0%,
    rgba(18, 20, 22, 0.2) 50%,
    transparent 100%
  );
}

.cm-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.cm-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.cm-hero__eyebrow-line {
  width: 3rem;
  height: 2px;
  background-color: var(--color-brand-secondary);
  flex-shrink: 0;
}

.cm-hero__eyebrow-text {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-primary);
  font-weight: var(--font-weight-medium);
}

.cm-hero__headline {
  font-family: var(--font-family-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--color-on-primary-container);
  margin-bottom: var(--space-7);
  text-transform: uppercase;
}

.cm-hero__subheadline {
  max-width: 42rem;
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-7);
}

.cm-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.cm-hero__explore-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text-primary);
  transition: all var(--transition-normal);
}

.cm-hero__explore-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
  flex-shrink: 0;
}

.cm-hero__explore-icon .material-symbols-outlined {
  color: var(--color-text-primary);
  font-size: 1.5rem;
}

.cm-hero__explore-btn:hover .cm-hero__explore-icon {
  background-color: var(--color-brand-secondary);
  border-color: var(--color-brand-secondary);
}

.cm-hero__explore-label {
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .cm-hero {
    padding: var(--space-8) var(--space-8) 6rem;
  }

  .cm-hero__headline {
    margin-bottom: var(--space-7);
  }
}

@media (min-width: 1024px) {
  .cm-hero {
    padding-bottom: 6rem;
    padding-top: 12rem;
  }
}
