/* =========================================================
   Anna Burhoff — Coaching für Frauen im Umbruch
   Zentrales Stylesheet
   Palette: Ozeanblau + Azur + Eisweiß, frisch Palette: Marineblau + Bordeaux + Creme, warm & ruhig klar
   ========================================================= */

:root {
  --navy:        #1b2a6b;
  --navy-deep:   #141f54;
  --bordeaux:    #8a2330;
  --bordeaux-soft:#a9434f;
  --cream:       #faf6f0;
  --cream-2:     #f3ece1;
  --paper:       #fffdf9;
  --ink:         #2a2730;
  --muted:       #6c6770;
  --line:        #e7ddcf;

  --warm-grad: linear-gradient(135deg, #f7dcc6 0%, #f3c8d4 50%, #e6cbe6 100%);
  --shadow-sm: 0 2px 10px rgba(20, 31, 84, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 31, 84, 0.10);

  --maxw: 1120px;
  --radius: 18px;
  --radius-sm: 12px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; color: var(--navy-deep); }

p { margin: 0 0 1.1em; }

a { color: var(--bordeaux); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bordeaux-soft); }

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bordeaux);
  margin: 0 0 .9rem;
}

.lead { font-size: 1.2rem; color: var(--muted); }

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tint { background: var(--cream-2); }
.section--navy { background: var(--navy); color: #ede9f4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: #d8b4bb; }

.center { text-align: center; }
.measure { max-width: 680px; }
.measure.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--bordeaux); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bordeaux-soft); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--cream-2); color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy);
  object-fit: contain;
  padding: 3px;
  box-shadow: var(--shadow-sm);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.05;
}
.brand__name span { display: block; white-space: nowrap; font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bordeaux); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 1.3rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--bordeaux); transition: width .2s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--navy); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links .btn { color: #fff; }
.nav__links .btn::after { display: none; }

.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
}
.nav__toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(243, 200, 212, .55), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(230, 203, 230, .45), transparent 55%),
    var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.8rem; max-width: 32ch; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__note { margin-top: 1.4rem; font-size: .95rem; color: var(--muted); }
.hero__note strong { color: var(--navy); }

.hero__monogram {
  position: absolute;
  right: -60px; top: 50%; transform: translateY(-50%);
  width: 520px; opacity: .05; pointer-events: none;
}

/* ---------- Portrait ---------- */
.portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__frame {
  position: absolute; inset: 14px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 12px; pointer-events: none;
}
/* Fallback-Platzhalter, sichtbar wenn portrait.jpg fehlt */
.portrait--empty {
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(243,200,212,.5), transparent 60%),
    var(--cream-2);
}
.portrait--empty .ph-mark { width: 96px; opacity: .8; margin: 0 auto 1rem; }
.portrait--empty .ph-text { color: var(--muted); font-size: .92rem; max-width: 22ch; margin: 0 auto; padding: 0 1rem; }
.portrait--empty .ph-text strong { color: var(--navy); display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: .3rem; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--warm-grad);
  margin-bottom: 1.1rem; font-size: 1.5rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }

.section--navy .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}
.section--navy .card h3 { color: #fff; }
.section--navy .card p { color: #cfd0e4; }

/* ---------- Method / steps list ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; max-width: 720px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step__num {
  counter-increment: step;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem;
  flex: 0 0 auto;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: .2rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Split blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

/* ---------- Lists ---------- */
.ticks { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.ticks li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.ticks li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--bordeaux); font-size: 1rem;
}

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.tag {
  font-size: .85rem; font-weight: 500;
  padding: .4rem .9rem; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--line); color: var(--navy);
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: .6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-list .ci {
  width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
  background: var(--warm-grad); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-list .cl-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0; }
.contact-list .cl-value { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin: 0; }
.contact-list .cl-value a { color: var(--navy); }
.contact-list .cl-value a:hover { color: var(--bordeaux); }

.note-box {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(243,200,212,.5), transparent 60%),
    var(--cream);
  padding: clamp(54px, 8vw, 96px) 0 clamp(36px, 5vw, 60px);
  text-align: center;
}
.page-hero .lead { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #c9cbe4;
  padding: 56px 0 28px;
  font-size: .95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--serif); font-weight: 500; margin: 0 0 1rem; font-size: 1.1rem; }
.site-footer a { color: #c9cbe4; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; background: #fff; padding: 3px; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: #9b9ec0;
}
.footer-bottom a { color: #9b9ec0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 380px; margin: 0 auto; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    transform: translateY(-130%); transition: transform .28s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 12px; width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Sprachumschalter (DE / PL) + zweisprachige Inhalte
   ========================================================= */
.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
  flex: 0 0 auto;
}
.lang-switch button {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem .7rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

/* Zweisprachige Blöcke: jeweils nur die aktive Sprache zeigen */
html[data-lang="de"] .lang-pl,
html[data-lang="pl"] .lang-de { display: none !important; }

/* =========================================================
   Kontaktformular
   ========================================================= */
.form { display: grid; gap: 1.1rem; max-width: 560px; }
.form label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 107, .12);
}
.form .consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.form .consent input { margin-top: .25rem; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--bordeaux); }
.form .req { color: var(--bordeaux); }
.form__hint { font-size: .85rem; color: var(--muted); margin: 0; }
.form__status { font-size: .95rem; font-weight: 600; margin: 0; min-height: 1.2em; }
.form__status.is-error { color: var(--bordeaux); }
.form__status.is-ok { color: #2e7d4f; }

/* Rechtstext-Seiten (Impressum / Datenschutz) */
.legal h2 { margin-top: 2.2rem; }
.legal h3 { margin-top: 1.6rem; }
.legal p, .legal li { color: var(--ink); }
.legal .muted { color: var(--muted); font-size: .95rem; }
