@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}/* ==========================================================================
   continue Coaching – Marina Thies
   Design-Tokens, Layout, Komponenten
   ========================================================================== */

:root {
  --creme:     #F4ECE1;
  --off:       #FDFBF8;
  --ink:       #3A3C31;
  --ink-deep:  #2E3028;
  --text:      #585A49;
  --sand:      #C9BFA9;
  --orange:    #E4815E;
  --rose:      #FBDCE5;
  --slate:     #3E4A52;
  --gold:      #CBA05E;
  --muted:     #8C8A80;

  --wrap:      1140px;
  --wrap-mid:  820px;
  --wrap-text: 780px;
  --pad-y:     96px;
  --pad-x:     28px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--ink); }

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

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout ------------------------------------------------------------- */

.wrap        { max-width: var(--wrap); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.wrap--mid   { max-width: var(--wrap-mid); }
.wrap--text  { max-width: var(--wrap-text); }
.band-off    { background: var(--off); }
.band-dark   { background: var(--ink); color: var(--creme); }

.grid        { display: grid; gap: 24px; }
.grid--2     { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3     { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4     { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.grid--photos{ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 44px; }

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

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 16px;
}
.h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 700; line-height: 1.12;
  color: var(--ink); margin: 0 0 26px; text-wrap: pretty;
}
.h2 {
  font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; line-height: 1.2;
  color: var(--ink); margin: 0 0 18px; text-wrap: pretty;
}
.h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 4px 0 10px; }
.lead { font-size: 17px; line-height: 1.7; margin: 0 0 20px; text-wrap: pretty; }
.body { font-size: 16px; line-height: 1.7; margin: 0; text-wrap: pretty; }
.band-dark .h2 { color: var(--creme); }
.band-dark .lead { color: rgba(244, 236, 225, 0.88); }

.intro { max-width: 620px; margin-bottom: 48px; }
.intro--wide { max-width: 680px; margin-bottom: 52px; }

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

.btn {
  display: inline-block; font-weight: 600; border-radius: 32px;
  white-space: nowrap; transition: filter 0.15s ease, background 0.15s ease;
}
.btn--primary { background: var(--orange); color: var(--off); font-size: 14px; padding: 16px 30px; }
.btn--primary:hover { filter: brightness(0.94); color: var(--off); }
.btn--lg { font-size: 14.5px; padding: 17px 32px; }
.btn--sm { font-size: 12.5px; padding: 12px 22px; border-radius: 30px; }
.btn--ink { color: var(--ink-deep); font-weight: 700; }
.btn--ink:hover { color: var(--ink-deep); }
.btn--ghost { font-size: 14px; padding: 16px 26px; border: 1px solid rgba(88, 90, 73, 0.28); }
.btn--ghost:hover { background: rgba(88, 90, 73, 0.06); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 236, 225, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(88, 90, 73, 0.12);
}
.site-header__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px;
  color: var(--text); letter-spacing: 0.3px; white-space: nowrap;
}
.logo .dot { color: var(--sand); }
.nav { display: flex; gap: 28px; font-size: 13px; font-weight: 500; flex-wrap: wrap; justify-content: flex-end; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(88, 90, 73, 0.28);
  border-radius: 50%; background: transparent; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px; padding: 0;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--text); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

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

.hero {
  max-width: var(--wrap); margin: 0 auto; padding: 80px var(--pad-x) 96px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px; align-items: center;
}
.hero__text p { font-size: 17px; line-height: 1.65; max-width: 30em; margin: 0 0 36px; text-wrap: pretty; }
.hero__figure { position: relative; }
.hero__figure::before {
  content: ""; position: absolute; inset: 22px -18px -18px 22px;
  background: var(--sand); border-radius: 200px 200px 8px 8px;
}
.hero__figure img {
  position: relative; width: 100%; border-radius: 200px 200px 8px 8px;
  object-fit: cover; aspect-ratio: 3 / 4;
}

/* --- Zitat-Bänder ------------------------------------------------------- */

