
:root {
  --bg-page: #83976f;
  --shell-bg: #f9f6f2;
  --shell-white: #fdfbf8;
  --text-main: #243028;
  --text-soft: #465347;
  --green: #8a9d77;
  --green-dark: #6f8560;
  --pink: #e62863;
  --pink-soft: #f7e1e8;
  --line: #e7ddd4;
  --shadow: 0 14px 34px rgba(53, 64, 54, 0.08);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --max-width: 1240px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --text-size: 16px;
  --heading-size: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-size);
  line-height: 1.5;
  color: var(--text-main);
  background: radial-gradient(circle at 18% 8%, rgba(255,255,255,0.16), transparent 24rem), radial-gradient(circle at 88% 78%, rgba(255,255,255,0.10), transparent 22rem), var(--bg-page);
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 16px auto;
  overflow: hidden;
  background: var(--shell-bg);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 32px rgba(28, 37, 27, 0.12);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(221,212,203,0.8);
}

.site-header .main-nav {
  justify-self: end;
  text-align: right;
}
.brand { width: min(216px, 38vw); }
.main-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 28px; margin-left: auto; }
.main-nav a { text-decoration: none; font-size: 0.98rem; }
.main-nav a:hover, .text-link:hover { color: var(--pink); }

.hero--photo {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.52) 64%, rgba(255,255,255,0.80) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 36px 40px;
}
.hero__content--right { margin-left: auto; text-align: center; padding-right: 24px; }
.hero__logo-large { width: min(560px, 100%); margin: 0 auto 16px; }
.hero__copy { margin: 0 auto 20px; font-size: 1.35rem; line-height: 1.45; color: var(--text-main); max-width: 460px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-size: var(--heading-size);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--green-dark);
}
h2 { margin-bottom: 14px; }
h3 { margin-bottom: 10px; font-size: 1.35rem; line-height: 1.2; font-weight: 700; color: var(--green-dark); }
p, li { color: var(--text-soft); }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid transparent; border-radius: 8px; font-weight: 600; text-decoration: none;
}
.button--small { min-height: 36px; padding: 0 15px; font-size: 15px; }
.button--green { background: var(--green); color: #fff; }
.button--pink { background: var(--pink); color: #fff; }
.button--outline { background: transparent; border-color: var(--green); color: var(--green-dark); }
.text-link { color: var(--pink); text-decoration: none; font-weight: 600; }

.about-teaser, .offers, .details, .contact { padding: 28px 34px; }

.about-teaser {
  display: grid; grid-template-columns: minmax(260px, 390px) minmax(280px, 1fr) minmax(220px, 340px); gap: 22px; align-items: center; background: rgba(255,255,255,0.45);
}
.about-teaser__image {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow);
}
.section-title {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(230,40,99,0.22);
}
.section-title h2 { margin: 0 0 8px; }
.section-title img { width: 42px; opacity: 0.74; margin-bottom: 6px; }
.section-title--center { justify-content: center; text-align: center; }
.quote-card {
  background: linear-gradient(180deg, rgba(138,157,119,0.10), rgba(138,157,119,0.18)); border-radius: 16px; padding: 24px; text-align: center;
}
.quote-card img { width: 74px; margin: 0 auto 14px; }
.quote-card p { margin: 0; font-size: 1.28rem; line-height: 1.45; color: var(--green-dark); }

.offer-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.offer-card, .detail-accordion, .contact-card {
  background: var(--shell-white); border: 1px solid rgba(221,212,203,0.92); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.offer-card {
  position: relative; display: grid; grid-template-rows: auto 1fr; min-height: 250px; padding: 18px 18px 20px; text-align: center; overflow: hidden;
}
.offer-card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 5px; background: var(--green); opacity: 0.78;
}
.offer-card:nth-child(2)::before { background: var(--pink); opacity: 0.62; }
.offer-card__content { display: flex; flex-direction: column; align-items: center; height: 100%; }
.card-lotus { width: 66px; margin: 0 auto 12px; opacity: 0.74; }
.offer-card p { margin-bottom: 16px; }
.offer-card .button { margin-top: auto; }

.details { padding-top: 10px; }
.accordion-list { display: grid; gap: 12px; }
.detail-accordion { overflow: hidden; }
.detail-accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; cursor: pointer; list-style: none;
}
.detail-accordion summary::-webkit-details-marker { display: none; }
.detail-accordion summary::after {
  content: '+'; width: 30px; height: 30px; border: 1px solid rgba(138,157,119,0.55); border-radius: 999px; color: var(--green-dark); display: grid; place-items: center; font-weight: 700;
}
.detail-accordion[open] summary::after { content: '–'; }
.detail-accordion summary strong { display: block; color: var(--green-dark); font-size: 24px; line-height: 1.2; }
.detail-card__topline { display: block; margin-bottom: 5px; color: var(--pink); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.detail-accordion__body { padding: 0 20px 18px; }
.detail-accordion__body h3 { margin-top: 14px; }
.detail-accordion__body ul { margin: 0 0 12px; padding-left: 18px; }
.detail-accordion__body p { margin-bottom: 10px; }

.contact { position: relative; }
.contact::before {
  content: ''; position: absolute; right: -80px; bottom: -48px; width: 360px; height: 200px; background: url('assets/lotus-mark-muted.png') center / contain no-repeat; opacity: 0.05; pointer-events: none;
}
.contact-card {
  position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px,1.05fr) minmax(260px,1fr) 90px; gap: 20px; align-items: center; padding: 20px 22px;
}
.contact-card__left { padding-right: 22px; border-right: 1px solid rgba(230,40,99,0.18); }
.contact-card a { text-decoration: none; }
.contact-card__right h3 { font-size: 24px; color: var(--green-dark); }
.contact-card__lotus { width: 76px; opacity: 0.76; }

