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

:root {
  --navy:        #0f1825;  /* Dunkelblau aus Logo-Hintergrund */
  --navy-light:  #1d2d4a;
  --white:       #ffffff;
  --off-white:   #e0e0e0;
  --text:        #2c2c2c;
  --muted:       #6b6b6b;
  --silver:      #c8cdd6;
  --accent:      #c9a85c;  /* Gold aus den Diagonallinien des Logos */
  --accent-dark: #a8843a;  /* Dunkleres Gold für Hover */
  --radius:      2px;
  --font-body:   'Inter', sans-serif;
  --font-display:'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn--outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--text);
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}
.btn--outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.btn--solid-dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn--solid-dark:hover {
  background: var(--navy-light);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--white);
}

.nav__cta {
  font-size: 0.75rem;
  padding: 8px 20px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 14, 22, 0.72) 0%, rgba(10, 14, 22, 0.35) 55%, rgba(10, 14, 22, 0.12) 100%),
    url('img/heroküche.png') center center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 40px;
  margin-left: 8%;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 420px;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 100px 0 80px;
  background: var(--off-white);
}

.services__intro {
  margin-bottom: 60px;
}

.services__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  max-width: 560px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
}

.service-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

/* Platzhalter-Bilder */
.service-card__image--1 {
  background: linear-gradient(145deg, #2c2620 0%, #4a3f34 40%, #6b5a48 70%, #8a7460 100%);
}
.service-card__image--1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(180, 150, 110, 0.3) 0%, transparent 60%);
}

.service-card__image--2 {
  background: linear-gradient(145deg, #e8e4df 0%, #d4cfc9 40%, #c5bfb8 70%, #b8b2aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__image--2::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 90px;
  border-radius: 50px 50px 0 0;
  background: rgba(175, 170, 163, 0.95);
}
.service-card__image--2::before {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(160, 155, 148, 0.95);
  z-index: 1;
}

.service-card__image--3 {
  background: linear-gradient(145deg, #c8a96e 0%, #d4b87e 30%, #b8956a 60%, #a07a50 100%);
}
.service-card__image--3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.04) 8px,
    rgba(0, 0, 0, 0.04) 9px
  );
}

.service-card__body {
  padding: 32px 28px 40px;
}

.service-card__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.service-card__heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.service-card__text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.service-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.service-card__link:hover {
  opacity: 0.5;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--navy);
  padding: 80px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 60px;
  align-items: center;
}

.about__logos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logo-mir {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mir__text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #6a8abf 0%, #c8d4e8 40%, #ffffff 55%, #b0c0d8 80%, #8aabcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-mir__sub {
  font-size: 0.42rem;
  letter-spacing: 0.3em;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-mir--creations .logo-mir__text {
  font-size: 1.7rem;
  background: linear-gradient(135deg, #4a6a9f 0%, #a8b8d0 40%, #d0dcee 55%, #90a8c8 80%, #6a8aaf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-mir--creations .logo-mir__sub {
  font-size: 0.38rem;
}

.about__content {
  max-width: 480px;
}

.about__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  opacity: 0.7;
}

.about__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.about__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 12px;
}

.about__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid rgba(200, 205, 214, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.about__link:hover {
  border-color: var(--silver);
}

.about__photo {
  width: 220px;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d8cfc4 0%, #c8bfb2 50%, #b8afa2 100%);
  position: relative;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #a09080;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(160deg, #2a2520 0%, #1a1510 100%);
  clip-path: ellipse(80% 100% at 50% 100%);
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: url('img/Hausmitmohn.png') center center / cover no-repeat;
}
.cta-banner__bg::before {
  content: none;
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 22, 0.78) 0%, rgba(10, 14, 22, 0.55) 50%, rgba(10, 14, 22, 0.30) 100%);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  max-width: 520px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-banner__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-banner__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact {
  background: var(--off-white);
  padding: 90px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
}

.contact__info-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--navy);
}
.form-field textarea {
  min-height: 120px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer__brand-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 220px;
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer__col ul a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* alter RESPONSIVE-Block entfernt – vollständige Version weiter unten */

/* ============================================================
   FORMULAR-FEEDBACK (Erfolg / Fehler)
============================================================ */
.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 4px;
  animation: feedbackIn 0.3s ease;
}

.form-feedback--success {
  background: #eaf5ee;
  color: #2a7a45;
  border: 1px solid #b4dfc4;
}

.form-feedback--error {
  background: #fdf0f0;
  color: #a03030;
  border: 1px solid #f0c0c0;
}

@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RECAPTCHA NOTICE
============================================================ */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.recaptcha-notice {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: right;
  max-width: 360px;
}

.recaptcha-notice a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.recaptcha-notice a:hover {
  opacity: 0.7;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
/* ============================================================
   GOOGLE BEWERTUNGEN
============================================================ */
.reviews {
  padding: 90px 0 70px;
  background: var(--white);
}

.reviews__intro {
  margin-bottom: 50px;
}

.reviews__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.reviews__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.reviews__avg {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.reviews__stars {
  color: #f4b400;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--silver);
}

.review-card__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.review-card__date {
  font-size: 0.72rem;
  color: var(--muted);
}

.review-card__stars {
  color: #f4b400;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}

.review-card__google svg {
  width: 14px;
  height: 14px;
}

/* Lade-Animation */
.reviews__loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.reviews__loading span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  animation: reviewDot 1.2s ease-in-out infinite;
}
.reviews__loading span:nth-child(2) { animation-delay: 0.2s; }
.reviews__loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes reviewDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1);   opacity: 1; }
}

