/* ===========================================================
   Hausverwaltung Beudt · Frankfurt am Main
   Helles, freundliches Design mit Bildern
   Schriften: selbst gehostet (DSGVO-freundlich)
   =========================================================== */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}

:root {
  --white:     #ffffff;
  --cream:     #f8f5ef;
  --sand:      #f1ead9;
  --blue-soft: #e8eef8;
  --navy:      #17273f;
  --navy-2:    #21365a;
  --body:      #55627a;
  --muted:     #6b7689;
  --gold:      #bd9557;
  --gold-deep: #8a6830;
  --green:     #2fa36b;
  --line:      #ece7dc;

  --shadow-sm: 0 6px 24px rgba(23, 39, 63, 0.07);
  --shadow-lg: 0 24px 70px rgba(23, 39, 63, 0.14);

  --r-lg: 26px;
  --r-md: 16px;
  --maxw: 1160px;
  --pad:  clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }
h2 { font-size: clamp(27px, 3.6vw, 42px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 19px; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* ---------- Bausteine ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.label::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--sand);
  color: var(--gold-deep);
  font-size: 13.5px;
  font-weight: 600;
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-chip svg { width: 22px; height: 22px; }
.icon-chip--sand { background: var(--sand); color: var(--gold-deep); }
.icon-chip--blue { background: var(--blue-soft); color: var(--navy-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(23, 39, 63, 0.22);
}
.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 39, 63, 0.28);
}
.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.btn--gold:hover { background: #cfa96a; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--nav { padding: 11px 22px; font-size: 14px; box-shadow: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .35s, background .35s;
}
.nav.is-scrolled { background: rgba(255, 255, 255, 0.97); box-shadow: 0 6px 30px rgba(23, 39, 63, 0.08); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
  background: linear-gradient(140deg, var(--gold), var(--gold-deep));
  box-shadow: 0 6px 16px rgba(166, 127, 65, 0.35);
}
.nav__name { display: flex; flex-direction: column; line-height: 1.15; }
.nav__name strong { font-family: var(--font-head); font-size: 18px; color: var(--navy); }
.nav__name small { font-size: 10.5px; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a:not(.btn) {
  position: relative;
  padding: 9px 15px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav__links a:not(.btn):hover { color: var(--navy); background: var(--cream); }
.nav__links a.is-active:not(.btn) { color: var(--navy); background: var(--sand); }
.nav__links .btn { margin-left: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: var(--cream);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
}
.nav__burger span {
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .35s var(--ease);
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 170px) var(--pad) clamp(48px, 7vw, 90px);
  background:
    radial-gradient(700px 480px at 88% 10%, rgba(189, 149, 87, 0.10), transparent 65%),
    radial-gradient(600px 420px at 4% 88%, rgba(33, 54, 90, 0.06), transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 22px 0 20px;
}
.hero__title span {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { font-size: 17.5px; max-width: 480px; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__facts li { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.hero__facts svg { width: 19px; height: 19px; color: var(--gold-deep); flex-shrink: 0; }
.hero__facts strong { color: var(--navy); font-weight: 600; }

.hero__media { position: relative; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -26px -26px auto auto;
  width: 78%; height: 78%;
  border-radius: 40px;
  background: var(--sand);
  z-index: 0;
}
.hero__media::after {
  content: "";
  position: absolute;
  left: -34px; bottom: -6px;
  width: 120px; height: 120px;
  background-image: radial-gradient(var(--gold) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  opacity: .5;
  z-index: 0;
}
.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 230px 230px var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  animation: floaty 5.5s ease-in-out infinite alternate;
}
.hero__card strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); line-height: 1.3; }
.hero__card small { color: var(--muted); font-size: 12.5px; }
.hero__card--top { top: 14%; left: -40px; }
.hero__card--bottom { bottom: 7%; right: -18px; animation-delay: 1.2s; }
.hero__card .icon-chip { width: 40px; height: 40px; border-radius: 12px; }
.hero__pulse {
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin: 0 4px;
}
.hero__pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: .5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { to { transform: scale(1.7); opacity: 0; } }
@keyframes floaty { to { transform: translateY(-10px); } }

/* Hero-Einstieg */
[data-hero-step] { opacity: 0; animation: rise .85s var(--ease) forwards; }
[data-hero-step]:nth-of-type(1) { animation-delay: .05s; }
.hero__title[data-hero-step] { animation-delay: .15s; }
.hero__lead[data-hero-step] { animation-delay: .3s; }
.hero__actions[data-hero-step] { animation-delay: .45s; }
.hero__facts[data-hero-step] { animation-delay: .6s; }
[data-hero-media] { opacity: 0; animation: heroMedia 1.1s var(--ease) .35s forwards; }
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroMedia {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Merkmale-Band ---------- */
.features { padding: 0 var(--pad); }
.features__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
}
.features__row li { display: flex; align-items: center; gap: 14px; }
.features__row strong { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.features__row small { color: var(--muted); font-size: 13px; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(70px, 10vw, 120px) var(--pad); }
.section--tight { padding-top: 0; }
.section--cream { background: var(--cream); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__intro { margin-top: 14px; }

/* ---------- Leistungs-Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(236, 231, 220, 0.8);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .icon-chip { margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.8px; }

/* ---------- Über uns ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__media { position: relative; padding: 0 34px 44px 0; }
.about__img-main {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about__img-small {
  position: absolute;
  right: 0; bottom: 0;
  width: 56%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  top: -24px; right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge strong { font-family: var(--font-head); font-size: 30px; font-weight: 700; line-height: 1; }
.about__badge strong::after { content: "+"; color: var(--gold); }
.about__badge small { font-size: 11px; line-height: 1.3; opacity: .85; margin-top: 4px; }
.about__text > p:not(.label) { margin-top: 16px; max-width: 500px; }
.about__sign {
  margin-top: 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
}
.about__sign::before { content: "— "; color: var(--gold); }

.checklist { margin-top: 24px; display: grid; gap: 12px; max-width: 460px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sand);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
}

/* ---------- Zahlen ---------- */
.stats { padding: 0 var(--pad) clamp(70px, 10vw, 110px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 48px);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat span:last-child { font-size: 14px; color: var(--muted); }

/* ---------- Frankfurt-Band ---------- */
.city { padding: 0 var(--pad) clamp(70px, 10vw, 120px); }
.city__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.city__frame img {
  width: 100%;
  height: clamp(380px, 52vw, 540px);
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.city__quote {
  position: absolute;
  left: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  max-width: 520px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.city__quote p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--navy);
  line-height: 1.5;
}
.city__quote span {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.city__chip {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 36px);
  counter-reset: steps;
}
.step { position: relative; }
.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 20px;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 60px; right: -18px;
  border-top: 2px dashed var(--line);
}
.step h3 { margin-bottom: 8px; font-size: 17.5px; }
.step p { font-size: 14.5px; }

/* ---------- CTA-Banner ---------- */
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 60px);
  overflow: hidden;
}
.cta__skyline {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
}
.cta__text { position: relative; }
.cta__text h2 { color: var(--white); margin-bottom: 14px; }
.cta__text p { color: rgba(255, 255, 255, 0.75); max-width: 440px; margin-bottom: 26px; }
.cta__media { position: relative; }
.cta__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(1.5deg);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.faq__head .section__intro { max-width: 320px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid rgba(236, 231, 220, 0.8);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .35s;
}
.faq__item.is-open { box-shadow: var(--shadow-lg); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
  transition: background .35s;
}
.faq__item.is-open .faq__icon { background: var(--navy); }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .4s, background .35s;
}
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--white); }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 24px 22px; font-size: 15px; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact__info > p:not(.label) { margin-top: 14px; max-width: 460px; }
.contact__list { margin-top: 28px; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 15px; }
.contact__list small {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__list a, .contact__list li > div > span { font-weight: 500; color: var(--navy); font-size: 15.5px; }
.contact__list a:hover { color: var(--gold-deep); }
.contact__img {
  margin-top: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.contact__form {
  background: var(--white);
  border: 1px solid rgba(236, 231, 220, 0.8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 3.5vw, 40px);
  display: grid;
  gap: 18px;
}
.contact__form h3 { font-size: 21px; margin-bottom: 4px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  transition: border-color .3s, background .3s;
  resize: vertical;
}
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
}
.contact__hint { font-size: 14px; color: var(--gold-deep); min-height: 20px; }

/* ---------- Nach-oben-Button ---------- */
.totop {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s;
}
.totop.is-show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--cream); padding: 0 var(--pad); }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(44px, 6vw, 64px) 0 36px;
  border-bottom: 1px solid var(--line);
}
.footer__col { display: grid; gap: 10px; align-content: start; justify-items: start; }
.footer__col > strong { font-family: var(--font-head); color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.footer__col a:not(.nav__brand), .footer__col span { font-size: 14.5px; color: var(--body); }
.footer__col a:not(.nav__brand):hover { color: var(--navy); }
.footer__col--brand p { font-size: 14.5px; max-width: 300px; margin-top: 6px; }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0 26px;
  font-size: 13.5px;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--navy); }

