:root {
  --bronze: #a96f48;
  --bronze-dark: #6f432d;
  --bronze-deep: #4d2f22;
  --bronze-light: #d7b08e;
  --cream: #f7f1ea;
  --cream-dark: #eee2d7;
  --white: #ffffff;
  --text: #332b27;
  --muted: #766b64;
  --shadow: 0 15px 40px rgba(80, 48, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(169,111,72,0.18);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.site-logo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--bronze);
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 25px;
  border: 2px solid var(--bronze);
  border-radius: 8px;
  background: var(--bronze);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 8px 20px rgba(111,67,45,.14);
}

.btn:hover {
  background: var(--bronze-dark);
  border-color: var(--bronze-dark);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--bronze-dark);
  box-shadow: none;
}

.btn-outline:hover {
  color: white;
}

.btn-light {
  background: white;
  border-color: white;
  color: var(--bronze-dark);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--bronze-dark);
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(215,176,142,.30), transparent 28%),
    linear-gradient(135deg, #fbf7f2 0%, #f1e4d9 100%);
}

.hero::before {
  content: "✦";
  position: absolute;
  top: 50px;
  left: 5%;
  font-size: 34px;
  color: rgba(169,111,72,.32);
}

.hero::after {
  content: "✧";
  position: absolute;
  right: 6%;
  bottom: 50px;
  font-size: 45px;
  color: rgba(169,111,72,.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.03;
  color: var(--bronze-dark);
}

.hero h1 span {
  display: block;
  color: var(--bronze);
  font-style: italic;
}

.hero-text {
  max-width: 610px;
  margin: 0 0 30px;
  font-size: 20px;
  color: #594d46;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 14px;
  font-weight: bold;
  color: var(--bronze-dark);
}

.hero-image-wrap {
  position: relative;
}

/* DAS NEUE REINIGUNGSBILD */

.hero-image {
  display: block;
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(169,111,72,.20);
  box-shadow: var(--shadow);
}


/* SECTIONS */

.section {
  padding: 95px 0;
  background: white;
}

.section-soft {
  background: var(--cream);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-head h2,
.why-content h2,
.contact-grid h2,
.cta-box h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  color: var(--bronze-dark);
}

.section-head p,
.why-content > p,
.contact-grid > div > p {
  color: var(--muted);
  font-size: 17px;
}


/* SERVICE CARDS */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 32px 26px;
  background: var(--cream);
  border: 1px solid rgba(169,111,72,.15);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(80,48,31,.07);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: white;
  color: var(--bronze);
  font-size: 27px;
  box-shadow: 0 6px 20px rgba(80,48,31,.09);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 23px;
  color: var(--bronze-dark);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}


/* WARUM WIR */

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin-top: 32px;
}

.check-list div {
  padding: 13px 16px;
  background: white;
  border-radius: 9px;
  color: var(--bronze-dark);
  font-weight: 600;
  box-shadow: 0 5px 16px rgba(80,48,31,.06);
}

.quote-box {
  position: relative;
  padding: 55px 45px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--bronze), var(--bronze-dark));
  color: white;
  box-shadow: var(--shadow);
}

.sparkles {
  margin-bottom: 15px;
  font-size: 26px;
  letter-spacing: 10px;
  color: #f2d9c4;
}

.quote {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: 36px;
  font-style: italic;
}

.quote-box > p:last-child {
  margin: 0;
  color: #f6e9df;
}


/* ABLAUF */

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

.step {
  position: relative;
  text-align: center;
  padding: 20px 30px;
}

.step-number {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--bronze);
  color: white;
  font-family: Georgia, serif;
  font-size: 28px;
  box-shadow: 0 8px 22px rgba(111,67,45,.18);
}

.step h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--bronze-dark);
}

.step p {
  color: var(--muted);
}


/* CTA */

.cta-section {
  padding: 40px 0;
  background: white;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 60px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.13), transparent 25%),
    linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: white;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 700px;
  color: white;
}

.cta-box p {
  max-width: 700px;
  margin-bottom: 0;
  color: #f7e9de;
}

.eyebrow.light {
  color: #f2d4bc;
}


/* KONTAKT */

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-data {
  margin-top: 30px;
  padding: 25px;
  border-left: 4px solid var(--bronze);
  background: var(--cream);
}

