/* ============================================================
   KATI SUN — Design System
   Sanft & feminin · warme Neutraltöne · elegante Serifen
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  /* — Warme Neutraltöne — */
  --cream:        oklch(0.975 0.011 78);
  --cream-deep:   oklch(0.948 0.018 72);
  --sand:         oklch(0.905 0.024 68);
  --sand-line:    oklch(0.86 0.026 66);
  --white:        oklch(0.992 0.005 80);

  /* — Akzente (gleiche Chroma/Lightness, Hue variiert) — */
  --clay:         oklch(0.64 0.072 42);
  --clay-deep:    oklch(0.55 0.078 40);
  --clay-soft:    oklch(0.90 0.035 50);
  --sage:         oklch(0.68 0.040 148);
  --sage-soft:    oklch(0.92 0.025 150);

  /* — Text — */
  --ink:          oklch(0.33 0.018 52);
  --ink-soft:     oklch(0.47 0.020 54);
  --ink-faint:    oklch(0.60 0.018 56);

  /* — Type — */
  --display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --body:    'Mulish', system-ui, -apple-system, sans-serif;

  /* — Maße — */
  --maxw: 1180px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 50px -28px oklch(0.4 0.04 50 / 0.45);
  --shadow-card: 0 24px 60px -36px oklch(0.4 0.04 50 / 0.55);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--clay-soft); color: var(--ink); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.display {
  font-size: clamp(2.9rem, 6.5vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
}
h2.section-title { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  opacity: 0.6;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  opacity: 0.6;
}

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
}

p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 30px -14px var(--clay);
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -14px var(--clay-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand-line);
}
.btn-ghost:hover { background: var(--white); border-color: var(--clay); color: var(--clay-deep); transform: translateY(-2px); }

.btn-text {
  color: var(--clay-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0;
}
.btn-text .arrow { transition: transform 0.3s var(--ease); }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 22px;
}
.site-header.scrolled {
  background: oklch(0.975 0.011 78 / 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--sand-line);
  padding-block: 14px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .sun {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, var(--clay-soft), var(--clay) 78%);
  box-shadow: 0 0 0 5px oklch(0.64 0.072 42 / 0.13);
  flex: none;
}
.brand .name {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--clay);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
  padding: 40px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 2rem; font-weight: 500; color: var(--ink); padding: 10px; }
.mobile-menu .btn { margin-top: 24px; font-family: var(--body); font-size: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(60px, 8vw, 110px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-copy .display { margin-block: 18px 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; color: var(--ink-faint); font-size: 0.92rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
  box-shadow: var(--shadow-card);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge {
  position: absolute; left: -22px; bottom: 38px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-media .badge .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--sage-soft); display: grid; place-items: center; flex: none; }
.hero-media .badge p { font-size: 0.82rem; line-height: 1.4; color: var(--ink-soft); }
.hero-media .badge strong { color: var(--ink); font-weight: 700; }

/* decorative blob */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: -1; pointer-events: none; }

/* ---------- Image placeholder helper ---------- */
.ph {
  background:
    repeating-linear-gradient(135deg, oklch(0.9 0.024 68) 0 14px, oklch(0.875 0.026 66) 14px 28px);
  display: grid; place-items: center;
  color: var(--ink-faint); font-family: ui-monospace, Menlo, monospace; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- "Für Dich wenn" ---------- */
.foryou {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 70px);
}
.foryou-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.check-list { list-style: none; display: grid; gap: 18px; margin-top: 10px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.08rem; color: var(--ink-soft); }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage); display: grid; place-items: center; margin-top: 2px;
}

/* ---------- Angebote Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.offer-card .pic { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.offer-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.offer-card:hover .pic img { transform: scale(1.05); }
.offer-card .body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.offer-card .glyph { font-size: 1.5rem; margin-bottom: 6px; }
.offer-card h3 { margin-bottom: 10px; }
.offer-card p { font-size: 0.98rem; color: var(--ink-soft); flex: 1; }
.offer-card .meta { display: flex; gap: 18px; margin-block: 18px; font-size: 0.86rem; color: var(--ink-faint); }
.offer-card .meta b { color: var(--clay-deep); font-weight: 700; }
.offer-card .price-tag {
  font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: var(--ink);
}

/* ---------- Steps (So läuft eine Begleitung ab) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding-top: 30px;
}
.step .num {
  font-family: var(--display); font-size: 3.4rem; font-weight: 500; color: var(--clay);
  opacity: 0.5; line-height: 1; margin-bottom: 12px;
}
.step h4 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 3px;
  background: var(--clay); border-radius: 3px;
}

/* ---------- Quote / band ---------- */
.band { background: var(--clay); color: var(--white); border-radius: var(--radius-lg); }
.band .wrap { padding-block: clamp(56px, 7vw, 96px); }
.band .quote { font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.25; font-weight: 500; font-style: italic; }
.band .who { margin-top: 22px; font-size: 0.95rem; letter-spacing: 0.04em; opacity: 0.85; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--sand-line); }
.faq-item { border-bottom: 1px solid var(--sand-line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500; color: var(--ink); transition: color 0.25s;
}
.faq-q:hover { color: var(--clay-deep); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--sand-line); position: relative; transition: 0.3s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--clay); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq-item.open .pm { background: var(--clay-soft); border-color: transparent; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; color: var(--ink-soft); font-size: 1.02rem; max-width: 760px; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final .display { margin-block: 16px 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: oklch(0.85 0.01 70); padding-block: 72px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand .name { color: var(--cream); }
.site-footer h5 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(0.7 0.02 70); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer a { color: oklch(0.85 0.01 70); font-size: 0.96rem; transition: color 0.2s; }
.site-footer a:hover { color: var(--clay-soft); }
.footer-about { font-size: 0.96rem; color: oklch(0.78 0.01 70); max-width: 320px; margin-top: 18px; }
.footer-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid oklch(0.4 0.01 60); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: oklch(0.65 0.01 70); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--sand-line); background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px oklch(0.64 0.072 42 / 0.12); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 60px; height: 60px; border-radius: 50%; background: var(--sage-soft); color: var(--sage); display: grid; place-items: center; margin: 0 auto 18px; }

/* chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--sand-line); font-size: 0.9rem; color: var(--ink-soft);
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: 150px; padding-bottom: clamp(30px, 4vw, 60px); }
.page-hero .display { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 18px; }
.gallery img, .gallery .ph { width: 100%; border-radius: var(--radius); margin-bottom: 18px; break-inside: avoid; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Misc ---------- */
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--clay); opacity: 0.6; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 60px; background: var(--sand-line); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }

.tag-loc { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--ink-faint); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-top: 44px; margin-bottom: 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.legal p { margin-bottom: 16px; }
.legal ul { margin: 0 0 18px 1.2em; display: grid; gap: 6px; }
.legal a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal .card-block {
  background: var(--white); border: 1px solid var(--sand-line); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 22px;
}
.legal .card-block p { margin-bottom: 6px; }
.legal .muted { font-size: 0.86rem; color: var(--ink-faint); }
.legal .upper { font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foryou-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .field-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .gallery { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .wrap { padding-inline: 20px; }
  .hero-media .badge { left: 0; }
}
