/* ==========================================================================
   Martha Dietrich Coaching — Website Design System
   Farben/Typo/Layout nach context/brand-visual-identity.md
   Headline-Ersatz: Outfit (statt Glacial Indifference, nicht als Webfont verfügbar)
   Fließtext: Raleway (echte Markenschrift, als Google Font verfügbar)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800&family=Raleway:wght@400;500;600;700&display=swap');

:root {
  /* Bühnenmomente-Ebene */
  --petrol-satt: #2f6f6d;
  --beere-satt: #9C3D5E;

  /* Alltagsebene */
  --creme: #F5F0E6;
  --petrol-gedeckt: #7C9B93;
  --beere-gedeckt: #C4899C;

  --weiss: #FFFDF9;
  --text-dunkel: #2b2b28;
  --text-hell: #6b6b63;

  --font-headline: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;

  --max-width: 1140px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--text-dunkel);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--petrol-satt);
}

h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); }

p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--beere-satt);
  margin: 0 0 14px;
  display: inline-block;
}

.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-dunkel);
}

.akzent { color: var(--beere-satt); }

.unterstrichen {
  border-bottom: 3px solid var(--beere-satt);
  padding-bottom: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--beere-satt);
  color: var(--weiss);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(156, 61, 94, 0.32); }

.btn-secondary {
  background: transparent;
  color: var(--petrol-satt);
  border-color: var(--petrol-satt);
}
.btn-secondary:hover { background: var(--petrol-satt); color: var(--weiss); }

.btn-ghost-light {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(47, 111, 109, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 21px;
  color: var(--petrol-satt);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dunkel);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--petrol-satt);
  border-bottom-color: var(--beere-satt);
}

.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--petrol-satt);
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--weiss);
    box-shadow: 0 12px 24px rgba(43, 43, 40, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links a { padding: 16px 24px; border-bottom: 1px solid rgba(43,43,40,0.06); }
  .nav-cta { padding: 16px 24px 22px; margin-left: 0; }
  .nav-toggle:checked ~ .nav-links { max-height: 520px; }
  .nav-toggle-label { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}

.hero::before {
  content: "M";
  position: absolute;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 620px;
  line-height: 1;
  color: rgba(47, 111, 109, 0.06);
  right: -140px;
  top: -160px;
  z-index: 0;
  pointer-events: none;
}

.hero-block {
  position: absolute;
  width: 46%;
  height: 130%;
  top: -15%;
  right: -8%;
  background: var(--petrol-satt);
  transform: rotate(-6deg);
  z-index: 0;
  opacity: 0.08;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 { color: var(--text-dunkel); }
.hero h1 .akzent { color: var(--beere-satt); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-hinweis {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-hell);
}

/* ---------- Section helpers ---------- */

section { padding: 84px 0; }

.section-petrol {
  background: var(--petrol-satt);
  color: var(--weiss);
}
.section-petrol h2, .section-petrol h3 { color: var(--weiss); }
.section-petrol .eyebrow { color: var(--beere-gedeckt); }

.section-tight { padding: 56px 0; }

.section-header {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids / Cards ---------- */

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

.card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(47, 111, 109, 0.08);
}

.card h3 { margin-bottom: 12px; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--creme);
  color: var(--petrol-satt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  margin-bottom: 18px;
}

/* Foto-Platzhalter — hier später echtes Foto von Martha einsetzen (siehe brand-visual-identity.md: keine Stockfotos) */
.foto-platzhalter {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--petrol-gedeckt), var(--petrol-satt));
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 24px;
  min-height: 340px;
}

/* Echtes Foto — ersetzt .foto-platzhalter, gleiches Seitenverhältnis/Rundung */
.foto-echt {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(47, 111, 109, 0.16);
}

/* Kleineres, ergänzendes Foto innerhalb eines Textblocks */
.foto-inline {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(47, 111, 109, 0.14);
  margin-top: 24px;
}

/* ---------- Methode-Steps ---------- */

.methode-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: methode;
}
@media (max-width: 900px) { .methode-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .methode-steps { grid-template-columns: 1fr; } }

.methode-step {
  position: relative;
  padding: 26px 20px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
}
.methode-step::before {
  counter-increment: methode;
  content: counter(methode, decimal-leading-zero);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 13px;
  color: var(--beere-gedeckt);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}
.methode-step h4 {
  color: var(--weiss);
  font-size: 18px;
  margin-bottom: 6px;
}
.methode-step p { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }

/* ---------- Pricing / Angebot Cards ---------- */

.angebot-card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: 0 4px 24px rgba(47, 111, 109, 0.08);
  border-top: 6px solid var(--petrol-satt);
  display: flex;
  flex-direction: column;
}
.angebot-card.beere { border-top-color: var(--beere-satt); }
.angebot-card.coming-soon { border-top-style: dashed; opacity: 0.94; }

.angebot-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--creme);
  color: var(--petrol-satt);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.angebot-badge.beere { background: rgba(156,61,94,0.1); color: var(--beere-satt); }

.angebot-preis {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 42px;
  color: var(--petrol-satt);
  margin: 6px 0 4px;
}
.angebot-preis span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-hell);
  font-family: var(--font-body);
}

.angebot-liste {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  flex-grow: 1;
}
.angebot-liste li {
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid rgba(43,43,40,0.07);
  font-size: 15px;
}
.angebot-liste li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--beere-satt);
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid rgba(47,111,109,0.15);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 17px;
  color: var(--petrol-satt);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--beere-satt);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--text-dunkel);
}

/* ---------- Form ---------- */

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--petrol-satt);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 2px solid rgba(47,111,109,0.18);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--weiss);
  color: var(--text-dunkel);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--beere-satt);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ---------- Footer ---------- */

.site-footer {
  background: #24413f;
  color: rgba(255,255,255,0.82);
  padding: 56px 0 30px;
}
.site-footer a { text-decoration: none; color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--beere-gedeckt); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-headline);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--beere-gedeckt);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ---------- Legal pages ---------- */

.legal-content h2 { margin-top: 1.4em; }
.legal-content { max-width: 760px; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 14px; color: var(--text-hell); }