.contact-data p {
  margin: 7px 0;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 35px;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-form label {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: var(--bronze-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d9c9bc;
  border-radius: 7px;
  background: white;
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169,111,72,.10);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 12px;
}


/* FOOTER */

.site-footer {
  padding-top: 65px;
  background: var(--bronze-deep);
  color: #f3e7dd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-grid h3 {
  margin: 0 0 5px;
  font-family: Georgia, serif;
  font-size: 25px;
  color: white;
}

.footer-slogan {
  margin: 0;
  color: var(--bronze-light);
  font-style: italic;
}

.footer-grid strong {
  display: block;
  margin-bottom: 15px;
  color: white;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: #ddcabe;
  font-size: 14px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #cbb6a8;
  font-size: 13px;
}


/* TABLET */

@media (max-width: 950px) {

  .main-nav {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-image {
    height: 420px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* HANDY */

@media (max-width: 650px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-logo {
    width: 190px;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image {
    height: 320px;
    border-radius: 20px;
  }

  .section {
    padding: 65px 0;
  }

  .service-grid,
  .steps-grid,
  .check-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .contact-grid {
    gap: 40px;
  }

  .quote-box {
    padding: 40px 25px;
  }

  .quote {
    font-size: 30px;
  }

  .cta-section {
    padding: 20px 0;
  }

  .cta-box {
    padding: 38px 25px;
  }

  .contact-form {
    padding: 25px 18px;
  }
}


/* =========================================================
   WARMES KATHIS-UPDATE – orientiert an der ursprünglichen Vorlage
   ========================================================= */

body {
  background: #fbf6f0;
}

.site-header {
  background: rgba(255, 251, 247, .97);
}

.hero {
  padding: 74px 0 70px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.9), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(215,176,142,.30), transparent 32%),
    linear-gradient(135deg, #fffaf5 0%, #f4e4d7 58%, #eed7c4 100%);
}

.hero h1 {
  color: #6f3525;
}

.hero h1 span {
  color: #9f472d;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-style: normal;
  font-size: .82em;
  line-height: 1.15;
  margin-top: 5px;
}

.hero-points {
  gap: 18px 28px;
}

.hero-points span {
  padding: 8px 0;
  color: #6f432d;
}

.services-warm {
  background: #fffdfb;
}

.services-warm .section-head h2 {
  color: #7f2f20;
}

.service-card-photo {
  padding: 0;
  overflow: hidden;
  background: #fbf3eb;
  min-height: 0;
  border-radius: 17px;
}

.service-card-photo:hover {
  transform: translateY(-6px);
}

.service-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fbf3eb;
}

.service-card-body {
  position: relative;
  padding: 26px 24px 26px;
}

.service-card-body .service-icon {
  position: absolute;
  top: -29px;
  left: 24px;
  margin: 0;
  background: #fff;
  border: 4px solid #fff;
  color: #a85d38;
  width: 58px;
  height: 58px;
}

.service-card-body h3 {
  font-size: 22px;
  color: #74391f;
}

.service-card-body p {
  min-height: 74px;
  color: #7a5a49;
}

.service-more {
  display: inline-block;
  margin-top: 18px;
  color: #8c3c26;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-more:hover {
  color: #5f281a;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 42px;
}

.service-detail {
  scroll-margin-top: 110px;
  padding: 30px;
  border: 1px solid rgba(169,111,72,.16);
  border-radius: 18px;
  background: linear-gradient(145deg, #fffaf6, #f7eadf);
  box-shadow: 0 10px 28px rgba(80,48,31,.07);
}

.service-detail:target {
  outline: 3px solid rgba(169,111,72,.22);
  box-shadow: 0 18px 42px rgba(80,48,31,.14);
}

.detail-label {
  color: #a96f48;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  font-weight: 800;
}

.service-detail h3 {
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  color: #6f432d;
  font-size: 25px;
}

.service-detail p {
  color: #766b64;
}

.service-detail a {
  color: #8c3c26;
  font-weight: 700;
}

.why-warm {
  padding-top: 75px;
  padding-bottom: 75px;
  background:
    radial-gradient(circle at 85% 20%, rgba(215,176,142,.20), transparent 30%),
    #fbf3eb;
}

.why-warm .why-grid {
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.why-image-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ead6c6;
  align-self: center;
}

.why-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.why-handwritten {
  position: absolute;
  top: 28px;
  right: 24px;
  max-width: 210px;
  color: #9b3e2b;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 30px;
  line-height: 1.25;
  text-align: right;
  text-shadow: 0 2px 8px rgba(255,255,255,.75);
}

.why-warm .why-content h2 {
  color: #8a2f21;
}

.why-warm .why-content > p {
  color: #5f5048;
}

.why-btn {
  margin-top: 28px;
}

.cta-box {
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.10), transparent 25%),
    radial-gradient(circle at 92% 20%, rgba(255,220,191,.14), transparent 28%),
    linear-gradient(135deg, #934b2d, #5c2f21);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 20%, rgba(215,176,142,.12), transparent 25%),
    #4c2c20;
}

@media (max-width: 950px) {
  .why-warm .why-grid,
  .service-details {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 650px) {
  .service-photo {
    height: auto;
  }

  .service-card-body p {
    min-height: 0;
  }

  .why-handwritten {
    font-size: 24px;
    max-width: 165px;
  }

  .service-detail {
    padding: 24px 20px;
  }
}


/* Korrektur: Symbole und Handschrift sind bereits Bestandteil der Vorlagenbilder. */
.service-card-body .service-icon,
.why-handwritten {
  display: none !important;
}

/* KONTAKTFORMULAR – VERSAND, STATUS & DATENSCHUTZ */
.form-status {
  display: none;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: #edf7ee;
  border: 1px solid #9ac59f;
  color: #2f6538;
}

.form-status.error {
  display: block;
  background: #fff1ef;
  border: 1px solid #d8a39b;
  color: #8a3428;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px !important;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--bronze);
}

.privacy-check a {
  color: var(--bronze-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
