/* ============================================================
   Z-FACILITY SWISS GMBH — Stylesheet
   Brand-accurate Swiss editorial aesthetic
   Navy #192537 · Champagne Gold #B09E80 · Dark Gold #716551
   Fonts: Cinzel (brand) · Josefin Sans (brand tagline) · Manrope (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Josefin+Sans:wght@300;400;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Brand-exact palette (from Logo Color Guide) ── */
  --navy:        #192537;   /* brand bg: #192537                */
  --navy-deep:   #0f1c2e;   /* darker hover shade               */
  --navy-mid:    #1e2f47;   /* slightly lighter for cards       */
  --gold:        #B09E80;   /* brand gold: #B09E80              */
  --gold-soft:   #C9B99B;   /* lighter tint                     */
  --gold-dark:   #716551;   /* brand dark gold: #716551         */
  --logo-text:   #E9E9E9;   /* brand company name color         */

  /* ── UI palette ── */
  --cream:       #FAF8F5;
  --paper:       #F2EEE7;
  --line:        #E0D9CF;
  --ink:         #1A1A1A;
  --ink-soft:    #4A4A4A;
  --grey:        #7A7A7A;
  --grey-soft:   #A8A8A8;
  --green-wa:    #25D366;
  --green-wa-d:  #1ebe5d;
  --red-soft:    #C26B5A;

  /* ── Typography ── */
  --brand:       'Cinzel', 'Trajan Pro', serif;          /* logo / brand headlines */
  --brand-tag:   'Josefin Sans', 'Futura', sans-serif;   /* logo tagline / labels  */
  --serif:       'Cormorant Garamond', 'Times New Roman', serif;
  --sans:        'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:         1280px;
  --pad-x:       clamp(1.25rem, 4vw, 3rem);
  --section-y:   clamp(4rem, 10vw, 7rem);

  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 5rem; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }

::selection { background: var(--navy); color: var(--cream); }

/* ───────── HEADER / NAV ───────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad-x);
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 245, 0.95);
  padding: 0.85rem var(--pad-x);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
/* Real logo image styles */
.logo-img {
  height: auto;
  width: 320px;
  max-width: 100%;
  display: block;
  transition: opacity 0.3s var(--ease);
}
/* On light header: show black logo, hide white */
.logo-img-light { display: none; }
.logo-img-dark  { display: block; }

.brand-mark {
  display: flex; align-items: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s var(--ease);
}
.brand-mark:hover { opacity: 0.82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:not(.cta-link):not(.nav-phone)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.cta-link):not(.nav-phone):hover::after { transform: scaleX(1); }

.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600 !important;
  color: var(--navy) !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold) !important; }

.cta-link {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.3s var(--ease);
}
.cta-link:hover { background: var(--navy-deep); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent; border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────── HERO ───────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--pad-x) 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(176,158,128,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(25,37,55,0.04), transparent 70%);
  pointer-events: none;
}
/* Hero logo */
.hero-logo {
  margin-bottom: 2.5rem;
}
.hero-logo-img {
  width: min(560px, 100%);
  height: auto;
  display: block;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-tagline {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 24px; }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--navy-deep);
  color: var(--cream);
}

/* Hero aside */
.hero-aside {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 2px;
}
.hero-aside-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.hero-aside-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-aside-row:first-child { padding-top: 0; }
.hero-aside-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-aside-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.4;
}

/* ───────── SECTION SCAFFOLD ───────── */
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}
.section-header {
  margin-bottom: 4rem;
  max-width: 800px;
}
.section-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 680px;
}

/* ───────── ÜBER UNS ───────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.signature-role {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
}

.facts {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 2px;
}
.fact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.fact-row:first-child { padding-top: 0; }
.fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.fact-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  text-align: right;
  line-height: 1.4;
}

/* ───────── LEISTUNGEN ───────── */
.services { background: var(--paper); position: relative; }
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(26,58,107,0.06);
}
.service-card:hover::before { transform: scaleY(1); }
.service-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.service-tags li {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  background: var(--paper);
  color: var(--navy);
  border-radius: 30px;
  letter-spacing: 0.02em;
}

/* ───────── ALLROUNDER (Inkl/Exkl) ───────── */
.allrounder { background: var(--cream); }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.scope-col {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  position: relative;
  border-top: 3px solid var(--grey-soft);
}
.scope-included { border-top-color: #4a8b6a; background: #f4f7f2; }
.scope-extra    { border-top-color: var(--gold); }
.scope-excluded { border-top-color: var(--red-soft); background: #f7f3f1; }

.scope-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.scope-included .scope-label { color: #2f6849; }
.scope-extra    .scope-label { color: var(--gold); }
.scope-excluded .scope-label { color: var(--red-soft); }

.scope-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.scope-col ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.scope-col ul li::before {
  position: absolute;
  left: 0; top: 0.05rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.scope-included ul li::before { content: '✓'; color: #4a8b6a; }
.scope-extra    ul li::before { content: '+'; color: var(--gold); }
.scope-excluded ul li::before { content: '–'; color: var(--red-soft); }

.scope-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
  line-height: 1.6;
}

/* ───────── PROCESS / ABLAUF ───────── */
.process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.process-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ───────── WARUM ───────── */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
}
.why-item {
  position: relative;
  padding-top: 2.5rem;
}
.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
  display: block;
  position: absolute;
  top: 0; left: 0;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 0;
  width: 1.75rem; height: 1px;
  background: var(--gold);
}
.why-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.why-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ───────── REGION ───────── */
.region { background: var(--paper); }
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.region-lead {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
}
.region-lead em {
  font-style: italic;
  color: var(--gold);
}
.region-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.region-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1.5rem;
}
.region-list li:first-child { padding-top: 0; }
.region-list li:last-child { border-bottom: none; }
.region-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
}
.region-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
}

/* ───────── FAQ ───────── */
.faq { background: var(--cream); }
.faq-list {
  max-width: 880px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 0 1.6rem;
  max-width: 720px;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq-answer a { color: var(--navy); border-bottom: 1px solid var(--gold-soft); }
.faq-answer a:hover { color: var(--gold); }

/* ───────── KONTAKT ───────── */
.contact {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(184,156,110,0.12), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-headline em {
  font-style: italic;
  color: var(--gold);
}
.contact-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250,248,245,0.8);
  margin-bottom: 3rem;
  max-width: 600px;
}
.contact-lead strong { color: var(--gold); font-weight: 600; }

.contact-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(250,248,245,0.05);
  border: 1px solid rgba(250,248,245,0.15);
  border-radius: 2px;
  margin-bottom: 3rem;
}
.contact-block-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-block-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
}
.contact-block-value a {
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-block-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.whatsapp-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--green-wa) !important;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--sans);
  border-bottom: none !important;
}
.whatsapp-link:hover { color: var(--green-wa-d) !important; }

/* Form */
.contact-form {
  background: rgba(250,248,245,0.04);
  border: 1px solid rgba(250,248,245,0.12);
  padding: 2.5rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.form-row { display: flex; flex-direction: column; }
.form-row-full { grid-column: span 2; }
.form-row label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-row .req { color: var(--red-soft); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  background: rgba(250,248,245,0.08);
  border: 1px solid rgba(250,248,245,0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(250,248,245,0.45); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250,248,245,0.12);
}
.form-row select option { background: var(--navy-deep); color: var(--cream); }

.form-consent { margin-top: 0.5rem; }
.consent-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(250,248,245,0.75) !important;
  font-weight: 400 !important;
  line-height: 1.55;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-label a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  display: none;
}
.form-status.sending,
.form-status.success,
.form-status.error { display: block; }
.form-status.sending { background: rgba(250,248,245,0.1); color: var(--cream); }
.form-status.success { background: rgba(74,139,106,0.2); color: #b6e0c5; }
.form-status.error   { background: rgba(194,107,90,0.2); color: #f0c2b8; }

.contact-alt {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(250,248,245,0.7);
  margin-top: 1.5rem;
}
.contact-alt a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.contact-alt a:hover { border-bottom-color: var(--gold); }

/* ───────── FOOTER ───────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,248,245,0.7);
  padding: 5rem var(--pad-x) 2rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}
.footer-brand .brand-mark { margin-bottom: 1.25rem; }
.footer-brand-mark .logo-img { width: 260px; height: auto; }
.footer-tag {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-contact {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
}
.footer-contact a { color: var(--cream); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.footer-contact a:hover { border-bottom-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; color: rgba(250,248,245,0.7); }
.footer-col a:hover { color: var(--gold); }

.footer-bar {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250,248,245,0.5);
}
.footer-bar a { color: rgba(250,248,245,0.7); }
.footer-bar a:hover { color: var(--gold); }

/* ───────── FLOATING WHATSAPP ───────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  color: white !important;
}

/* ───────── LEGAL PAGES ───────── */
.legal-page {
  padding: 8rem var(--pad-x) 5rem;
  min-height: 70vh;
  background: var(--cream);
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.legal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  letter-spacing: -0.005em;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.005em;
}
.legal-page h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}
.legal-page p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page a { color: var(--navy); border-bottom: 1px solid var(--gold-soft); }
.legal-page a:hover { color: var(--gold); }
.legal-back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--navy) !important;
  border-bottom: 1px solid var(--gold) !important;
  padding-bottom: 0.15rem;
}
.legal-back:hover { color: var(--gold) !important; }

.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--grey);
}

/* ───────── REVEAL ANIMATION ───────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-card { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 0 0;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem var(--pad-x);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .cta-link {
    background: var(--navy);
    color: var(--cream) !important;
    margin: 1rem var(--pad-x);
    padding: 1rem 1.5rem;
    text-align: center;
  }
  .nav-phone {
    background: var(--paper);
  }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row-full { grid-column: span 1; }
  .contact-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .contact-form { padding: 1.75rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .facts { padding: 2rem 1.5rem; }
  .fact-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .fact-value { text-align: left; }
  .hero-aside-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .region-list li { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .region-meta { text-align: left; }
}

/* Print */
@media print {
  .site-header, .menu-toggle, .hero-actions, .whatsapp-float, .contact-form { display: none; }
  body { background: white; color: black; }
  .hero, .about, .services, .allrounder, .process, .why, .region, .faq, .contact, .site-footer {
    page-break-inside: avoid;
  }
}

/* ───────── HERO STATS BAR ───────── */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ───────── CLIENTS STRIP ───────── */
.clients-strip {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.clients-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.client-type {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.client-type:hover {
  border-color: var(--gold-soft);
  background: #f7f4ee;
}
.client-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.client-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

/* ───────── TESTIMONIALS ───────── */
.testimonials { background: var(--navy); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(184,156,110,0.1), transparent 60%);
  pointer-events: none;
}
.testimonials .section-header { position: relative; z-index: 1; }
.testimonials .section-num { color: var(--gold); }
.testimonials .section-title { color: var(--cream); }
.testimonials .section-title em { color: var(--gold); }
.testimonials .section-lead { color: rgba(250,248,245,0.75); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(250,248,245,0.06);
  border: 1px solid rgba(250,248,245,0.15);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.testimonial-card:hover {
  background: rgba(250,248,245,0.09);
  border-color: rgba(184,156,110,0.4);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(250,248,245,0.9);
  flex-grow: 1;
}
.testimonial-author {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250,248,245,0.12);
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonials-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(250,248,245,0.5);
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 1.5rem; }
  .clients-grid { flex-direction: column; }
  .client-type { width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stat-value { font-size: 1.6rem; }
}

/* ───────── WHATSAPP BUSINESS EMPHASIS ───────── */

/* WA badge in contact card */
.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-wa);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
}
.wa-badge::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: wa-pulse 1.8s infinite;
}
@keyframes wa-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.contact-wa-primary { grid-column: span 1; }

.whatsapp-link-big {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--green-wa) !important;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(37,211,102,0.3) !important;
  padding-bottom: 0.1rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.whatsapp-link-big:hover {
  color: var(--green-wa-d) !important;
  border-bottom-color: var(--green-wa-d) !important;
}

.wa-hint {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.5);
  font-style: italic;
  font-family: var(--sans);
}

/* WhatsApp Business Banner Strip */
.wa-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.wa-banner-icon {
  width: 56px; height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.wa-banner-text { flex: 1; min-width: 180px; }
.wa-banner-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.wa-banner-sub {
  font-size: 0.88rem;
  color: rgba(250,248,245,0.65);
}
.wa-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-wa);
  color: white !important;
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}
.wa-banner-btn .arrow { background: white; }
.wa-banner-btn .arrow::after { border-color: white; }
.wa-banner-btn:hover {
  background: var(--green-wa-d);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Floating button pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  opacity: 0;
  animation: float-ring 2.5s infinite;
}
@keyframes float-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-float { position: relative; }

/* Responsive WA banner */
@media (max-width: 768px) {
  .wa-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .wa-banner-btn { width: 100%; justify-content: center; }
  .contact-wa-primary { grid-column: span 1; }
}

/* ───────── UTILITY BAR (above header) ───────── */
.utility-bar {
  background: var(--navy);
  color: var(--logo-text);
  padding: 0.5rem var(--pad-x);
  font-size: 0.78rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  border-bottom: 1px solid rgba(176,158,128,0.15);
}
.utility-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-hours {
  letter-spacing: 0.02em;
  color: rgba(233,233,233,0.85);
}
.utility-hours strong {
  color: var(--gold);
  font-weight: 600;
}
.utility-icon {
  margin-right: 0.4rem;
  opacity: 0.7;
}
.utility-quick {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.utility-quick a {
  color: var(--logo-text);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.utility-quick a:hover { color: var(--gold); }
.utility-wa { color: var(--green-wa) !important; }
.utility-wa:hover { color: var(--green-wa-d) !important; }
.utility-sep { color: rgba(233,233,233,0.3); }

/* Push site-header down by utility bar height */
.site-header { top: 36px; }
@media (max-width: 768px) {
  .utility-bar { font-size: 0.72rem; padding: 0.4rem var(--pad-x); }
  .utility-inner { justify-content: center; gap: 0.5rem; flex-direction: column; }
  .site-header { top: 60px; }
  .utility-hours { text-align: center; }
}

/* ───────── VALUES / WERTE SECTION ───────── */
.values {
  background: var(--cream);
  position: relative;
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.values-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.values-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 3.5rem;
  letter-spacing: -0.005em;
}
.values-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  text-align: left;
}
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.value-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--gold);
  flex-shrink: 0;
  font-style: italic;
  font-weight: 400;
}
.value-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .value-text { font-size: 1.1rem; }
  .value-mark { font-size: 2.8rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ALLROUNDER / TRANSPARENZ — Redesigned (replaces old scope-grid)
   ═══════════════════════════════════════════════════════════════ */

/* ── Main "Im Abo enthalten" block — full width, navy bg ── */
.scope-main {
  background: var(--navy);
  border-radius: 3px;
  padding: 3rem 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.scope-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.scope-main::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,158,128,0.08), transparent 70%);
  pointer-events: none;
}
.scope-main-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(176,158,128,0.25);
  flex-wrap: wrap;
}
.scope-main-label {
  font-family: var(--brand-tag);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.scope-main-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(233,233,233,0.65);
}

/* Two-column checklist inside the navy block */
.scope-main-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 3rem;
}
.scope-main-list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 0.97rem;
  color: var(--logo-text);
  line-height: 1.4;
}
.sml-check {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  width: 18px;
  text-align: center;
}

/* ── Secondary two columns: Zusätzlich + Nicht angeboten ── */
.scope-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.scope-sec-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2rem 2.25rem;
  position: relative;
}
.scope-sec-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 3px 3px 0 0;
}
.scope-sec-col:first-child::before { background: var(--gold); }
.scope-sec-col:last-child::before  { background: var(--grey-soft); }

.scope-sec-label {
  font-family: var(--brand-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.scope-extra-label { color: var(--gold-dark); }
.scope-excl-label  { color: var(--grey); }

.scope-sec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.scope-sec-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.scope-sec-list li span {
  flex-shrink: 0;
  width: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.scope-sec-list:not(.scope-excl-list) li span { color: var(--gold-dark); }
.scope-excl-list li span { color: var(--grey-soft); }
.scope-excl-list li { color: var(--grey); }

.scope-partner-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  color: var(--grey);
  font-style: italic;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .scope-main { padding: 2.5rem 2rem; }
}
@media (max-width: 768px) {
  .scope-main-list { grid-template-columns: 1fr; gap: 0.7rem; }
  .scope-secondary { grid-template-columns: 1fr; }
  .scope-main { padding: 2rem 1.5rem; }
  .scope-main-header { gap: 0.75rem; flex-direction: column; }
}

/* ── Endreinigung featured card ── */
.service-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--cream), var(--paper));
  position: relative;
}
.service-card-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px 2px 0 0;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--brand-tag);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 0.85rem;
}
.service-badge::before {
  content: '✓';
  font-size: 0.75rem;
}

/* ── Scope divider inside Leistungen ── */
.scope-divider {
  text-align: center;
  padding: 3rem 0 2.5rem;
  position: relative;
}
.scope-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
  transform: translateY(-50%);
}
.scope-divider-label {
  display: inline-block;
  position: relative;
  background: var(--paper);
  padding: 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.scope-divider-label em {
  font-style: italic;
  color: var(--gold);
}
.scope-divider-sub {
  margin-top: 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--grey);
}

/* ═══════════════════════════════════════════
   SCOPE EXTRA BLOCK — full-width Zusätzlich
   ═══════════════════════════════════════════ */
.scope-extra-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2.5rem 3rem;
  margin-top: 1.5rem;
}
.scope-extra-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.scope-extra-label-main {
  font-family: var(--brand-tag);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}
.scope-extra-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--grey);
}
.scope-extra-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 3rem;
  margin-bottom: 1.5rem;
}
.scope-extra-grid li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.sex-plus {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
}
.scope-extra-note {
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   REGION TILES — 4 cantons + Erweitert
   ═══════════════════════════════════════════ */
.region-block { width: 100%; }

.region-lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 3rem;
}
.region-lead em { font-style: italic; color: var(--gold); }

.region-tiles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.region-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy);
  border: 1px solid rgba(176,158,128,0.2);
  border-radius: 3px;
  padding: 1.75rem 2.5rem;
  min-width: 150px;
  flex: 1;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.region-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.region-tile-soft {
  background: var(--paper);
  border-color: var(--line);
  border-style: dashed;
}
.region-tile-soft:hover { border-color: var(--gold-soft); border-style: dashed; }

.region-tile-kt {
  font-family: var(--brand);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}
.region-tile-soft .region-tile-kt {
  color: var(--gold-soft);
}
.region-tile-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--logo-text);
  text-transform: uppercase;
  line-height: 1.4;
}
.region-tile-name span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.region-tile-soft .region-tile-name {
  color: var(--grey);
}

@media (max-width: 768px) {
  .scope-extra-grid { grid-template-columns: 1fr; }
  .scope-extra-block { padding: 2rem 1.5rem; }
  .region-tile { min-width: 120px; padding: 1.5rem 1.25rem; }
  .region-tile-kt { font-size: 1.6rem; }
}

/* ── Utility bar Notfall link ── */
.utility-notfall {
  color: #ff6b6b !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  animation: notfall-pulse 2s infinite;
}
.utility-notfall:hover { color: white !important; }
@keyframes notfall-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* ───────── FLOATING NOTFALL BUTTON ───────── */
.notfall-float {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #C0392B;
  color: white;
  border-radius: 50px;
  padding: 0.85rem 1.35rem 0.85rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(192,57,43,0.5);
  transition: transform 0.25s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.25s cubic-bezier(0.22,0.61,0.36,1),
              background 0.25s;
  animation: notfall-float-pulse 3s infinite;
}
.notfall-float:hover {
  background: #a93226;
  color: white;
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(192,57,43,0.6);
}
@keyframes notfall-float-pulse {
  0%, 90%, 100% { box-shadow: 0 4px 18px rgba(192,57,43,0.5); }
  45% { box-shadow: 0 4px 28px rgba(192,57,43,0.8), 0 0 0 8px rgba(192,57,43,0.12); }
}
.notfall-float-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.notfall-float-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Push WhatsApp button up slightly on mobile so they don't overlap */
@media (max-width: 480px) {
  .notfall-float {
    left: 1rem;
    bottom: 1.25rem;
    padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  }
  .notfall-float-text { font-size: 0.72rem; }
  .whatsapp-float { right: 1rem; bottom: 1.25rem; }
}

/* ── Form actions row (Anfrage senden + Als PDF) ── */
.form-actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-actions .btn { flex: 1 1 auto; min-width: 200px; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 0.95rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}

/* ── Logo mobile sizing ── */
@media (max-width: 768px) {
  .logo-img { width: 220px; }
  .hero-logo-img { width: min(420px, 90vw); }
  .footer-brand-mark .logo-img { width: 200px; }
}
@media (max-width: 480px) {
  .logo-img { width: 180px; }
}

/* ── Section CTAs (inline between sections) ── */
.section-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem 0 0.5rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
.section-cta-light {
  border-top-color: rgba(255,255,255,0.15);
  margin-top: 2rem;
}
.btn-text-link {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: color 0.2s, border-color 0.2s;
}
.btn-text-link:hover { color: var(--navy); border-color: var(--navy); }

/* ── Nav Notfall link ── */
.nav-notfall {
  color: #e74c3c !important;
  font-weight: 700 !important;
}
.nav-notfall:hover { color: #c0392b !important; }

/* ── Google Reviews CTA ── */
.reviews-cta { background: var(--navy); padding: 3.5rem 0; }
.reviews-cta-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(176,158,128,0.25);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}
.reviews-cta-icon {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.reviews-cta-content h2 {
  font-family: var(--brand);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: white;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.reviews-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  max-width: 480px;
  line-height: 1.6;
}
.reviews-cta-content .btn-dark {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.reviews-cta-content .btn-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
@media (max-width: 600px) {
  .reviews-cta-box { padding: 2rem 1.5rem; gap: 1.5rem; }
  .reviews-cta-icon { font-size: 2.5rem; }
}

/* ═══════════════════════════════════
   FÜR MIETER SECTION
   ═══════════════════════════════════ */
.mieter-section { background: var(--paper); }

.mieter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.mieter-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
}
.mieter-card-urgent {
  border-left: 4px solid #C0392B;
  background: #fdf7f7;
}
.mieter-card-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.mieter-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.mieter-card h3 {
  font-family: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.mieter-card-dark h3 { color: var(--gold); }
.mieter-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.mieter-card-dark p { color: rgba(255,255,255,0.75); }

.mieter-list {
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mieter-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.mieter-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.mieter-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.mieter-btn {
  display: block;
  text-align: center;
  padding: 0.8rem 1.25rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.mieter-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.mieter-btn-red {
  background: #C0392B;
  color: white;
}
.mieter-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.mieter-card-dark .mieter-btn-outline {
  color: var(--gold);
  border-color: var(--gold);
}

/* Emergency number buttons inside mieter dark card */
.notfall-nums {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.notfall-num-btn {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  color: white;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  text-align: center;
}
.notfall-num-btn:hover { background: rgba(255,255,255,0.2); color: white; }

@media (max-width: 768px) {
  .mieter-grid { grid-template-columns: 1fr; }
}

/* ── Facility Service full-width card ── */
.service-card-facility {
  grid-column: 1 / -1;
  background: var(--navy);
  border-color: var(--gold);
  color: white;
  padding: 2.5rem 3rem;
}
.service-card-facility-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.service-card-facility-text { flex: 1 1 400px; }
.service-card-facility-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}
.service-card-facility .service-num { color: var(--gold); }
.service-card-facility .service-title { color: white; font-size: clamp(1.4rem, 3vw, 2rem); }
.service-card-facility .service-desc { color: rgba(255,255,255,0.82); }
.service-card-facility .service-tags li {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(176,158,128,0.3);
}

.facility-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--brand-tag);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  white-space: nowrap;
}
.facility-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.service-card-facility .btn-dark {
  background: white;
  color: var(--navy);
  border-color: white;
  white-space: nowrap;
}
.service-card-facility .btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .service-card-facility { padding: 2rem 1.5rem; }
  .service-card-facility-inner { gap: 1.5rem; }
  .service-card-facility-cta { width: 100%; }
  .service-card-facility .btn-dark { width: 100%; text-align: center; }
}

/* ── Service group (Facility Service featured block) ── */
.service-group {
  margin-bottom: 2rem;
}
.service-group-header {
  background: var(--navy);
  color: white;
  border-radius: 6px;
  padding: 2.5rem 3rem;
  border-left: 5px solid var(--gold);
}
.service-group-label {
  font-family: var(--brand-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-group-title {
  font-family: var(--brand);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-group-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 1.5rem;
}
.service-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.service-group-tags span {
  background: rgba(176,158,128,0.18);
  color: var(--gold);
  border: 1px solid rgba(176,158,128,0.3);
  border-radius: 30px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Divider between groups */
.service-group-label-divider {
  text-align: center;
  font-family: var(--brand-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 1.5rem 0 2rem;
  position: relative;
}
.service-group-label-divider::before,
.service-group-label-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--line);
}
.service-group-label-divider::before { left: 0; }
.service-group-label-divider::after  { right: 0; }

@media (max-width: 768px) {
  .service-group-header { padding: 2rem 1.5rem; }
}

/* ── Ehrliche Grössen-Empfehlung im Komplettlösung-Block ── */
.service-group-honest-note {
  background: rgba(176,158,128,0.12);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}
.service-group-honest-note strong { color: var(--gold); font-weight: 600; }

/* ── "Was wir nicht selbst machen" Block ── */
.services-not-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  margin-top: 3rem;
  border-top: 3px solid var(--gold);
}
.snb-label {
  font-family: var(--brand-tag);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}
.snb-text {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.snb-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem 1.5rem;
}
.snb-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.45;
}
.snb-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
}

@media (max-width: 600px) {
  .services-not-block { padding: 1.5rem 1.25rem; }
  .snb-list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ENDREINIGUNG PAGE
   ═══════════════════════════════════════ */
.endrein-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 2rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.endrein-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(176,158,128,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.endrein-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.endrein-hero-content { max-width: 760px; }

.endrein-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--brand-tag);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.endrein-hero h1 {
  font-family: var(--brand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: white;
}
.endrein-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.endrein-tagline {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.endrein-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}
.endrein-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.endrein-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.65rem 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(176,158,128,0.25);
}
.endrein-trust li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Section base */
.endrein-section {
  padding: 2.75rem 0 3rem;
  background: var(--cream);
}
.endrein-section-alt { background: var(--paper); }

/* Was wir reinigen — grid */
.endrein-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.endrein-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.endrein-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.endrein-card-icon {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.endrein-card h3 {
  font-family: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.endrein-card ul {
  list-style: none;
}
.endrein-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-bottom: 0.3rem;
}
.endrein-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Steps */
.endrein-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.endrein-step {
  background: white;
  padding: 1.75rem;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.endrein-step-num {
  font-family: var(--brand);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.endrein-step h3 {
  font-family: var(--brand);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.endrein-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Form */
.endrein-form-section {
  padding: 2.75rem 0 3rem;
  background: var(--navy);
  color: white;
}
.endrein-form-section .section-num { color: var(--gold); }
.endrein-form-section .section-title { color: white; }
.endrein-form-section .section-title em { color: var(--gold); }
.endrein-form-section .section-lead { color: rgba(255,255,255,0.75); }

.endrein-form {
  max-width: 720px;
  margin: 1.5rem auto 0;
  background: white;
  color: var(--ink);
  padding: 2.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.endrein-form .form-row { display: contents; }
.endrein-form .form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.endrein-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.endrein-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.endrein-form .req { color: #C0392B; }
.endrein-form input[type="text"],
.endrein-form input[type="email"],
.endrein-form input[type="tel"],
.endrein-form input[type="date"],
.endrein-form select,
.endrein-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}
.endrein-form input:focus,
.endrein-form select:focus,
.endrein-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.endrein-form textarea { resize: vertical; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  transition: all 0.15s;
}
.checkbox-item:hover { border-color: var(--gold); }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item input:checked + span { font-weight: 600; }

.endrein-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.endrein-form .consent-row a { color: var(--navy); }

.endrein-submit {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .endrein-form { padding: 1.75rem 1.25rem; }
  .endrein-form .form-2col { grid-template-columns: 1fr; }
  .endrein-hero { padding: 3rem 0 4rem; }
}

/* Service card link "Mehr erfahren →" */
.service-card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-soft);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s;
}
.service-card-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── Endreinigung form section when at top of page ── */
.endrein-form-section-top {
  padding: 3.5rem 0 4rem;
}
.endrein-form-section-top .endrein-form {
  margin-top: 1.5rem;
}
.section-header-compact {
  margin-bottom: 0.75rem;
}
.section-header-compact .section-lead {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OVERHAUL
   Target: 375px–768px (phones and small tablets)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Root spacing ── */
  :root {
    --pad-x: 1.1rem;
    --section-pad: 3rem;
  }

  /* ── Utility bar: hide hours on mobile, keep contacts ── */
  .utility-hours { display: none; }
  .utility-bar { justify-content: center; }
  .utility-quick {
    gap: 0.6rem;
    font-size: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .utility-notfall { font-size: 0.8rem; }

  /* ── Nav: tighter ── */
  .nav-inner { padding: 0.85rem var(--pad-x); }
  .logo-img { width: 200px; }

  /* ── Hero: more compact ── */
  .hero { padding: 2.5rem 0 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 var(--pad-x);
  }
  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-tagline { font-size: 0.95rem; }
  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* Hero stats: 2-column on mobile */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .hero-stat { padding: 1rem 0.75rem; }
  .hero-stat-value { font-size: 1.75rem; }
  .hero-stat-label { font-size: 0.65rem; }

  /* ── Section inner padding ── */
  .section-inner { padding: 0 var(--pad-x); }
  .section-header { margin-bottom: 2rem; }
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.25rem);
  }
  .section-lead { font-size: 0.98rem; }

  /* ── Über uns ── */
  .about { padding: var(--section-pad) 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .facts { padding: 1.5rem 1.25rem; }
  .fact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.75rem 0;
  }
  .fact-label { font-size: 0.68rem; }
  .fact-value { font-size: 0.88rem; text-align: left; }

  /* ── Leistungen cards ── */
  .services { padding: var(--section-pad) 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-num { font-size: 0.65rem; }
  .service-title { font-size: 1.05rem; }
  .service-desc { font-size: 0.9rem; }
  .service-group-header { padding: 1.75rem 1.25rem; }
  .service-group-title { font-size: 1.3rem; }
  .service-group-desc { font-size: 0.92rem; }
  .service-group-tags { gap: 0.4rem; }
  .service-group-tags span { font-size: 0.72rem; padding: 0.25rem 0.65rem; }
  .scope-main { padding: 1.5rem 1.25rem; }
  .scope-main-title { font-size: 0.9rem; }
  .scope-main-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* ── Ablauf / Process ── */
  .process { padding: var(--section-pad) 0; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-step { padding: 1.5rem; }
  .process-num { font-size: 2rem; }

  /* ── Warum wir ── */
  .why { padding: var(--section-pad) 0; }
  .why-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .why-item { padding: 1.25rem 1.5rem; }
  .why-title { font-size: 0.95rem; }
  .why-desc { font-size: 0.88rem; }

  /* ── Region tiles ── */
  .region { padding: var(--section-pad) 0; }
  .region-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .region-tile { padding: 1.25rem 0.75rem; min-width: unset; }
  .region-tile-kt { font-size: 1.5rem; }
  .region-tile-name { font-size: 0.7rem; }

  /* ── FAQ ── */
  .faq { padding: var(--section-pad) 0; }
  .faq-item summary {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
  }
  .faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; }

  /* ── Für Mieter / Service ── */
  .mieter-grid { grid-template-columns: 1fr; }
  .mieter-card { padding: 1.5rem; }
  .mieter-ctas { gap: 0.5rem; }

  /* ── Testimonials / Google Reviews ── */
  .reviews-cta-box {
    flex-direction: column;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
    text-align: center;
  }

  /* ── Contact section ── */
  .contact { padding: var(--section-pad) 0; }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .contact-form {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-row-full { grid-column: span 1; }
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn { min-width: unset; width: 100%; justify-content: center; }
  .contact-eyebrow { font-size: 0.65rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-bar {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  /* ── Floating buttons: smaller on mobile ── */
  .notfall-float {
    left: 0.85rem;
    bottom: 1rem;
    padding: 0.7rem 1rem 0.7rem 0.85rem;
  }
  .notfall-float-text { font-size: 0.7rem; }
  .notfall-float-icon { font-size: 1.1rem; }
  .whatsapp-float {
    right: 0.85rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }

  /* ── Section CTAs ── */
  .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .section-cta .btn { width: 100%; justify-content: center; }
  .btn-text-link { text-align: center; }

  /* ── Scope divider ── */
  .scope-divider { padding: 2rem 0 1.5rem; }
  .scope-divider-label { font-size: 1.3rem; padding: 0 1rem; }
}

/* ── Very small phones (375px and below) ── */
@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.85rem; }
  .logo-img { width: 170px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .region-tiles { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 1.25rem; }
  .utility-quick { font-size: 0.72rem; gap: 0.4rem; }
  .utility-sep { display: none; }
}

/* ── Notfall page mobile ── */
@media (max-width: 768px) {
  .nf-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .cta-block { grid-template-columns: 1fr; }
  .urgency-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .form-2col { grid-template-columns: 1fr !important; }
  .emergency-grid { gap: 0.5rem; }
  .en-number { font-size: 2.2rem; }
  .reaction-block { padding: 0.9rem 1rem; }
  .rt-time { font-size: 1.1rem; }
  .modal-emg-grid { gap: 0.4rem; }
  .emb-num { font-size: 1.75rem; }
  .modal-footer { grid-template-columns: 1fr; }
}

/* ── Endreinigung page mobile ── */
@media (max-width: 768px) {
  .endrein-hero { padding: 2rem 0 2.5rem; }
  .endrein-hero-inner { padding: 0 var(--pad-x); }
  .endrein-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .endrein-lead { font-size: 0.95rem; }
  .endrein-cta-row { flex-direction: column; }
  .endrein-cta-row .btn { width: 100%; justify-content: center; }
  .endrein-trust { grid-template-columns: 1fr; gap: 0.5rem; }
  .endrein-grid { grid-template-columns: 1fr; }
  .endrein-steps { grid-template-columns: 1fr; }
  .endrein-form { padding: 1.5rem 1.1rem; }
  .endrein-form .form-2col { grid-template-columns: 1fr !important; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   DROPDOWN NAV
   ═══════════════════════════════════════════════ */
.has-dropdown { position: relative; }

.caret {
  font-size: 0.55rem;
  margin-left: 0.2rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -1rem;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 260px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  padding: 0.5rem 0;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: var(--paper);
  color: var(--navy);
}
.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 0.4rem 0;
}

/* ── Mobile dropdown behaviour ── */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    background: var(--paper);
    margin: 0;
    padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a {
    padding: 0.75rem 1.75rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--line);
  }
  .dropdown-toggle { justify-content: space-between; }
  .caret { margin-left: auto; }
}

/* ═══════════════════════════════════════════════
   SERVICE PAGE SHARED STYLES
   ═══════════════════════════════════════════════ */
.sp-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,158,128,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.sp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.sp-hero-eyebrow {
  font-family: var(--brand-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sp-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.sp-hero h1 {
  font-family: var(--brand);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: white;
}
.sp-hero h1 em { font-style: italic; color: var(--gold); }
.sp-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.sp-hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.sp-hero-badge {
  flex-shrink: 0;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(176,158,128,0.25);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  min-width: 160px;
}
.sp-hero-badge-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.sp-hero-badge-label {
  font-family: var(--brand-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}

/* Content sections */
.sp-section { padding: 2.5rem 0 3rem; }
.sp-section-alt { background: var(--paper); }
.sp-section-dark { background: var(--navy); color: white; }
.sp-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad-x); }

.sp-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sp-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sp-section-label {
  font-family: var(--brand-tag);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.sp-section-dark .sp-section-label { color: var(--gold); }

.sp-h2 {
  font-family: var(--brand);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.sp-section-dark .sp-h2 { color: white; }
.sp-h2 em { font-style: italic; color: var(--gold); }

.sp-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.sp-section-dark .sp-lead { color: rgba(255,255,255,0.78); }

/* Task checklist */
.sp-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sp-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.sp-section-dark .sp-checklist li { color: rgba(255,255,255,0.82); }
.sp-section-dark .sp-checklist li::before { background: rgba(255,255,255,0.12); color: var(--gold); }

/* Feature cards */
.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.sp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sp-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sp-section-dark .sp-card { background: rgba(255,255,255,0.05); border-color: rgba(176,158,128,0.2); }
.sp-card-icon { font-size: 1.75rem; margin-bottom: 0.85rem; }
.sp-card h3 {
  font-family: var(--brand);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sp-section-dark .sp-card h3 { color: var(--gold); }
.sp-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }
.sp-section-dark .sp-card p { color: rgba(255,255,255,0.72); }

/* CTA band */
.sp-cta-band {
  background: var(--gold);
  padding: 2rem var(--pad-x);
  text-align: center;
}
.sp-cta-band h2 {
  font-family: var(--brand);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.sp-cta-band p { color: var(--navy); font-size: 1rem; margin-bottom: 1.5rem; opacity: 0.85; }
.sp-cta-band .btn-dark { background: var(--navy); color: white; }

/* Breadcrumb */
.sp-breadcrumb {
  padding: 0.9rem var(--pad-x);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--grey);
  max-width: 100%;
}
.sp-breadcrumb a { color: var(--navy); text-decoration: none; }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-breadcrumb span { margin: 0 0.4rem; }

/* Mobile service pages */
@media (max-width: 768px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .sp-hero-badge { display: none; }
  .sp-2col { grid-template-columns: 1fr; gap: 2rem; }
  .sp-3col { grid-template-columns: 1fr; }
  .sp-hero { padding: 2rem 0 2.25rem; }
  .sp-section { padding: 2rem 0 2.25rem; }
}

/* ═══════════════════════════════════════
   ÜBER UNS — fact box
   ═══════════════════════════════════════ */
.about-fact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.afb-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.afb-row:last-child { border-bottom: none; }
.afb-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  padding-top: 0.1rem;
}
.afb-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── Shared service page mini-form ── */
.sp-mini-form {
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sp-mini-form input,
.sp-mini-form select,
.sp-mini-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
}
.sp-mini-form input:focus,
.sp-mini-form select:focus,
.sp-mini-form textarea:focus { outline: none; border-color: var(--navy); }
.sp-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sp-consent a { color: var(--navy); }
.sp-form-status {
  padding: 0.75rem; border-radius: 4px;
  font-size: 0.88rem; text-align: center; display: none;
}
.sp-form-status.sending { display:block; background:var(--paper); color:var(--grey); }
.sp-form-status.success { display:block; background:#eafaf1; color:#1e8449; border:1px solid #a9dfbf; }
.sp-form-status.error   { display:block; background:#fdf2f2; color:#c0392b; border:1px solid #f5b7b1; }

/* SP form JS handler — called by SHARED_JS */
@media (max-width:600px) {
  .sp-form-row { grid-template-columns: 1fr; }
  .afb-row { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ── Ensure dropdown divider never shows as bullet ── */
.dropdown-menu .dropdown-divider {
  list-style: none !important;
  height: 1px;
  background: var(--line);
  margin: 0.35rem 0;
  padding: 0;
}
.dropdown-menu li { list-style: none; }


/* =========================================================
   Z-Facility no-photo version
   Replaces all service photos with clean professional blocks.
   Logos and favicon remain unchanged.
   ========================================================= */
.zf-no-photo {
  width: 100%;
  min-height: 180px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(44,122,77,.16), transparent 30%),
    linear-gradient(135deg, #f7f9fb 0%, #eef3f6 55%, #e7edf0 100%);
  border: 1px solid rgba(30,70,99,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .7rem;
  color: #1e4663;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
  text-align: center;
  padding: 1.4rem;
  overflow: hidden;
}
.zf-no-photo-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(44,122,77,.18);
  font-size: 1.85rem;
  box-shadow: 0 10px 25px rgba(18,48,64,.08);
}
.zf-no-photo-text {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #213f52;
  max-width: 90%;
}
.ct-hero-photo-placeholder { min-height: 420px; }
.ct-about-photo-main-placeholder, .ct-quality-photo-main-placeholder { min-height: 300px; }
.ct-about-photo-sm-placeholder, .ct-quality-photo-sm-placeholder { min-height: 145px; }
.ct-page-photo-img-placeholder { min-height: 360px; }
.ct-sc-photo .zf-no-photo { min-height: 160px; border-radius: 18px 18px 0 0; }
.ct-sc-photo .zf-no-photo-text { font-size: .88rem; }
@media (max-width: 760px) {
  .ct-hero-photo-placeholder, .ct-page-photo-img-placeholder { min-height: 260px; }
  .ct-about-photo-main-placeholder, .ct-quality-photo-main-placeholder { min-height: 220px; }
}


/* Unsplash stock photo integration */
.ct-hero-photo, .ct-about-photo-main, .ct-about-photo-sm, .ct-quality-photo-main, .ct-quality-photo-sm, .ct-page-photo-img, .ct-sc-photo img {
  background: var(--paper);
  object-position: center;
}
.ct-sc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-hero-visual, .ct-about-photos, .ct-quality-photos, .ct-page-photo .ct-container { overflow: hidden; }


/* =========================================================
   Final Swiss no-face photo optimization
   - Swiss / European buildings and details
   - no visible faces, no staged team photos
   - consistent premium cropping and soft contrast
   ========================================================= */
.zf-img-swiss {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(.98);
}
.ct-hero-visual,
.ct-about-photos,
.ct-quality-photos,
.ct-page-photo,
.ct-sc-photo {
  background: #f5f7f8;
}
.ct-hero-photo,
.ct-page-photo-img {
  min-height: 360px;
  border-radius: 26px;
}
.ct-about-photo-main,
.ct-quality-photo-main {
  min-height: 300px;
}
.ct-about-photo-sm,
.ct-quality-photo-sm {
  min-height: 145px;
}
.ct-sc-photo {
  position: relative;
  overflow: hidden;
}
.ct-sc-photo::after,
.ct-hero-visual::after,
.ct-page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,31,48,0) 55%, rgba(12,31,48,.14));
}
.ct-sc-photo img {
  transition: transform .35s ease, filter .35s ease;
}
.ct-service-card:hover .ct-sc-photo img {
  transform: scale(1.035);
  filter: saturate(.98) contrast(1.02);
}
@media (max-width: 760px) {
  .ct-hero-photo,
  .ct-page-photo-img { min-height: 260px; }
}
