@import url("assets/fonts.css");

/* ============================================================
   INSIEME – gehen wir gemeinsam
   Design tokens
   ============================================================ */
:root {
  --ink:        #14181f;
  --ink-soft:   #2b323d;
  --ink-mute:   #5c6672;
  --line:       #e3ddd1;
  --line-soft:  #efeae0;
  --cream:      #faf6ee;
  --cream-deep: #f3ece0;
  --white:      #ffffff;
  --gold:       #b08c4f;
  --gold-lit:   #c9a961;
  --gold-soft:  #f0e6d3;

  --ff-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --ff-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --narrow: 760px;
  --r: 2px;
  --shadow: 0 1px 2px rgba(20,24,31,.04), 0 12px 40px -18px rgba(20,24,31,.16);
  --shadow-lift: 0 2px 4px rgba(20,24,31,.05), 0 26px 60px -24px rgba(20,24,31,.26);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--ff-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.35rem); }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.05rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100%, var(--narrow)); }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section--tight { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section--cream { background: var(--cream); }
.section--deep { background: var(--ink); color: #cfd4dc; }
.section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--line { border-top: 1px solid var(--line-soft); }

.center { text-align: center; }
.center .narrow, .center > .wrap > .narrow { margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.3rem;
  font-size: .9rem; text-decoration: none;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ============================================================
   Eyebrow / rule / lead
   ============================================================ */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::after {
  content: ""; flex: 0 0 clamp(28px, 6vw, 60px); height: 1px;
  background: linear-gradient(90deg, var(--gold-lit), transparent);
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::before {
  content: ""; flex: 0 0 clamp(28px, 6vw, 60px); height: 1px;
  background: linear-gradient(270deg, var(--gold-lit), transparent);
}
.section--deep .eyebrow { color: var(--gold-lit); }

.lead {
  font-size: clamp(1.14rem, 1.9vw, 1.36rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: -0.008em;
}
.section--deep .lead { color: #c2c9d3; }

.mute { color: var(--ink-mute); font-size: .95rem; }
.section--deep .mute { color: #98a1ad; }

/* ============================================================
   Header / navigation
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-head__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
@media (min-width: 1000px) { .site-head .wrap { width: min(100% - 2.5rem, 1360px); } }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
@media (min-width: 640px) { .brand img { height: 38px; } }
.brand__txt { display: none; }
@media (min-width: 1320px) {
  .brand__txt {
    display: block;
    font-family: var(--ff-serif);
    font-size: 1rem;
    color: var(--ink-mute);
    letter-spacing: .01em;
    border-left: 1px solid var(--line);
    padding-left: .85rem;
    line-height: 1.2;
  }
}

.nav { display: none; }
@media (min-width: 1000px) { .nav { display: block; } }
.nav ul { list-style: none; display: flex; align-items: center; gap: .1rem; margin: 0; padding: 0; }
.nav a {
  display: block; text-decoration: none; white-space: nowrap;
  font-size: .85rem; font-weight: 450; letter-spacing: .002em;
  color: var(--ink-soft);
  padding: .55rem .62rem;
  border-radius: var(--r);
  transition: color .2s var(--ease), background .2s var(--ease);
}
@media (min-width: 1240px) { .nav a { font-size: .875rem; padding: .55rem .78rem; } }
.nav a:hover { color: var(--ink); background: var(--cream-deep); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 550; }

/* dropdown */
.has-sub { position: relative; }
.has-sub > button {
  font: inherit; font-size: .85rem; font-weight: 450; white-space: nowrap;
  color: var(--ink-soft); background: none; border: 0; cursor: pointer;
  padding: .55rem .62rem; border-radius: var(--r);
  display: inline-flex; align-items: center; gap: .38rem;
  font-family: var(--ff-sans);
  transition: color .2s var(--ease), background .2s var(--ease);
}
@media (min-width: 1240px) { .has-sub > button { font-size: .875rem; padding: .55rem .78rem; } }
.has-sub > button:hover { color: var(--ink); background: var(--cream-deep); }
.has-sub > button svg { transition: transform .25s var(--ease); }
.has-sub[data-open="true"] > button { color: var(--ink); background: var(--cream-deep); }
.has-sub[data-open="true"] > button svg { transform: rotate(180deg); }

.subnav {
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  box-shadow: var(--shadow-lift);
  padding: .5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub[data-open="true"] .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.subnav ul { flex-direction: column; align-items: stretch; gap: 0; }
.subnav a { padding: .7rem .85rem; line-height: 1.35; }
.subnav a strong { display: block; font-weight: 550; color: var(--ink); font-size: .9rem; }
.subnav a span { display: block; font-size: .78rem; color: var(--ink-mute); margin-top: .12rem; }

.head-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.head-actions .btn { white-space: nowrap; }
.head-tel {
  display: none;
  font-size: .85rem; font-weight: 500; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
@media (min-width: 560px) and (max-width: 999px),
       (min-width: 1560px) { .head-tel { display: inline-flex; align-items: center; gap: .45rem; } }
.head-tel:hover { color: var(--gold); }

/* kompakter Anruf-Button – nur auf schmalen Screens statt der Text-CTA */
.head-call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 2px;
  color: var(--ink); background: var(--cream);
}
.head-call svg { width: 17px; height: 17px; }
@media (min-width: 640px) { .head-call { display: none; } }
@media (max-width: 639px) { .head-actions > .btn { display: none; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; flex-shrink: 0;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  cursor: pointer; color: var(--ink);
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span { display: block; width: 17px; height: 1.5px; background: currentColor; position: relative; transition: transform .25s var(--ease), background .1s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: currentColor;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after  { top:  5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
  max-height: calc(100dvh - 76px);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1000px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav ul { list-style: none; margin: 0; padding: .75rem 0 1.5rem; }
.mobile-nav ul a {
  display: block; text-decoration: none; color: var(--ink-soft);
  padding: .82rem .25rem; font-size: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav ul a[aria-current="page"] { color: var(--ink); font-weight: 550; }
.mobile-nav .sub a { padding-left: 1.15rem; font-size: .95rem; color: var(--ink-mute); }
.mobile-nav .mob-label {
  font-size: .72rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold); padding: 1.4rem .25rem .5rem; font-weight: 500;
}
.mobile-nav .btn { margin: 1.4rem 0 .25rem; width: 100%; justify-content: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-sans); font-size: .9rem; font-weight: 500;
  letter-spacing: .005em;
  text-decoration: none; cursor: pointer;
  padding: .95rem 1.7rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink); color: var(--white);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: var(--white); }
.btn--sm { padding: .7rem 1.2rem; font-size: .84rem; }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .875rem; font-weight: 500; text-decoration: none;
  color: var(--ink); border-bottom: 1px solid var(--gold-lit);
  padding-bottom: .18rem;
  transition: gap .22s var(--ease), color .22s var(--ease);
}
.link-arrow:hover { gap: .8rem; color: var(--gold); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 42%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,18,24,.93) 0%, rgba(15,18,24,.82) 38%, rgba(15,18,24,.38) 68%, rgba(15,18,24,.18) 100%),
    linear-gradient(180deg, rgba(15,18,24,.35) 0%, transparent 40%);
}
@media (max-width: 800px) {
  .hero__media::after { background: linear-gradient(180deg, rgba(15,18,24,.72) 0%, rgba(15,18,24,.85) 55%, rgba(15,18,24,.94) 100%); }
}
.hero__inner {
  position: relative;
  padding: clamp(5rem, 13vw, 9.5rem) 0 clamp(4rem, 9vw, 7rem);
  max-width: 780px;
  color: #e6e9ee;
}
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold-lit); }
.hero .eyebrow { color: var(--gold-lit); }
.hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.6; font-weight: 300; color: #cdd3db;
  max-width: 41ch; margin-bottom: 2.2rem;
}
.hero .btn-row { margin-bottom: 2.6rem; }
.hero__note { font-size: .85rem; color: #96a0ad; display: flex; align-items: center; gap: .5rem; }

/* hero pill strip */
.hero-strip { background: var(--ink); border-top: 1px solid rgba(255,255,255,.09); position: relative; }
.hero-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 760px) { .hero-strip ul { grid-template-columns: repeat(3, 1fr); } }
.hero-strip li { padding: 1.9rem 0 1.9rem; border-bottom: 1px solid rgba(255,255,255,.09); }
@media (min-width: 760px) {
  .hero-strip li { padding: 2.1rem 2rem 2.1rem 0; border-bottom: 0; border-right: 1px solid rgba(255,255,255,.09); }
  .hero-strip li:last-child { border-right: 0; }
  .hero-strip li + li { padding-left: 2rem; }
}
.hero-strip li:last-child { border-bottom: 0; }
.hero-strip h3 { font-size: 1.28rem; color: var(--white); margin-bottom: .3rem; }
.hero-strip p { font-size: .92rem; color: #98a1ad; line-height: 1.55; }

/* page header (sub pages) */
.pagehead { background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.pagehead__inner { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.75rem, 6vw, 4.5rem); max-width: 800px; }
.pagehead h1 { margin-bottom: .3em; }
.pagehead .lead { max-width: 58ch; }
.crumbs { font-size: .78rem; color: var(--ink-mute); margin-bottom: 1.6rem; letter-spacing: .02em; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .5; margin: 0 .45rem; }

/* ============================================================
   Split / prose
   ============================================================ */
.split {
  display: grid; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
  .split--wide-media { grid-template-columns: .85fr 1.15fr; }
  .split--top { align-items: start; }
  .split--flip .split__media { order: -1; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: 3px; box-shadow: var(--shadow); }
.split__media--tall img { aspect-ratio: 4/5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 4/3; object-fit: cover; }

.figcap {
  font-size: .78rem; color: var(--ink-mute); margin-top: .8rem;
  padding-left: .9rem; border-left: 1px solid var(--gold-lit); line-height: 1.5;
}

.prose > * + * { margin-top: 1.15em; }
.prose h3 { margin-top: 2.4em; }
.prose h3:first-child { margin-top: 0; }

/* pull quote */
.pull {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.28; color: var(--ink); font-weight: 400;
  letter-spacing: -0.012em;
  border-left: 2px solid var(--gold);
  padding: .15em 0 .15em 1.35rem;
  margin: 2.2rem 0;
  text-wrap: balance;
}
.pull em { font-style: italic; color: var(--gold); }
.section--deep .pull { color: var(--white); border-color: var(--gold-lit); }
.pull cite { display: block; font-family: var(--ff-sans); font-size: .82rem; font-style: normal; color: var(--ink-mute); margin-top: 1rem; letter-spacing: .02em; }

.statement {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4.4vw, 3.05rem);
  line-height: 1.2; letter-spacing: -0.014em;
  color: var(--ink); text-wrap: balance; margin: 0;
}
.section--deep .statement { color: var(--white); }
.statement em { font-style: italic; color: var(--gold); }
.section--deep .statement em { color: var(--gold-lit); }

/* question list */
.questions { list-style: none; margin: 1.6rem 0; padding: 0; }
.questions li {
  font-family: var(--ff-serif); font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  color: var(--ink); line-height: 1.35;
  padding: .72rem 0 .72rem 1.9rem; position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.questions li::before {
  content: ""; position: absolute; left: 0; top: 1.35em;
  width: 9px; height: 1px; background: var(--gold);
}
.questions li:last-child { border-bottom: 0; }
.section--deep .questions li { color: #e4e8ed; border-color: rgba(255,255,255,.1); }

/* checklist */
.checks { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: .9rem; }
.checks li { position: relative; padding-left: 2rem; line-height: 1.6; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.section--deep .checks li::before { border-color: var(--gold-lit); }

/* contrast list (nicht / sondern) */
.contrast { display: grid; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 760px) { .contrast { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.contrast__col h4 {
  font-family: var(--ff-sans); font-size: .74rem; letter-spacing: .17em;
  text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 500;
}
.contrast__col--no h4 { color: var(--ink-mute); }
.contrast__col--yes h4 { color: var(--gold); }
.contrast ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.contrast li { padding-left: 1.5rem; position: relative; line-height: 1.55; font-size: .98rem; }
.contrast__col--no li { color: var(--ink-mute); }
.contrast__col--no li::before {
  content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 1px; background: var(--ink-mute); opacity: .55;
}
.contrast__col--yes li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 5px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}

/* ============================================================
   Cards
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* offer card */
.offer {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.offer:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: var(--line); }
.offer__img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-deep); }
.offer__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.offer:hover .offer__img img { transform: scale(1.035); }
.offer__body { padding: 1.75rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.offer__tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 550; margin-bottom: .7rem;
}
.offer h3 { font-size: 1.5rem; margin-bottom: .55rem; }
.offer__for {
  font-size: .85rem; color: var(--ink-mute); line-height: 1.5;
  padding-bottom: .95rem; margin-bottom: .95rem; border-bottom: 1px solid var(--line-soft);
}
.offer__for b { color: var(--ink-soft); font-weight: 550; }
.offer p { font-size: .96rem; line-height: 1.62; }
.offer__price {
  margin-top: auto; padding-top: 1.25rem;
  display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
}
.offer__price .amount { font-family: var(--ff-serif); font-size: 1.85rem; color: var(--ink); line-height: 1; }
.offer__price .unit { font-size: .83rem; color: var(--ink-mute); }
.offer__pkg { font-size: .8rem; color: var(--ink-mute); margin-top: .35rem; }
.offer__cta { margin-top: 1.25rem; }

/* plain card */
.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: 3px; padding: 1.9rem 1.7rem;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.section--cream .card { background: var(--white); }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.card p { font-size: .95rem; line-height: 1.62; }
.card__num {
  font-family: var(--ff-serif); font-size: 1.05rem; color: var(--gold);
  display: block; margin-bottom: .9rem; letter-spacing: .04em;
}

/* dark card */
.card--dark {
  background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.11);
}
.card--dark:hover { background: rgba(255,255,255,.07); box-shadow: none; }

/* step list */
.steps { counter-reset: s; display: grid; gap: 0; margin: 2rem 0 0; }
.steps > li { list-style: none; position: relative; padding: 1.7rem 0 1.7rem 3.6rem; border-top: 1px solid var(--line-soft); }
.steps > li:last-child { border-bottom: 1px solid var(--line-soft); }
.steps > li::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 1.85rem;
  font-family: var(--ff-serif); font-size: 1rem; color: var(--gold); letter-spacing: .05em;
}
.steps h3 { font-size: 1.28rem; margin-bottom: .35rem; }
.steps p { font-size: .96rem; }
.section--deep .steps > li { border-color: rgba(255,255,255,.11); }

/* ============================================================
   Price table
   ============================================================ */
.pricebox {
  border: 1px solid var(--line); border-radius: 3px; background: var(--white);
  overflow: hidden;
}
.pricebox__head {
  padding: 1.4rem 1.7rem; background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.pricebox__head h3 { margin: 0; font-size: 1.35rem; }
.pricebox__head p { font-size: .85rem; color: var(--ink-mute); margin: .25rem 0 0; }
.pricerow {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 1.7rem; border-bottom: 1px solid var(--line-soft);
}
.pricerow:last-child { border-bottom: 0; }
.pricerow__name { font-size: .98rem; color: var(--ink-soft); line-height: 1.45; }
.pricerow__name small { display: block; color: var(--ink-mute); font-size: .82rem; }
.pricerow__val {
  font-family: var(--ff-serif); font-size: 1.5rem; color: var(--ink);
  white-space: nowrap; line-height: 1;
}
.pricerow__val small { font-family: var(--ff-sans); font-size: .75rem; color: var(--ink-mute); display: block; margin-top: .3rem; text-align: right; }

.notice {
  background: var(--cream); border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 1.6rem 1.75rem; border-radius: 2px; margin: 2rem 0;
}
.notice h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.notice p { font-size: .96rem; }
.notice--plain { border-left-color: var(--line); }
.section--deep .notice {
  background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.12); border-left-color: var(--gold-lit);
  color: #c2c9d3;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; } }

.chan { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.chan a {
  display: flex; align-items: flex-start; gap: 1.05rem;
  text-decoration: none; padding: 1.15rem 1.3rem;
  border: 1px solid var(--line-soft); border-radius: 3px; background: var(--white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.chan a:hover { border-color: var(--gold-lit); box-shadow: var(--shadow); transform: translateY(-2px); }
.chan__ico {
  flex: 0 0 38px; height: 38px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center;
}
.chan__ico svg { width: 17px; height: 17px; }
.chan b { display: block; color: var(--ink); font-size: .98rem; font-weight: 550; }
.chan span { display: block; font-size: .84rem; color: var(--ink-mute); margin-top: .15rem; line-height: 1.45; }

/* form */
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .45rem; }
.field > label {
  font-size: .8rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .01em;
}
.field > label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--ff-sans); font-size: .95rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line); border-radius: 2px;
  padding: .8rem .95rem; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 148px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,140,79,.13);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%235c6672' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .84rem; color: var(--ink-mute); line-height: 1.55; }
.consent input { width: 17px; height: 17px; margin-top: .18rem; flex-shrink: 0; accent-color: var(--gold); }
.consent a { color: var(--ink); }
.form__note { font-size: .8rem; color: var(--ink-mute); line-height: 1.6; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--ink); color: #cfd4dc; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: -30%; right: -8%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,140,79,.20), transparent 68%);
  pointer-events: none;
}
.cta-band__inner { position: relative; padding: clamp(3.75rem, 8vw, 6.25rem) 0; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: #c2c9d3; max-width: 54ch; }
.center .cta-band .lead { margin-inline: auto; }

/* ============================================================
   Footer
   ============================================================ */
.site-foot { background: var(--ink); color: #98a1ad; border-top: 1px solid rgba(255,255,255,.09); }
.site-foot__top { padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 880px) { .site-foot__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.site-foot img.flogo { height: 42px; width: auto; margin-bottom: 1.25rem; }
.site-foot p { font-size: .9rem; line-height: 1.65; }
.site-foot h4 {
  font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-lit); font-weight: 500; margin-bottom: 1.1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-foot a { color: #b6bec8; text-decoration: none; font-size: .9rem; transition: color .2s var(--ease); }
.site-foot a:hover { color: var(--gold-lit); }
.site-foot__bar {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 1.5rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .8rem; color: #79828e;
}
.site-foot__bar nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.site-foot__bar a { font-size: .8rem; }

.disclaimer {
  font-size: .82rem; color: #79828e; line-height: 1.6;
  border-left: 1px solid rgba(255,255,255,.15); padding-left: 1rem; margin-top: 1.5rem;
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal { padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 7rem); }
.legal__inner { max-width: 760px; }
.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 3rem 0 .9rem; padding-top: 2rem; border-top: 1px solid var(--line-soft);
}
.legal h2:first-of-type { margin-top: 1.5rem; }
.legal h3 { font-size: 1.15rem; margin: 1.8rem 0 .5rem; }
.legal p, .legal li { font-size: .97rem; line-height: 1.72; }
.legal ul, .legal ol { padding-left: 1.3rem; margin: 0 0 1.15em; }
.legal li { margin-bottom: .45rem; }
.legal .addr { font-style: normal; line-height: 1.75; font-size: .97rem; }
.legal a { color: var(--ink); text-decoration-color: var(--gold-lit); text-underline-offset: 3px; }
.legal a:hover { color: var(--gold); }
.legal__meta { font-size: .82rem; color: var(--ink-mute); letter-spacing: .02em; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
/* Nur wenn JavaScript aktiv ist – ohne JS bleibt alles sichtbar. */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } }
