/* ============================================================
   ANJA HELLMANN – HEALTH & LONGEVITY
   Stylesheet · Version 5 · Final
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --sand:       #D8CBBE;
  --sand-soft:  #EFE8E0;
  --white:      #FFFFFF;
  --taupe:      #A89282;
  --olive:      #59614E;
  --olive-dark: #454c3c;
  --sage:       #5E7854;
  --sage-dark:  #4D6446;
  --rose:       #E3A99F;
  --rose-warm:  #C27E72;
  --blue:       #6E8A9B;
  --ink:        #2A2622;
  --ink-body:   #3A342D;
  --line:       #E7DED4;
  --off-white:  #FBF7F1;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --section-pad: clamp(64px, 8vw, 120px);
  --container:   1100px;
  --nav-h:       72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- BASE ---- */
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* Prevent horizontal scroll on all devices */
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--ink); }
/* Subtle emphasis for key phrases – slightly darker, medium-bold, no color change */
.text-emphasis {
  font-weight: 500;
  color: #2A2622;
}

/* ---- SCRIPT-WORD ACCENTS ---- */
/*
  Colour rule:
  .script-rose  → Dusty Rose  (#C6A8A0) – on WHITE backgrounds
  .script-olive → Deep Olive  (#59614E) – on SAND backgrounds (rose has too little contrast on sand)
  Hero "Energie" always uses .script-olive (Deep Olive) regardless of background
*/
.script-word {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.9em;
  line-height: 0.9;
  display: inline-block;
  vertical-align: baseline;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
}
.script-rose      { color: var(--rose); }
.script-rose-warm { color: var(--rose-warm); }
.script-olive     { color: var(--olive); }

/* ---- SECTION HEADLINES ---- */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.2rem;
  padding-top: 0.3em;
}
.section-headline--center { text-align: center; }
.section-headline--left   { text-align: left; }

/* ---- EYEBROW ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }

/* ---- SECTION INTRO ---- */
.section-intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-body);
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-intro--balanced {
  max-width: 620px;
  text-wrap: balance;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 28px 14px 29.4px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: 1.5px solid var(--sage);
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-primary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-light {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(251,247,241,0.55);
}
.btn-light:hover { background: rgba(251,247,241,0.12); border-color: var(--off-white); }

.btn-nav {
  background: var(--sage);
  color: var(--white) !important;
  border: 1.5px solid var(--sage);
  padding: 10px 20px;
  font-size: 12px;
}
.btn-nav:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTIONS ---- */
.section { padding: var(--section-pad) 0; }
.section-white { background: var(--white); }
.section-sand  { background: var(--sand-soft); }
.section-olive { background: var(--sage); }
.section-sage  { background: var(--sage); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.nav-header.scrolled { box-shadow: 0 2px 20px rgba(42,38,34,0.08); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo: linksbündig, vertikal mittig */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Explicitly left-aligned – flex default */
}
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* Nav links: rechtsbündig (pushed by justify-content: space-between) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto; /* ensure right-alignment even if burger is hidden */
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 2px; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* Show the full image – no cropping */
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.hero-bg {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 0;
}
.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Subtle left-side gradient for text legibility */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42,38,34,0.30) 0%,
    rgba(42,38,34,0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
}

/* Text overlay: positioned over the left side of the image */
.hero-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 560px;
  padding: 40px 24px 40px clamp(48px, 6vw, 120px);
}

/* ---- STAGGERED 3-LINE HERO HEADLINE ---- */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
  /* no global font-size – each line sets its own */
}

/* Line 1: "HOL DIR DEINE" – top left, Cormorant, Off-White, Versalien */
.hero-line--1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(31px, 4.5vw, 58px);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
  line-height: 1.2;
  margin-left: 0;
  display: block;
}

