/* ==========================================================================
   Sommerlust — Lea Urban · Seiten-CSS
   Farben/Fonts kommen aus brand/brand.css (--teal-*, --font-*).
   Lädt NACH brand.css (Engine-Reihenfolge).
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.75; font-size: 17px; }
.container { max-width: 960px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-heading); text-transform: uppercase; color: var(--teal-dark); letter-spacing: 0.08em; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* <picture>-Wrapper als normales Element behandeln.
   KEIN display:contents: das würde <source>/<img> in expliziten Grids
   (z. B. .ueber-grid 240px|1fr) zu eigenen Grid-Items machen und die Spalten
   zerlegen. Als Block ist <picture> ein sauberer Grid-/Flex-Item-Wrapper;
   absolut positionierte Bilder (Hero-/Section-BG) bleiben davon unberührt. */
picture { display: block; }

/* =====================
   HEADER: Logo oben
   ===================== */
.site-header {
  padding: 28px 28px 0;
  text-align: center;
  background: var(--white);
}
.site-header img.logo { height: 58px; width: auto; display: inline-block; }

/* =====================
   HERO: Aquarell-Hintergrund, Foto links, Text rechts
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 960px;
}
.hero__aquarell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: 480px;
}
.hero__photo-col {
  position: relative;
  overflow: hidden;
}
/* Echtes Foto füllt die Spalte (ersetzt den früheren Platzhalter) */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero__text-col {
  padding: 52px 48px 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__kicker {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--teal-primary);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.hero__sub {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--teal-primary);
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin-bottom: 24px;
  display: block;
  line-height: 1.5;
}
.hero__body {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__body p { margin-bottom: 0.9em; }
.hero__body p:last-child { margin-bottom: 0; }

/* BUTTONS */
.btn { display: inline-block; background: var(--teal-primary); color: var(--white); font-family: var(--font-heading); font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 30px; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s; border-radius: 6px; }
.btn:hover { background: var(--teal-dark); }
.btn--outline { background: transparent; border: 2px solid var(--teal-primary); color: var(--teal-primary); border-radius: 6px; }
.btn--outline:hover { background: var(--teal-light); color: var(--teal-dark); }
.cta-block { padding: 4px 0 0; }
.cta-block .btn { margin: 6px 8px 6px 0; }
.cta-meta { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }

/* =====================
   ICON DIVIDER
   ===================== */
.icon-divider {
  text-align: center;
  padding: 28px 0 16px;
}
.icon-divider img {
  height: 64px;
  width: auto;
  opacity: 0.3;
}

/* =====================
   SECTIONS
   ===================== */
section { padding: 64px 28px; }
section.bg-light { background: var(--teal-xlight); }
.section-label { font-family: var(--font-accent); font-style: italic; color: var(--teal-primary); font-size: 0.87rem; letter-spacing: 0.06em; margin-bottom: 10px; display: block; }
h2.section-title { font-size: clamp(1.35rem, 3.5vw, 2rem); margin-bottom: 26px; line-height: 1.2; }

/* BULLET LIST mit Icon */
.bullet-list { list-style: none; padding: 0; margin: 0 0 22px; }
.bullet-list li { padding: 11px 0 11px 34px; position: relative; border-bottom: 1px solid rgba(0,77,84,0.07); font-size: 1rem; line-height: 1.65; }
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url("assets/images/bullet-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* KGS BOXES */
.kgs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 28px 0; }
.kgs-box { background: var(--white); border-top: 3px solid var(--teal-primary); padding: 26px 20px; }
.kgs-box h3 { font-size: 0.9rem; margin-bottom: 12px; color: var(--teal-dark); }
.kgs-box p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* LEISTUNGEN */
.leistung-item { padding: 20px 0; border-bottom: 1px solid rgba(0,77,84,0.08); display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: start; }
.leistung-item:last-child { border-bottom: none; }
.leistung-label { font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); padding-top: 2px; line-height: 1.5; }
.leistung-label .tag { display: inline-block; background: var(--teal-primary); color: var(--white); font-size: 0.66rem; padding: 2px 7px; margin-top: 5px; letter-spacing: 0.08em; }
.leistung-label .tag-bonus { background: var(--teal-dark); }
.leistung-text { font-size: 0.96rem; color: var(--text); line-height: 1.7; }

/* JAHRESZEITEN */
.jahreszeiten-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 26px 0; }
.jahreszeit-box { padding: 20px 12px; background: var(--white); border: 1px solid rgba(0,155,163,0.18); text-align: center; }
.jahreszeit-box.active { background: var(--teal-primary); border-color: var(--teal-primary); }
.jahreszeit-box.active .jahreszeit-phase, .jahreszeit-box.active .jahreszeit-frage, .jahreszeit-box.active h3 { color: var(--white); }
.jahreszeit-box .emoji { font-size: 1.7rem; margin-bottom: 7px; display: block; }
.jahreszeit-box h3 { font-size: 0.73rem; letter-spacing: 0.1em; margin-bottom: 5px; color: var(--teal-dark); }
.jahreszeit-phase { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.12em; color: var(--teal-dark); display: block; margin-bottom: 7px; }
.jahreszeit-frage { font-size: 0.74rem; color: var(--text-light); font-style: italic; line-height: 1.4; display: block; }

