:root {
  --sage-50: #f4f7f1;
  --sage-100: #e8efe2;
  --sage-200: #d4e0cc;
  --sage-300: #b8caad;
  --sage-400: #91ab86;
  --sage-500: #6f8f66;
  --sage-700: #41604a;
  --sage-900: #22332b;
  --mint-100: #eff8ef;
  --sand-100: #fcf9f2;
  --ink: #233229;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(65, 96, 74, 0.12);
  --radius-lg: 32px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 202, 173, 0.35), transparent 34%),
    linear-gradient(180deg, var(--sage-50) 0%, #f8fbf6 35%, var(--sand-100) 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 246, 0.84);
  border-bottom: 1px solid rgba(65, 96, 74, 0.08);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 24rem;
}

.brand-kicker,
.eyebrow {
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-500);
}

.brand-name {
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--sage-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(35, 50, 41, 0.78);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(111, 143, 102, 0.12);
  color: var(--sage-900);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(65, 96, 74, 0.12);
  color: var(--sage-900);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 169, 132, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(224, 241, 224, 0.7), transparent 32%);
  pointer-events: none;
}

.hero-grid,
.page-hero-inner,
.split-layout,
.about-grid,
.contact-grid,
.map-wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  padding: 5.5rem 0 4rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-panel h2,
.cta-panel h2,
.service-card h2,
.contact-card h2,
.map-panel h2,
.about-panel h2 {
  margin: 0;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-weight: 600;
  color: var(--sage-900);
}

.hero-copy h1 {
  margin-top: 0.65rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  max-width: 12ch;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-panel p,
.cta-panel p,
.service-card p,
.contact-card p,
.map-panel p,
.about-panel p,
.feature-card p,
.info-banner p,
.mini-list p,
.quote-panel p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(35, 50, 41, 0.8);
}

.hero-text {
  max-width: 41rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(65, 96, 74, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(65, 96, 74, 0.12);
  color: var(--sage-900);
}

.text-link {
  color: var(--sage-700);
  font-weight: 700;
}

.hero-card,
.feature-card,
.split-panel,
.service-card,
.contact-card,
.about-panel,
.cta-panel,
.info-banner,
.quote-panel,
.map-frame {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 96, 74, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 100%;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 241, 0.95)),
    var(--white);
}

.hero-card-content {
  min-height: 100%;
  padding: 2rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(232, 239, 226, 0.9), rgba(255, 255, 255, 0.85)),
    var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-card-label {
  margin: 0;
  color: var(--sage-500);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card h2 {
  margin: 0;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.hero-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-card-badges span,
.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(111, 143, 102, 0.12);
  color: var(--sage-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 1.5rem 0 5rem;
}

.section-highlight {
  padding-top: 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-panel h2,
.cta-panel h2,
.contact-card h2,
.map-panel h2,
.about-panel h2,
.page-hero h1 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.08;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card {
  padding: 2rem;
}

.feature-card h3,
.about-panel h3 {
  margin: 0 0 1rem;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-size: 1.5rem;
  color: var(--sage-900);
}

.split-layout,
.about-grid,
.contact-grid,
.map-wrap {
  display: grid;
  gap: 1.5rem;
}

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

.split-panel,
.about-panel,
.contact-card,
.cta-panel,
.info-banner,
.quote-panel,
.map-panel {
  padding: 2.2rem;
}

.split-panel-soft,
.contact-card-info,
.about-panel-large {
  background:
    linear-gradient(140deg, rgba(232, 239, 226, 0.95), rgba(255, 255, 255, 0.78)),
    var(--white);
}

.mini-list,
.contact-facts {
  display: grid;
  gap: 1.25rem;
}

.mini-list strong,
.contact-facts strong {
  color: var(--sage-900);
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero-inner {
  padding: 0 0 2rem;
  max-width: 52rem;
}

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

.service-card {
  padding: 2rem;
}

.service-card ul,
.detail-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: rgba(35, 50, 41, 0.82);
  line-height: 1.8;
}

.info-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.info-banner-reviews {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) auto;
}

.cta-panel {
  text-align: center;
  padding: 3rem 2rem;
}

.map-link,
.review-link {
  margin-top: 1rem;
}

.review-link {
  justify-self: start;
}

.quote-panel p {
  margin: 0;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.25;
  text-align: center;
  color: var(--sage-900);
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--sage-900);
  font-weight: 600;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}

.consent-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.consent-checkbox a {
  color: var(--sage-700);
  text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(65, 96, 74, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage-500);
  box-shadow: 0 0 0 4px rgba(111, 143, 102, 0.14);
  background: var(--white);
}

.map-wrap {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(232, 239, 226, 0.92), rgba(255, 255, 255, 0.85)),
    var(--white);
}

.map-placeholder-content {
  max-width: 24rem;
  text-align: center;
}

.map-placeholder-content strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sage-900);
  font-size: 1.1rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(65, 96, 74, 0.08);
}

.footer-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--sage-900);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.9rem;
}

.footer-legal a {
  color: var(--sage-700);
  text-decoration: underline;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(65, 96, 74, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(65, 96, 74, 0.12);
}

.footer-badge img {
  display: block;
  width: 84px;
  height: auto;
}

.footer-meta,
.footer-inner p {
  margin: 0;
  color: rgba(35, 50, 41, 0.7);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(65, 96, 74, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin: 0 0 1rem;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  color: var(--sage-900);
}

.legal-card p {
  margin: 0;
  line-height: 1.8;
  color: rgba(35, 50, 41, 0.82);
}

.impressum-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 241, 0.88)),
    var(--white);
}

.impressum-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(65, 96, 74, 0.08);
}

.impressum-top h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.impressum-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.impressum-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(111, 143, 102, 0.12);
  color: var(--sage-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.impressum-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.impressum-section {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(65, 96, 74, 0.08);
}

.impressum-section h3 {
  margin: 0 0 0.8rem;
  font-family: "Constantia", "Palatino Linotype", Georgia, serif;
  font-size: 1.3rem;
  color: var(--sage-900);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .split-layout,
  .services-grid,
  .about-grid,
  .contact-grid,
  .map-wrap,
  .info-banner,
  .info-banner-reviews,
  .legal-layout,
  .impressum-body {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-card {
    max-width: 38rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .brand {
    max-width: 15rem;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

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

  .site-nav a {
    text-align: center;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .section {
    padding-bottom: 4rem;
  }

  .hero-card-content,
  .feature-card,
  .service-card,
  .split-panel,
  .about-panel,
  .contact-card,
  .cta-panel,
  .map-panel {
    padding: 1.6rem;
  }

  .impressum-top {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.1rem, 1120px);
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .split-panel h2,
  .cta-panel h2,
  .service-card h2,
  .contact-card h2,
  .map-panel h2,
  .about-panel h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .footer-inner,
  .footer-legal {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .review-link {
    justify-self: stretch;
  }
}