/* ---------- Scroll-Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Tablet ---------- */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }
  .faq__head .section__intro { max-width: 560px; }
  .features__row { grid-template-columns: repeat(2, 1fr); }
  .hero__card--top { left: -10px; }
  .hero__card--bottom { right: -6px; }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 520px; margin: 0 auto; width: 100%; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .step:nth-child(2)::before { display: none; }
  .cta { grid-template-columns: 1fr; }
  .cta__media { max-width: 420px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ---------- Mobil ---------- */
@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 0;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 28px var(--pad);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  body.menu-open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav__links a:not(.btn) {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__links a.is-active:not(.btn) { background: none; color: var(--gold-deep); }
  .nav__links .btn { margin: 20px 0 0; width: 100%; padding: 16px; font-size: 16px; }
  .nav__burger { display: flex; }

  .hero { padding-top: 104px; }
  .hero__media img { aspect-ratio: 4 / 4.2; border-radius: 160px 160px 22px 22px; }
  .hero__media::before { inset: -14px -14px auto auto; }
  .hero__card { padding: 11px 14px; }
  .hero__card strong { font-size: 13.5px; }
  .hero__card small { font-size: 11.5px; }
  .hero__card--top { left: -6px; top: 10%; }
  .hero__card--bottom { right: -4px; bottom: 5%; }
  .hero__facts { gap: 10px 20px; }

  .features__row { grid-template-columns: 1fr; gap: 16px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: start;
  }
  .step__num { grid-row: 1 / span 2; margin-bottom: 0; }
  .step h3 { grid-column: 2; grid-row: 1; margin-top: 8px; }
  .step p { grid-column: 2; grid-row: 2; }
  .step:nth-child(2)::before { display: block; }
  .step:not(:last-child)::before {
    top: 60px; bottom: -28px; left: 25px; right: auto;
    border-top: none;
    border-left: 2px dashed var(--line);
  }
  .about__media { padding-right: 20px; }
  .about__badge { width: 96px; height: 96px; top: -16px; right: 0; }
  .about__badge strong { font-size: 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .city__quote { position: static; margin-top: -60px; max-width: none; transform: translateY(-16px); margin-left: 12px; margin-right: 12px; }
  .city__frame { overflow: visible; }
  .city__frame img { border-radius: var(--r-lg); height: clamp(300px, 70vw, 420px); }
  .city__chip { top: 14px; right: 14px; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-hero-step], [data-hero-media] { opacity: 1; animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .city__frame img { transform: none; }
  html { scroll-behavior: auto; }
}
