/* =========================================
   Der Atem als Geburtsanker — Landingpage
   AMY & OM Stil: warm, erdig, authentisch
   (Design-System wie coming-home.css)
   ========================================= */

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

:root {
  --sand:       #f2e9da;
  --sand-light: #faf6ee;
  --gold:       #c5a467;
  --gold-dark:  #a3824f;
  --terracotta: #c17b58;
  --deep:       #2e2620;
  --ink:        #3a322a;
  --grey:       #6b6055;
  --white:      #ffffff;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --max-w: 1120px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--sand-light);
  -webkit-font-smoothing: antialiased;
}

em { font-style: italic; color: var(--gold-dark); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.15; letter-spacing: 0.01em; color: var(--deep); }
h1 { font-size: clamp(46px, 8vw, 84px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 28px); }

.body-text { font-weight: 300; font-size: 17px; line-height: 1.85; color: var(--grey); max-width: 620px; }
.body-text + .body-text { margin-top: 18px; }

.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 18px; font-weight: 500;
}
.eyebrow.light { color: var(--gold); }

.divider { width: 48px; height: 1px; background: var(--gold); margin: 32px auto; opacity: 0.6; }

section { padding: 100px 0; }
.section-sand { background: var(--sand); }
.section-white { background: var(--sand-light); }
.section-dark { background: var(--deep); color: var(--sand); }
.section-dark h2, .section-dark h3 { color: var(--sand-light); }
.section-dark em { color: var(--gold); }
.section-dark .body-text { color: #c9bfb2; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 8px; }

/* --- Buttons --- */
.btn-primary {
  display: inline-block; background: var(--gold-dark); color: var(--white);
  padding: 18px 40px; border-radius: 4px; font-size: 15px; letter-spacing: 0.04em;
  text-transform: uppercase; transition: transform 0.3s var(--ease-out), background 0.3s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; border: 1px solid var(--gold); color: var(--deep);
  padding: 16px 38px; border-radius: 4px; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* --- Nav --- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.92); transition: background 0.3s, box-shadow 0.3s;
  padding: 20px 0;
}
#navbar.scrolled { background: rgba(250, 246, 238, 0.96); box-shadow: 0 2px 18px rgba(0,0,0,0.06); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-size: 22px; letter-spacing: 0.02em; color: var(--deep); display: flex; align-items: center; }
.nav-logo-img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; font-size: 14px; letter-spacing: 0.02em; }
.nav-links a { padding: 6px 0; border-bottom: 1px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--gold-dark); }
.nav-links a.nav-cta { background: var(--gold-dark); color: var(--white) !important; padding: 10px 28px; border-radius: 4px; white-space: nowrap; border-bottom: none; transition: background 0.3s; }
.nav-links a.nav-cta:hover { background: var(--terracotta); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--deep); }
.nav-mobile { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: var(--sand-light); padding: 100px 32px 32px; flex-direction: column; gap: 24px;
    transition: right 0.4s var(--ease-out); z-index: 99; box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    display: flex; visibility: hidden;
  }
  .nav-mobile.open { right: 0; visibility: visible; }
  .nav-mobile a { font-size: 17px; }
  .nav-cta-mobile { background: var(--gold-dark); color: var(--white); padding: 14px; border-radius: 4px; text-align: center; margin-top: 16px; }
}

