/* =========================================================
   Thema der Woche – Website
   Farbsystem aus PPTX:
   --orange: #C34716   (Primary, Akzent)
   --brown:  #574B44   (Body Text)
   --peach:  #FADDD1   (Cards, Soft Highlights)
   --peach-2: #F7CCBA  (Hover / Variation)
   --bg:     #ECE8E2   (warmer Light Grey)
   --bg-2:   #FFFFFF
   ========================================================= */

:root {
  --orange: #C34716;
  --orange-hover: #A03A11;
  --brown: #574B44;
  --brown-soft: #7A6B62;
  --peach: #FADDD1;
  --peach-2: #F7CCBA;
  --bg: #F8F5F1;
  --bg-2: #FFFFFF;
  --line: #DCD6CF;
  --shadow: 0 8px 30px rgba(87, 75, 68, 0.08);
  --radius: 18px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--brown);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 232, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--brown);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover {
  color: var(--orange);
  text-decoration: none;
  border-color: var(--orange);
}

.nav-links a.active {
  color: var(--orange);
  border-color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: none !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-hover);
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  color: #1B1612;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5.2vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
}

.lead {
  font-size: 19px;
  color: var(--brown);
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--orange-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange) !important;
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--brown) !important;
}

.btn-ghost:hover {
  color: var(--orange) !important;
  text-decoration: none;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, var(--bg-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-text p.lead {
  margin-bottom: 8px;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(87, 75, 68, 0.18);
  border-radius: 50%;
  transform: translate(22px, 18px);
  filter: blur(18px);
  z-index: 0;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  box-shadow: var(--shadow);
}

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

  .hero-image-wrap {
    margin: 30px auto 0;
  }
}

/* ---------- SECTIONS ---------- */
section {
  padding: 90px 0;
}

.section-light {
  background: var(--bg-2);
}

.section-soft {
  background: var(--peach);
}

.section-warm {
  background: var(--bg);
}

.section-head {
  max-width: 720px;
  margin-bottom: 50px;
}

/* ---------- FEATURE CARDS ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 820px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--peach);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p {
  color: var(--brown);
  font-size: 15.5px;
}

.card-soft {
  background: var(--peach);
  border: none;
  border-radius: var(--radius);
  padding: 32px 30px;
}

.card-soft h3 {
  color: #1B1612;
  margin-bottom: 6px;
}

.card-soft .sub {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}

.card-soft ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-soft li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15.5px;
}

.card-soft li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- SPLIT (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.flip {
  grid-template-columns: 1fr 1fr;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.split h2 {
  margin-bottom: 18px;
}

@media (max-width: 820px) {

  .split,
  .split.flip {
    grid-template-columns: 1fr;
  }
}

/* ---------- COMPARE TABLE ---------- */
.compare {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 14.5px;
}

.compare>div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.compare .h {
  background: #1B1612;
  color: #fff;
  font-weight: 700;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
}

.compare .h-feat {
  background: #2A1F19;
}

.compare .h.va {
  background: var(--orange);
}

.compare .h.vb {
  background: #A6450F;
}

.compare .h.vc {
  background: #7A310B;
}

.compare .h .sub {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.compare .feat {
  background: var(--peach);
  font-weight: 600;
  color: #1B1612;
}

.compare .v {
  justify-content: center;
  text-align: center;
  color: var(--brown);
}

.compare .v.tick {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

.compare .alt {
  background: #F8F5F1;
}

@media (max-width: 820px) {
  .compare {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    min-width: 920px;
    font-size: 13px;
  }

  .compare .h-feat,
  .compare .feat {
    display: flex;
  }
}

/* ---------- TESTIMONIAL / QUOTE ---------- */
.quote {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 50px 60px;
  font-style: italic;
  font-size: 22px;
  color: #1B1612;
  line-height: 1.45;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.quote::before {
  content: '“';
  font-size: 80px;
  line-height: 0.6;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
}

.faq summary {
  font-weight: 700;
  color: #1B1612;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: '+';
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 12px;
  color: var(--brown);
  font-size: 15.5px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: #1B1612;
  color: #fff;
  text-align: center;
  padding: 80px 28px;
  border-radius: var(--radius);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: #D4CFC9;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-band .btn-primary {
  background: var(--orange);
}

/* ---------- NEWSLETTER + KONTAKT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card p {
  color: var(--brown-soft);
  margin-bottom: 22px;
  font-size: 15.5px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  padding: 13px 16px;
  font: inherit;
  color: var(--brown);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #FBF9F6;
  transition: border-color .2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-card .btn {
  width: 100%;
}

.newsletter-inline {
  display: flex;
  gap: 10px;
}

.newsletter-inline input {
  flex: 1;
}

.newsletter-inline button {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-inline {
    flex-direction: column;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1B1612;
  color: #D4CFC9;
  padding: 70px 0 30px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid #3A2F28;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 14px;
  filter: brightness(1.1) contrast(0.95);
}

.footer-brand p {
  color: #B5ADA5;
  font-size: 14.5px;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.footer a {
  color: #D4CFC9;
}

.footer a:hover {
  color: var(--orange);
  text-decoration: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .label {
  color: #8C857E;
  min-width: 70px;
  display: inline-block;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 13px;
  color: #8C857E;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: #8C857E;
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

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

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

/* ---------- SMALL HERO (Subpages) ---------- */
.hero-sub {
  padding: 60px 0 50px;
  background: var(--peach);
}

.hero-sub h1 {
  margin-bottom: 14px;
}

.hero-sub .lead {
  max-width: 740px;
}

/* ---------- BREADCRUMB ---------- */
.crumb {
  font-size: 14px;
  color: var(--brown-soft);
  margin-bottom: 14px;
}

.crumb a {
  color: var(--brown-soft);
}

.crumb a:hover {
  color: var(--orange);
}

/* ---------- PRODUCT GALLERY (Subpage hero image grid) ---------- */
.gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-2 .g-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.gallery-2 .g-item img {
  border-radius: 8px;
}

.gallery-2 .g-item p {
  text-align: center;
  font-size: 13px;
  color: var(--brown-soft);
  margin-top: 10px;
  font-style: italic;
}

/* ---------- INFO STRIPS ---------- */
.strip {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.strip .num {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.strip h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.strip p {
  color: var(--brown);
  margin: 0;
  font-size: 14.5px;
}

@media (max-width: 600px) {
  .strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ---------- STATS ROW ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .stat .n {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stats .stat .l {
  color: var(--brown-soft);
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

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

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

/* ===== Helle Abschlussbereiche: CTA-Container + Footer ===== */
.cta-band,
.footer {
  background: #F8F5F1 !important;
  color: #574B44 !important;
  border-top: 1px solid #DCD6CF;
}

.cta-band {
  border: 1px solid #DCD6CF;
  box-shadow: 0 8px 30px rgba(87, 75, 68, 0.08);
}

.cta-band h2,
.footer h4 {
  color: #1B1612 !important;
}

.cta-band p,
.footer p,
.footer li,
.footer span {
  color: #574B44 !important;
}

.cta-band a,
.footer a {
  color: #574B44 !important;
}

.cta-band a:hover,
.footer a:hover {
  color: #C34716 !important;
}

.footer-contact .label {
  color: #7A6B62 !important;
}

.footer-grid {
  border-bottom: 1px solid #DCD6CF !important;
}

.footer-bottom {
  color: #7A6B62 !important;
  background: #FFFFFF !important;
}

.footer-bottom a {
  color: #7A6B62 !important;
}

.footer-bottom a:hover {
  color: #C34716 !important;
}

.footer-brand p {
  color: #574B44 !important;
}

/* ===== Schwarze Flächen entfernen: hell statt schwarz ===== */

/* Dunkle CTA-/Anfrage-Container hell machen */
.cta-band {
  background: #FFFFFF !important;
  color: #574B44 !important;
  border: 1px solid #DCD6CF !important;
  box-shadow: 0 8px 30px rgba(87, 75, 68, 0.08) !important;
}

.cta-band h2 {
  color: #1B1612 !important;
}

.cta-band p {
  color: #574B44 !important;
}

/* Footer hell machen */
.footer {
  background: #FFFFFF !important;
  color: #574B44 !important;
  border-top: 1px solid #DCD6CF !important;
}

.footer h4 {
  color: #1B1612 !important;
}

.footer p,
.footer li,
.footer span {
  color: #574B44 !important;
}

.footer a {
  color: #574B44 !important;
}

.footer a:hover {
  color: #C34716 !important;
}

.footer-contact .label {
  color: #7A6B62 !important;
}

.footer-grid {
  border-bottom: 1px solid #DCD6CF !important;
}

.footer-bottom {
  background: #FFFFFF !important;
  color: #7A6B62 !important;
}

.footer-bottom a {
  color: #7A6B62 !important;
}

.footer-bottom a:hover {
  color: #C34716 !important;
}

.footer-brand p {
  color: #574B44 !important;
}

/* Schwarze Vergleichstabellen-Köpfe auf der App-Seite entschärfen */
.compare .h,
.compare .h-feat {
  background: #ECE8E2 !important;
  color: #1B1612 !important;
}

.compare .h.va,
.compare .h.vb,
.compare .h.vc {
  background: #FADDD1 !important;
  color: #1B1612 !important;
}

.compare .h .sub {
  color: #574B44 !important;
}