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

:root {
  --petrol-950: #062226;
  --petrol-800: #0a3a40;
  --petrol-700: #0b4b53;
  --petrol: #005f6a;
  --petrol-500: #0a7684;
  --petrol-300: #6fa8ac;

  --mint: #b5decc;
  --mint-300: #cfe8da;
  --mint-100: #eaf4ee;

  --cream-200: #f2e9db;
  --cream-100: #f8f1e6;
  --cream: #fbf6ef;
  --cream-0: #fffdfa;

  --taupe: #7d7562;
  --clay: #ab8656;
  --clay-600: #8f6d43;

  --ink: #1a2b2a;
  --ink-soft: #4b5958;
  --ink-faint: #7c8887;

  --line: rgba(26, 43, 42, 0.12);
  --line-on-petrol: rgba(255, 255, 255, 0.16);

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-heading: 'Lora', 'Iowan Old Style', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5.5rem;
  --space-2xl: 8rem;

  --container: 1320px;
  --container-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-blob: 62% 38% 55% 45% / 48% 42% 58% 52%;
  --radius-figure: 20px 104px 20px 20px;

  --shadow-sm: 0 2px 10px rgba(6, 34, 38, 0.06);
  --shadow-md: 0 18px 50px -18px rgba(6, 34, 38, 0.28);
  --shadow-lg: 0 30px 80px -24px rgba(6, 34, 38, 0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

@media (max-width: 719px) {
  :root {
    --space-lg: 2.25rem;
    --space-xl: 3rem;
    --space-2xl: 3.75rem;
    --radius-figure: 18px 48px 18px 18px;
  }
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}
html.has-lenis { scroll-behavior: auto; }
body {
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
::selection { background: var(--mint); color: var(--petrol-950); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-600);
}
.eyebrow::before {
  content: '';
  width: 1.7em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.on-dark { color: var(--mint-300); }

h1, .h1 {
  font-size: clamp(2.6rem, 2rem + 2.6vw, 4.6rem);
  font-weight: 500;
}
h2, .h2 {
  font-size: clamp(2rem, 1.6rem + 1.7vw, 3.15rem);
  font-weight: 500;
}
h3, .h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem);
  font-weight: 500;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.lede {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
p { color: var(--ink-soft); }
p + p { margin-top: 1em; }
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.15em; }
.prose h2 { margin-top: 2.8em; margin-bottom: 0.7em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2.4em; margin-bottom: 0.6em; }
.prose h4 { margin-top: 1.6em; margin-bottom: 0.4em; }
.prose ul { list-style: disc; padding-left: 1.4em; margin-top: 0.8em; max-width: 62ch; }
.prose ul li + li { margin-top: 0.4em; }
.legal-toc { margin-top: 1.5em; }
.legal-toc ul { list-style: none; padding-left: 0; margin-top: 0.8em; display: flex; flex-direction: column; gap: 0.5em; }
.legal-toc a { color: var(--petrol); font-weight: 600; }

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--petrol);
}

blockquote.pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  line-height: 1.4;
  color: var(--petrol);
  border-left: 2px solid var(--mint);
  padding-left: var(--space-md);
  max-width: 46ch;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-2xl); position: relative; }
.section--tight { padding-block: var(--space-xl); }
.section--cream-200 { background: var(--cream-200); }
.section--mint { background: var(--mint-100); }
.section--petrol {
  background: linear-gradient(175deg, var(--petrol-800), var(--petrol-950));
  color: var(--cream);
}
.section--petrol p { color: rgba(251, 246, 239, 0.78); }
.section--petrol h2, .section--petrol h3 { color: var(--cream); }

.grid {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 860px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 859px) {
  .mobile-order-last { order: 2; }
}
@media (max-width: 859px) {
  .grid--rooms > div + div {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line);
  }
}
.stack { display: flex; flex-direction: column; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; }

.divider {
  border: none;
  height: 1px;
  background: var(--line);
  margin-block: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--petrol);
  color: var(--cream-0);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--petrol-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-desktop .btn-primary { padding-inline: 1.4em; }
.btn-ghost {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn-ghost:hover { background: var(--petrol); color: var(--cream-0); }
.btn-ghost.on-dark { color: var(--mint-300); border-color: rgba(181, 222, 204, 0.5); }
.btn-ghost.on-dark:hover { background: var(--mint-300); color: var(--petrol-950); }
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 246, 239, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 1.1rem;
  padding-bottom: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--petrol);
}
.brand img { width: 34px; height: 34px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
  margin-top: 0.15em;
}
.site-header .brand__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); }
.site-header .brand { font-size: 1.7rem; gap: 0.7rem; line-height: 1; }

