:root {
  --bg: #f5eee7;
  --bg-soft: #fbf7f2;
  --rose: #cf8781;
  --rose-dark: #af6c68;
  --olive: #85846a;
  --olive-dark: #66654f;
  --text: #3c3a34;
  --muted: #716f64;
  --line: rgba(133, 132, 106, 0.32);
  --shadow: 0 24px 70px rgba(87, 74, 58, 0.14);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  font-size: 18px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--olive-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 70px);
  background: rgba(245, 238, 231, 0.96);
  border-bottom: 1px solid var(--line);
}

/* Wichtig: Kein Overlay, kein Blend-Mode, kein Abdunkeln auf dem Logo. */
.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: transparent;
}

.brand img {
  display: block;
  width: 260px;
  max-width: 50vw;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-cta {
  border: 1px solid var(--olive);
  border-radius: 999px;
  padding: 8px 16px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--olive-dark);
  font: inherit;
}

.section-pad {
  padding: clamp(58px, 8vw, 112px) clamp(22px, 6vw, 110px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--olive-dark);
}

h1 {
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: 0.015em;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

h3 {
  font-size: clamp(24px, 2.5vw, 31px);
}

h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lead {
  font-size: clamp(20px, 2.2vw, 27px);
  color: var(--muted);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--olive);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.button.primary {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--olive-dark);
}

.hero-image {
  margin: 0;
  justify-self: center;
  max-width: 300px;
  background: var(--bg-soft);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 23px;
  filter: contrast(0.92) saturate(0.92) brightness(1.04);
}

.section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 118px;
}

#top {
  scroll-margin-top: 118px;
}

.section-title {
  font-size: clamp(40px, 5.5vw, 66px);
  letter-spacing: 0.018em;
  margin-bottom: 14px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 28px);
}

.soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.cards {
  display: grid;
  gap: 24px;
}

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

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

.card,
.mini-card,
.about-box,
.contact-form,
.legal-section {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 14px 40px rgba(87, 74, 58, 0.07);
}

.small {
  font-size: 16px;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 54px;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-size: 15px;
}

.mini-card {
  text-align: center;
}

.accordion-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

details {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  color: var(--olive-dark);
  font-size: 22px;
}

details p {
  margin-bottom: 0;
}

.plain-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.plain-list li {
  margin: 8px 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 38px;
  align-items: start;
}

.about-box ul {
  padding-left: 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 42px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg));
}

.mail-line a {
  font-size: 24px;
  color: var(--rose-dark);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--olive-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  background: #fffaf5;
  color: var(--text);
  font: 17px Georgia, "Times New Roman", serif;
}

.contact-form textarea {
  resize: vertical;
}

.hp {
  display: none;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 34px clamp(22px, 6vw, 110px);
  background: var(--olive);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
}

.legal-page {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-section + .legal-section {
  margin-top: 36px;
}

.legal-section h1 {
  font-size: clamp(36px, 5vw, 58px);
}

@media (max-width: 850px) {
  .section,
  #top {
    scroll-margin-top: 104px;
  }

  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .legal-nav {
    display: flex;
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    flex-direction: row;
    padding: 0;
  }

  .hero,
  .cards.two,
  .cards.three,
  .content-grid,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero-image {
    max-width: 300px;
  }

  .site-header {
    align-items: center;
  }

  .brand img {
    width: 205px;
    max-width: 58vw;
  }
}

/* Aktivere, klarere Buttons */
.button {
  padding: 13px 24px;
  border-width: 1.5px;
  text-decoration: none;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button.primary {
  background: #bd5e57;
  border-color: #bd5e57;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(159, 79, 75, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #9f4f4b;
  border-color: #9f4f4b;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(159, 79, 75, 0.28);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--olive-dark);
  background: rgba(133, 132, 106, 0.10);
}

.nav-cta {
  border: 1.5px solid #bd5e57;
  color: #9f4f4b;
  background: rgba(189, 94, 87, 0.08);
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #bd5e57;
  border-color: #bd5e57;
  color: #ffffff;
  text-decoration: none;
}

/* Feinjustierung der grossen Start-/Kontakt-Texte */
.contact-intro h2 {
  font-size: clamp(30px, 4vw, 46px);
}
