@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #102028;
  --ink-soft: #44545c;
  --stone: #f3efe6;
  --paper: #fbf9f4;
  --teal: #1c746e;
  --teal-bright: #2f9b93;
  --brass: #a68456;
  --line: rgba(16, 32, 40, 0.14);
  --serif: Fraunces, "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --sans: Manrope, "Segoe UI", sans-serif;
  --pad: clamp(1.15rem, 3vw, 2.4rem);
  --header: 4.6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.4rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  box-shadow: inset 0 3px 0 var(--brass);
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: #c9ebe7; color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 40;
}
.skip:focus { top: 1rem; }
.vh, .hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap { width: min(1180px, calc(100% - 2 * var(--pad))); margin-inline: auto; }
.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 520; letter-spacing: -0.035em; line-height: 0.98; }
h1 { margin: 0 0 1.1rem; font-size: clamp(3.15rem, 7.4vw, 6.35rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2.2rem, 4.4vw, 3.7rem); }
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--teal); }
.btn-line { background: transparent; color: var(--ink); border-color: rgba(16, 32, 40, 0.28); }
.btn-line:hover { border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 249, 244, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.bar { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header); }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; margin-right: auto; }
.mark { width: 2.15rem; height: 2.15rem; display: block; }
.logo-img { width: 2.4rem; height: 2.4rem; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; font-weight: 750; letter-spacing: -0.04em; line-height: 1; }
.brand-name small { margin-top: 0.22rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.62rem; color: var(--ink-soft); }
.site-nav { display: flex; gap: 1.25rem; }
.site-nav a { text-decoration: none; font-size: 0.95rem; font-weight: 650; }
.site-nav a:hover { color: var(--teal); }
.nav-btn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  min-height: 2.6rem;
  padding: 0 0.95rem;
  font: inherit;
  font-weight: 700;
}

.hero { padding: 1.4rem 0 3.2rem; overflow: clip; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.lead { max-width: 38rem; font-size: 1.12rem; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.7rem; }
.rule { width: 3.2rem; height: 1px; background: var(--brass); margin: 1.15rem 0 1.2rem; }
.hero-visual { position: relative; }
.hero-frame { position: relative; height: min(74vh, 760px); }
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 4.8rem 1.5rem;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 1rem -0.85rem -0.85rem 1rem;
  border: 1px solid var(--brass);
  border-radius: 1.5rem 1.5rem 4.8rem 1.5rem;
  z-index: -1;
}
.chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(251, 249, 244, 0.92);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.vert {
  position: absolute;
  right: -0.2rem;
  top: 1.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}
.facts li::before { content: ""; display: inline-block; width: 0.4rem; height: 0.4rem; margin-right: 0.55rem; border-radius: 50%; background: var(--brass); transform: translateY(-0.05rem); }

.section { padding: 5.5rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2.4rem; }
.section-head p:last-child { margin-top: 0.8rem; color: var(--ink-soft); }

.service {
  display: grid;
  grid-template-columns: 4.2rem minmax(12rem, 0.85fr) 1.3fr;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.55rem 0.4rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover { background: linear-gradient(90deg, rgba(47, 155, 147, 0.1), transparent 72%); }
.num { font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 1.35rem; }
.service h3 { margin: 0; font-size: clamp(1.55rem, 2.3vw, 2.15rem); font-weight: 520; }
.service p { color: var(--ink-soft); }

.band { background: var(--stone); padding: 5.5rem 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; list-style: none; margin: 2rem 0 2.6rem; padding: 0; }
.stats li { padding-top: 1rem; border-top: 1px solid rgba(16, 32, 40, 0.18); }
.stats strong { display: block; font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 520; letter-spacing: -0.04em; line-height: 1; }
.stats span { display: block; margin-top: 0.45rem; color: var(--ink-soft); }
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.reasons h3 { margin: 0.4rem 0 0.6rem; font-size: 1.7rem; }
.reasons p { color: var(--ink-soft); }
.reasons .num { display: block; }

.mood { position: relative; margin: 0; }
.mood img { width: 100%; height: min(78vh, 820px); object-fit: cover; display: block; }
.mood::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(16, 32, 40, 0.62));
}
.mood figcaption { position: absolute; z-index: 1; left: max(var(--pad), calc((100% - 1180px) / 2)); bottom: 2.2rem; color: #fbf9f4; max-width: 18em; }
.mood .kicker { color: #d7efe9; }
.mood strong { display: block; font-family: var(--serif); font-weight: 520; font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -0.04em; line-height: 1.02; }

.works-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2.5rem; align-items: center; }
.works-copy p { margin-top: 0.9rem; color: var(--ink-soft); }
.compare {
  --pos: 54;
  position: relative;
  container-type: inline-size;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #d9d3c7;
  touch-action: none;
}
.compare-after, .compare-before img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compare-after { position: absolute; inset: 0; }
.compare-before { position: absolute; inset: 0 auto 0 0; width: calc(var(--pos) * 1%); overflow: hidden; }
.compare-before img { width: 100cqi; max-width: none; height: 100%; }
.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.handle {
  position: absolute;
  top: 50%;
  left: calc(var(--pos) * 1%);
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(16, 32, 40, 0.28);
}
.handle::before { content: ""; width: 0.7rem; height: 0.7rem; border-left: 2px solid currentColor; border-right: 2px solid currentColor; }
.compare input:focus-visible + .handle { outline: 2px solid var(--teal-bright); outline-offset: 3px; }
.tag {
  position: absolute;
  top: 0.9rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(251, 249, 244, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  pointer-events: none;
}
.tag-before { left: 0.9rem; }
.tag-after { right: 0.9rem; }
.compare + .compare { margin-top: 1rem; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote { margin: 0; padding: 1.4rem 1.3rem 1.2rem; background: var(--stone); border-radius: 1.2rem; }
.quote p { margin-top: 0.8rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; font-weight: 520; }
.quote footer { margin-top: 1rem; color: var(--ink-soft); font-size: 0.92rem; }
.stars { color: var(--brass); letter-spacing: 0.12em; }
.stars .off { color: rgba(16, 32, 40, 0.22); }

.faq-item { border-top: 1px solid var(--line); padding: 0.35rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; font-weight: 750; font-size: 1.12rem; padding: 0.9rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--serif); font-weight: 450; color: var(--brass); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--ink-soft); padding: 0 0 1rem; max-width: 62ch; }

.angebot-band { background: var(--ink); color: var(--stone); padding: 5.2rem 0; position: relative; overflow: hidden; }
.angebot-band::before {
  content: "Angebot";
  position: absolute;
  right: -0.04em;
  top: -0.18em;
  font-family: var(--serif);
  font-size: 16vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 239, 230, 0.14);
  pointer-events: none;
}
.angebot-grid { position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 3rem; align-items: start; }
.angebot-band h2, .angebot-band .kicker { color: var(--stone); }
.angebot-band .kicker { color: #8fd4cc; }
.angebot-copy p { margin-top: 1rem; color: rgba(243, 239, 230, 0.78); max-width: 34ch; }
.aside-phone { margin-top: 1.6rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.03em; }
.aside-phone a { color: var(--stone); text-decoration: none; }
.field { margin-bottom: 0.95rem; }
.field span, .check span { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: rgba(243, 239, 230, 0.62); }
.field input, .field select, .field textarea {
  width: 100%;
  margin-top: 0.25rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.32);
  color: var(--stone);
  padding: 0.7rem 0;
  font: inherit;
  border-radius: 0;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--teal-bright); }
.check { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.1rem; font-size: 0.95rem; }
.check input { margin-top: 0.3rem; }
.check a { color: #fff; }
.form-error, .form-ok { padding: 0.8rem 0; }
.form-error { color: #ffb4a8; }
.form-ok h2 { font-size: clamp(2rem, 4vw, 3rem); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: stretch; }
.phone { display: block; margin: 1rem 0 0.35rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.04em; text-decoration: none; line-height: 1; }
.contact a[href^="mailto"] { color: var(--teal); font-weight: 700; }
.hours { margin-top: 0.8rem; color: var(--ink-soft); }
.map-panel { min-height: 380px; background: var(--stone); border-radius: 1.4rem; overflow: hidden; position: relative; }
.map-placeholder { min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.9rem; padding: 1.4rem; background:
  linear-gradient(160deg, rgba(16,32,40,0.04), rgba(47,155,147,0.16)); }
.map-placeholder p { font-family: var(--serif); font-size: 1.8rem; letter-spacing: -0.03em; line-height: 1.05; }
.map-panel iframe { width: 100%; height: 380px; border: 0; display: block; }
.text-link { font-weight: 700; }

.site-footer { background: var(--ink); color: var(--stone); padding: 3.4rem 0 6.2rem; }
.brand-light { color: var(--stone); }
.brand-light .brand-name small { color: rgba(243, 239, 230, 0.62); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr; gap: 1.5rem; }
.foot-grid p { margin-top: 0.9rem; color: rgba(243, 239, 230, 0.74); }
.foot-grid a { display: block; text-decoration: none; margin-top: 0.45rem; }
.foot-grid a:hover { color: #fff; }
.site-footer .kicker { color: #8fd4cc; }
.legal-line { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.4rem; padding-top: 1rem; border-top: 1px solid rgba(243, 239, 230, 0.14); color: rgba(243, 239, 230, 0.6); font-size: 0.9rem; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 25;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  text-align: center;
  min-height: 3.2rem;
  line-height: 3.2rem;
  border-radius: 999px;
  font-weight: 750;
  transform: translateY(160%);
}
.mobile-cta.is-on { transform: none; }

.prose { width: min(72ch, calc(100% - 2 * var(--pad))); margin: 0 auto; padding: 3.2rem 0 5rem; }
.prose h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); margin-bottom: 1.4rem; }
.prose h2 { font-size: 1.7rem; margin: 2rem 0 0.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: 0.8rem; }
.prose a { color: var(--teal); }
.missing { padding: 4rem 0 6rem; }

@media (max-width: 980px) {
  .hero-grid, .works-grid, .angebot-grid, .contact-grid, .reasons, .quotes, .foot-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .service { grid-template-columns: 3rem 1fr; }
  .service p { grid-column: 2; }
  .hero-frame { height: 62vw; min-height: 280px; }
  .vert { display: none; }
  .header-cta { display: none; }
  .nav-btn { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    top: calc(100% + 0.4rem);
    flex-direction: column;
    gap: 0.2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.6rem;
    box-shadow: 0 18px 50px rgba(16, 32, 40, 0.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.75rem 0.7rem; }
  .mobile-cta { display: block; }
  body { padding-bottom: 4.6rem; }
  .site-footer { padding-bottom: 5.5rem; }
  .two { grid-template-columns: 1fr; }
  .mood figcaption { left: var(--pad); right: var(--pad); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