.site-header__tagline {
  padding-bottom: 0.85rem;
  margin-top: -0.35rem;
}
@media (max-width: 719px) {
  .site-header__tagline {
    margin-top: -0.15rem;
    padding-left: calc(1.25rem + 0.4rem);
  }
}
.site-header__tagline small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
}

.nav-desktop { display: none; }
@media (min-width: 1080px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  .nav-desktop__links {
    display: flex;
    gap: clamp(1.15rem, 2vw, 2rem);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .nav-desktop__links a {
    position: relative;
    padding-block: 0.3rem;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: color var(--dur) var(--ease);
  }
  .nav-desktop__links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1.5px;
    background: var(--clay);
    transition: right var(--dur) var(--ease);
  }
  .nav-desktop__links a:hover { color: var(--petrol); }
  .nav-desktop__links a:hover::after,
  .nav-desktop__links a[aria-current="page"]::after { right: 0; }
  .nav-desktop__links a[aria-current="page"] { color: var(--petrol); }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
}
@media (min-width: 1080px) { .nav-toggle { display: none; } }
.nav-toggle__lines {
  position: relative;
  width: 18px;
  height: 12px;
}
.nav-toggle__lines span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--petrol);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle__lines span:nth-child(1) { top: 0; }
.nav-toggle__lines span:nth-child(2) { top: 5.5px; }
.nav-toggle__lines span:nth-child(3) { top: 11px; }
.nav-open .nav-toggle__lines span:nth-child(1) { top: 5.5px; transform: rotate(45deg); }
.nav-open .nav-toggle__lines span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__lines span:nth-child(3) { top: 5.5px; transform: rotate(-45deg); }

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 85;
  background: var(--cream-0);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) var(--space-md);
  max-height: min(75vh, 560px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), visibility var(--dur), transform var(--dur) var(--ease);
}
.nav-open .nav-mobile { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile__links { display: flex; flex-direction: column; }
.nav-mobile__links a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.nav-mobile__links li:last-child a { border-bottom: none; }
.nav-mobile__links a[aria-current="page"] { color: var(--petrol); }
.nav-mobile__cta { display: flex; margin-top: var(--space-sm); }

.site-mark {
  position: absolute;
  z-index: 1;
  width: min(46vw, 620px);
  opacity: 0.07;
  pointer-events: none;
}
.site-mark--hero { top: -8%; right: -6%; }
@media (max-width: 939px) {
  .site-mark--hero { top: 1.5rem; }
}
@media (min-width: 940px) {
  .site-mark--hero { right: auto; left: -6%; }
}
.site-mark--bl { left: 1%; bottom: 2%; }
.site-mark--br { right: 3%; bottom: 2%; }
.site-mark--tr { top: 3%; right: 3%; }
.site-mark--tl { top: 3%; left: 3%; }
.site-mark--sm { width: min(26vw, 340px); }
.site-mark--lg { width: min(58vw, 760px); }
@media (max-width: 939px) {
  .site-mark { width: min(60vw, 420px); }
  .site-mark--sm { width: min(40vw, 260px); }
  .site-mark--lg { width: min(68vw, 480px); }
}
@media (max-width: 859px) {
  .site-mark--mobile-top { top: 3%; bottom: auto; }
}

.hero {
  position: relative;
  padding-top: clamp(1.5rem, 4vw, 5rem);
  padding-bottom: var(--space-2xl);
  overflow: clip;
}
.hero__grid {
  display: grid;
  gap: var(--space-md);
  align-items: center;
  grid-template-areas:
    "intro"
    "lede"
    "figure"
    "actions";
}
@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-md) var(--space-xl);
    grid-template-areas:
      "intro  figure"
      "lede   figure"
      "actions figure";
  }
}
.hero__grid > .hero__intro { grid-area: intro; }
.hero__grid > .hero__lede { grid-area: lede; }
.hero__grid > .hero__figure { grid-area: figure; }
.hero__grid > .hero__actions { grid-area: actions; }
.hero__title { margin-bottom: 0; }
.hero__title em {
  font-style: italic;
  color: var(--petrol);
}
.hero__lede { margin-bottom: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0; }

@media (max-width: 600px) {
  .hero { padding-top: 1rem; }
  .hero__title { font-size: 2.1rem; line-height: 1.16; }
  .hero__figure { aspect-ratio: 1 / 1; }
}

.hero__figure {
  position: relative;
  border-radius: var(--radius-figure);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__figure picture { width: 100%; height: 100%; }
.hero__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.hero__figure:hover img { transform: scale(1.045); }
.hero__figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(6, 34, 38, 0) 55%, rgba(6, 34, 38, 0.35));
}
.hero__figure-caption {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  color: var(--cream);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__figure-caption .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); flex: none; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  align-items: center;
  padding-block: var(--space-md);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-bar__item svg { width: 20px; height: 20px; color: var(--petrol); flex: none; }

