/* ==========================================================================
   Antrophy – "Bald online"-Startseite (coming-soon) · helle Version
   Nutzt die Design-Tokens & Schriften aus base.css. Desktop-Version.
   ========================================================================== */

.cs-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
  color: var(--text-secondary);
  padding: 2.5rem 2rem 3rem;
}

/* Kopfzeile mit Logo (mittig) */
.cs-header {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cs-logo {
  width: 190px;
  height: auto;
  filter: brightness(0); /* weißes Logo → dunkel auf weißem Grund */
}

/* Zentrierter Inhalt */
.cs-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.25rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
}

.cs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-s);
  color: var(--text-secondary);
  margin: 0;
}

.cs-title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-600);
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-secondary);
  margin: 0;
  white-space: nowrap; /* "Gerade entsteht etwas Neues." bleibt in einer Zeile */
}
.cs-title span {
  color: var(--text-grey-bright); /* Grau wie die zweite Hero-Zeile auf der Home-Seite */
}

.cs-text {
  font-size: var(--text-l);
  line-height: 1.6;
  color: var(--neutral);
  max-width: 560px;
  margin: 0;
}

/* Gründer */
.cs-founders {
  display: flex;
  gap: 3rem;
  margin-top: 0.5rem;
}
.cs-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cs-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.cs-founder-name {
  font-weight: var(--fw-600);
  color: var(--text-primary);
  margin: 0;
}
.cs-founder-role {
  font-size: var(--text-s);
  color: var(--neutral);
  margin: 0;
}
.cs-founder-phone {
  font-size: var(--text-s);
  color: var(--neutral);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cs-founder-phone:hover {
  color: var(--brand-primary);
}

/* Kontakt-Button im Marken-Look: Logo im weißen Kreis + Text.
   Beim Hover rotiert das Icon (statt Move-up) – wie im Webflow-Projekt. */
.cs-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.cs-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--brand-primary);
  border-radius: 1000px;
  padding: 0.25rem 1.75rem 0.25rem 0.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cs-email-btn:hover {
  background-color: var(--brand-dark-blue);
}
.cs-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 55px;
  height: 55px;
  border-radius: 1000px;
  background-color: var(--white);
}
.cs-email-icon img {
  width: 32px;
  height: auto;
  transition: transform 0.45s ease;
}
.cs-email-btn:hover .cs-email-icon img {
  transform: rotate(-360deg);
}
.cs-email-text {
  color: var(--white);
  font-weight: var(--fw-500);
}

/* Fußzeile */
.cs-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: var(--text-s);
  color: var(--neutral);
}
.cs-footer p {
  color: var(--neutral);
  margin: 0;
}
.cs-footer a {
  color: var(--neutral);
}

/* ==========================================================================
   Responsive (Breakpoints wie im Webflow-Projekt: 991 / 767 / 479)
   ========================================================================== */
@media screen and (max-width: 991px) {
  .cs-page {
    padding: 2.25rem 1.75rem 2.75rem;
  }
  .cs-main {
    max-width: 640px;
    gap: 2rem;
  }
  .cs-title {
    font-size: 48px;
    white-space: normal; /* Heading darf jetzt umbrechen */
  }
  .cs-text {
    font-size: 18px;
  }
  .cs-founders {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .cs-page {
    padding: 2rem 1.5rem 2.5rem;
  }
  .cs-logo {
    width: 160px;
  }
  .cs-main {
    gap: 1.75rem;
    padding: 2rem 0;
  }
  .cs-title {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .cs-founders {
    gap: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .cs-logo {
    width: 140px;
  }
  .cs-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .cs-text {
    font-size: var(--text-m);
  }
  .cs-founders {
    gap: 1.5rem;
  }
  .cs-avatar {
    width: 64px;
    height: 64px;
  }
  .cs-email-btn {
    padding: 0.25rem 1.25rem 0.25rem 0.25rem;
  }
  .cs-email-icon {
    width: 46px;
    height: 46px;
  }
  .cs-email-icon img {
    width: 26px;
  }
  .cs-email-text {
    font-size: var(--text-s);
  }
}
