/* ============================================================
   KF GÜNTER IMMOBILIEN – Premium Stylesheet
   Design: Deep Charcoal + Warm Gold · Outfit + Cormorant
   Mobile-First · Alle Breakpoints
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --ink:        #0b0f1a;
  --navy:       #0e1525;
  --navy-2:     #162038;
  --navy-3:     #1e3060;
  --gold:       #b8963e;
  --gold-2:     #caa84e;
  --gold-3:     #e2c97e;
  --gold-pale:  #f8f2e2;
  --white:      #ffffff;
  --off:        #fafaf8;
  --gray-50:    #f3f5f9;
  --gray-100:   #e6eaf2;
  --gray-200:   #cdd3e0;
  --gray-400:   #8896b0;
  --gray-600:   #4a5568;
  --text:       #0f1723;
  --text-2:     #4b5a6e;

  --font-sans:   'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;

  --nav-h:      70px;
  --r:          6px;
  --r-lg:       14px;
  --r-xl:       22px;

  --sh-xs: 0 1px 4px rgba(11,15,26,.06);
  --sh-sm: 0 2px 12px rgba(11,15,26,.09);
  --sh-md: 0 8px 32px rgba(11,15,26,.13);
  --sh-lg: 0 20px 60px rgba(11,15,26,.18);

  --ease:  cubic-bezier(.4,0,.2,1);
  --dur:   220ms;
  --max-w: 1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2.25rem;
  border-radius: var(--r);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 50px;
  transition: all var(--dur) var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 6px 28px rgba(184,150,62,.45);
  transform: translateY(-2px);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Brand / Logo ─────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand__monogram {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  flex-shrink: 0;
  border: 1px solid rgba(184,150,62,.2);
}
.brand__monogram--sm { width: 36px; height: 36px; font-size: .72rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.brand__name--light { color: rgba(255,255,255,.85); }
.brand__tagline {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brand__tagline--light { color: rgba(184,150,62,.7); }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: var(--sh-md); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav-link {
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
  padding: .55rem .9rem;
  border-radius: var(--r);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover { color: var(--navy); background: var(--gray-50); }
.nav-link--active { color: var(--navy); }
.nav-link--cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.35rem;
  margin-left: .75rem;
  font-weight: 700;
}
.nav-link--cta:hover {
  background: var(--gold-2) !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 18px rgba(184,150,62,.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 9px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.nav-toggle:hover { background: var(--gray-50); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-svg { width: 100%; height: 100%; object-fit: cover; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.hero-content { max-width: 700px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-label__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.25);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,150,62,.25); }
  50%       { box-shadow: 0 0 0 7px rgba(184,150,62,.1); }
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-title__serif {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* KPI Bar */
.hero-kpi {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
}
.kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 2rem;
  text-align: center;
}
.kpi:first-child { padding-left: 0; }
.kpi:last-child  { padding-right: 0; }
.kpi__val {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.03em;
}
.kpi__val sup { font-size: 1.2rem; vertical-align: super; }
.kpi__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}
.kpi-div {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  flex-shrink: 0;
  margin-block: .25rem;
}

/* Scroll-Indikator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll__mouse {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 12px;
  position: relative;
}
.hero-scroll__dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 18px; opacity: .3; }
}

/* ── Intro-Band ───────────────────────────────────────────── */
.intro-band {
  background: var(--gold);
  padding-block: 1rem;
  overflow: hidden;
}
.intro-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 0;
}
.intro-band__inner span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-inline: 1.5rem;
}
.intro-band__sep {
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: .4;
  flex-shrink: 0;
}

/* ── Section Helpers ──────────────────────────────────────── */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-dark  { background: var(--navy); }
.section-light { background: var(--gray-50); }

.sec-intro {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.sec-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sec-kicker--light { color: var(--gold-2); }
.sec-h {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.1rem;
}
.sec-h em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  letter-spacing: -.01em;
}
.sec-h--light { color: var(--white); }
.sec-h--light em { color: var(--gold-2); }
.sec-p { font-size: clamp(.9rem, 2vw, 1rem); color: var(--text-2); line-height: 1.8; }
.sec-p--light { color: rgba(255,255,255,.58); }

/* ── Services Grid ────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.svc-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: transparent;
}
.svc-card--featured h3 { color: var(--white); }
.svc-card--featured p  { color: rgba(255,255,255,.6); }
.svc-card--featured .svc-card__number { color: rgba(255,255,255,.06); }
.svc-card--featured .svc-card__icon   { color: var(--gold); }
.svc-card--featured .svc-card__tag {
  background: rgba(184,150,62,.15);
  color: var(--gold);
  border-color: rgba(184,150,62,.25);
}
.svc-card--featured:hover {
  border-color: rgba(184,150,62,.4);
  transform: translateY(-5px);
}

.svc-card__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color var(--dur) var(--ease);
}
.svc-card:not(.svc-card--featured):hover .svc-card__number { color: var(--gold-pale); }

.svc-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.svc-card__icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  line-height: 1.3;
}
.svc-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.svc-card__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,62,.2);
  padding: .25rem .75rem;
  border-radius: 100px;
}

/* ── Benefits ─────────────────────────────────────────────── */
.benefits-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,.03);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.benefit-item:hover { background: rgba(255,255,255,.06); }

.benefit-item__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(184,150,62,.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  transition: color var(--dur) var(--ease);
}
.benefit-item:hover .benefit-item__num { color: rgba(184,150,62,.45); }