.trust-bar-wrap { display: none; }
@media (min-width: 1080px) {
  .trust-bar-wrap { display: block; }
}

.trust-bar__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.stars { display: inline-flex; gap: 2px; color: var(--clay); }
.stars svg { width: 15px; height: 15px; }
.trust-bar__rating a { font-weight: 600; color: var(--petrol); border-bottom: 1px solid var(--mint); }
.trust-bar__rating a:hover { color: var(--petrol-700); }

@media (max-width: 640px) {
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 0.85rem; padding-block: var(--space-sm); }
  .trust-bar__rating { margin-left: 0; flex-wrap: wrap; }
  .trust-bar__dot { display: none; }
}

.card {
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mint-300); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--mint-100);
  color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.card__icon svg { width: 26px; height: 26px; }
.card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
}
.card__head .card__icon { margin-bottom: var(--space-sm); }
.card__photo {
  width: 60px; height: 60px;
  border-radius: 16px;
  object-fit: cover;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.5rem; }
.card .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--petrol);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  display: block;
}
.card--clickable { cursor: pointer; }
.card--clickable:focus-visible { outline: 2px solid var(--petrol); outline-offset: 3px; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--petrol);
}
.card__cta svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.card--clickable:hover .card__cta svg { transform: translateX(3px); }

.info-note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.info-note__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--mint-100);
  color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
}
.info-note__icon svg { width: 22px; height: 22px; }
.info-note__icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-note__icon--instagram:hover,
.info-note__icon--instagram:focus-visible {
  transform: scale(1.08);
  box-shadow: var(--shadow-sm);
}
.info-note h3 { margin-bottom: 0.3rem; }

.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
}
.photo-card picture { width: 100%; height: 100%; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.photo-card:hover img { transform: scale(1.045); }
.photo-card--zielgruppe { aspect-ratio: 3/2; z-index: 2; }
.photo-card--zielgruppe img { object-position: 50% 24%; }
.photo-card--beratung { aspect-ratio: 16/9; }
@media (max-width: 719px) {
  .photo-card--beratung { aspect-ratio: 4/3; }
}

.tagcloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tagcloud span {
  padding: 0.5em 1.05em;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--cream-0);
}
.tagcloud span:nth-of-type(3n) { background: var(--mint-100); border-color: var(--mint-300); color: var(--petrol-700); }
.tagcloud span:nth-of-type(5n) { background: var(--cream-200); }
.tagcloud-break { display: none; }
@media (min-width: 860px) {
  .tagcloud-break { display: block; flex-basis: 100%; width: 0; height: 0; }
}
.tagcloud span.is-flag { background: var(--cream-200); }

.price-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 0.65em;
  padding: 0.15em 0.7em;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--petrol);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.check-list { display: grid; gap: 0.75rem; }
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.5;
}
.check-list svg {
  width: 18px; height: 18px;
  color: var(--petrol);
  flex: none;
  margin-top: 0.2em;
}

.method-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--cream);
  color: var(--ink);
}
.method-modal[open] { display: flex; }
html.js .method-modal {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
html.js .method-modal.is-visible { opacity: 1; transform: none; }
.method-modal::backdrop {
  background: rgba(6, 34, 38, 0.72);
}
.method-modal__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}
.method-modal__inner { max-width: var(--container-narrow); margin-inline: auto; }
.method-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-0);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.method-modal__close:hover { background: var(--petrol); color: var(--cream-0); transform: rotate(90deg); }
.method-modal__close svg { width: 20px; height: 20px; }
.method-modal__section { margin-top: var(--space-lg); }
.method-modal__section h3 { margin-bottom: 0.6rem; }
.method-modal__cta { margin-top: var(--space-lg); }
@media (min-width: 720px) {
  .method-modal__scroll { padding: var(--space-2xl) var(--space-lg) var(--space-2xl); }
}
body.modal-open { overflow: hidden; }

.steps { position: relative; }
.steps__line {
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 22px;
  width: 2px;
  z-index: 0;
  background-image: linear-gradient(var(--mint-300) 55%, transparent 0%);
  background-size: 2px 11px;
  background-repeat: repeat-y;
}
@media (min-width: 720px) {
  .steps__line { left: 39px; top: 72px; }
}
.steps__line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--petrol);
  transform-origin: top;
  transform: scaleY(0);
}
html:not(.js) .steps__line-fill { transform: scaleY(1); }