.band-photo { background-size: cover; background-position: center; }
.band-photo--claim {
  background-color: var(--slate);
  background-image: linear-gradient(rgba(40, 49, 55, 0.78), rgba(40, 49, 55, 0.78)), url('../assets/sonnenuntergang.jpeg');
}
.band-photo--quote {
  background-color: var(--ink);
  background-image: linear-gradient(rgba(44, 46, 38, 0.7), rgba(44, 46, 38, 0.7)), url('../assets/sonnenuntergang.jpeg');
  background-position: center 65%;
}
.band-photo__inner { max-width: 900px; margin: 0 auto; padding: 104px var(--pad-x); text-align: center; }
.band-photo--quote .band-photo__inner { padding: 120px var(--pad-x); }
.claim {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; line-height: 1.28;
  color: var(--rose); margin: 0 0 28px; text-wrap: pretty;
}
.claim + p { font-size: 17px; line-height: 1.7; margin: 0 auto; max-width: 56ch; color: var(--rose); text-wrap: pretty; }
.pullquote {
  font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; line-height: 1.35;
  color: var(--creme); margin: 0 0 26px; text-wrap: pretty;
}
.pullquote-source {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sand);
}

/* --- Über mich ---------------------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--text);
  background: var(--creme); padding: 9px 16px; border-radius: 20px;
}
.chip--light { background: var(--off); font-size: 12.5px; padding: 8px 14px; }
.photo-frame { border-radius: 10px; overflow: hidden; aspect-ratio: 3 / 4; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* --- Für wen ------------------------------------------------------------ */

.section-mark { position: relative; overflow: hidden; }
.watermark {
  position: absolute; z-index: 0; right: -3%; bottom: 24px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(72px, 13vw, 180px); line-height: 1; color: var(--sand);
  opacity: 0.18; white-space: nowrap; pointer-events: none; user-select: none;
}
.section-mark > .layer { position: relative; z-index: 1; }
.signals {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px 56px; margin-bottom: 52px; max-width: 960px;
}
.signal { display: flex; gap: 16px; align-items: flex-start; }
.signal svg { flex-shrink: 0; }
.signal__title { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.signal p { font-size: 15px; line-height: 1.6; margin: 0; text-wrap: pretty; }
.closing { max-width: 660px; }
.closing__line {
  font-size: clamp(20px, 2.3vw, 26px); font-weight: 700; line-height: 1.35;
  color: var(--ink); margin: 0 0 12px; text-wrap: pretty;
}

/* --- Leistungen --------------------------------------------------------- */

.svc-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: center; margin-bottom: 48px;
}
.svc-head__text { max-width: 620px; }
.svc-head img { width: 100%; max-width: 500px; margin: 0 auto; height: auto; }
.tick-list { display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; line-height: 1.6; }
.tick-list div { display: flex; gap: 12px; }
.tick-list .marker { color: var(--sand); }
.svc-card {
  border-radius: 14px; padding: 36px 32px; display: flex; flex-direction: column;
  gap: 16px; box-shadow: 0 6px 20px rgba(58, 60, 49, 0.1);
}
.svc-card--orange { background: var(--orange); }
.svc-card--gold   { background: var(--gold); }
.svc-card--slate  { background: var(--slate); }
.svc-card__head { display: flex; align-items: center; gap: 14px; }
.svc-card__head svg { flex-shrink: 0; }
.svc-card h3 { font-size: 21px; font-weight: 700; margin: 0; }
.svc-card p { font-size: 15px; line-height: 1.65; margin: 0; flex: 1; text-wrap: pretty; }
.svc-card__meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; }
.svc-card__link { font-size: 13.5px; font-weight: 700; }
.svc-card__link:hover { opacity: 0.7; }
.svc-card--orange, .svc-card--orange h3, .svc-card--orange p,
.svc-card--orange .svc-card__meta, .svc-card--orange .svc-card__link,
.svc-card--gold, .svc-card--gold h3, .svc-card--gold p,
.svc-card--gold .svc-card__meta, .svc-card--gold .svc-card__link { color: var(--ink-deep); }
.svc-card--slate, .svc-card--slate h3, .svc-card--slate p,
.svc-card--slate .svc-card__meta, .svc-card--slate .svc-card__link { color: var(--rose); }

/* --- Meine Arbeit ------------------------------------------------------- */

