* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --line: #e6e1db;
  --sand: #f6f1ea;
  --clay: #d8c2a8;
  --sage: #b9c1b1;
  --night: #1b1f22;
  --light: #ffffff;
  --accent: #9a6b3a;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--light);
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-card {
  padding: 24px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero {
  padding: 36px 0 8px;
}

.hero-visual {
  min-height: 360px;
  border-radius: 22px;
  background-color: #d6cbbd;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--sand);
  border: none;
}

.section.night {
  background: var(--night);
  color: var(--light);
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #d9d0c4;
  display: block;
}

.service-body {
  padding: 18px;
}

.price {
  font-weight: bold;
  color: var(--accent);
  margin-top: 8px;
}

.image-frame {
  background-color: #c7b7a1;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background-color: #c7b7a1;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.highlight-box {
  background: var(--sage);
  border-radius: 20px;
  padding: 20px;
  color: var(--ink);
}

.testimonial {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--light);
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta button {
  margin-left: 8px;
}

.footer {
  padding: 32px 24px 60px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.references {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.legal-hero {
  min-height: 220px;
  border-radius: 18px;
  background-color: #cec0b1;
  background-size: cover;
  background-position: center;
}

.legal-hero.impressum {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.legal-hero.privacy {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.legal-hero.terms {
  background-image: url("https://images.unsplash.com/photo-1450101215322-bf5cd27642fc?w=1400&q=80");
}

.legal-hero.cookies {
  background-image: url("https://images.pexels.com/photos/251610/pexels-photo-251610.jpeg");
}

.legal-hero.gdpr {
  background-image: url("https://images.pexels.com/photos/159298/gears-cogs-machine-machinery-159298.jpeg");
}

.about-visual {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.services-visual {
  background-image: url("https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1400&q=80");
}

.contact-visual {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
}

.stats-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