/* --- Hero (helles Bild: Text links, Bild als Karte rechts) --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--sand); padding: 130px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-content { max-width: 520px; }
.hero h1 { margin-bottom: 20px; font-size: clamp(46px, 6vw, 78px); }
.hero-sub { font-size: 19px; font-weight: 300; margin-bottom: 30px; color: var(--grey); }
.hero-facts { margin-top: 22px; font-size: 15px; color: var(--grey); letter-spacing: 0.02em; }
.hero-facts span { white-space: nowrap; }
.hero-facts span + span::before { content: '·'; margin: 0 8px 0 2px; color: var(--gold-dark); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  border: 1px solid var(--gold); border-radius: 30px; padding: 7px 18px;
  font-size: 13px; letter-spacing: 0.06em; color: var(--gold-dark); background: rgba(255,255,255,0.55);
}
.hero-figure { border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(46,38,32,0.14); aspect-ratio: 1 / 1; background: var(--sand-light); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 84% center; }
@media (max-width: 880px) {
  .hero { min-height: 0; padding: 108px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-figure { order: -1; aspect-ratio: 3 / 2; }
  .hero-figure img { object-position: 62% center; }
  .hero-content { max-width: none; text-align: center; margin: 0 auto; }
}

/* --- Intro / Pain --- */
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.intro-quote { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); line-height: 1.4; color: var(--deep); font-weight: 400; }
.intro-quote-wrap { border-left: 1px solid var(--gold); padding-left: 36px; }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; gap: 36px; } }
.pain-lead { font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 26px); line-height: 1.4; color: var(--deep); margin: 22px 0 0; max-width: 620px; }
.pain-list { display: grid; gap: 18px; margin-top: 32px; }
.pain-item { display: flex; gap: 14px; align-items: flex-start; }
.pain-icon { color: var(--gold-dark); font-size: 18px; line-height: 1.6; }

/* --- Anker / meaning --- */
.meaning-box {
  background: var(--white); border-radius: 8px; padding: 56px; box-shadow: 0 12px 40px rgba(46,38,32,0.06);
  max-width: 800px; margin: 0 auto;
}
.meaning-box .body-text { max-width: none; }
.meaning-box p + p { margin-top: 18px; }
.anchor-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 36px 0 8px; padding: 32px 0; border-top: 1px dotted var(--gold); border-bottom: 1px dotted var(--gold); }
.anchor-steps div { text-align: center; }
.anchor-steps strong { display: block; font-family: var(--font-head); font-weight: 400; font-size: 24px; color: var(--gold-dark); line-height: 1.25; margin-bottom: 6px; }
.anchor-steps span { font-size: 15px; color: var(--grey); line-height: 1.6; display: block; }
@media (max-width: 760px) { .meaning-box { padding: 36px 24px; } .anchor-steps { grid-template-columns: 1fr; gap: 22px; } }

/* --- Inhalte --- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card { background: var(--white); border-radius: 8px; padding: 36px 26px; text-align: center; box-shadow: 0 8px 28px rgba(46,38,32,0.05); }
.cat-icon { font-family: var(--font-head); font-size: 34px; color: var(--gold); margin-bottom: 10px; line-height: 1; }
.cat-title { font-family: var(--font-head); font-size: 23px; line-height: 1.2; margin-bottom: 12px; color: var(--deep); font-weight: 400; }
.cat-text { font-size: 15px; color: var(--grey); line-height: 1.7; }
.content-note { max-width: 720px; margin: 56px auto 0; text-align: center; }
.content-note .body-text { max-width: none; }
.content-note .intro-quote { margin-top: 28px; }

/* --- Danach --- */
.after-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 880px) { .after-grid { grid-template-columns: 1fr; gap: 32px; } }
.after-list { list-style: none; display: grid; gap: 26px; }
.after-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 18px; color: var(--sand); }
.after-list li::before { content: '✦'; color: var(--gold); font-size: 16px; line-height: 1.9; }
.after-close { margin-top: 44px; font-family: var(--font-head); font-size: clamp(22px, 2.6vw, 28px); line-height: 1.4; color: var(--sand-light); font-style: italic; }

/* --- Testimonials --- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 44px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border-radius: 8px; padding: 40px 34px 34px; box-shadow: 0 8px 28px rgba(46,38,32,0.05); font-size: 17px; font-style: italic; color: var(--ink); position: relative; }
.testi-card::before { content: '„'; position: absolute; top: 6px; left: 24px; font-family: var(--font-head); font-size: 72px; line-height: 1; color: var(--gold); opacity: 0.55; font-style: normal; }
.testi-card p { position: relative; padding-top: 18px; }
.testi-card cite { display: block; margin-top: 18px; font-style: normal; font-size: 13px; letter-spacing: 0.06em; color: var(--gold-dark); }

/* --- Für wen --- */
.forwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
@media (max-width: 760px) { .forwho-grid { grid-template-columns: 1fr; gap: 32px; } }
.forwho-col h3 { margin-bottom: 20px; }
.forwho-col ul { list-style: none; display: grid; gap: 14px; }
.forwho-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.forwho-col.no li::before { content: '–'; color: var(--terracotta); }
.forwho-col.yes li::before { content: '❥'; color: var(--gold-dark); }

