/* Find your path home — sarahtadmoute.ch
   Facelift 2026: kosmisch, ruhig, edel. Farbwelt identisch mit Inner Home & Soul Guide. */

:root {
  --black: #050b0a;
  --petrol: #0b2a26;
  --petrol-light: #0f4a42;
  --teal: #1a6b60;
  --gold: #c9a45c;
  --gold-soft: #e6c77a;
  --gold-deep: #8a6a35;
  --sand: #d8c3a0;
  --cream: #f4efe6;
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --accent-serif: "EB Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 125%; }

body {
  margin: 0;
  background: radial-gradient(ellipse at top, var(--petrol-light) 0%, var(--black) 65%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

#cursor-light {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 0.4s ease;
  background: radial-gradient(220px circle at var(--lx, 50%) var(--ly, 50%),
    rgba(230, 199, 122, 0.18), rgba(230, 199, 122, 0.05) 45%, transparent 72%);
  mix-blend-mode: screen;
}
#cursor-light.visible { opacity: 1; }

main, footer.site-footer { position: relative; z-index: 2; }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0 0 16px; }
h1 .accent {
  font-family: var(--accent-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
  font-size: 1.25em;
  padding: 0 0.05em;
}
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 20px; }
h3 { font-size: 1.35rem; margin: 0 0 12px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold-soft);
  margin: 0 0 14px;
}

.muted { color: var(--sand); }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--cream); }

/* ---------- Navigation ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 11, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 40px; height: 40px; animation: logo-glow 3s ease-in-out infinite; }
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(230, 199, 122, 0.5)); }
  50% { filter: drop-shadow(0 0 14px rgba(230, 199, 122, 0.95)); }
}
@media (prefers-reduced-motion: reduce) { .nav-brand img { animation: none; filter: drop-shadow(0 0 8px rgba(230, 199, 122, 0.7)); } }
.nav-brand span {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.25rem; color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-brand small { display: block; font-family: var(--sans); font-style: normal; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); }

nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); padding: 6px 0; border-bottom: 1px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] {
  color: var(--gold-soft); border-bottom-color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--black); border: none;
}
.btn-gold:hover { box-shadow: 0 0 24px rgba(230, 199, 122, 0.45); color: var(--black); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--gold-soft);
  border: 1px solid rgba(201, 164, 92, 0.55);
}
.btn-outline:hover { border-color: var(--gold-soft); color: var(--cream); background: rgba(201, 164, 92, 0.08); }
.nav-cta { padding: 10px 22px; font-size: 0.75rem; }

/* Mobile-Navigation */
.nav-toggle {
  display: none; background: none; border: none; color: var(--gold-soft);
  font-size: 1.8rem; cursor: pointer; padding: 4px 10px; line-height: 1;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(5, 11, 10, 0.97);
    border-bottom: 1px solid rgba(201, 164, 92, 0.25);
    padding: 12px 0 20px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 13px 24px; width: 100%; text-align: center; border-bottom: none; }
  .nav-cta { margin: 10px 24px 0; }
}

/* ---------- Abschnitte ---------- */

section { padding: 88px 24px; }
.wrap { max-width: 1120px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }
.center { text-align: center; }

.divider {
  width: 72px; height: 1px; margin: 26px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
}
.divider-left { margin: 26px 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 100px;
}
.hero .lead {
  font-size: 1.15rem; color: var(--sand);
  max-width: 640px; margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-hint { margin-top: 14px; font-size: 0.8rem; color: var(--sand); letter-spacing: 0.08em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft); font-size: 1.5rem; text-decoration: none;
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 26px 4px rgba(230, 199, 122, 0.45);
}
.scroll-cue:hover { border-color: rgba(230, 199, 122, 0.9); box-shadow: 0 0 36px 6px rgba(230, 199, 122, 0.65); }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); box-shadow: 0 0 26px 4px rgba(230, 199, 122, 0.45); }
  50% { transform: translateX(-50%) translateY(10px); box-shadow: 0 0 40px 8px rgba(230, 199, 122, 0.75); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* Karten */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(6px);
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Weg-Stufen (Fundament-Treppe) */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto 1fr auto auto; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  display: grid; grid-template-rows: subgrid; grid-row: span 5;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.step:hover { border-color: rgba(230, 199, 122, 0.6); transform: translateY(-4px); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -16px; left: 26px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--petrol);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step .tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; align-self: start; }
.step h3 { font-size: 1.3rem; align-self: start; }
.step p { font-size: 0.95rem; color: var(--sand); align-self: start; }
.step .price { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-soft); margin: 10px 0 16px; align-self: start; }
.step .btn { font-size: 0.72rem; padding: 11px 20px; align-self: start; }

/* Angebots-Karten */
.offer-card { display: flex; flex-direction: column; }
.offer-card h3 { color: var(--gold-soft); }
.offer-card .subtitle { font-family: var(--serif); font-size: 1.25rem; color: var(--cream); margin-bottom: 14px; }
.offer-card p { color: var(--sand); font-size: 0.97rem; flex: 1; }
.offer-card .btn { align-self: flex-start; margin-top: 18px; }