/* Line 2: "Energie" – Dancing Script, Deep Olive, VERY large, indented, slight tilt */
.hero-line--2 {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: clamp(95px, 15.5vw, 176px);
  line-height: 1.05;
  color: var(--sage);
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
  /* "E" of Energie starts under "D" of DIR */
  margin-left: clamp(3rem, 6.5vw, 7.5rem);
  margin-top: 0.05em;
  margin-bottom: 0.05em;
  display: block;
  transform: rotate(-5deg);
  transform-origin: left center;
}

/* Line 3: "ZURÜCK" – Cormorant, Off-White, Versalien, further indented */
.hero-line--3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(31px, 4.5vw, 58px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
  line-height: 1.2;
  /* "Z" starts under "i" of Energie */
  margin-left: clamp(7rem, 17vw, 20rem);
  display: block;
  transform: none;
}

/* hero-below: subline, button, trust – aligned to left edge of line 1 */
.hero-below {
  margin-top: 1.6rem;
  margin-left: 0;
}

.hero-subline {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
  color: var(--off-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.6;
}
/* Subline-Umbrüche nur auf dem Handy aktiv */
.hero-subline br { display: none; }

.hero-trust {
  margin-top: 0.8rem;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(251,247,241,0.82);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ============================================================
   ERSCHÖPFUNG SECTION – two-column layout
   ============================================================ */
.erschoepfung-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start; /* C1: Bild und Liste oben bündig */
  margin-bottom: 0;
}

.erschoepfung-image {
  align-self: start; /* C1: Bild oben bündig mit Liste */
  margin-top: -6.5rem; /* Bild nach oben neben die Intro-Zeile ziehen */
}

.erschoepfung-image img {
  width: 100%;
  max-height: 480px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.check-list {
  margin: 1.2rem 0 0; /* C2: kompakter */
  display: flex;
  flex-direction: column;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  line-height: 1.6;
  padding: 7px 0; /* C2: weniger vertikaler Abstand */
  border-bottom: 1px solid rgba(231,222,212,0.5); /* C2: zartere Trennlinie */
  color: var(--ink-body);
}
.check-list li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  margin-top: 2px;
}

.check-closing {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-body);
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
  font-style: normal;
}

/* C4: Abschlusssatz volle Breite unter beiden Spalten */
.check-closing--full {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
  width: 100%;
  display: block;
}

/* ============================================================
   VIER SCHRITTE ZU DEINER KRAFT (step cards with images)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
  /* Equal height cards with text aligned top */
  align-items: stretch;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  /* No top accent line – removed per V7 */
  box-shadow: 0 2px 12px rgba(42,38,34,0.06);
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(42,38,34,0.1);
  transform: translateY(-2px);
}

/* Card image banner */
.step-card-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.step-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.step-card:hover .step-card-image img { transform: scale(1.04); }

/* Card body */
.step-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  /* Deep Olive as specified */
  color: var(--olive);
  margin-bottom: 10px;
}

.step-card-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-body);
  margin-bottom: 0;
}

/* Emotional sentence below steps subheadline */
.steps-emotional {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 21px);
  font-style: italic;
  color: var(--ink-body);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Bridge CTA after steps */
.steps-bridge {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 0;
  /* border-top removed per user request */
}

.steps-bridge p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 26px);
  font-style: italic;
  color: var(--ink-body);
  margin-bottom: 1.4rem;
}

/* Outline button – Deep Olive border, no fill */
.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
}
.btn-outline:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Bridge CTA in about section */
.about-bridge {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-bridge p {
  font-size: 20px;
  line-height: 1.75;
  color: #3A342D;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.section-quote { padding: clamp(64px, 8vw, 110px) 0; }

.quote-block { text-align: center; border: none; padding: 0; max-width: 780px; margin: 0 auto; }

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.55;
  color: var(--off-white);
  margin-bottom: 1.6rem;
}

/* "Botschaft" as script accent in Off-White on sage background */
.quote-script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.5em;
  line-height: 0.85;
  color: var(--off-white);
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.04em;
}

