/* ============================================================
   Jasmin Spanitz — Ganzheitliche Frauengesundheit
   Mobile-first responsive stylesheet. Desktop = graceful expansion.
   No black anywhere. Salmon + warm neutrals.
   ============================================================ */

:root {
  --salmon: #C8705C;
  --salmon-deep: #A85848;
  --salmon-soft: #DDA080;
  --salmon-wash: #F0D8CE;

  --cream: #fffbf6;
  --sand: #e8dbc9;
  --sand-soft: #f4ecdd;
  --sand-deep: #d9c7b4;

  --ink: #5e4636;
  --ink-soft: #836a59;
  --ink-mute: #a89280;
  --cocoa: #6f5141;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: 22px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Type ---------- */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(40px, 8.5vw, 60px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.12;
}

em {
  font-style: italic;
  color: var(--salmon-deep);
}

p {
  margin: 0;
}

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--salmon-deep);
}

.kicker--light {
  color: var(--salmon-soft);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.section--tight {
  padding-block: clamp(36px, 6vw, 72px);
}

.measure {
  max-width: 620px;
}

.section-head {
  max-width: 720px;
}

.section-head .kicker {
  margin-bottom: 16px;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 50px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn--primary {
  background: var(--salmon);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--salmon-deep);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--salmon-deep);
}

.btn--cream:hover {
  background: #fff;
}

.btn--full {
  width: 100%;
}

.btn .arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--sand), 0 8px 24px rgba(94, 70, 54, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 360px) {
  .brand__name {
    letter-spacing: 0.18em;
    font-size: 13px;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 20px var(--gutter) 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease,
    visibility 0.32s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__links {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__links a {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
}

.mobile-menu__links a em {
  font-style: italic;
}

.mobile-menu .btn {
  margin-top: 36px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: 14px;
}

.hero__grid {
  display: grid;
  gap: 28px;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand-soft);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 46, 38, 0) 38%,
    rgba(61, 46, 38, 0.58) 100%
  );
}

.hero__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--cream);
}

.hero__caption h1 {
  color: var(--cream);
  margin-top: 12px;
}

.hero__caption h1 em {
  color: var(--salmon-soft);
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__lead {
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 30ch;
}

.hero__actions {
  margin-top: 26px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__micro {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ============================================================
   Pain points
   ============================================================ */
.pains__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sand);
}

.pains__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
}

.pains__list .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--salmon);
  margin-top: 9px;
}

/* ============================================================
   Method (Arbeitsweise) — rounded frame
   ============================================================ */
.method {
  background: var(--sand-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
}

.method__head {
  max-width: 620px;
}

.method__head h2 {
  margin-top: 14px;
}

.method__steps {
  margin-top: 32px;
  display: grid;
  gap: 26px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.step__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--salmon-deep);
  line-height: 1;
  padding-top: 4px;
}

.step h3 {
  font-size: 22px;
}

.step p {
  margin-top: 6px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   Offers (Angebote)
   ============================================================ */
.offers__grid {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.offer {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.offer--feature {
  background: var(--salmon-wash);
  border: 1.5px solid var(--salmon);
}

.tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
}

.tag--orientierung {
  background: var(--salmon-wash);
  color: var(--salmon-deep);
}

.tag--beliebt {
  background: var(--salmon);
  color: var(--cream);
}

.tag--tief {
  background: var(--sand-deep);
  color: var(--ink);
}

.offer h3 {
  margin-top: 16px;
  font-size: 26px;
}

.offer__note {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
}

.offer__foot {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.offer__price {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}

.offer__sub {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  margin-top: 4px;
}

.offer .btn {
  min-height: 44px;
  padding: 11px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.offers__note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 760px;
}

/* ============================================================
   Testimonial pull-quote
   ============================================================ */
.quote {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.quote svg {
  color: var(--salmon);
}

.quote blockquote {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   About
   ============================================================ */
.about__panel {
  background: var(--salmon-wash);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px);
}

.about__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about__photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about__text h2 {
  margin-top: 12px;
}

.about__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.about__text p:first-of-type {
  color: var(--ink);
}

.about__text .credentials {
  font-size: 15px;
}

/* ============================================================
   Stories
   ============================================================ */
.stories__grid {
  margin-top: 32px;
  display: grid;
  gap: 36px;
}

.story h3 {
  margin-top: 10px;
  font-size: clamp(26px, 3.5vw, 30px);
}

.story .kicker {
  font-size: 11px;
}

.story p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.story__marks {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mark {
  background: var(--salmon-wash);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.mark__k {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.mark__v {
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--salmon-deep);
}

/* ============================================================
   Workshops
   ============================================================ */
.workshops__list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.workshop {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.workshop:hover {
  border-color: var(--salmon);
}

.workshop h3 {
  font-size: 19px;
}

.workshop__meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.workshop__when {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--salmon-deep);
  white-space: nowrap;
}

/* ============================================================
   CTA strip
   ============================================================ */
.cta {
  background: var(--salmon);
  border-radius: var(--radius-lg);
  color: var(--cream);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}

.cta .kicker {
  color: var(--cream);
  opacity: 0.85;
}

.cta h2 {
  color: var(--cream);
  margin-top: 14px;
}

.cta h2 em {
  color: var(--cream);
  opacity: 0.92;
}

.cta p {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.94;
}

.cta .btn {
  margin-top: 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-block: clamp(40px, 6vw, 72px);
  text-align: center;
}

.site-footer .brand {
  flex-direction: column;
  gap: 10px;
}

.site-footer .brand img {
  width: 110px;
  height: 110px;
  margin-inline: auto;
}

.site-footer .brand__name {
  white-space: normal;
}

.footer__tagline {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.footer__ig {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--salmon-wash);
  color: var(--salmon-deep);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.footer__links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 8px 24px rgba(94, 70, 54, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.sticky-cta__label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: 1px;
}

.sticky-cta .btn {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================================
   Responsive — tablet (≥ 720px)
   ============================================================ */
@media (min-width: 720px) {
  .pains__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    border-top: none;
  }

  .pains__list li {
    border-top: 1px solid var(--sand);
    border-bottom: none;
  }

  .method__steps {
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 30px;
  }

  .offers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }
}

/* ============================================================
   Responsive — desktop (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }

  .nav__links,
  .nav__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

  .hero__media {
    aspect-ratio: 5 / 6;
    max-height: 78vh;
  }

  .hero__text {
    justify-content: center;
  }

  .hero__lead {
    font-size: 21px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .offers__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .offer h3 {
    font-size: 23px;
  }

  .offer__price {
    font-size: 26px;
  }

  .method__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: none;
    gap: 40px;
  }

  .method__head .section-head {
    max-width: 520px;
  }

  .workshops__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Larger hero headline on desktop */
@media (min-width: 1024px) {
  .hero__caption h1 {
    font-size: clamp(48px, 4.2vw, 68px);
  }
}

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