.card {
  background: var(--off); border-radius: 14px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 6px 20px rgba(58, 60, 49, 0.06);
}
.card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card__title { font-size: 18px; font-weight: 700; color: var(--ink); }
.card p { font-size: 14.5px; line-height: 1.65; margin: 0; text-wrap: pretty; }
.two-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px 56px; padding-top: 36px; border-top: 1px solid rgba(88, 90, 73, 0.16);
}
.col-title {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 16px;
}
.dot-list { display: flex; flex-direction: column; gap: 10px; }
.dot-list div { display: flex; gap: 10px; font-size: 15px; line-height: 1.55; }
.dot-list .marker { color: var(--orange); }

/* --- Haltung ------------------------------------------------------------ */

.value-card {
  background: var(--creme); border-radius: 14px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.value-card__title { font-size: 18px; font-weight: 700; color: var(--ink); }
.value-card p { font-size: 14.5px; line-height: 1.65; margin: 0; color: var(--text); text-wrap: pretty; }

/* --- Ablauf ------------------------------------------------------------- */

.timeline { display: flex; flex-direction: column; max-width: 760px; }
.step {
  position: relative; padding-left: 56px; padding-bottom: 40px;
  border-left: 1px solid rgba(201, 191, 169, 0.9); margin-left: 17px;
}
.step:last-child { border-left: none; padding-bottom: 0; }
.step__num {
  position: absolute; left: -18px; top: 0; width: 36px; height: 36px;
  border-radius: 50%; background: var(--off); border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text);
}
.step p { font-size: 15.5px; line-height: 1.65; margin: 0; max-width: 56ch; text-wrap: pretty; }
.step .chips { margin: 16px 0 0; gap: 8px; }

/* --- Stimmen ------------------------------------------------------------ */

.voices-head {
  display: flex; flex-wrap: wrap; gap: 36px 40px; align-items: flex-end;
  justify-content: space-between; padding-bottom: 44px; margin-bottom: 44px;
  border-bottom: 1px solid rgba(88, 90, 73, 0.16);
}
.voices-head__text { flex: 1 1 340px; min-width: 0; max-width: 480px; }
.stats { display: flex; flex-wrap: wrap; gap: 48px; flex: 0 0 auto; }
.stat__value { font-size: 44px; font-weight: 700; color: var(--orange); line-height: 1; }
.stat__value span { font-size: 20px; }
.stat__label { font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 8px; }
.voice {
  background: var(--off); border-radius: 14px; padding: 34px 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 6px 20px rgba(58, 60, 49, 0.07);
}
.voice p { font-size: 16.5px; line-height: 1.7; margin: 0; flex: 1; color: var(--text); text-wrap: pretty; }
.voice__source {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sand);
}

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

.faq { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid rgba(88, 90, 73, 0.16); }
.faq summary {
  cursor: pointer; padding: 22px 0; font-size: 16.5px; font-weight: 600;
  color: var(--ink); display: flex; justify-content: space-between;
  gap: 20px; align-items: center; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange); }
.faq summary .sign {
  color: var(--sand); font-size: 20px; font-weight: 400; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq details[open] summary .sign { transform: rotate(45deg); }
.faq p { font-size: 15.5px; line-height: 1.7; margin: 0 0 24px; max-width: 60ch; text-wrap: pretty; }

/* --- Kontakt ------------------------------------------------------------ */

.contact {
  max-width: var(--wrap); margin: 0 auto; padding: var(--pad-y) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px; align-items: start;
}
.contact h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.18; margin: 0 0 22px; color: var(--creme); }
.contact__lead { font-size: 16.5px; line-height: 1.7; color: rgba(244, 236, 225, 0.85); margin: 0 0 32px; max-width: 34em; text-wrap: pretty; }
.contact__details { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.contact__details a { color: rgba(244, 236, 225, 0.85); }
.contact__details a:hover { color: var(--creme); }
.socials { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px;
  font-weight: 600; color: var(--ink); background: var(--rose);
  padding: 11px 20px; border-radius: 24px; transition: filter 0.15s ease;
}
.social:hover { filter: brightness(0.96); color: var(--ink); }

.form {
  background: rgba(244, 236, 225, 0.06); border: 1px solid rgba(201, 191, 169, 0.28);
  border-radius: 14px; padding: 34px 32px;
}
.form__title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 12px; color: rgba(244, 236, 225, 0.7); }
.field input, .field textarea {
  font-family: inherit; font-size: 14px; color: var(--creme);
  background: rgba(244, 236, 225, 0.1); border: 1px solid transparent;
  border-radius: 8px; padding: 12px 14px; width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input { height: 44px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sand); background: rgba(244, 236, 225, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 236, 225, 0.4); }