.quote-author {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(251,247,241,0.65);
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start; /* portrait top-aligned with heading */
  margin-bottom: 80px;
}

/* Portrait and heading share same top edge */
.about-portrait {
  padding-top: 0;
}
.about-text {
  padding-top: 0;
}
.about-text .section-headline {
  padding-top: 0;
  margin-top: 0;
}

.about-portrait img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.about-text p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-body);
  margin-bottom: 1.2em;
}

/* Sand block → script-olive */
.about-work-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(40px, 5vw, 64px);
  background: var(--sand-soft);
  border-radius: 3px;
}

.about-work-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 1.5rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-body);
}

.icon-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-top: 2px;
}

/* Credentials – white bg → script-rose */
.about-credentials {
  text-align: center;
  margin-bottom: 80px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 680px;
  margin: 1.5rem auto 1rem;
}
.chips-row--themen { max-width: 780px; margin-top: 1.75rem; }

.chip {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 20px;
  border: 1px solid transparent;
  border-radius: 40px;
  color: var(--ink-body);
  background: var(--sand-soft);
  letter-spacing: 0.3px;
}

.credentials-note {
  font-size: 16px;
  color: var(--taupe);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Klientinnen-Stimmen / Social Proof */
.testimonials {
  margin-top: 76px;
  background: var(--sage);
  border-radius: 14px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
}
.testimonials .section-headline { color: var(--off-white); }
.testimonials .script-word { color: var(--off-white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.testimonial-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.testimonial-card + .testimonial-card {
  border-top: 1px solid rgba(251,247,241,0.28);
  padding-top: 26px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--off-white);
  margin: 0 0 1.4rem;
}
.testimonial-card figcaption {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(251,247,241,0.72);
  margin-top: auto;
}

/* Mediterranean block – white bg → script-rose */
.about-med-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-med-text p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-body);
}

.med-image-placeholder {
  background: var(--sand);
  border-radius: 3px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   ACADEMY
   ============================================================ */
.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 3rem 0 5rem;
}

.academy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.academy-card:hover { box-shadow: 0 6px 32px rgba(42,38,34,0.09); }

.academy-card--active {
  border-color: var(--olive);
  box-shadow: 0 2px 20px rgba(89,97,78,0.12);
}

.coming-soon { opacity: 0.82; }

.academy-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.academy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.academy-card:hover .academy-card-image img { transform: scale(1.03); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 1;
}
.badge--active { background: var(--sage); color: var(--white); }
.badge--soon   { background: rgba(168,146,130,0.85); color: var(--white); }

.academy-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.academy-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.academy-card-subtitle {
  font-size: 17px;
  color: var(--taupe);
  margin-bottom: 14px;
  font-style: italic;
}

.academy-card-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-body);
  margin-bottom: 18px;
}

.academy-details {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-body);
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.academy-details li { list-style: none; }

.academy-card-note {
  font-size: 14px;
  color: var(--taupe);
  margin-top: 10px;
  font-style: italic;
}

.academy-card-waitlist {
  font-size: 17px;
  color: var(--taupe);
  font-style: italic;
  margin-top: auto;
}
.academy-card-waitlist a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

/* Differentiator – sand bg → script-olive */
.academy-differentiator {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.diff-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.diff-item p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-body);
  margin-bottom: 0;
}

/* ============================================================
   KENNENLERNEN
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.contact-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-body);
  margin-bottom: 2rem;
}

.calendly-wrapper {
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  /* Full width on mobile */
  width: 100%;
}

/* Ensure Calendly widget is responsive */
.calendly-inline-widget {
  width: 100% !important;
}

.btn-contact { margin-bottom: 0.6rem; }

.contact-note {
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.5px;
}

/* ============================================================
   FINALE SECTION
   ============================================================ */
.section-finale {
  text-align: center;
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--sage);
}