.benefit-item__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}
.benefit-item__icon svg { width: 100%; height: 100%; }

.benefit-item__body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.benefit-item__body p {
  font-size: .85rem;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
}

/* ── Process / Steps ──────────────────────────────────────── */
.steps {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps-track {
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(184,150,62,.08) 100%);
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step__bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step__bubble span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.step:hover .step__bubble {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(184,150,62,.15);
}
.step:hover .step__bubble span { color: var(--navy); }

.step__card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  flex: 1;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover .step__card {
  box-shadow: var(--sh-md);
  border-color: rgba(184,150,62,.3);
}
.step__kicker {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.step__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.step__card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual__main {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-visual__main svg { width: 100%; height: auto; }

.about-visual__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(184,150,62,.15);
}
.about-badge__item { display: flex; flex-direction: column; gap: .2rem; }
.about-badge__val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.about-badge__lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.about-badge__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.about-text .sec-h { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.75rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2.25rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.about-list li svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.cinfo {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
}
.cinfo h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cinfo-list { display: flex; flex-direction: column; gap: 1.75rem; }
.cinfo-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cinfo-row svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: .15rem; }
.cinfo-row div { display: flex; flex-direction: column; gap: .2rem; }
.cinfo-row strong {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.cinfo-row span,
.cinfo-row a {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.cinfo-row a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cform-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.cform-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.cform-group label span { color: var(--gold); }
.cform-opt {
  font-size: .68rem;
  color: rgba(255,255,255,.28) !important;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cform-group input,
.cform-group textarea {
  padding: .85rem 1.15rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255,255,255,.05);
  resize: vertical;
  width: 100%;
  min-height: 50px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: rgba(255,255,255,.2); }
.cform-group input:focus,
.cform-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(184,150,62,.15);
}
.cform-group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.cform-group--check input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  min-height: unset;
  cursor: pointer;
}
.cform-group--check label {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}
.cform-group--check label a { color: var(--gold); text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--ink); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 300px;
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  transition: color var(--dur) var(--ease);
  display: flex;
  align-items: center;
  min-height: 32px;
}
.footer-col a:hover { color: var(--gold); }
.footer-col li { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 1.35rem;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--gold); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2.5rem;
  min-height: 44px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.legal-back:hover { gap: .8rem; color: var(--gold); }
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-100);
}
.legal-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.03em;
}
.legal-header p { color: var(--text-2); font-size: .9rem; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-top: 2.5rem; margin-bottom: .75rem; }
.legal-body h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-top: 1.75rem; margin-bottom: .5rem; }
.legal-body p { color: var(--text-2); margin-bottom: .85rem; font-size: .93rem; line-height: 1.8; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: .85rem; }
.legal-body ul li { color: var(--text-2); font-size: .93rem; margin-bottom: .35rem; }
.legal-body a { color: var(--navy); text-decoration: underline; }
.legal-body a:hover { color: var(--gold); }

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

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media screen and (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ── ≤ 960px ──────────────────────────────────────────────── */
@media screen and (max-width: 960px) {
  .benefits-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; margin-inline: auto; }
  .about-visual__badge { right: 0; bottom: -1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* Nav → Hamburger */
  .nav-list {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
    z-index: 999;
  }
  .nav-list.open { display: flex !important; }
  .nav-list li { border-bottom: 1px solid var(--gray-100); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-link {
    padding: 1rem .5rem;
    font-size: 1.05rem;
    border-radius: 0;
    background: none !important;
    min-height: 56px;
    width: 100%;
  }
  .nav-link--cta {
    margin-left: 0;
    margin-top: 1rem;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: var(--r);
    justify-content: center;
  }
  .nav-toggle { display: flex !important; }

  /* Hero */
  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-kpi {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
  }
  .kpi { padding-inline: 1rem; flex: 1; min-width: 80px; }
  .kpi-div { display: none; }
  .hero-scroll { display: none; }

  /* Intro-Band */
  .intro-band__inner { gap: .5rem; }
  .intro-band__sep { display: none; }
  .intro-band__inner span { padding-inline: .75rem; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* About */
  .about-visual__badge { position: static; margin-top: 1rem; flex-wrap: wrap; }
  .about-badge__divider { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-title__serif { font-size: 2.3rem; }
  .hero-desc { font-size: .95rem; }
  .hero-kpi { padding: 1rem .75rem; }
  .kpi { padding-inline: .5rem; }
  .kpi__val { font-size: 1.75rem; }
  .kpi__label { font-size: .6rem; }
  .hero-label { font-size: .65rem; }

  .sec-h { font-size: 1.75rem; }
  .sec-h em { font-size: 1.9rem; }
  .section { padding-block: 2.75rem; }

  .svc-card { padding: 1.5rem 1.25rem; }
  .benefit-item { padding: 1.5rem 1.25rem; gap: 1rem; }
  .benefit-item__num { display: none; }

  .cform-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .cinfo { padding: 1.5rem 1.25rem; }

  .step { gap: 1.25rem; }
  .step__card { padding: 1.25rem 1.5rem; }

  .about-visual { max-width: 100%; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .brand__tagline { display: none; }
  .hero-title { font-size: 1.8rem; }
  .hero-title__serif { font-size: 2rem; }
  .btn { padding: .8rem 1.5rem; font-size: .8rem; }
  .hero-kpi { display: none; }
}

/* ── Touch: Hover deaktivieren ────────────────────────────── */
@media (hover: none) {
  .svc-card:hover,
  .benefit-item:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
    box-shadow: none;
  }
}