/* --- Über mich --- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-photo {
  border-radius: 8px; overflow: hidden; height: 500px; box-shadow: 0 12px 40px rgba(46,38,32,0.1);
  background: linear-gradient(160deg, #d9c19a 0%, #c17b58 100%);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about-photo.is-empty img { display: none; }
@media (max-width: 880px) { .about-photo { height: 380px; } }
.credentials { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.credentials span { background: rgba(197,164,103,0.15); color: var(--gold-dark); font-size: 12.5px; padding: 6px 14px; border-radius: 20px; }
.about-sign { margin-top: 26px; font-family: var(--font-head); font-size: 24px; color: var(--deep); }
.about-sign small { display: block; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.06em; color: var(--grey); }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 40px auto 0; display: grid; gap: 1px; }
.faq-item { border-bottom: 1px solid rgba(197,164,103,0.3); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-head); font-size: 20px; color: var(--sand-light); list-style: none; padding-right: 32px; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 24px; color: var(--gold); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 14px; color: #c9bfb2; font-size: 16px; max-width: 680px; }

/* --- Buchen --- */
.book-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.book-head .body-text { margin: 18px auto 0; }
.book-facts { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; max-width: 820px; margin: 0 auto 40px; font-size: 15.5px; color: var(--grey); text-align: center; }
.book-facts strong { font-family: var(--font-head); font-weight: 400; font-size: 24px; color: var(--deep); margin-right: 4px; }
.book-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 40px; align-items: start; max-width: 1040px; margin: 0 auto; }
.book-deko { position: sticky; top: 110px; border-radius: 8px; overflow: hidden; box-shadow: 0 12px 40px rgba(46,38,32,0.1); background: var(--sand); }
.book-deko img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.book-form { background: var(--white); border-radius: 8px; padding: 28px; box-shadow: 0 12px 40px rgba(46,38,32,0.08); min-height: 420px; }
@media (max-width: 920px) {
  .book-grid { grid-template-columns: 1fr; max-width: 640px; }
  .book-deko { position: static; order: 2; }
  .book-deko img { aspect-ratio: 16 / 11; object-position: center 62%; }
}
@media (max-width: 560px) { .book-form { padding: 16px; } .book-facts { flex-direction: column; gap: 6px; margin-bottom: 32px; } }
.book-signoff { margin-top: 56px; text-align: center; font-family: var(--font-head); font-size: 26px; color: var(--deep); font-style: italic; }
.book-signoff small { display: block; margin-top: 4px; font-family: var(--font-body); font-style: normal; font-size: 14px; letter-spacing: 0.06em; color: var(--grey); }

/* --- Footer --- */
footer { background: #24353d; color: #c9bfb2; padding: 56px 0 28px; text-align: center; font-size: 14px; }
.footer-logo-img { height: 44px; width: auto; margin: 0 auto 8px; filter: brightness(0) invert(1) opacity(0.92); }
footer a { color: var(--sand); }
footer .footer-links { display: flex; justify-content: center; gap: 24px; margin: 18px 0; flex-wrap: wrap; }

/* --- Sticky mobile CTA --- */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(250,246,238,0.96); box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(110%); transition: transform 0.4s var(--ease-out);
  }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta span { font-family: var(--font-head); font-size: 18px; color: var(--deep); line-height: 1.2; }
  .sticky-cta small { display: block; font-family: var(--font-body); font-size: 12px; color: var(--grey); }
  .sticky-cta .btn-primary { padding: 13px 24px; font-size: 14px; white-space: nowrap; }
  footer { padding-bottom: 96px; }
}

/* --- Scroll fade-in --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 560px) { section { padding: 72px 0; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}