.reviews__error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 40px 0;
}

.reviews__cta {
  text-align: center;
  margin-top: 10px;
}

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

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-banner__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.cookie-banner__desc a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 10px 20px;
}
.cookie-banner__decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.cookie-banner__accept {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
  font-size: 0.78rem;
  padding: 10px 20px;
  font-weight: 600;
}
.cookie-banner__accept:hover {
  background: var(--silver);
  border-color: var(--silver);
}

@media (max-width: 768px) {
  .cooki
/* ============================================================
   SANFTE ÜBERGÄNGE ZWISCHEN SEKTIONEN
============================================================ */

/* About (navy) → Reviews (weiß) */
.about {
  position: relative;
}
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Reviews (weiß) → CTA Banner */
.reviews {
  position: relative;
}
.reviews::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,14,22,0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

/* CTA Banner → Contact */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--off-white) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Contact → Footer */
.contact {
  position: relative;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, var(--navy) 100%);
  pointer-events: none;
  z-index: 1;
}
                                                                                                                                                                                                                                                                                                                                                                                                   
/* Logo-Bild Stile */
.about__logo-img {
  width: 160px
/* ============================================================
   GOLD-AKZENTE (aus Logo-Farbpalette)
============================================================ */

/* Nav – goldene Unterlinie beim Hover */
.nav__links a {
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav__links a:hover::after {
  width: 100%;
}

/* Nav CTA – goldener Rahmen */
.nav__cta.btn--outline-light {
  border-color: var(--accent);
  color: var(--accent);
}
.nav__cta.btn--outline-light:hover {
  background: var(--accent);
  color: var(--navy);
}

/* Eyebrow-Texte gold */
.hero__eyebrow,
.services__eyebrow,
.reviews__eyebrow,
.cta-banner__eyebrow,
.contact__info-eyebrow,
.about__eyebrow {
  color: var(--accent);
}

/* Hero CTA Button – gold umrandet */
.hero .btn--outline-light {
  border-color: var(--accent);
  color: var(--accent);
}
.hero .btn--outline-light:hover {
  background: var(--accent);
  color: var(--navy);
}

/* Service-Card „Mehr erfahren" Link */
.service-card__link {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* About Link */
.about__link {
  color: var(--accent);
  border-bottom-color: rgba(201, 168, 92, 0.4);
}
.about__link:hover {
  border-bottom-color: var(--accent);
}

/* Scroll-to-Top Button – gold */
.scroll-top {
  background: var(--accent);
  color: var(--navy);
}
.scroll-top:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(201, 168, 92, 0.35);
}

/* Senden-Button – gold */
.btn--solid-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
  font-weight: 600;
}
.btn--solid-dark:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Cookie Banner Akzeptieren-Button */
.cookie-banner__accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}
.cookie-banner__accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Reviews – goldene Sterne */
.reviews__stars,
.review-card__stars {
  color: var(--accent);
}

/* Goldene Trennlinie unter Section-Headings */
.services__title::after,
.reviews__title::after,
.contact__info-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 16px;
}

/* ============================================================
   HAMBURGER & MOBILE NAV
============================================================ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.
/* ============================================================
   PROZESS – SO ARBEITEN WIR
============================================================ */
.process {
  padding: 90px 0 80px;
  background: var(--navy);
  position: relative;
}

.process__intro {
  margin-bottom: 60px;
}

.process__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
}

.process__steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 20px;
}

.process__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.process__step:hover .process__step-num {
  background: var(--accent);
  color: var(--navy);
}

.process__step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.process__step-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 140px;
  margin: 0 auto;
}

.process__connector {
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(201,168,92,0.2));
  margin-bottom: 36px;
}

/* ============================================================
   ABOUT – USP LISTE
============================================================ */
.about__usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}

.about__usp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about__usp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,92,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.about__usp strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.about__usp span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive Prozess */
@media (max-width: 768px) {
  .process { padding: 60px 0; }
  .process__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
  }
  .process__step-body { padding-top: 4px; }
  .process__step-text { max-width: 100%; margin: 0; }
  .process__connector {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent), rgba(201,168,92,0.2));
    margin: 0 0 0 27px;
    flex: none;
  }
}
th: none;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    margin-right: 12px;
  }
  .service-card:last-child { margin-right: 20px; }

  /* About */
  .about { padding: 60px 0; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about__logos {
    flex-direction: row;
    align-items: center;
  }
  .about__logo-img { width: 120px; }
  .about__photo { display: none; }
  .about__heading { font-size: 1.35rem; }

  /* Reviews */
  .reviews { padding: 60px 0 50px; }
  .reviews__grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner { padding: 70px 0; }
  .cta-banner__title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-banner__buttons {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cta-banner__buttons .btn { width: 100%; text-align: center; }

  /* Contact */
  .contact { padding: 60px 0; }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-items: stretch; }
  .form-submit .btn { width: 100%; text-align: center; }
  .recaptcha-notice { text-align: left; max-width: 100%; }

  /* Footer */
  .footer { padding: 50px 0 24px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer__logo-img { height: 60px; }

  /* Cookie Banner */
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-banner__decline,
  .cookie-banner__accept {
    flex: 1;
    text-align: center;
  }

  /* Scroll-to-Top */
  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