.site-footer {
  padding: 14px 22px 18px; text-align: center; background: rgba(239,224,224,0.74); border-top: 1px solid rgba(221,212,203,0.85);
}
.site-footer p { margin: 0; font-size: 15px; }
.section-anchor { scroll-margin-top: 24px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr; justify-items: start; }
  .main-nav { justify-content: flex-start; justify-self: start; text-align: left; margin-left: 0; }
  .feature-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-item:nth-child(3)::before { display:none; }
  .about-teaser { grid-template-columns: 1fr 1fr; }
  .quote-card { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero--photo { min-height: 400px; }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.06) 42%, rgba(255,255,255,0.56) 68%, rgba(255,255,255,0.84) 100%);
  }
  .hero__content {
    max-width: 340px;
    padding: 22px 18px 22px 18px;
  }
  .hero__content--right {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    padding-right: 16px;
  }
  .hero__logo-large {
    width: min(300px, 100%);
    margin: 0 0 12px auto;
  }
  .hero__copy {
    max-width: 300px;
    margin: 0 0 0 auto;
    font-size: 1rem;
    line-height: 1.38;
  }
  .offer-grid, .contact-card { grid-template-columns: 1fr; }
  .contact-card__left { padding-right: 0; border-right: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(230,40,99,0.18); }
  .contact-card__lotus { display: none; }
}

@media (max-width: 720px) {
  :root { --text-size: 17px; --heading-size: 36px; }
  body { line-height: 1.58; }
  .site-shell { width: 100%; margin: 0; border-radius: 0; }
  .site-header { padding: 14px 18px; }
  .brand { width: min(225px, 76vw); }
  .main-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 16px; }
  .hero--photo { min-height: auto; }
  .hero__bg { position: relative; height: auto; aspect-ratio: 4 / 3; }
  .hero__overlay { inset: auto 0 0 0; height: 60%; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.88) 72%, rgba(255,255,255,0.96) 100%); }
  .hero__content { padding: 0 18px 20px; margin-top: -28px; }
  .hero__logo-large { margin-bottom: 12px; }
  .hero__copy { font-size: 1.02rem; }
  .about-teaser, .offers, .details, .contact { padding: 22px 18px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-item + .feature-item::before { display: none; }
  .feature-item { border-top: 1px solid var(--line); }
  .about-teaser { grid-template-columns: 1fr; }
  .quote-card p { font-size: 1.14rem; }
  .offer-card { text-align: left; min-height: 0; }
  .offer-card__content { align-items: flex-start; }
  .card-lotus { margin: 0 0 12px; }
  .section-title--center { justify-content: flex-start; text-align: left; }
  .detail-accordion summary { padding: 15px 16px; }
  .detail-accordion summary strong, .contact-card__right h3 { font-size: 22px; }
  .detail-accordion__body, .contact-card { padding-left: 16px; padding-right: 16px; }
  .button { width: 100%; }
}

@media (max-width: 420px) {
  :root { --heading-size: 32px; }
  .main-nav { grid-template-columns: 1fr; }
}




/* Kompakter vCard-Link */
.vcard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.vcard-link:hover {
  color: var(--pink);
}

.vcard-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(111, 133, 96, 0.42);
  border-radius: 5px;
  background: rgba(138, 157, 119, 0.10);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}


/* Hero-Zusatzzeile unter dem Logo */
.hero__tagline {
  margin: -6px auto 16px;
  max-width: 460px;
  color: var(--green-dark);
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero__tagline {
    max-width: 360px;
    margin: -4px 0 14px auto;
    font-size: 1.08rem;
    text-align: right;
  }
}

@media (max-width: 900px) {
  .hero__tagline {
    max-width: 300px;
    margin: -2px 0 12px auto;
    font-size: 0.98rem;
  }
}

@media (max-width: 720px) {
  .hero__tagline {
    max-width: 240px;
    margin: -2px 0 10px auto;
    font-size: 0.92rem;
    line-height: 1.22;
  }
}
