/* ==========================================================================
   STARTSEITE
   ========================================================================== */
/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--color-cream);
  padding-block: var(--space-2xl) var(--space-xl);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-bottom: var(--space-sm);
}

.hero__title-accent {
  display: block;
}

.hero__text {
  color: var(--color-text);
  max-width: var(--content-copy);
}

.hero .sublinehero {
  font-size: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* --- Bildbereich mit Deko-Elementen --- */
.hero__media {
  position: relative;
  z-index: 1;
}

.hero__frame {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(0, 28, 62, 0.25);
}

.hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.26;
  object-fit: cover;
}

/* Dekorative Kompass-Buchstaben (Markenmotiv, siehe .logo__mark) */
.hero__deco {
  position: absolute;
  z-index: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-border-sand);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero__deco--n {
  top: -8%;
  right: -4%;
  font-size: clamp(80px, 9vw, 150px);
}

.hero__deco--w {
  bottom: -10%;
  left: -8%;
  font-size: clamp(80px, 9vw, 150px);
}

.hero__compass {
  position: absolute;
z-index: 0;
bottom: -37%;
right: -65%;
width: clamp(370px, 51vw, 901px);
height: auto;
pointer-events: none;
opacity: 0.3;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__deco,
  .hero__compass {
    display: none;
  }
}