/* ÜBER LEA */
.ueber-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
/* Echtes Foto (ersetzt Platzhalter-Box) */
img.ueber-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; display: block; background: var(--teal-light); }
.ueber-titel { font-family: var(--font-accent); font-style: italic; color: var(--teal-primary); font-size: 0.86rem; margin-bottom: 5px; display: block; }
.ueber-name { font-family: var(--font-heading); font-size: 1.25rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 4px; }
.ueber-role { font-size: 0.82rem; color: var(--teal-primary); margin-bottom: 22px; line-height: 1.6; }
.leitgedanke { border-left: 3px solid var(--teal-primary); padding: 10px 0 10px 16px; margin-top: 20px; font-family: var(--font-accent); font-style: italic; color: var(--teal-dark); font-size: 1rem; }

/* KUNDENSTIMMEN */
.stimmen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 26px; }
.stimme { background: var(--white); padding: 24px; border-top: 3px solid var(--teal-light); }
.stimme blockquote { font-family: var(--font-accent); font-style: italic; font-size: 0.96rem; line-height: 1.7; color: var(--text); margin-bottom: 12px; padding-top: 38px; position: relative; }
.stimme blockquote::before { content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 26px; background-image: url("assets/images/quote-icon.png"); background-size: contain; background-repeat: no-repeat; opacity: 0.35; }
.stimme-name { font-family: var(--font-heading); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); }
.stimme-kontext { font-size: 0.76rem; color: var(--text-light); font-style: italic; }

/* PREIS */
.preis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 660px; margin: 26px auto 0; }
.preis-box { padding: 30px 22px; border: 1px solid rgba(0,155,163,0.2); text-align: center; background: var(--white); }
.preis-box.featured { border: 2px solid var(--teal-primary); background: var(--teal-xlight); position: relative; }
.preis-box.featured::before { content: "EMPFOHLEN"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal-primary); color: var(--white); font-family: var(--font-heading); font-size: 0.62rem; letter-spacing: 0.15em; padding: 3px 12px; white-space: nowrap; }
.preis-name { font-family: var(--font-heading); font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 7px; }
.preis-betrag { font-size: 2.2rem; font-family: var(--font-heading); color: var(--teal-dark); margin: 9px 0; }
.preis-sub { font-size: 0.78rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }
.preis-meta { text-align: center; font-size: 0.81rem; color: var(--text-light); margin-top: 13px; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,77,84,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(0,77,84,0.1); }
.faq-q { font-family: var(--font-heading); font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 17px 0; user-select: none; }
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--teal-primary); flex-shrink: 0; margin-left: 14px; }
.faq-item.open .faq-q::after { content: "\2013"; }
.faq-a { display: none; font-size: 0.95rem; color: var(--teal-dark); line-height: 1.75; background: var(--teal-xlight); padding: 14px 16px; margin-bottom: 2px; }
.faq-item.open .faq-a { display: block; }

/* ABSCHLUSS */
.abschluss { position: relative; text-align: center; padding: 76px 28px 56px; overflow: hidden; }
.abschluss__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.18; pointer-events: none; }
.abschluss__inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.abschluss h2 { margin-bottom: 16px; }
.abschluss p { margin: 0 auto 1.1em; }
.abschluss .cta-block .btn { margin: 7px 9px; }
.abschluss__signatur { font-family: var(--font-accent); font-style: italic; color: var(--teal-primary); font-size: 1.1rem; margin-top: 26px; }

/* FOOTER */
footer { background: var(--teal-dark); color: rgba(255,255,255,0.6); text-align: center; padding: 26px; font-size: 0.8rem; }
footer img.logo-footer { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.65; margin-bottom: 11px; display: block; margin-left: auto; margin-right: auto; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--white); }

/* WATERMARK behind text - 3 placements */
.wz-section {
  position: relative;
  overflow: hidden;
}
.wz-section .wz-bg {
  position: absolute;
  width: 320px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.wz-section .wz-bg.wz-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wz-section .wz-bg.wz-right { top: 50%; right: -40px; transform: translateY(-50%); }
.wz-section .wz-bg.wz-left { top: 50%; left: -40px; transform: translateY(-50%); }
.wz-section .container { position: relative; z-index: 1; }

/* RESPONSIVE */
@media (max-width: 760px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo-col { order: -1; min-height: 360px; }
  .hero__text-col { padding: 32px 24px; }
  .kgs-grid { grid-template-columns: 1fr; }
  .jahreszeiten-grid { grid-template-columns: repeat(2, 1fr); }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-grid img.ueber-photo { max-width: 280px; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .preis-grid { grid-template-columns: 1fr; }
  .leistung-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ==========================================================================
   Heading-Isolation: Theme/Page-Builder darf unsere Überschriften nicht
   verkleinern (zusätzlich zur Engine-Dequeue, scoped auf body.dkkit-page).
   ========================================================================== */
.dkkit-page h1, .dkkit-page h2, .dkkit-page h3 { font-family: var(--font-heading); }
.dkkit-page .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.dkkit-page h2.section-title { font-size: clamp(1.35rem, 3.5vw, 2rem); }
