:root {
  --bg: #ebd8b9;
  --bg-soft: #f7f7f7;
  --olive: #6f6527;
  --olive-dark: #5f5721;
  --text: #152d55;
  --muted: #5b79a3;
  --card: #d8c583;
  --button: #beb38d;
  --step-accent: #d6c37f;
  --shadow: 0 10px 24px rgba(67, 53, 24, 0.32);
  --border: rgba(21, 45, 85, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1.6rem;
  overflow-wrap: anywhere;
}

ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--olive);
}

.header-inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff;
  font-size: clamp(1.95rem, 2vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  color: #fff;
  font-size: 0.98rem;
  padding: 6px 10px;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.65);
  outline: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}

.section {
  padding: 32px 0 56px;
}

.section-tight {
  padding-top: 22px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  margin: 0 0 1.1rem;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.3rem, 3.5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  text-align: center;
}

h3 {
  font-size: clamp(1.9rem, 2.1vw, 2.8rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.02fr);
  gap: 44px;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(2.2rem, 2.9vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-top: 16px;
}

.hero-copy p {
  font-size: clamp(1.18rem, 1.48vw, 1.78rem);
  color: var(--muted);
  line-height: 1.58;
  max-width: 49ch;
}

.hero-media img {
  width: 100%;
  min-height: 820px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 40px;
  border: 0;
  border-radius: 999px;
  background: var(--button);
  color: var(--text);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  box-shadow: 0 8px 16px rgba(66, 55, 28, 0.34);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #cdc39f;
  transform: translateY(-1px);
  outline: none;
}

.button-secondary {
  background: var(--olive);
  color: #fff;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #847a34;
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  background: #847a34;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin-top: 28px;
}

.service-card {
  min-height: 318px;
  padding: 32px 26px 28px;
  background-color: var(--card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.09;
  pointer-events: none;
}

.service-card.cleaning::after {
  background-image: url("bilder/ChatGPT-Image-17.-Apr.-2025-22_15_33.png");
}

.service-card.waterproof::after {
  background-image: url("bilder/ChatGPT-Image-17.-Apr.-2025-22_16_34.png");
}

.service-card.repair::after {
  background-image: url("bilder/ChatGPT-Image-17.-Apr.-2025-22_22_11.png");
}

.service-card.transport::after {
  background-image: url("bilder/ChatGPT-Image-17.-Apr.-2025-22_28_05.png");
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 14px;
  width: 100%;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: #111;
  line-height: 1.5;
  max-width: 32ch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.steps {
  width: min(1370px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 20px;
}

.step-card {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  background: var(--step-accent);
  box-shadow: var(--shadow);
  padding: 24px;
}

.step-icon {
  width: 136px;
  height: 136px;
  padding: 8px;
  background: rgba(255, 240, 185, 0.2);
  box-shadow: 10px 10px 14px rgba(67, 53, 24, 0.36);
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  margin-top: 6px;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
}

.step-card p {
  font-size: 1rem;
  color: #111;
}

.table-wrap {
  width: min(740px, 100%);
  margin: 28px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: transparent;
}

th,
td {
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  font-size: 1rem;
  color: #111;
  vertical-align: top;
}

th {
  background: var(--step-accent);
  text-align: left;
  font-weight: 700;
}

tfoot td {
  font-weight: 700;
}

.contact-section {
  padding-bottom: 0;
}

.contact-wrap {
  width: min(1180px, calc(100% - 40px));
}

.contact-lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-options {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.contact-line {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 600;
}

.whatsapp-block {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.whatsapp-qr {
  width: min(210px, 100%);
  height: auto;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-status {
  margin: 0 0 20px;
  padding: 12px 16px;
  border: 1px solid rgba(170, 62, 52, 0.35);
  background: rgba(210, 79, 63, 0.08);
  color: #7f2a22;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.contact-form label span {
  color: #d24f3f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b8b1a0;
  border-radius: 2px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 220px;
}

.contact-form .button {
  justify-self: start;
  margin-top: 16px;
  background: var(--olive);
  color: #fff;
  box-shadow: none;
}

.site-footer {
  margin-top: 24px;
  background: var(--olive);
  padding: 46px 0 40px;
}

.thanks-main {
  min-height: calc(100vh - 218px);
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thanks-wrap {
  text-align: center;
  max-width: 720px;
}

.thanks-wrap p {
  color: var(--muted);
  font-size: 1.2rem;
}

.order-main {
  padding: 28px 0 56px;
}

.order-wrap {
  width: min(1120px, calc(100% - 40px));
}

.order-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.order-intro p {
  color: var(--muted);
  font-size: 1.15rem;
}

.order-sheet {
  background: #fff;
  color: #111;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(35, 35, 35, 0.12);
}

.order-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #c9c9c9;
}

.order-sheet-head h1 {
  margin-bottom: 4px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
}

.order-sheet-head p {
  margin: 0;
  color: #555;
}

.sheet-date {
  width: 220px;
  display: grid;
  gap: 8px;
}

.sheet-date label,
.sheet-field {
  font-size: 0.98rem;
  font-weight: 600;
}

.sheet-date input,
.sheet-field input,
.sheet-field textarea,
.sheet-row input {
  width: 100%;
  border: 1px solid #9f9f9f;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

.sheet-section {
  margin-top: 24px;
}

.sheet-section h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 12px;
}

.sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.sheet-field {
  display: grid;
  gap: 8px;
}

.sheet-span-2 {
  grid-column: 1 / -1;
}

.sheet-table {
  border: 1px solid #c9c9c9;
  border-bottom: 0;
}

.sheet-group {
  border-bottom: 1px solid #c9c9c9;
  background: rgba(111, 101, 39, 0.05);
}

.sheet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 1px solid #c9c9c9;
}

.sheet-group .sheet-row {
  border-bottom: 0;
}

.sheet-group .sheet-row + .sheet-row {
  border-top: 1px dashed rgba(111, 101, 39, 0.35);
}

.sheet-row-head {
  background: #efefef;
  font-weight: 700;
}

.sheet-row-sub {
  padding-left: 34px;
}

.sheet-row-accent {
  background: rgba(216, 197, 131, 0.35);
  font-size: 0.96rem;
}

.sheet-row-accent span::before {
  content: "-> ";
  color: var(--olive);
  font-weight: 700;
}

.sheet-row input {
  text-align: center;
}

.signature-section {
  margin-top: 42px;
}

.signature-line {
  padding-top: 38px;
  border-bottom: 1px solid #444;
  width: min(360px, 100%);
}

.signature-line span {
  display: inline-block;
  margin-top: 8px;
  color: #555;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 4px;
  background: var(--olive);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-page {
  background: #fff;
}

.legal-main {
  background: #fff;
  min-height: calc(100vh - 218px);
  padding: 18px 0 38px;
}

.legal-wrap {
  width: min(1220px, calc(100% - 40px));
}

.legal-wrap h1 {
  text-align: center;
  margin-bottom: 38px;
}

.legal-intro {
  color: var(--muted);
  font-size: 1.2rem;
}

.legal-block {
  border-bottom: 1px solid rgba(21, 45, 85, 0.18);
  padding: 0 0 18px;
  margin-bottom: 16px;
}

.legal-block h2,
.legal-block h3 {
  text-align: left;
  margin-bottom: 16px;
}

.legal-block h2 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
}

.legal-block h3 {
  font-size: 2rem;
}

.legal-block p,
.legal-block li,
.imprint-content p {
  color: var(--muted);
  font-size: 1rem;
}

.legal-stand {
  color: var(--muted);
}

.legal-embed .itrk-legaltext {
  min-height: 600px;
}

.imprint-main {
  display: flex;
  align-items: stretch;
}

.imprint-wrap {
  width: min(1960px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: calc(100vh - 240px);
}

.imprint-content {
  width: min(780px, 100%);
  padding: 40px 0 0 250px;
}

.imprint-content h1 {
  text-align: left;
  margin-bottom: 24px;
}

.imprint-stand {
  align-self: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-right: 220px;
  text-align: right;
}

@media (max-width: 1440px) {
  .brand span {
    font-size: clamp(1.8rem, 1.9vw, 2.7rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero-copy {
    max-width: 900px;
  }

  .hero-media img {
    min-height: 480px;
  }

  .service-grid {
    gap: 22px;
  }

  .imprint-wrap {
    min-height: auto;
    flex-direction: column;
  }

  .imprint-content {
    padding-left: 0;
  }

  .imprint-stand {
    align-self: flex-start;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand {
    flex: 1 1 calc(100% - 88px);
    align-items: flex-start;
    gap: 14px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand span {
    font-size: clamp(1.4rem, 3.3vw, 2rem);
    line-height: 1.08;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    margin-top: 0;
    font-size: clamp(1.95rem, 5.2vw, 2.8rem);
  }

  .hero-copy p {
    max-width: none;
    font-size: clamp(1.05rem, 2.35vw, 1.25rem);
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .step-icon {
    width: 112px;
    height: 112px;
  }

  .step-card h3 {
    font-size: clamp(1.8rem, 4.4vw, 2.4rem);
  }

  .contact-lead {
    font-size: clamp(1.7rem, 5vw, 2.45rem);
    margin-bottom: 24px;
  }

  .contact-line {
    font-size: clamp(1.45rem, 4.7vw, 2rem);
  }

  .whatsapp-qr {
    width: min(180px, 60vw);
  }

  .imprint-content {
    padding-top: 24px;
  }

  .order-sheet {
    padding: 24px;
  }

  .order-sheet-head {
    flex-direction: column;
  }

  .sheet-date {
    width: 100%;
  }

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

  .sheet-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .wrap,
  .contact-wrap,
  .legal-wrap,
  .imprint-wrap {
    width: min(100%, calc(100% - 24px));
  }

  .section {
    padding: 20px 0 34px;
  }

  .site-header {
    position: static;
  }

  .brand {
    flex-basis: 100%;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 1.32rem;
  }

  .nav-toggle {
    margin-top: -4px;
  }

  h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-media img {
    min-height: 320px;
  }

  .hero-copy p {
    line-height: 1.5;
  }

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

  .service-card {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .service-card h3 {
    font-size: 1.7rem;
  }

  .service-card p {
    max-width: none;
    text-align: left;
  }

  .cta-row {
    margin-top: 24px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    min-height: 56px;
  }

  .contact-form .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  th,
  td {
    padding: 10px 12px;
  }

  .table-wrap {
    margin-top: 18px;
    padding-bottom: 4px;
    overflow-x: visible;
  }

  table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  th:first-child,
  td:first-child {
    width: 68%;
  }

  th:last-child,
  td:last-child {
    width: 32%;
    text-align: center;
  }

  td,
  th {
    font-size: 0.95rem;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .step-card {
    padding: 18px 16px;
  }

  .step-icon {
    width: 96px;
    height: 96px;
  }

  .contact-form textarea {
    min-height: 180px;
  }

  .footer-inner {
    gap: 12px 20px;
  }

  .legal-main {
    min-height: auto;
    padding-top: 20px;
  }

  .legal-wrap h1,
  .imprint-content h1 {
    text-align: left;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .legal-block h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .imprint-stand {
    text-align: left;
  }

  .order-wrap {
    width: min(100%, calc(100% - 24px));
  }

  .order-intro {
    margin-bottom: 18px;
  }

  .order-intro h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .order-intro p {
    font-size: 1rem;
  }

  .order-sheet {
    padding: 16px;
  }

  .sheet-section h2 {
    font-size: 1.6rem;
  }

  .order-sheet-head h1 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    line-height: 1;
    word-break: break-word;
  }

  .order-sheet-head p {
    font-size: 0.95rem;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .sheet-row input {
    width: 100%;
    max-width: 92px;
    justify-self: start;
    text-align: center;
  }

  .sheet-row-sub {
    padding-left: 18px;
  }

  .sheet-row-head {
    display: none;
  }

  .sheet-group,
  .sheet-table {
    border-left: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
  }

  .sheet-date label,
  .sheet-field {
    font-size: 0.92rem;
  }

  .sheet-date input,
  .sheet-field input,
  .sheet-field textarea,
  .sheet-row input {
    padding: 9px 10px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .print-hidden,
  .back-to-top,
  .site-footer,
  .site-header {
    display: none !important;
  }

  .order-main {
    padding: 0;
  }

  .order-wrap,
  .wrap {
    width: 100%;
    margin: 0;
  }

  .order-sheet {
    box-shadow: none;
    padding: 0;
  }

  .sheet-date input,
  .sheet-field input,
  .sheet-field textarea,
  .sheet-row input {
    border-color: #888;
  }
}