@media (min-width: 901px) {
  .offer-grid { grid-template-rows: auto auto 1fr auto auto; }
  .offer-grid .offer-card { display: grid; grid-template-rows: subgrid; grid-row: span 5; }
  .offer-grid .offer-card h3,
  .offer-grid .offer-card .subtitle,
  .offer-grid .offer-card p { align-self: start; }
  .offer-grid .offer-card .btn { align-self: start; justify-self: stretch; text-align: center; margin-top: 0; }
}

/* Leistungs-Boxen (was ist enthalten) */
.includes { list-style: none; padding: 0; margin: 0 0 8px; }
.includes li { padding: 9px 0 9px 30px; position: relative; color: var(--sand); border-bottom: 1px solid rgba(201, 164, 92, 0.12); font-size: 0.97rem; }
.includes li:last-child { border-bottom: none; }
.includes li::before { content: "✦"; position: absolute; left: 4px; color: var(--gold); font-size: 0.8rem; top: 12px; }

.price-big { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); margin: 18px 0 6px; }

/* Checklisten (für dich, wenn ...) */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 8px 0 8px 30px; position: relative; color: var(--sand); }
.checklist li::before { content: "☾"; position: absolute; left: 2px; color: var(--gold); top: 8px; }

/* Zweispaltiges Text/Bild-Layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { width: 100%; border-radius: var(--radius); border: 1px solid rgba(201, 164, 92, 0.3); }

.portrait-frame { position: relative; }
.portrait-frame::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid rgba(201, 164, 92, 0.4); border-radius: var(--radius);
  z-index: -1;
}

/* Zitat */
.quote {
  text-align: center; padding: 100px 24px;
}
.quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-style: italic; color: var(--cream); max-width: 780px; margin: 0 auto 18px;
  line-height: 1.45;
}
.quote cite { font-style: normal; letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.8rem; color: var(--gold-soft); }

/* Kontakt-Formular */
form.contact label { display: block; margin: 18px 0 6px; font-size: 0.88rem; color: var(--gold-soft); letter-spacing: 0.06em; }
form.contact input, form.contact textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: rgba(0, 0, 0, 0.25); color: var(--cream);
  font-size: 1rem; font-family: var(--sans);
}
form.contact input:focus, form.contact textarea:focus { outline: none; border-color: var(--gold); }
form.contact .consent { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; font-size: 0.85rem; color: var(--sand); }
form.contact .consent input { width: auto; margin-top: 4px; }
form.contact button { display: block; margin: 6px auto 0; }

/* Blog */
.post-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.post-card img { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; object-position: 50% 50%; }
.post-card img[src*="sarah-bruecke"] { object-position: 50% 15%; }
.post-card .post-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; }
article.post { max-width: 720px; margin: 0 auto; }
article.post p { color: var(--cream); opacity: 0.92; }
article.post h2 { font-size: 1.6rem; margin-top: 44px; }
article.post img.cover { width: 100%; border-radius: var(--radius); margin-bottom: 36px; border: 1px solid rgba(201, 164, 92, 0.3); }

/* FAQ */
details.faq {
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 24px;
  margin-bottom: 14px;
}
details.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-soft);
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 1.3rem; line-height: 1; }
details.faq[open] summary::after { content: "–"; }
details.faq p { color: var(--sand); padding-bottom: 18px; margin: 0; }

/* Rechtstexte */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin-top: 44px; }
.legal p, .legal li { color: var(--sand); font-size: 0.95rem; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  background: rgba(5, 11, 10, 0.6);
  padding: 56px 24px 36px;
  text-align: center;
}
.footer-quote { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--sand); max-width: 560px; margin: 0 auto 8px; }
.footer-quote-cite { letter-spacing: 0.3em; font-size: 0.72rem; text-transform: uppercase; color: var(--gold-soft); }
.footer-links { margin: 30px 0 14px; display: flex; gap: 22px; align-items: center; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; }
.footer-links .icon-link { display: inline-flex; }
.footer-links .icon-link svg { width: 20px; height: 20px; transition: opacity 0.2s ease; }
.footer-links .icon-link:hover svg { opacity: 0.75; }
.footer-copy { font-size: 0.78rem; color: rgba(216, 195, 160, 0.7); }

/* Nach-oben-Pfeil */
#to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.6);
  background: rgba(5, 11, 10, 0.8);
  color: var(--gold-soft);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}
#to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
#to-top:hover { box-shadow: 0 0 18px rgba(230, 199, 122, 0.4); color: var(--cream); }

/* Sanftes Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  #starfield, #cursor-light { display: none; }
}

@media print {
  #starfield, #cursor-light { display: none; }
  body { background: #fff; color: #000; }
}