.finale-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.55;
  color: var(--off-white);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sage);
  color: rgba(239,232,224,0.85);
  padding: 56px 24px 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(239,232,224,0.7);
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 15px;
  letter-spacing: 0.8px;
  color: rgba(239,232,224,0.75);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--off-white); }

.footer-contact a {
  font-size: 16px;
  color: rgba(239,232,224,0.75);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact a:hover { color: var(--off-white); }

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(239,232,224,0.3);
  border-radius: 50%;
  color: rgba(239,232,224,0.7);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--off-white); border-color: rgba(239,232,224,0.7); }

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: rgba(239,232,224,0.5);
}
.footer-legal a {
  font-size: 14px;
  color: rgba(239,232,224,0.6);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover { color: var(--off-white); }

.footer-copyright {
  font-size: 13px;
  color: rgba(239,232,224,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-animate .fade-in {
  opacity: 0;
  transform: translateY(24px);
}

.js-animate .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .js-animate .fade-in,
  .js-animate .fade-in.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  /* Logo: max ~60% viewport width on mobile */
  .nav-logo-img {
    height: 44px;
    max-width: 60vw;
  }

  /* Show burger, hide nav links */
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(42,38,34,0.08);
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    /* Minimum tap target 44px */
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links li:last-child a {
    border-bottom: none;
    margin: 12px 24px 0;
    display: inline-flex;
    width: auto;
  }

  /* Hero: full-bleed image with headline overlaid (like desktop) */
  .hero {
    position: relative;
    display: block;
    min-height: 86vh;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* horizontal slice keeps Anja in frame; full body height stays visible */
    object-position: 60% top;
  }
  /* Soft light scrim from the top so the dark headline stays legible */
  .hero-bg::after {
    display: block;
    background: linear-gradient(rgba(30,26,20,0.45), rgba(30,26,20,0.20) 40%, rgba(30,26,20,0.45));
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    transform: none;
    background: none;
    padding: 30px 24px 38px;
    max-width: 100%;
    z-index: 1;
  }

  /* Headline oben, Subline auf Taillenhöhe, CTA unten überm Sofa */
  .hero-below {
    margin-top: 1.3rem;
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* CTA: gefüllter Salbei-Button wie auf dem Desktop, unten im Bild */
  .hero-content .btn-primary {
    margin-top: auto;
    align-self: flex-start;
  }

  /* On mobile: white headline over a dark scrim */
  .hero-line--1 {
    font-size: clamp(22px, 6vw, 34px);
    color: #FFFFFF;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
    margin-left: 0;
  }
  .hero-line--2 {
    /* Energie: Salbei-Script über dem dunklen Scrim */
    font-size: clamp(58px, 14.5vw, 88px);
    color: var(--sage);
    text-shadow: 0 1px 14px rgba(0,0,0,0.30);
    margin-left: clamp(1.5rem, 4vw, 3rem);
    transform: rotate(-5deg);
    transform-origin: left center;
  }
  .hero-line--3 {
    font-size: clamp(22px, 6vw, 34px);
    color: #FFFFFF;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
    margin-left: clamp(3rem, 7vw, 6rem);
    transform: none;
  }
  .hero-subline {
    margin-top: clamp(1.5rem, 10vh, 6rem);
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
    color: #FFFFFF;
    text-shadow: 0 1px 10px rgba(0,0,0,0.40);
  }
  .hero-subline br { display: inline; }
  .hero-trust {
    margin-top: 0.85rem;
    color: var(--off-white);
    text-shadow: 0 1px 6px rgba(42,38,34,0.55);
  }

  /* Erschöpfung: single column on mobile, image first */
  .erschoepfung-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .erschoepfung-image { order: -1; margin-top: 0; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-work-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-med-block { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Academy */
  .academy-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Steps: 2 columns on tablet */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Calendly full width */
  .calendly-inline-widget { height: 650px !important; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {
  body { font-size: 16px; }

  .section-headline { font-size: clamp(24px, 7vw, 32px); }
  .script-word { font-size: 1.75em; }

  /* Steps: single column on mobile */
  .steps-grid { grid-template-columns: 1fr; }

  .about-work-layout { padding: 28px 20px; }

  .chips-row { gap: 8px; }
  .chip { font-size: 12px; padding: 6px 12px; }

  .footer-nav { gap: 16px; }

  /* Calendly on mobile */
  .calendly-inline-widget { height: 600px !important; }

  /* Hero headline on small mobile – ensure Energie fits within viewport */
  .hero-line--1 {
    font-size: clamp(21px, 6.3vw, 30px);
    margin-left: 0;
  }
  .hero-line--2 {
    font-size: clamp(52px, 15vw, 76px);
    margin-left: clamp(1rem, 3.5vw, 2rem);
    transform: rotate(-5deg);
    transform-origin: left center;
  }
  .hero-line--3 {
    font-size: clamp(21px, 6.3vw, 30px);
    margin-left: clamp(2rem, 6vw, 4rem);
    transform: none;
  }
}


/* ============================================================
   EINHEITLICHER BILD-LOOK (dezenter warmer Grade)
   Stellschrauben: sepia() = Wärme · saturate() = Sättigung
   ============================================================ */
.hero-bg img,
.erschoepfung-image img,
.step-card-image img,
.about-portrait img,
.about-work-image img,
.contact-image img,
.academy-card--active .academy-card-image img {
  filter: saturate(0.85) sepia(0.10) brightness(1.02) contrast(0.97);
}

/* ============================================================
   ABLAUF-TIMELINE — "Was nach dem Check passiert"
   ============================================================ */
.ka-timeline-wrap{ background:var(--sand-soft); font-family:var(--font-sans); padding:var(--section-pad) 22px clamp(20px,3vw,32px); }
.ka-inner{ max-width:720px; margin:0 auto; }
.ka-eyebrow{ font:500 13px/1 var(--font-sans); letter-spacing:3px; text-transform:uppercase; color:var(--taupe); text-align:center; margin-bottom:14px; }
.ka-title{ font-family:var(--font-sans); font-weight:500; font-size:clamp(26px,3.5vw,38px); line-height:1.25; color:var(--ink); text-align:center; margin:0 0 38px; }
.ka-title .ka-script{ font-family:var(--font-script); font-weight:600; color:var(--rose); font-size:1.9em; line-height:0.9; }
.ka-step{ display:flex; gap:18px; }
.ka-rail{ position:relative; flex:0 0 56px; display:flex; justify-content:center; }
.ka-rail::before{ content:""; position:absolute; left:50%; transform:translateX(-50%); top:0; bottom:0; width:2px; background:var(--line); }
.ka-step:first-child .ka-rail::before{ top:28px; }
.ka-step:last-child .ka-rail::before{ bottom:auto; height:28px; }
.ka-circle{ position:relative; z-index:1; flex:0 0 auto; width:56px; height:56px; border-radius:50%; background:#FFFFFF; border:1.5px solid var(--taupe); display:flex; align-items:center; justify-content:center; }
.ka-circle svg{ width:26px; height:26px; color:var(--taupe); }
.ka-badge{ position:absolute; top:-5px; left:-5px; z-index:2; width:22px; height:22px; border-radius:50%; background:var(--taupe); color:var(--ink); font:600 12px/22px var(--font-sans); text-align:center; }
.ka-content{ flex:1; padding-bottom:30px; }
.ka-step:last-child .ka-content{ padding-bottom:4px; }
.ka-h{ font-family:var(--font-sans); font-weight:600; font-size:18px; line-height:1.3; color:var(--ink); margin:4px 0 5px; }
.ka-p{ font-family:var(--font-sans); font-weight:400; font-size:18px; line-height:1.55; color:var(--taupe); margin:0; }

.erschoepfung-cta { text-align: center; margin-top: 2.4rem; }
.ka-cta { text-align: center; margin-bottom: 46px; }