.field--check { flex-direction: row; align-items: flex-start; gap: 11px; margin-bottom: 20px; }
.field--check input { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.field--check label { font-size: 12.5px; line-height: 1.55; color: rgba(244, 236, 225, 0.75); cursor: pointer; }
.field--check label a { color: var(--sand); text-decoration: underline; text-underline-offset: 2px; }
.form button {
  font-family: inherit; background: var(--orange); color: var(--off);
  font-size: 13.5px; font-weight: 600; padding: 14px 26px; border: none;
  border-radius: 30px; cursor: pointer; transition: filter 0.15s ease;
}
.form button:hover { filter: brightness(0.94); }
.form__note { font-size: 11.5px; line-height: 1.5; color: rgba(201, 191, 169, 0.8); margin: 14px 0 0; }
.form__note a { color: var(--sand); text-decoration: underline; text-underline-offset: 2px; }

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

.site-footer { background: var(--ink); color: rgba(244, 236, 225, 0.6); border-top: 1px solid rgba(201, 191, 169, 0.2); }
.site-footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 32px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
  align-items: center; font-size: 12.5px;
}
.site-footer .logo { font-size: 17px; color: var(--creme); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(244, 236, 225, 0.6); }
.footer-links a:hover { color: var(--creme); }

/* --- Rechtsseiten ------------------------------------------------------- */

.legal { max-width: var(--wrap-mid); margin: 0 auto; padding: 72px var(--pad-x) 96px; }
.legal h1 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 700; line-height: 1.15; color: var(--ink); margin: 0 0 24px; }
.legal h2 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.legal p { font-size: 16px; line-height: 1.75; margin: 0 0 22px; }
.legal p:last-of-type { margin-bottom: 36px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--orange); }
.legal ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.legal li { display: flex; gap: 10px; font-size: 15.5px; line-height: 1.6; }
.legal li::before { content: "•"; color: var(--sand); }
.legal__back { border-top: 1px solid rgba(88, 90, 73, 0.16); padding-top: 24px; }
.legal__back a { font-size: 14px; font-weight: 600; text-decoration: none; }
.legal-header { border-bottom: 1px solid rgba(88, 90, 73, 0.12); }
.legal-header .site-header__inner { max-width: var(--wrap-mid); padding: 20px var(--pad-x); }
.legal-header a.back { font-size: 13px; font-weight: 600; }
.site-footer--legal .site-footer__inner { max-width: var(--wrap-mid); }

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 900px) {
  :root { --pad-y: 72px; --pad-x: 24px; }
  .hero { padding: 56px 24px 72px; gap: 44px; }
  .band-photo__inner,
  .band-photo--quote .band-photo__inner { padding: 80px 24px; }
  .contact { gap: 44px; }
  .signals { gap: 26px 36px; }
}

@media (max-width: 760px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--creme); border-bottom: 1px solid rgba(88, 90, 73, 0.12);
    padding: 8px 24px 20px; font-size: 15px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(88, 90, 73, 0.08); }
  .nav a:last-child { border-bottom: none; }
  .site-header { position: sticky; }
  .site-header__inner { position: relative; gap: 14px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 560px) {
  :root { --pad-y: 60px; --pad-x: 20px; }
  .hero { padding: 44px 20px 60px; }
  .band-photo__inner,
  .band-photo--quote .band-photo__inner { padding: 64px 20px; }
  .svc-card { padding: 30px 24px; }
  .card, .value-card, .voice { padding: 26px 22px; }
  .form { padding: 26px 22px; }
  .step { padding-left: 44px; }
  .stats { gap: 32px; }
  .stat__value { font-size: 36px; }
  .watermark { font-size: 68px; bottom: 12px; }
  .legal { padding: 48px 20px 72px; }
}

@media print {
  .site-header, .nav-toggle, .btn, .socials { display: none !important; }
  body { background: #fff; }
}
