/* =====================================================
   MOJO – Psychologische Regeneration
   styles.css
   ===================================================== */

/* ── Tokens ──────────────────────────────────────────── */
:root {
  --ink-on-dark:     #FFFFFF;
  --aubergine:       #50285A;
  --aubergine-bright:#6A3A75;
  --sage-light:      #C3DCB2;
  --green-dark:      #28643C;
  --warm-bg:         #EFE9E1;
  --text-main:       #463D52;
  --text-strong:     #2B2630;
  --text-mid:        #4E4853;
  --text-muted:      #8A7D92;
  --border-subtle:   rgba(43,38,48,.09);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

/* ── Typography helpers ──────────────────────────────── */
-webkit-font-smoothing: antialiased;

/* =====================================================
   NAV
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem clamp(1.2rem, 4vw, 2.8rem);
  background: #17141C;
  border-bottom: 1px solid rgba(195,220,178,.15);
  transition: background .3s ease;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex: none;
  text-decoration: none;
}
.nav__brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(.75rem, 1.4vw, .92rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sage-light);
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav__phone:hover { color: #fff; }
.nav__name {
  font-family: "Lato", sans-serif;
  font-size: .82rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  flex-shrink: 0;
}
.nav__links a {
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .6rem 1.3rem;
  border-radius: 100px;
  background: var(--aubergine);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--aubergine-bright); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__name   { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
}
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(15,17,21,.97);
  z-index: 99;
  padding: 1.5rem clamp(1.2rem, 4vw, 2.8rem) 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 1.1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  letter-spacing: .04em;
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile .nav__cta {
  display: inline-flex;
  width: fit-content;
  margin-top: .4rem;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 94svh, 940px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-on-dark);
  font-family: "Montserrat", system-ui, sans-serif;
  padding: clamp(6rem, 10vw, 8rem) 1.5rem clamp(4rem, 8vw, 7rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 95% at 50% 50%, rgba(15,17,21,.30) 0%, rgba(15,17,21,.54) 70%, rgba(11,13,17,.66) 100%),
    linear-gradient(180deg, rgba(17,19,23,.40) 0%, rgba(26,20,32,.52) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.brand {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 5.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--sage-light);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.brand .by {
  margin-left: .5em;
  font-size: .42em;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: none;
  color: rgba(255,255,255,.72);
  vertical-align: .12em;
}
.anchor {
  margin: 1.6rem auto 0;
  max-width: 50ch;
  font-family: "Lato", system-ui, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.52;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 16px rgba(0,0,0,.55);
}
.motto {
  margin: 1.2rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(.9rem, 1.55vw, 1.02rem);
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--sage-light);
  text-shadow: 0 1px 14px rgba(0,0,0,.5);
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 2.3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn .ico { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--aubergine); color: #fff; box-shadow: 0 12px 30px -14px rgba(0,0,0,.6); }
.btn--primary:hover { background: var(--aubergine-bright); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-2px); }
.btn--ghost .arrow { transition: transform .2s ease; }
.btn--ghost:hover .arrow { transform: translateX(3px); }

@media (max-width: 480px) { .btn { width: 100%; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* =====================================================
   CREDBAR
   ===================================================== */
.credbar {
  background: #fff;
  padding: 1.4rem 1.5rem;
}
.credbar__row {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
}
.cred-badge {
  height: 62px;
  width: auto;
  display: block;
  flex: none;
}
.cred-item {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #4E4853;
}
.cred-item svg { width: 1.05em; height: 1.05em; color: var(--aubergine); flex: none; }
.cred-person { flex-direction: column; align-items: center; gap: .05em; line-height: 1.25; }
.cred-name { font-weight: 500; color: #4E4853; }
.cred-role { font-size: .72rem; font-weight: 500; letter-spacing: .03em; color: #6A6470; }
.cred-strong { font-weight: 700; color: #2B2630; }
.cred-sep { width: 1px; height: 18px; background: rgba(0,0,0,.14); }
@media (max-width: 600px) {
  .cred-sep { display: none; }
  .credbar__row { gap: .7rem 1rem; }
}

/* =====================================================
   INTRO
   ===================================================== */
.intro { background: var(--warm-bg); padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.intro__in { max-width: 680px; margin: 0 auto; text-align: center; }
.intro__claim {
  margin: 0 0 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.intro__lead {
  margin: 0 0 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--aubergine);
}
.intro__text {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  line-height: 1.72;
  color: var(--text-main);
}
.intro__tag {
  margin: 2.4rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--aubergine);
}
.intro__tag span { color: var(--green-dark); padding: 0 .2em; }

/* =====================================================
   QUOTE BAND
   ===================================================== */
.quote {
  background: var(--aubergine);
  color: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}
.quote__in { max-width: 780px; margin: 0 auto; text-align: center; }
.quote__mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: .4;
  color: var(--sage-light);
  opacity: .5;
  margin-bottom: .35em;
}
.quote__text {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.5;
  color: rgba(255,255,255,.96);
}
.quote__term {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--sage-light);
}

/* =====================================================
   SECTION SYSTEM
   ===================================================== */
.sec { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.sec--light  { background: #fff; }
.sec--warm   { background: var(--warm-bg); }
.sec--plum   { background: var(--aubergine); color: #fff; }
.sec--green  { background: var(--green-dark); color: #fff; }
.sec__in     { max-width: 1040px; margin: 0 auto; }
.sec__head   { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }

.kicker {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.sec--plum  .kicker { color: var(--sage-light); }
.sec--green .kicker { color: var(--sage-light); }

.sec__head h2 {
  margin: .7rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--text-strong);
}
.sec--plum  .sec__head h2 { color: #fff; }
.sec--green .sec__head h2 { color: #fff; }

.sec__lead {
  margin: 1.1rem auto 0;
  max-width: 660px;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.16rem);
  line-height: 1.7;
  color: var(--text-main);
}
.sec--plum  .sec__lead { color: rgba(255,255,255,.9); }
.sec--green .sec__lead { color: rgba(255,255,255,.92); }

/* =====================================================
   GRID + CARD
   ===================================================== */
.grid   { display: grid; gap: 1.1rem; }
.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: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(80,60,50,.14);
  border-color: #9B6BAE;
  border-width: 2px;
}
.sec--light .card { background: #FAF7F2; }
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--aubergine);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .8rem;
}
.card h3 { margin: 0 0 .5rem; font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 1.06rem; color: var(--text-strong); }
.card .sub { display: block; font-family: "Lato", sans-serif; font-style: italic; font-size: .9rem; color: var(--green-dark); margin: -.2rem 0 .6rem; }
.card p { margin: 0; font-family: "Lato", sans-serif; font-size: .96rem; line-height: 1.6; color: var(--text-mid); }

/* =====================================================
   THOUGHT BUBBLES
   ===================================================== */
.thought {
  background: #FAF7F2;
  border-left: 3px solid var(--aubergine);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-main);
  text-align: left;
}

/* =====================================================
   CHECKLIST
   ===================================================== */
.checklist {
  max-width: 680px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: .85rem;
  text-align: left;
}
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  color: var(--text-main);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green-dark);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.quote-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem 1.2rem 1.2rem;
  text-align: left;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quote-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(80,60,50,.14);
}
.quote-card::before {
  content: '\201C';
  font-family: 'Satisfy', cursive;
  font-size: 5rem;
  line-height: 1;
  color: #9B6BAE;
  opacity: .8;
  position: absolute;
  top: .1rem;
  left: .6rem;
}
.quote-card p { margin: 0; font-family: "Lato", sans-serif; font-style: italic; font-size: .98rem; line-height: 1.55; color: var(--text-main); }
.quote-card .who { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .04em; color: var(--aubergine); }

/* =====================================================
   MEMORY TAGS
   ===================================================== */
.mem { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 1.5rem 0; }
.mem span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--green-dark);
  background: #EAF1E7;
  border-radius: 100px;
  padding: .5rem 1.1rem;
}
.mem .mem--purple { background: #8246AF; color: #fff; }
.mem .mem--blue   { background: #4FA3D1; color: #fff; }
.mem .mem--yellow { background: #E8B84B; color: #3A2E14; }

/* =====================================================
   IMAGE PLACEHOLDER
   ===================================================== */
.imgph {
  margin: 2rem auto 0;
  max-width: 780px;
  aspect-ratio: 16/7;
  border: 1px dashed rgba(80,40,90,.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #FAF7F2;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq { max-width: 680px; margin: 0 auto; display: grid; gap: .6rem; }
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  background: #f3eef7;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-strong);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--aubergine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  font-family: "Lato", sans-serif;
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text-main);
}
.faq-item .faq-body p { margin: 0 0 .8rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* =====================================================
   CTA BUTTONS (section-level)
   ===================================================== */
.cta-c { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .5rem; }
.btn2 {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}
.btn2 .ico { width: 1.05em; height: 1.05em; flex: none; }
.btn2--solid      { background: #fff; color: var(--aubergine); }
.btn2--solid:hover { transform: translateY(-2px); background: var(--sage-light); }
.btn2--ghost      { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn2--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.btn2--green      { background: var(--green-dark); color: #fff; }
.btn2--green:hover { transform: translateY(-2px); background: #1F4F2E; }
.btn2--greenline  { background: #fff; color: var(--green-dark); border: 1px solid var(--green-dark); }
.btn2--greenline:hover { transform: translateY(-2px); background: #EAF1E7; }
.sec--green .btn2--solid:hover { background: var(--sage-light); }
@media (prefers-reduced-motion: reduce) { .btn2 { transition: none; } }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #fff;
  color: rgba(0,0,0,.55);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.8rem);
}
.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #307848;
  margin: 0 0 .5rem;
}
.footer__sub {
  font-family: "Lato", sans-serif;
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(0,0,0,.45);
  margin: 0;
}
.footer__col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  margin: 0 0 .8rem;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.footer__col ul li a {
  font-family: "Lato", sans-serif;
  font-size: .88rem;
  color: rgba(0,0,0,.55);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__col ul li a:hover { color: #1F4A30; }
.footer__bottom {
  max-width: 1040px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.1);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-family: "Lato", sans-serif;
  font-size: .8rem;
  color: rgba(0,0,0,.35);
  margin: 0;
}
.footer__legal {
  display: flex;
  gap: 1.4rem;
}
.footer__legal a {
  font-family: "Lato", sans-serif;
  font-size: .8rem;
  color: rgba(0,0,0,.38);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }
