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

/* ===== VARIABLES ===== */
:root {
  --navy:       #0F1E3D;
  --blue:       #1A3F7A;
  --blue-mid:   #2155A3;
  --blue-light: #4A80D4;
  --sky:        #EEF5FF;
  --white:      #FFFFFF;
  --cream:      #F5F8FF;
  --gold:       #B8832E;
  --gold-light: #D4A03A;
  --text:       #0A1628;
  --text-mid:   #364256;
  --text-light: #607080;
  --border:     #DDE8F5;

  --s-sm: 0 2px 10px rgba(11,30,61,.07);
  --s-md: 0 8px 28px rgba(11,30,61,.12);
  --s-lg: 0 20px 60px rgba(11,30,61,.18);
  --s-xl: 0 40px 100px rgba(11,30,61,.24);

  --radius:    8px;
  --radius-lg: 18px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         all 0.35s var(--ease);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Figtree', system-ui, -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blue-mid); color: white; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--sky); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ===== TOP INFO BAR ===== */
.top-bar {
  display: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}

.top-bar-item svg { flex-shrink: 0; }

.top-bar-item a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.2s;
}

.top-bar-item a:hover { color: white; }

.top-bar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: var(--navy);
  transition: var(--t);
}

.navbar.scrolled {
  background: rgba(15, 30, 61, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; }

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-logo-tagline {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.nav-links { display: flex; list-style: none; gap: 1.75rem; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 5px;
  transition: var(--t);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: white; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius) !important;
  white-space: nowrap !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,131,46,.4) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: var(--t); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(10,18,40,0.92) 0%, rgba(26,63,122,0.72) 55%, rgba(10,18,40,0.88) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
}

.hero-grid-pattern {
  display: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,85,163,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.4rem 1.1rem 0.4rem 0.7rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-pill span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  color: white;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 0.6s 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,131,46,.42); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,30,61,.4);
}

.btn-white {
  background: white;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,.3);
}

.btn-arrow { width: 20px; height: 20px; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 { color: var(--navy); margin-bottom: 1rem; }

.section-header p {
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 1px solid var(--border);
  transition: var(--t);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--s-xl);
  border-color: var(--blue-light);
}

.service-card-img {
  height: 215px;
  overflow: hidden;
  position: relative;
  /* Gradient fallback while image loads */
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.55) 0%, transparent 60%);
}

.service-card-body { padding: 1.75rem; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--t);
}

.service-card:hover .service-icon { background: var(--blue-mid); }
.service-card:hover .service-icon svg { stroke: white; }

.service-card h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 0.7rem; }

.service-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--t);
  letter-spacing: 0.04em;
}

.service-card:hover .service-link { color: var(--gold); gap: 0.8rem; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3F7A 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== PROCESS ===== */
.process-section { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--s-sm);
  transition: var(--t);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.process-step:hover { transform: translateY(-6px); box-shadow: var(--s-md); }
.process-step:hover::after { transform: scaleX(1); }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.7rem; }
.process-step p { color: var(--text-light); font-size: 0.875rem; line-height: 1.72; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 4px solid var(--gold);
  transition: var(--t);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
  background: white;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold-light); font-size: 1rem; }

.testimonial-text {
  font-size: 0.94rem;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-city { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-banner h2 { color: white; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: #080F20;
  color: white;
  padding: 5.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.82;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover { color: white; padding-left: 5px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  align-items: flex-start;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(to bottom, var(--navy) 0%, var(--blue) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-inner { position: relative; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; margin-top: 1rem; line-height: 1.75; }

/* ===== LEISTUNGEN - FULL SERVICE LAYOUT ===== */
.service-section { padding: 6rem 0; }
.service-section:nth-child(even) { background: var(--cream); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-section:nth-child(odd) .service-layout { direction: rtl; }
.service-section:nth-child(odd) .service-text { direction: ltr; }

.service-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--s-xl);
  aspect-ratio: 4/3;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-img-wrap:hover img { transform: scale(1.05); }

.service-text .label { text-align: left; }
.service-text h2 { color: var(--navy); margin-bottom: 1.25rem; }

.service-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.service-features li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231A3F7A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/11px no-repeat;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
}

.gallery-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--s-lg); }

.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--navy);
}

.comparison-before,
.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-before {
  background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
}

.comparison-after {
  clip-path: inset(0 50% 0 0);
  background: linear-gradient(135deg, #E8EEF8 0%, #C8D8F0 100%);
}

.comparison-before img,
.comparison-after img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.comparison-before img { filter: grayscale(0.55) sepia(0.3) contrast(0.85) brightness(0.78); }
.comparison-after img { filter: brightness(1.05) saturate(1.15); }

.comparison-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  pointer-events: none;
}

.comparison-badge {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.comparison-badge.before { left: 1rem; }
.comparison-badge.after { right: 1rem; opacity: 0; transition: opacity 0.3s; }
.comparison-after:not([style*="50%"]) ~ .comparison-badge.after { opacity: 1; }

.gallery-caption {
  padding: 1.25rem 1.5rem;
  background: white;
}

.gallery-caption h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.2rem; }
.gallery-caption p { font-size: 0.82rem; color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.about-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--s-xl);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  background: var(--gold);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--s-md);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
  margin-top: 3px;
}

.about-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1.25rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.team-card { text-align: center; transition: var(--t); }
.team-card:hover { transform: translateY(-6px); }

.team-photo {
  width: 175px; height: 175px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  box-shadow: var(--s-md);
  border: 5px solid var(--sky);
  transition: border-color 0.3s;
}

.team-card:hover .team-photo { border-color: var(--gold); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.team-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.72; max-width: 260px; margin: 0 auto; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.value-card {
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--s-sm);
  border-top: 4px solid var(--blue-mid);
  transition: var(--t);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--s-md); border-top-color: var(--gold); }

.value-icon {
  width: 56px; height: 56px;
  background: var(--sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--t);
}

.value-card:hover .value-icon { background: var(--blue-mid); }
.value-card:hover .value-icon svg { stroke: white; }

.value-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.82; margin-bottom: 2.5rem; font-size: 0.97rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  transition: var(--t);
}

.contact-detail:hover { background: var(--sky); }

.contact-detail-icon {
  width: 46px; height: 46px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.contact-detail:hover .contact-detail-icon { background: var(--blue-mid); }
.contact-detail:hover .contact-detail-icon svg { stroke: white; }

.contact-detail-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  display: block;
}

.contact-detail-val { font-size: 0.92rem; color: var(--navy); font-weight: 500; }
.contact-detail-val a { color: var(--blue-mid); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--gold); }

.opening-hours {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.opening-hours h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--navy); font-weight: 600; }

/* Contact Form */
.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--s-lg);
  border: 1px solid var(--border);
}

.contact-form-box h3 { font-size: 1.9rem; color: var(--navy); margin-bottom: 0.4rem; }
.contact-form-box > p { color: var(--text-light); font-size: 0.875rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.35rem; }

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--t);
  outline: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--blue-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(33,85,163,0.1);
}

textarea { min-height: 140px; resize: vertical; }

.form-submit { width: 100%; padding: 1rem; font-size: 0.95rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}

.success-icon {
  width: 72px; height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-mid); line-height: 1.75; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(var(--y, 30px)); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-story-layout { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-section:nth-child(odd) .service-layout { direction: ltr; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr !important; }
  .hero-cards { display: none !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 2rem; }
  section { padding: 4rem 0; }
}

@media (max-width: 520px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .top-bar-right { justify-content: center; width: 100%; }
}

/* ===== ITERATION 2: VISUAL REFINEMENTS ===== */

/* Geometric accent – decorative rotated square */
.section-accent {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-right: 0.75rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Process step – stronger visual with colored step number */
.process-step .step-num {
  background: linear-gradient(135deg, var(--sky) 0%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonial hover — border shifts to navy */
.testimonial-card:hover { border-left-color: var(--navy); }

/* Stats section: individual stat number pulse on load */
.stat-number { transition: color 0.3s; }
.stat-item:hover .stat-number { color: white; }

/* Gallery handle icon color */
.comparison-handle svg { color: var(--navy); }

/* Service card min-height */
.service-card { min-height: 420px; }

/* Contact page: form input placeholder color */
input::placeholder,
textarea::placeholder { color: var(--text-light); opacity: 0.7; }

/* About page: image badge lift */
.about-badge { transition: var(--t); }
.about-img-wrap:hover .about-badge { transform: translateY(-4px); box-shadow: var(--s-lg); }

/* Typography refinements */
.cta-banner h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero h1 { font-size: clamp(3rem, 8vw, 6rem); }

/* Stronger CTA banner internal divider line */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Testimonials: add subtle quote mark decoration */
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card { position: relative; overflow: hidden; }

/* Process section: connecting dots between steps */
.process-steps { position: relative; }

/* Section headers: left-align variant */
.section-header.left { text-align: left; margin-left: 0; }

/* ===== ITERATION 1: SECTION DIVIDERS & POLISH ===== */

/* Subtle dividing stripe between sections */
.section-stripe {
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  height: 1px;
  margin: 0;
}

/* Per service card image colour variants on Leistungen page */
.service-img-wrap {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}

/* Ensure gallery sliders always have visible height */
.comparison-slider { min-height: 300px; }

/* Nav active state stronger */
.nav-links a.active { color: white; font-weight: 700; }

/* Process step hover line gets gold variant */
.process-step:nth-child(2)::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.process-step:nth-child(3)::after { background: linear-gradient(90deg, var(--blue-light), var(--blue-mid)); }
.process-step:nth-child(4)::after { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

/* Testimonials section subtle bg */
.testimonials-section { background: var(--cream); }

/* Footer gold glow on brand name hover */
.footer-logo-name:hover { color: var(--gold-light); transition: color 0.3s; }
