/* Lumi – Website. Reines CSS, keine Fremd-Inhalte, kein Tracking.
   Farben = Lumis App-Palette. Rundschrift (SF Pro Rounded) auf Apple-Geräten.
   Desktop nutzt die ganze Breite: volle Bänder, Bento-Raster, Deko an den Rändern. */

:root {
  --cream: #fff8f3;
  --cream-deep: #f8ebe4;
  --card: #ffffff;
  --plum: #4a2c4d;
  --plum-soft: #8a6f8c;
  --blush: #f7c9d4;
  --blush-deep: #d96b8a;
  --lavender: #e6ddf7;
  --lavender-deep: #7b6aa8;
  --mint: #d5f0e3;
  --mint-deep: #3f9a72;
  --sun: #ffe9b8;
  --sun-deep: #d99a2b;
  --sky: #e3f0fd;
  --shadow: 0 14px 36px rgba(74, 44, 77, 0.10);
  --shadow-soft: 0 6px 18px rgba(74, 44, 77, 0.07);
  --hairline: rgba(74, 44, 77, 0.07);
  --radius: 26px;
  --petal: rgba(233, 150, 180, 0.55);
  --band-a: #fcf1ee;
  --band-b: #f4f7f3;
  --hero-sky: #eef4fb;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #17111a;
    --cream-deep: #241a29;
    --card: #2a1f30;
    --plum: #f4e9f2;
    --plum-soft: #bba9bd;
    --blush: #5a2f42;
    --blush-deep: #f28fb2;
    --lavender: #33294a;
    --lavender-deep: #bcaaee;
    --mint: #1f3d31;
    --mint-deep: #86d9b0;
    --sun: #4a3a1a;
    --sun-deep: #f2c46a;
    --sky: #1a1730;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.40);
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.30);
    --hairline: rgba(255, 255, 255, 0.07);
    --petal: rgba(242, 143, 178, 0.35);
    --band-a: #221724;
    --band-b: #182220;
    --hero-sky: #1a1730;
  }
}

* { box-sizing: border-box; }
html { color-scheme: light dark; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px; line-height: 1.65;
  color: var(--plum); background: var(--cream);
  overflow-x: hidden; position: relative;
}

a { color: var(--blush-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Breite: Desktop bekommt Platz, Text bleibt lesbar */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 860px; }

h1, h2, h3 { letter-spacing: -0.01em; }
.eyebrow { margin: 0 0 8px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blush-deep); opacity: .85; }
.head { max-width: 680px; margin: 0 0 30px; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 8px; line-height: 1.12; }
.sub { color: var(--plum-soft); margin: 0; font-size: 18px; }

/* ---------- Kopf: schwebende Glasleiste ---------- */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
header.site .bar { display: flex; align-items: center; gap: 18px; padding: 12px 28px; }
header.site .brand { display: flex; align-items: center; gap: 10px; color: var(--plum); font-weight: 800; font-size: 21px; margin-right: auto; }
header.site .brand img { width: 40px; height: 40px; border-radius: 11px; box-shadow: 0 6px 14px rgba(217, 107, 138, 0.22); }
header.site nav { display: flex; gap: 4px; }
header.site nav a { color: var(--plum-soft); font-weight: 600; padding: 8px 14px; border-radius: 999px; transition: background .2s, color .2s; }
header.site nav a:hover { background: var(--cream-deep); color: var(--plum); text-decoration: none; }
header.site nav a[aria-current="page"] { background: var(--blush); color: var(--blush-deep); }
@media (max-width: 560px) { header.site nav { display: none; } }

/* ---------- Knöpfe: ein System, drei Stufen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 999px; font-weight: 800; font-size: 16px; line-height: 1;
  background: linear-gradient(120deg, var(--blush-deep), #e58aa8); color: #fff;
  box-shadow: 0 10px 22px rgba(217, 107, 138, 0.32);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(217, 107, 138, 0.40); text-decoration: none; }
.btn:active { transform: translateY(0); box-shadow: 0 6px 14px rgba(217, 107, 138, 0.30); }
.btn.ghost { background: var(--card); color: var(--plum); box-shadow: var(--shadow-soft); border: 1px solid var(--hairline); }
.btn.ghost:hover { background: var(--cream-deep); box-shadow: var(--shadow-soft); }
.btn.small { padding: 10px 16px; font-size: 14px; box-shadow: 0 6px 14px rgba(217, 107, 138, 0.25); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ---------- Hero: volles Band, Text links, Garten bis an den rechten Rand ---------- */
.hero-band {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--hero-sky) 0%, var(--cream) 78%);
}
.hero {
  display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 54%); align-items: center; gap: 24px;
  min-height: min(78vh, 760px); padding: 40px 0 30px;
}
.hero h1 { font-size: clamp(40px, 5.4vw, 74px); line-height: 1.0; margin: 6px 0 18px; font-weight: 800; }
.hero h1 .lumi {
  background: linear-gradient(120deg, var(--blush-deep), var(--lavender-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--plum-soft); margin: 0 0 26px; max-width: 520px; }
.hero .art { position: relative; justify-self: end; width: 100%; max-width: 760px; margin-right: clamp(-140px, -8vw, 0px); }
.hero .art img.scene { width: 100%; display: block; animation: float 6s ease-in-out infinite; }
.hero .art img.butterfly { position: absolute; width: 58px; left: 9%; top: 18%; animation: flutter 7s ease-in-out infinite; }
.hero .art .art-bubble { position: absolute; left: 10%; top: 4%; z-index: 2; }
.hero .art .art-bubble::after { left: 30px; }
/* Blumen am linken Rand – nur auf breiten Bildschirmen */
.hero-band .edge { position: absolute; pointer-events: none; opacity: .75; display: none; }
.hero-band .edge.l1 { left: 28px; bottom: 96px; width: 104px; transform: rotate(-12deg); }
.hero-band .edge.l2 { left: 132px; bottom: 34px; width: 76px; transform: rotate(9deg); }
@media (min-width: 1360px) { .hero-band .edge { display: block; } }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: 0; padding-top: 12px; }
  .hero .art { order: -1; max-width: 420px; justify-self: center; margin-right: 0; }
  .hero p.lead { margin-inline: auto; }
  .actions { justify-content: center; }
}

/* Sprechblase */
.bubble { position: relative; display: inline-block; background: var(--card); color: var(--plum); font-weight: 600; padding: 12px 20px; border-radius: 22px; box-shadow: var(--shadow-soft); }
.bubble::after { content: ""; position: absolute; left: 28px; bottom: -9px; border-width: 10px 9px 0 9px; border-style: solid; border-color: var(--card) transparent transparent transparent; }

/* ---------- Abschnitte ---------- */
section { padding: 56px 0; position: relative; }
section.wrap { padding: 56px 28px; }
.band { padding: 72px 0; }
.band-rose { background: linear-gradient(180deg, transparent 0, var(--band-a) 140px, var(--band-a) calc(100% - 140px), transparent 100%); }
.band-mint { background: linear-gradient(180deg, transparent 0, var(--band-b) 140px, var(--band-b) calc(100% - 140px), transparent 100%); }

/* Zwei Wege: zwei breite Karten nebeneinander */
.ways { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.way { background: var(--card); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); border: 1px solid var(--hairline); display: grid; grid-template-columns: 56px 1fr; gap: 6px 18px; align-items: start; }
.way h3 { margin: 12px 0 8px; font-size: 22px; grid-column: 2; }
.way .ic { grid-row: 1 / span 2; margin-top: 8px; }
.way .checks { grid-column: 2; }
.ic { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 27px; background: var(--cream-deep); }
.ic.pink { background: var(--blush); } .ic.mint { background: var(--mint); } .ic.lav { background: var(--lavender); } .ic.sun { background: var(--sun); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.checks li { position: relative; padding-left: 30px; color: var(--plum-soft); font-size: 15.5px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 900; background: var(--mint); color: var(--mint-deep); }

/* Drei Screens nebeneinander */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.trio .shot { text-align: center; }
.trio .shot h3 { font-size: 21px; margin: 18px 0 6px; }
.trio .shot p { color: var(--plum-soft); margin: 0 auto; max-width: 320px; font-size: 15.5px; }
.trio .shot:nth-child(2) .phone { width: 290px; }
@media (max-width: 900px) { .trio { grid-template-columns: 1fr; gap: 36px; } .trio .shot:nth-child(2) .phone { width: 270px; } }

.phone { width: 270px; margin: 0 auto; padding: 10px; border-radius: 44px; background: #1c1620; box-shadow: 0 26px 46px rgba(74, 44, 77, 0.22); transition: transform .3s ease; }
.phone img { display: block; width: 100%; border-radius: 36px; }
.phone.sm { width: 220px; border-radius: 38px; padding: 8px; }
.phone.sm img { border-radius: 31px; }
.shot:hover .phone, .b:hover .phone { transform: translateY(-6px) rotate(-1deg); }

/* Bento-Raster: auf dem Desktop vier Spalten, große und kleine Felder */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(150px, auto); gap: 18px; margin-top: 44px; }
.b { background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); border: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 8px; }
.b h3 { margin: 6px 0 2px; font-size: 20px; }
.b p { margin: 0; color: var(--plum-soft); font-size: 15.5px; }
.b .ic { width: 48px; height: 48px; font-size: 24px; border-radius: 16px; }
.b.tall { grid-row: span 2; align-items: center; text-align: center; justify-content: flex-start; padding-top: 28px; }
.b.tall .phone { margin: 10px auto 0; }
.b.wide { grid-column: span 2; }
.b.tinted { background: var(--card); }
.b.tinted.mint { background: var(--band-b); }
.b.full { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 20px; }
.b.full .ic { flex: none; }
.b.full h3 { margin-top: 0; }
.b.center { justify-content: center; }
/* kleine Attrappen in den Kacheln – reines CSS, sieht aus wie in der App */
.mock { margin-top: auto; padding-top: 14px; }
.mock.rows { display: grid; gap: 6px; }
.mock.rows div { display: flex; justify-content: space-between; align-items: center; background: var(--card); border-radius: 14px; padding: 10px 14px; font-size: 14.5px; color: var(--plum-soft); box-shadow: var(--shadow-soft); }
.mock.rows b { color: var(--plum); font-weight: 700; }
.mock.swatches { display: flex; gap: 8px; }
.mock.swatches span { flex: 1; text-align: center; padding: 12px 8px; border-radius: 14px; font-size: 14px; font-weight: 700; }
.mock.swatches .day { background: #fff3ea; color: #4a2c4d; border: 1px solid rgba(74,44,77,.08); }
.mock.swatches .night { background: #241c2a; color: #f4e9f0; }
.mock.seg { display: flex; background: var(--cream-deep); border-radius: 14px; padding: 4px; }
.mock.seg span { flex: 1; text-align: center; padding: 8px; border-radius: 11px; font-size: 14px; font-weight: 700; color: var(--plum-soft); }
.mock.seg .on { background: var(--card); color: var(--plum); box-shadow: var(--shadow-soft); }
@media (max-width: 620px) { .b.full { flex-direction: column; align-items: flex-start; } }
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .b.tall, .b.wide { grid-column: span 1; grid-row: span 1; } }

/* Garten: volles Panorama über die ganze Breite */
.panorama { position: relative; overflow: hidden; }
.panorama img { display: block; width: 100%; max-width: none; min-height: 260px; object-fit: cover; object-position: center bottom; margin-top: -10px; }
.panorama .over {
  position: absolute; top: clamp(24px, 4vw, 52px); left: max(28px, calc((100% - 1240px) / 2 + 28px));
  max-width: 400px;
}
.panorama .over h2 { font-size: clamp(24px, 2.5vw, 33px); margin: 0 0 8px; line-height: 1.12; }
.panorama .over p { color: var(--plum-soft); margin: 0; font-size: 17px; }
@media (max-width: 700px) {
  .panorama .over { position: static; max-width: none; margin: 0 20px 6px; text-align: center; }
}
@media (prefers-color-scheme: dark) { .panorama img { filter: brightness(.6) saturate(.8); } }
.gardens { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.garden { border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow); border: 1px solid var(--hairline); transition: transform .3s; }
.garden:hover { transform: translateY(-5px); }
.garden img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.garden .cap { padding: 16px 20px; }
.garden .cap strong { display: block; font-size: 17px; }
.garden .cap span { color: var(--plum-soft); font-size: 14.5px; }
.stages { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-top: 30px; }
.stage { text-align: center; color: var(--plum-soft); font-size: 14px; }
.stage img { width: 84px; height: 84px; object-fit: contain; display: block; margin: 0 auto 4px; }
@media (max-width: 520px) { .stages { gap: 14px; } .stage img { width: 64px; height: 64px; } .stage { font-size: 13px; } }

/* Stimmungen: vier in einer Reihe */
.moods { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 760px) { .moods { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; } }
.mood { text-align: center; }
.mood img { display: block; margin: 0 auto; width: 150px; height: 150px; object-fit: contain; transition: transform .3s; }
.mood:hover img { transform: scale(1.06) rotate(-3deg); }
.mood .bubble { margin-top: 6px; font-size: 14px; padding: 8px 14px; }
.mood .bubble::after { left: 50%; margin-left: -9px; }

/* Versprechen: vier Kacheln in einer Reihe, Blumen an den Rändern */
.promise-band { position: relative; overflow: hidden; padding: 16px 0 8px; }
.promise-band .edge { position: absolute; pointer-events: none; opacity: .7; display: none; }
.promise-band .edge.r1 { right: 36px; top: 48px; width: 96px; transform: rotate(14deg); }
.promise-band .edge.l1 { left: 36px; bottom: 64px; width: 104px; transform: rotate(-10deg); }
@media (min-width: 1360px) { .promise-band .edge { display: block; } }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.tile { border-radius: var(--radius); padding: 24px; display: grid; gap: 6px; align-content: start; background: var(--card); border: 1px solid var(--hairline); box-shadow: var(--shadow-soft); }
.tile .ic { margin-bottom: 6px; }
.tile strong { font-size: 17px; }
.tile span { color: var(--plum-soft); font-size: 15px; }
.tile.pink .ic { background: var(--blush); } .tile.lav .ic { background: var(--lavender); } .tile.sun .ic { background: var(--sun); } .tile.mint .ic { background: var(--mint); }

/* Abschluss / Kontakt */
.final { display: grid; grid-template-columns: 170px 1fr auto; gap: 26px; align-items: center; background: var(--card); border-radius: 30px; padding: 32px 36px; box-shadow: var(--shadow); border: 1px solid var(--hairline); }
.final img { width: 170px; height: 170px; object-fit: contain; }
.final h2 { margin: 0 0 6px; font-size: 30px; }
.final .sub { margin-bottom: 0; }
@media (max-width: 760px) { .final { grid-template-columns: 1fr; text-align: center; } .final img { margin: 0 auto; } .final .actions { justify-content: center; } }

/* FAQ */
details { background: var(--card); border-radius: 20px; padding: 16px 20px; margin: 0 0 10px; box-shadow: var(--shadow-soft); border: 1px solid var(--hairline); }
details summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; gap: 12px; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::before { content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--blush); color: var(--blush-deep); font-weight: 800; transition: transform .2s; }
details[open] summary::before { content: "–"; transform: rotate(180deg); }
details p { color: var(--plum-soft); margin: 12px 0 4px 38px; font-size: 15.5px; }
.faq-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 12px 32px; align-items: start; }
.page-head { padding-bottom: 10px; }
.page-head h1 { font-size: clamp(30px, 4.5vw, 44px); margin: 6px 0 8px; line-height: 1.1; }
h2.group { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum-soft); margin: 0 0 12px; }

/* Textseiten */
.prose h1 { font-size: clamp(30px, 4.5vw, 42px); margin: 6px 0 4px; }
.prose h2 { font-size: 22px; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--plum); }
.prose .muted { color: var(--plum-soft); }
.notice { border-left: 4px solid var(--sun-deep); background: var(--sun); padding: 12px 16px; border-radius: 14px; margin: 16px 0; }
.summary-box { display: flex; gap: 16px; align-items: center; background: var(--card); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); border: 1px solid var(--hairline); margin: 18px 0 8px; }
.summary-box img { width: 84px; height: 84px; flex: none; }

/* Blütenblätter */
.petals { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.petal { position: absolute; top: -40px; width: 14px; height: 22px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: var(--petal); opacity: 0; animation: fall linear infinite; }
.petal:nth-child(1) { left: 6%;  animation-duration: 19s; animation-delay: 0s; }
.petal:nth-child(2) { left: 18%; animation-duration: 24s; animation-delay: 3s; width: 10px; height: 16px; }
.petal:nth-child(3) { left: 31%; animation-duration: 21s; animation-delay: 7s; }
.petal:nth-child(4) { left: 47%; animation-duration: 26s; animation-delay: 1s; width: 12px; height: 18px; }
.petal:nth-child(5) { left: 58%; animation-duration: 18s; animation-delay: 9s; }
.petal:nth-child(6) { left: 71%; animation-duration: 23s; animation-delay: 5s; width: 10px; height: 16px; }
.petal:nth-child(7) { left: 83%; animation-duration: 20s; animation-delay: 11s; }
.petal:nth-child(8) { left: 93%; animation-duration: 25s; animation-delay: 2s; width: 12px; height: 18px; }
@keyframes fall { 0% { transform: translate3d(0, -40px, 0) rotate(0deg); opacity: 0; } 8% { opacity: 0.9; } 50% { transform: translate3d(24px, 50vh, 0) rotate(180deg); } 100% { transform: translate3d(-18px, 105vh, 0) rotate(360deg); opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes flutter { 0%, 100% { transform: translate(0, 0) rotate(-4deg); } 25% { transform: translate(40px, -18px) rotate(6deg); } 50% { transform: translate(90px, 4px) rotate(-3deg); } 75% { transform: translate(40px, 22px) rotate(5deg); } }
@media (prefers-reduced-motion: reduce) { .petal, .hero .art img, .phone, .garden, .mood img { animation: none !important; transition: none !important; } }

/* Fuß */
footer.site { border-top: 1px solid var(--hairline); margin-top: 30px; }
footer.site .wrap { padding: 30px 28px 44px; color: var(--plum-soft); font-size: 14px; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }
footer.site img { width: 44px; height: 44px; }
footer.site .night { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--plum); }
footer.site .dim { opacity: .75; }