.step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}
@media (min-width: 720px) {
  .step { grid-template-columns: 80px 1fr; gap: var(--space-md); }
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-0);
  border: 1.5px solid var(--mint-300);
  color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .step__num { width: 80px; height: 80px; font-size: 1.7rem; }
}
.step:not(:last-child) { border-bottom: 1px dashed var(--line); }
.step h3 { margin-bottom: 0.4rem; }

.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.3rem);
  color: var(--ink);
}
.accordion-item__icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.accordion-item__icon::before, .accordion-item__icon::after {
  content: '';
  position: absolute;
  background: var(--petrol);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.accordion-item__icon::before { width: 12px; height: 1.5px; }
.accordion-item__icon::after { width: 1.5px; height: 12px; }
.accordion-item.is-open .accordion-item__icon { background: var(--mint-100); }
.accordion-item.is-open .accordion-item__icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.accordion-item.is-open .accordion-item__panel { grid-template-rows: 1fr; }
.accordion-item__panel-inner { overflow: hidden; }
.accordion-item__panel p { padding-bottom: 1.6rem; max-width: 62ch; }

.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: var(--space-sm); }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream-0);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(0, 95, 106, 0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; gap: var(--space-sm); }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-hint { font-size: 0.82rem; color: var(--ink-faint); margin-top: -0.3rem; margin-bottom: var(--space-sm); }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); }
.form-consent input { margin-top: 0.3em; flex: none; }

/* Honeypot: für Menschen unsichtbar, für simple Bots (die alle Felder eines
   Formulars automatisiert ausfüllen) aber ganz normal vorhanden - deshalb
   kein type="hidden" oder display:none, sondern Positionierung außerhalb
   des sichtbaren Bereichs. */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-abschluss { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-sm); }
.cf-turnstile { min-height: 65px; }
.datenschutz-hinweis { font-size: 0.82rem; color: var(--ink-faint); }
.form-status:empty { display: none; }
.form-status { font-size: 0.92rem; font-weight: 600; }
.form-status[data-state="error"] { color: #b3261e; }
.form-status[data-state="success"] { color: var(--petrol); }

.info-list { display: grid; gap: var(--space-sm); }
.info-list dt {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.info-list dd { color: var(--ink); font-size: 1.02rem; }
.info-list > div { padding-block: var(--space-sm); border-bottom: 1px solid var(--line); }
.info-list > div:last-child { border-bottom: none; }

.placeholder-flag {
  display: inline-block;
  padding: 0.15em 0.55em;
  border-radius: 6px;
  background: rgba(171, 134, 86, 0.16);
  color: var(--clay-600);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.placeholder-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-100);
  border: 1.5px dashed var(--mint-300);
  border-radius: var(--radius-md);
  color: var(--petrol-700);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: var(--space-md);
  min-height: 220px;
}

.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(175deg, var(--petrol-800), var(--petrol-950));
  color: var(--cream);
  padding: clamp(2.5rem, 4vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 222, 204, 0.16), transparent 70%);
  top: -160px; right: -120px;
}
.cta-band h2 { color: var(--cream); max-width: 26ch; margin-inline: auto; }
.cta-band p { color: rgba(251, 246, 239, 0.78); max-width: 48ch; margin-inline: auto; margin-top: var(--space-sm); }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: var(--space-md); }

.site-footer {
  background: var(--petrol-950);
  color: rgba(251, 246, 239, 0.8);
  padding-block: var(--space-xl) var(--space-md);
}
.site-footer a:hover { color: var(--mint); }
.footer-grid {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--line-on-petrol);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; }
}
.footer-brand .brand { color: var(--cream); }
.footer-brand p { margin-top: var(--space-sm); max-width: 34ch; color: rgba(251, 246, 239, 0.65); }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.94rem; }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(251, 246, 239, 0.55);
}
.footer-bottom ul { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.page-intro { position: relative; padding-top: var(--space-xl); padding-bottom: var(--space-lg); }
.page-intro__grid { display: grid; gap: var(--space-md); }
@media (min-width: 860px) { .page-intro__grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; } }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--ink-faint); margin-bottom: var(--space-md);
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--petrol); }

@media (max-width: 719px) {
  .page-intro { padding-top: 1rem; }
  .breadcrumb { margin-bottom: 0.75rem; }
}

[data-reveal] { opacity: 1; transform: none; }
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

.center { text-align: center; margin-inline: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mx-auto { margin-inline: auto; }
.visually-hidden {
  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; left: 1rem; top: -60px;
  background: var(--petrol); color: var(--cream);
  padding: 0.8em 1.4em; border-radius: 999px; z-index: 200;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }
