/* ============================================================
   LÖ.WA IMMOBILIEN VERMIETUNG GMBH
   Design: Editorial · Waldgrün + Cremegold + Weiß
   Schriften: Fraunces (Serif) + Inter (Sans)
   ============================================================ */

:root {
  --green-dark:   #1c3a2e;
  --green:        #2a5240;
  --green-mid:    #3a6b52;
  --green-light:  #e8f0ec;
  --green-pale:   #f2f6f4;
  --gold:         #c8a96e;
  --gold-dark:    #a8882e;
  --gold-pale:    #fdf8ee;
  --gold-light:   #f5e9c0;
  --black:        #111111;
  --dark:         #1e1e1e;
  --gray-dark:    #3a3a3a;
  --gray:         #666666;
  --gray-light:   #999999;
  --border:       #e4ddd2;
  --border-light: #ede8e0;
  --bg:           #faf8f5;
  --bg-2:         #f4f1ec;
  --bg-3:         #ede8df;
  --white:        #ffffff;
  --font-ser:     'Fraunces', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(.4,0,.2,1);
  --ease-out:     cubic-bezier(0,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── Utility ──────────────────────────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}
.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section-title {
  font-family: var(--font-ser);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: .9rem 1.75rem;
  border-radius: 4px;
  transition: background .2s var(--ease), transform .15s;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
  min-height: 48px;
}
.btn-ghost:hover { color: var(--black); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 1000;
  background: rgba(250,248,245,0);
  transition: background .35s var(--ease), box-shadow .35s;
}
.site-header.solid {
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.sh-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}
.sh-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.sh-logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.sh-logo-mark svg { width: 36px; height: 36px; border-radius: 6px; }
.sh-logo-text { display: flex; flex-direction: column; gap: .05rem; }
.sh-logo-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.sh-logo-sub {
  font-size: .65rem;
  color: var(--gray-light);
  letter-spacing: .02em;
  line-height: 1;
}
.sh-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.sh-nav a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: .5rem .8rem;
  border-radius: 4px;
  transition: color .2s, background .2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.sh-nav a:hover { color: var(--black); background: var(--bg-2); }
.sh-nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: .5rem 1rem !important;
  margin-left: .5rem;
}
.sh-nav-cta:hover { background: var(--green) !important; }
.sh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 4px;
  background: var(--bg-2);
}
.sh-burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.sh-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sh-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sh-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-pattern { width: 100%; height: 100%; }
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem);
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  align-self: flex-start;
}
.hb-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: .05em;
  margin-bottom: 1.75rem;
  line-height: 1.05;
}
.ht-light {
  font-family: var(--font-ser);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gray-light);
  letter-spacing: -.01em;
}
.ht-bold {
  font-family: var(--font-ser);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -.04em;
  line-height: .95;
}
.ht-serif {
  font-family: var(--font-ser);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: .95;
}
.hero-lead {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.ht-item { display: flex; flex-direction: column; gap: .2rem; }
.ht-val {
  font-family: var(--font-ser);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.ht-label { font-size: .7rem; color: var(--gray-light); letter-spacing: .04em; text-transform: uppercase; }
.ht-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero-Karten-Stack */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 380px; height: 260px; }
.hcs-card {
  position: absolute;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.hcs-card--back {
  top: 0; left: 0;
  transform: rotate(-4deg) translateY(8px);
  opacity: .5;
  z-index: 1;
}
.hcs-card--mid {
  top: 0; left: 0;
  transform: rotate(-1.5deg) translateY(4px);
  opacity: .75;
  z-index: 2;
}
.hcs-card--front {
  top: 0; left: 0;
  transform: rotate(0deg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hcsc-top { display: flex; align-items: center; justify-content: space-between; }
.hcsc-label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-light); }
.hcsc-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--green-light); color: var(--green-dark);
  padding: .2rem .6rem; border-radius: 100px;
}
.hcsc-status {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 100px; margin-top: .5rem;
}
.hcsc-status--vermietet { background: var(--green-light); color: var(--green-dark); }
.hcsc-status--bearbeitung { background: var(--gold-pale); color: var(--gold-dark); }
.hcsc-address { font-size: .85rem; font-weight: 500; color: var(--gray-dark); }
.hcsc-title {
  font-family: var(--font-ser);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.01em;
}
.hcsc-body { font-size: .8rem; color: var(--gray); line-height: 1.5; }
.hcsc-footer {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  color: var(--gray-light);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border-light);
}
.hcsc-dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

/* Scroll-Hint */
.hero-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.5rem 0 2rem;
  color: var(--gray-light);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.hero-scroll:hover { color: var(--gold); }
.hs-line {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--border), var(--gold));
  animation: lineGrow 1.8s ease-in-out infinite;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.6); opacity: .5; }
}

/* ============================================================
   INTRO-BAND
   ============================================================ */
.intro-band {
  background: var(--green-dark);
  padding: .9rem 0;
  overflow: hidden;
}
.ib-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.ib-inner span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.ib-dot {
  width: 4px !important;
  height: 4px !important;
  background: var(--gold) !important;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.ls-card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.ls-card:hover { background: var(--bg); }
.ls-card--featured {
  grid-column: 1 / -1;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 2rem;
}
.ls-card--featured:hover { background: var(--green); }
.ls-card--featured h3 { color: var(--white); }
.ls-card--featured p { color: rgba(255,255,255,.7); }
.lsc-num {
  font-family: var(--font-ser);
  font-size: .75rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .06em;
}
.ls-card--featured .lsc-num { color: rgba(255,255,255,.25); }
.ls-card h3 {
  font-family: var(--font-ser);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--green-dark);
  line-height: 1.25;
}
.ls-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
}
.lsc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}
.lsc-tags span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2px;
  background: var(--bg-2);
  color: var(--gray);
}
.ls-card--featured .lsc-tags span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }

/* ============================================================
   PHILOSOPHIE
   ============================================================ */
.philosophie {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.phil-left { position: sticky; top: 80px; }
.phil-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 6px 6px 0;
}
.phil-quote blockquote {
  font-family: var(--font-ser);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.65;
}
.phil-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.phil-right p {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--gray);
  line-height: 1.85;
}
.phil-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: .5rem;
}
.pf-item {
  background: var(--white);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.pf-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.01em;
}
.pf-label {
  font-size: .68rem;
  color: var(--gray-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   PROZESS
   ============================================================ */
.prozess {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.prozess-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pt-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--border-light);
}
.pt-item:last-child { border-bottom: none; }
.pti-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: .25rem;
}
.pti-num {
  font-family: var(--font-ser);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.pti-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: .75rem;
  min-height: 40px;
}
.pti-content {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-bottom: .5rem;
}
.pti-content h3 {
  font-family: var(--font-ser);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.01em;
}
.pti-content p {
  font-size: clamp(.88rem, 1.2vw, .98rem);
  color: var(--gray);
  line-height: 1.8;
}
.pti-details {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pti-details span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
  background: var(--green-light);
  color: var(--green-dark);
}

/* ============================================================
   VORTEILE
   ============================================================ */
.vorteile {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vorteile-split {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.vs-left {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vs-left p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.75;
}
.vs-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vorteil-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2.5vw, 2rem) 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
  transition: background .2s;
}
.vorteil-item:first-child { padding-top: 0; }
.vorteil-item:last-child { border-bottom: none; }
.vi-num {
  font-family: var(--font-ser);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--border);
  line-height: 1.1;
  padding-top: .1rem;
  transition: color .2s;
}
.vorteil-item:hover .vi-num { color: var(--gold-light); }
.vi-body h3 {
  font-family: var(--font-ser);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.vi-body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   REGION
   ============================================================ */
.region {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--green-dark);
}
.region .section-label { color: var(--gold); }
.region .section-title { color: var(--white); }
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.rg-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rg-content p {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}
.region-locations {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: .5rem;
}
.region-locations span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem .9rem;
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 100px;
  color: var(--gold);
}
.rg-visual { display: flex; align-items: center; justify-content: center; }
.rg-visual svg { width: 100%; max-width: 380px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.kg-left {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.kg-left > p {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--gray);
  line-height: 1.8;
}
.kg-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: .5rem;
}
.kgi-item {
  background: var(--bg);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.kgi-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.kgi-val {
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.kgi-val a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.kgi-val a:hover { color: var(--green-dark); }

/* Formular */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.kf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.kf-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.kf-field--full { grid-column: 1 / -1; }
.kf-field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: .02em;
}
.kf-field input,
.kf-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: .8rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--black);
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-height: 48px;
  -webkit-appearance: none;
}
.kf-field input::placeholder,
.kf-field textarea::placeholder { color: var(--gray-light); }
.kf-field input:focus,
.kf-field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(28,58,46,.08);
}
.kf-field textarea { resize: vertical; min-height: 130px; }
.kf-check label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.55;
  cursor: pointer;
}
.kf-check input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  accent-color: var(--green-dark);
  cursor: pointer;
  margin-top: 1px;
}
.kf-check a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.kf-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.kf-submit {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: .9rem 1.75rem;
  border-radius: 4px;
  transition: background .2s;
  min-height: 52px;
  border: none;
  cursor: pointer;
}
.kf-submit:hover { background: var(--green); }
.kf-submit svg { width: 16px; height: 16px; transition: transform .2s; }
.kf-submit:hover svg { transform: translateX(4px); }
.kf-hint { font-size: .75rem; color: var(--gray-light); line-height: 1.5; }
.kf-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 4px;
  font-size: .88rem;
  color: #166534;
  line-height: 1.55;
}
.kf-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: clamp(3rem, 5vw, 4rem) 0 0;
}
.sf-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem) clamp(2.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sf-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.sf-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.sf-logo svg { width: 40px; height: 40px; border-radius: 6px; flex-shrink: 0; }
.sf-logo-name { font-size: .9rem; font-weight: 700; color: var(--white); }
.sf-logo-sub { font-size: .68rem; color: rgba(255,255,255,.4); }
.sf-desc { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 300px; }
.sf-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sfl-col { display: flex; flex-direction: column; gap: .6rem; }
.sfl-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .35rem;
}
.sfl-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.sfl-col a:hover { color: var(--gold); }
.sf-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.sf-bottom span { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-wrap {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--white);
}
.legal-hero {
  background: var(--green-dark);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}
.legal-hero-inner { max-width: 1280px; margin: 0 auto; }
.legal-hero h1 {
  font-family: var(--font-ser);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.legal-hero p { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .5rem; }
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 4rem) 5rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 2.5rem;
  transition: color .2s;
  min-height: 44px;
}
.legal-back:hover { color: var(--green-dark); }
.legal-back svg { width: 16px; height: 16px; }
.legal-body h2 {
  font-family: var(--font-ser);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  letter-spacing: -.01em;
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { font-size: .9rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: .75rem; }
.legal-body ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.legal-body ul li { font-size: .9rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: .4rem; list-style: disc; }
.legal-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--green-dark); }

/* ============================================================
   RESPONSIVE – MOBILE FIRST
   ============================================================ */

/* ── ≤ 1200px ─────────────────────────────────────────────── */
@media screen and (max-width: 1200px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-card--featured { grid-column: 1 / -1; grid-template-columns: auto 1fr; }
  .ls-card--featured .lsc-tags { grid-column: 2; }
}

/* ── ≤ 1024px ─────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-left { position: static; }
  .vorteile-split { grid-template-columns: 1fr; }
  .vs-left { position: static; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kg-left { position: static; }
  .region-grid { grid-template-columns: 1fr; }
  .rg-visual { display: none; }
  .sf-inner { grid-template-columns: 1fr; }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  /* Navigation */
  .sh-nav {
    display: none !important;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(250,248,245,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    z-index: 999;
  }
  .sh-nav.open { display: flex !important; }
  .sh-nav a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    padding: 1rem .5rem;
    min-height: 56px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none !important;
  }
  .sh-nav a:last-child { border-bottom: none; }
  .sh-nav-cta {
    background: var(--green-dark) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
    margin-top: 1rem;
    justify-content: center;
    border-bottom: none !important;
  }
  .sh-burger { display: flex !important; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .hero-trust { gap: 1rem; }
  .ht-val { font-size: 1.2rem; }

  /* Leistungen */
  .leistungen-grid { grid-template-columns: 1fr; }
  .ls-card--featured { grid-template-columns: 1fr; }

  /* Prozess */
  .pt-item { grid-template-columns: 48px 1fr; gap: 1rem; }

  /* Vorteile */
  .vorteil-item { grid-template-columns: 36px 1fr; gap: 1rem; }

  /* Kontakt */
  .kf-row { grid-template-columns: 1fr; }
  .kg-info { grid-template-columns: 1fr; }
  .kf-submit-row { flex-direction: column; align-items: stretch; }
  .kf-submit { justify-content: center; }

  /* Footer */
  .sf-links { grid-template-columns: 1fr 1fr; }
  .sf-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  /* Intro-Band */
  .ib-inner { gap: .75rem; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .kf-field input,
  .kf-field textarea { font-size: 1rem !important; }
  .ht-bold { font-size: 2.8rem; word-break: break-word; hyphens: auto; }
  .ht-light { font-size: 1.8rem; }
  .ht-serif { font-size: 2.4rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .ht-divider { width: 40px; height: 1px; }
  .sf-links { grid-template-columns: 1fr; }
  .phil-facts { grid-template-columns: 1fr; }
  .kg-info { grid-template-columns: 1fr; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .sh-logo-sub { display: none; }
  .hero-badge { font-size: .62rem; }
  .hero-scroll { display: none; }
  .ib-inner { display: none; }
}

/* ── Touch: Hover deaktivieren ────────────────────────────── */
@media (hover: none) {
  .ls-card:hover { background: var(--white); }
  .ls-card--featured:hover { background: var(--green-dark); }
  .vorteil-item:hover .vi-num { color: var(--border); }
  .btn-primary:hover { transform: none; }
}
