/* ============================================================
   HIRSCH & SÖHNE IMMOBILIENMAKLER – Stylesheet
   Design: Warm · Familiär · Professionell
   Playfair Display + Lato + Merriweather
   Erdtöne: Braun · Gold · Creme
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --brown-dark:  #2a1f14;
  --brown-mid:   #3d2b1f;
  --brown-warm:  #5a3a28;
  --brown-light: #8B5E3C;
  --gold:        #c8a96e;
  --gold-2:      #dfc08a;
  --gold-3:      #f0d8a8;
  --gold-pale:   #faf5ec;
  --cream:       #f7f2ea;
  --cream-2:     #ede7da;
  --cream-3:     #ddd5c4;
  --text-dark:   #2a1f14;
  --text-mid:    #5a4030;
  --text-light:  #8a6a50;
  --white:       #ffffff;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', system-ui, -apple-system, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;

  --nav-h:  72px;
  --r:      6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;

  --sh-warm: 0 8px 40px rgba(90,58,40,.15);
  --sh-gold: 0 8px 32px rgba(200,169,110,.3);
  --sh-card: 0 2px 20px rgba(42,31,20,.08);

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

/* ── 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-body);
  color: var(--text-dark);
  background: var(--cream);
  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, select { font-family: inherit; }
address { font-style: normal; }

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

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

/* ── Kicker ───────────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: .85rem;
}
.kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Section ──────────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-head h2 em {
  font-style: italic;
  color: var(--brown-light);
}
.section-desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--brown-dark);
  color: var(--gold-3);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .95rem 2rem;
  border-radius: var(--r);
  border: 2px solid var(--brown-dark);
  min-height: 52px;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              gap var(--dur) var(--ease);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--brown-warm);
  border-color: var(--brown-warm);
  box-shadow: var(--sh-warm);
  transform: translateY(-2px);
  gap: 1rem;
  color: var(--gold-3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown-warm);
  min-height: 52px;
  padding: .95rem .25rem;
  border-bottom: 2px solid rgba(90,58,40,.2);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-ghost:hover { color: var(--brown-dark); border-color: var(--brown-dark); }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,242,234,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,169,110,.2);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(42,31,20,.1); }

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.logo-stag {
  width: 44px;
  height: 52px;
  color: var(--brown-dark);
  flex-shrink: 0;
}
.logo-stag--sm { width: 36px; height: 42px; }
.stag-svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: -.01em;
}
.logo-amp { color: var(--brown-light); }
.logo-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav-Links */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nl {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .55rem 1rem;
  border-radius: var(--r);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nl:hover { color: var(--brown-dark); background: rgba(90,58,40,.06); }
.nl-cta {
  background: var(--brown-dark);
  color: var(--gold-3) !important;
  margin-left: .75rem;
  font-weight: 700;
}
.nl-cta:hover {
  background: var(--brown-warm) !important;
  color: var(--gold-3) !important;
  box-shadow: var(--sh-warm);
}

/* Hamburger */
.burger {
  display: none;
  background: none;
  border: 1.5px solid rgba(90,58,40,.2);
  border-radius: var(--r);
  padding: 9px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.burger:hover { background: rgba(90,58,40,.06); border-color: rgba(90,58,40,.4); }
.burger svg { width: 20px; height: 20px; color: var(--brown-dark); }
.burger svg line { transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.burger.open .b1 { transform: translateY(6px) rotate(45deg); transform-origin: center; }
.burger.open .b2 { opacity: 0; }
.burger.open .b3 { transform: translateY(-6px) rotate(-45deg); transform-origin: center; }

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

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero-left { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-3);
  letter-spacing: .04em;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 2px rgba(200,169,110,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(200,169,110,.05); }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: .05em;
  margin-bottom: 1.75rem;
}
.h1-serif {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(247,242,234,.7);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.h1-bold {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -.03em;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.h1-bold em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: rgba(247,242,234,.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ht-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.ht-item strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ht-item span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(247,242,234,.4);
}
.ht-sep {
  width: 1px;
  height: 36px;
  background: rgba(200,169,110,.2);
  flex-shrink: 0;
}

/* Hero Maskottchen */
.hero-mascot {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.12);
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.04); opacity: .2; }
}
.mascot-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mascot-svg { width: 200px; height: 240px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.mascot-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-style: italic;
  color: rgba(200,169,110,.5);
  letter-spacing: .05em;
}

/* ── Intro-Band ───────────────────────────────────────────── */
.intro-band {
  background: var(--brown-dark);
  border-top: 1px solid rgba(200,169,110,.1);
  border-bottom: 1px solid rgba(200,169,110,.1);
  padding-block: 1rem;
  overflow: hidden;
}
.ib-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ib-inner span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,169,110,.6);
}
.ib-dot { color: var(--gold) !important; opacity: .4; }

