/* ==========================================================================
   Die Zentrale Coworking – Landing Page "Heute mal nicht allein"
   Flyer-Look: Navy / Magenta / Weiß
   ========================================================================== */

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("anton.woff2") format("woff2");
}

:root {
  --navy: #17305e;
  --navy-deep: #0f2347;
  --navy-soft: #254275;
  --pink: #e5117c;
  --pink-dark: #c40f6a;
  --white: #ffffff;
  --paper: #fafbfd;
  --ink: #17305e;
  --ink-muted: #5a6d88;
  --line: rgba(23, 48, 94, 0.12);

  --font-display: "Anton", "Helvetica Neue", "Arial Narrow", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --wrap-narrow: 780px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(23, 48, 94, 0.08);
  --shadow-md: 0 14px 36px rgba(23, 48, 94, 0.12);
  --shadow-lg: 0 24px 56px rgba(23, 48, 94, 0.18);

  --step: clamp(1rem, 0.82rem + 0.85vw, 1.125rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--pink-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section--paper {
  background: var(--paper);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.grid > *,
.steps > *,
.ticket > *,
.route > *,
.contact > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 0.75rem + 0.4vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 0.85rem;
}

.section--navy .eyebrow {
  color: #ff6bb8;
}

.lead {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 42rem;
}

.section--navy .lead {
  color: #d4dff0;
}

.section-head--center .lead {
  margin-inline: auto;
}

.divider {
  width: min(14rem, 55vw);
  height: 3px;
  background: var(--pink);
  margin: 1.25rem 0 1.5rem;
}

.section-head--center .divider {
  margin-inline: auto;
}

/* ==========================================================================
   Topbar & Hero
   ========================================================================== */

.topbar {
  padding: 1rem 0 0.25rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand__text span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 500;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero__inner {
  max-width: 52rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  margin-bottom: 0.35rem;
}

.hero h1 .line-1,
.hero h1 .line-3 {
  color: var(--navy);
  display: block;
}

.hero h1 .line-2 {
  color: var(--pink);
  display: block;
}

.hero__tagline {
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.hero__tagline em {
  color: var(--pink);
  font-style: normal;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--navy);
  font-weight: 600;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.95rem;
}

.hero__features span::before {
  content: "•";
  color: var(--pink);
  margin-right: 0.45rem;
}

.hero__features span:first-child::before {
  content: none;
  margin: 0;
}

.outline-badge {
  display: inline-block;
  border: 3px solid var(--pink);
  color: var(--pink);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
}

.pricecard {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}

.pricecard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.15rem;
}

.pricecard__offer {
  min-width: 0;
  flex: 1;
}

.pricecard__badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  margin: 0 0 1rem;
}

.pricecard__logo {
  width: clamp(4.75rem, 14vw, 7rem);
  height: auto;
  flex-shrink: 0;
  margin: -0.2rem -0.2rem 0 0;
}

.pricecard__label {
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0 0 0.35rem;
}

.price__old {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
}

.price__new {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: var(--pink);
  line-height: 1;
}

.price__cur {
  font-size: 0.65em;
}

.price__unit {
  display: block;
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.pricecard__actions {
  display: grid;
  gap: 1rem;
}

.pricecard__note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.pricecard__note strong {
  color: var(--navy);
}

/* ==========================================================================
   Navy band (Flyer „1. Stock“)
   ========================================================================== */

.flyer-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.flyer-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.flyer-band__arrow {
  width: clamp(3rem, 8vw, 4.5rem);
  color: var(--pink);
}

.flyer-band__main {
  display: grid;
  gap: 0.15rem;
}

.flyer-band__main strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.flyer-band__main span {
  color: var(--pink);
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
}

.flyer-band__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.95rem;
  color: #c8d4e8;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.flyer-band__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.flyer-band__meta svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--pink);
  flex-shrink: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.section:not(.section--navy) .btn--ghost {
  color: var(--navy);
  border-color: var(--line);
}

.section:not(.section--navy) .btn--ghost:hover {
  border-color: var(--navy);
}

/* ==========================================================================
   Cards & grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(229, 17, 124, 0.08);
  color: var(--pink);
  margin-bottom: 0.85rem;
}

.card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   Ticket section
   ========================================================================== */

.ticket {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: #e8eef8;
}

.checklist svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.factbox {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.factbox h3 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.factbox li {
  margin-bottom: 0.85rem;
  color: #d4dff0;
  font-size: 0.98rem;
}

.factbox strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.15rem;
}

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}

.steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
}

/* ==========================================================================
   Mitgliedschaften
   ========================================================================== */

.membership-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.membership-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.membership-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Route / Anfahrt
   ========================================================================== */

.route {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.addresscard {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.addresscard h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.addresscard address {
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.addresscard__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.routelist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.routelist li:last-child {
  border-bottom: 0;
}

.routelist svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pink);
}

.routelist strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.routelist p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq__body {
  padding: 0 1.15rem 1rem;
  color: var(--ink-muted);
}

.faq__body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Kontakt / Formular
   ========================================================================== */

.contact {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.formcard,
.contactcard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.contactcard h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.contactcard p {
  color: #d4dff0;
  margin-bottom: 1rem;
}

.contactcard__links {
  display: grid;
  gap: 0.75rem;
}

.contactcard__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.contactcard__links a:hover {
  color: #ff9fd0;
}

.contactcard__links svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--pink);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.optional {
  font-weight: 500;
  color: #b8c8de;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.field--consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.field--consent label {
  font-weight: 500;
  font-size: 0.92rem;
  color: #d4dff0;
  margin: 0;
}

.field--consent a {
  color: #ff9fd0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.form__status--error {
  color: #ffb4b4;
}

.form__status--info {
  color: #d4dff0;
}

.form__foot {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: #b8c8de;
}

.form__foot a {
  color: #ff9fd0;
}

.form__success {
  text-align: center;
  padding: 1rem 0.5rem;
}

.form__success svg {
  width: 3rem;
  height: 3rem;
  color: var(--pink);
  margin: 0 auto 1rem;
}

.form__success h3 {
  margin-bottom: 0.5rem;
}

.form__success p {
  color: #d4dff0;
}

/* ==========================================================================
   Footer & mobile CTA
   ========================================================================== */

.footer {
  background: var(--navy-deep);
  color: #c8d4e8;
  padding: 3rem 0 6.5rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.footer a {
  color: #ff9fd0;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  margin-bottom: 2rem;
}

.footer__grid ul li + li {
  margin-top: 0.35rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: #9fb0c8;
}

.footer__bottom p {
  margin-bottom: 0.75rem;
}

.mobilecta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(23, 48, 94, 0.12);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.mobilecta[data-visible="true"] {
  transform: translateY(0);
}

.mobilecta__price {
  line-height: 1.15;
}

.mobilecta__price s {
  display: block;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.mobilecta__price b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pink);
}

.mobilecta__price span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.mobilecta .btn {
  flex-shrink: 0;
  min-height: 2.75rem;
  padding-inline: 1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .ticket,
  .route,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar__phone span {
    display: none;
  }

  .flyer-band__inner {
    grid-template-columns: 1fr;
  }

  .flyer-band__arrow {
    display: none;
  }

  .mobilecta {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .mobilecta {
    transition: none;
  }
}