/* ── Services ─────────────────────────────────────────────── */
.section-services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover {
  box-shadow: var(--sh-warm);
  transform: translateY(-4px);
  border-color: rgba(200,169,110,.3);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  margin-bottom: 1.25rem;
  transition: background var(--dur) var(--ease);
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card:hover .svc-icon { background: rgba(200,169,110,.15); }

.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.svc-card p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.svc-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--brown-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(200,169,110,.2);
}

/* ── Familie ──────────────────────────────────────────────── */
.section-family { background: var(--brown-dark); }

.family-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.family-visual { flex-shrink: 0; }
.fv-bg {
  width: clamp(260px, 30vw, 380px);
  aspect-ratio: 5/6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.crest-svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 60px rgba(0,0,0,.5)); }

.family-content { color: var(--cream); }
.family-content .kicker { color: var(--gold); }
.family-content .kicker::before { background: var(--gold); }
.family-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.family-content h2 em { font-style: italic; color: var(--gold); }
.family-content p {
  font-size: .95rem;
  color: rgba(247,242,234,.6);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 540px;
}
.family-content p:last-of-type { margin-bottom: 2rem; }

.family-members {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.fm-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.fm-item:hover { background: rgba(255,255,255,.07); border-color: rgba(200,169,110,.2); }
.fm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(200,169,110,.2);
}
.fm-avatar svg { width: 100%; height: 100%; }
.fm-info { display: flex; flex-direction: column; gap: .15rem; }
.fm-info strong {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
}
.fm-info span { font-size: .78rem; color: rgba(200,169,110,.55); }

.family-content .btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}
.family-content .btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--brown-dark);
  box-shadow: var(--sh-gold);
}

/* ── Values ───────────────────────────────────────────────── */
.section-values { background: var(--cream-2); }
.section-values .section-head h2 { color: var(--brown-dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.val-item {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.val-item:hover { box-shadow: var(--sh-card); transform: translateY(-3px); }
.val-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,169,110,.15);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -.04em;
  transition: color var(--dur) var(--ease);
}
.val-item:hover .val-num { color: rgba(200,169,110,.3); }
.val-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .6rem;
}
.val-item p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Process ──────────────────────────────────────────────── */
.section-process { background: var(--cream); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}
.proc-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 1.5rem;
  position: relative;
}
.proc-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: 1;
  grid-column: 1;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(42,31,20,.2);
}
.proc-circle span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.proc-line {
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,.1));
  margin-inline: auto;
  min-height: 60px;
  grid-row: 2;
  grid-column: 1;
}
.proc-line--last { background: transparent; }
.proc-content {
  grid-row: 1 / 3;
  grid-column: 2;
  padding-bottom: 2.5rem;
  padding-top: .75rem;
}
.proc-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .5rem;
}
.proc-content p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* ── Contact ──────────────────────────────────────────────── */
.section-contact { background: var(--gold-pale); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.ct-info .kicker { color: var(--brown-light); }
.ct-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.ct-info h2 em { font-style: italic; color: var(--brown-light); }
.ct-info > p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.ct-details { display: flex; flex-direction: column; gap: 1.25rem; }
.ct-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cdi-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  flex-shrink: 0;
  box-shadow: var(--sh-card);
}
.cdi-icon svg { width: 18px; height: 18px; }
.ct-detail-item div { display: flex; flex-direction: column; gap: .2rem; }
.ct-detail-item strong {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.ct-detail-item span,
.ct-detail-item a {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.ct-detail-item a:hover { color: var(--brown-dark); }

/* Form */
.ct-form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-card);
}
.form-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-2);
}
.form-stag { width: 40px; height: 50px; flex-shrink: 0; }
.form-stag svg { width: 100%; height: 100%; }
.form-header h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .25rem;
}
.form-header p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

.ct-form { display: flex; flex-direction: column; gap: 1.1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: .4rem; }
.cf-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cf-group label span { color: var(--brown-light); }
.cf-opt { font-size: .65rem; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-light) !important; }
.cf-group input,
.cf-group textarea,
.cf-group select {
  padding: .85rem 1rem;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  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);
  appearance: none;
  -webkit-appearance: none;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(90,64,48,.3); }
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  outline: none;
  border-color: var(--brown-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139,94,60,.1);
}
.cf-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: .75rem;
}
.cf-check input[type="checkbox"] {
  margin-top: .25rem;
  flex-shrink: 0;
  accent-color: var(--brown-dark);
  width: 18px;
  height: 18px;
  min-height: unset;
  cursor: pointer;
}
.cf-check label {
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}
.cf-check label a { color: var(--brown-light); text-decoration: underline; }
.cf-check label span { color: var(--brown-light); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--brown-dark); }
.ft-top {
  padding-block: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.ft-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.ft-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.ft-logo .logo-stag { color: var(--gold); }
.ft-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
}
.ft-sub {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(200,169,110,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ft-brand p {
  font-size: .85rem;
  color: rgba(247,242,234,.35);
  line-height: 1.75;
  max-width: 300px;
}
.ft-address {
  font-size: .82rem;
  color: rgba(247,242,234,.3);
  line-height: 1.7;
}
.ft-address a { color: rgba(200,169,110,.5); transition: color var(--dur) var(--ease); }
.ft-address a:hover { color: var(--gold); }
.ft-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(200,169,110,.35);
  margin-bottom: 1.25rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: .55rem; }
.ft-col a {
  font-size: .85rem;
  color: rgba(247,242,234,.35);
  transition: color var(--dur) var(--ease);
  min-height: 32px;
  display: flex;
  align-items: center;
}
.ft-col a:hover { color: var(--gold); }

.ft-bottom {
  border-top: 1px solid rgba(200,169,110,.08);
  padding-block: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-bottom p { font-size: .78rem; color: rgba(247,242,234,.2); }
.ft-legal { display: flex; gap: 1.75rem; }
.ft-legal a {
  font-size: .78rem;
  color: rgba(247,242,234,.25);
  transition: color var(--dur) var(--ease);
}
.ft-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);
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brown-light);
  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(--brown-dark); }
.legal-back svg { width: 18px; height: 18px; }
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--cream-2);
}
.legal-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}
.legal-header p { color: var(--text-light); font-size: .9rem; }
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.legal-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.legal-body p {
  color: var(--text-mid);
  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-mid); font-size: .93rem; margin-bottom: .35rem; }
.legal-body a { color: var(--brown-light); text-decoration: underline; }
.legal-body a:hover { color: var(--brown-dark); }

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

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media screen and (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .hero-mascot { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-left { max-width: 100%; }
}

/* ── ≤ 900px ──────────────────────────────────────────────── */
@media screen and (max-width: 900px) {
  .family-inner { grid-template-columns: 1fr; }
  .family-visual { display: flex; justify-content: center; }
  .fv-bg { width: 260px; }
  .contact-inner { grid-template-columns: 1fr; }
  .proc-item { grid-template-columns: 48px 1fr; }
  .proc-circle { width: 48px; height: 48px; }
}

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

  /* Hamburger – Fullscreen Overlay */
  .nav-links {
    display: none !important;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(247,242,234,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--cream-2);
    z-index: 999;
  }
  .nav-links.open { display: flex !important; }
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links ul li { border-bottom: 1px solid var(--cream-2); }
  .nl {
    padding: 1rem .5rem;
    font-size: 1.05rem;
    border-radius: 0;
    background: none !important;
    min-height: 58px;
    width: 100%;
    color: var(--text-dark) !important;
  }
  .nl-cta {
    margin-left: 0;
    margin-top: 1.25rem;
    background: var(--brown-dark) !important;
    color: var(--gold-3) !important;
    border-radius: var(--r);
    justify-content: center;
  }
  .burger { display: flex !important; }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding-block: clamp(2rem, 6vw, 3.5rem);
  }
  .hero-content { padding-block: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary { justify-content: center; width: 100%; }
  .hero-ctas .btn-ghost { justify-content: center; }
  .hero-badge { font-size: .7rem; }
  .h1-bold { font-size: clamp(2.2rem, 8vw, 3.2rem); word-break: break-word; overflow-wrap: break-word; hyphens: auto; }
  .h1-serif { font-size: clamp(1.3rem, 4.5vw, 1.8rem); }
  .hero-sub { font-size: .9rem; }
  .hero-trust { gap: 1rem; }
  .ht-item strong { font-size: 1.2rem; }

  /* Intro-Band */
  .ib-inner { gap: .6rem; flex-wrap: wrap; }
  .ib-inner span { font-size: .72rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 1.5rem 1.25rem; }

  /* Familie */
  .family-content h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .fm-item { padding: .75rem 1rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  .val-item { padding: 1.5rem 1.25rem; }

  /* Prozess */
  .proc-item { grid-template-columns: 44px 1fr; gap: 0 1rem; }
  .proc-circle { width: 44px; height: 44px; }
  .proc-circle span { font-size: 1rem; }
  .proc-content { padding-bottom: 2rem; }

  /* Kontakt */
  .ct-info h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .ct-form-wrap { padding: 1.5rem 1.25rem; }
  .cf-row { grid-template-columns: 1fr; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr; }
  .ft-brand { grid-column: auto; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .ft-legal { flex-wrap: wrap; gap: 1rem; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .h1-bold { font-size: 2.2rem; }
  .h1-serif { font-size: 1.3rem; }
  .hero-sub { font-size: .875rem; }
  .hero-trust { gap: .75rem; }
  .ht-sep { height: 24px; }
  .ht-item strong { font-size: 1.1rem; }
  .ht-item span { font-size: .65rem; }

  /* Formular – iOS-Zoom verhindern */
  .cf-group input,
  .cf-group textarea,
  .cf-group select { font-size: 1rem !important; }
  .cf-row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 1.25rem 1rem; border-radius: var(--r-md); }

  .family-members { gap: .65rem; }
  .fm-avatar { width: 40px; height: 40px; }
  .fm-info strong { font-size: .88rem; }

  .ib-inner { gap: .5rem; }
  .ib-dot { display: none; }

  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-desc { font-size: .875rem; }

  .svc-card { padding: 1.25rem 1rem; }
  .svc-icon { width: 44px; height: 44px; }
  .svc-icon svg { width: 22px; height: 22px; }

  .val-item { padding: 1.25rem 1rem; }
  .val-num { font-size: 2.5rem; }

  .proc-item { grid-template-columns: 40px 1fr; gap: 0 .85rem; }
  .proc-circle { width: 40px; height: 40px; }
  .proc-circle span { font-size: .9rem; }
  .proc-line { min-height: 44px; }
  .proc-content h3 { font-size: 1rem; }
  .proc-content p { font-size: .85rem; }

  .ct-detail-item { gap: .75rem; }
  .cdi-icon { width: 38px; height: 38px; }
  .cdi-icon svg { width: 16px; height: 16px; }

  .ft-top { padding-block: 2rem; }
  .ft-brand p { font-size: .8rem; }
  .ft-col a { font-size: .82rem; }
  .ft-bottom p { font-size: .75rem; }
  .ft-legal a { font-size: .75rem; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .logo-sub { display: none; }
  .logo-main { font-size: .95rem; }
  .h1-bold { font-size: 1.9rem; }
  .h1-serif { font-size: 1.15rem; }
  .hero-trust { display: none; }
  .hero-badge { display: none; }
  .hero-ctas { gap: .75rem; }
  .btn-primary { padding: .85rem 1.5rem; font-size: .82rem; }
  .section-head h2 { font-size: 1.6rem; }
}

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