/* =================================================================
   Renate Gassner · Landingpage
   High-End Editorial. Off-White, Bordeaux-Akzent, viel Weißraum,
   Systemfonts, ohne JavaScript.
================================================================= */

/* ============ DESIGN-TOKENS ============ */

:root {
  --bg:           #F5F1EA;
  --bg-sand:      #ECE3D2;
  --bg-card:      #FAF6EC;
  --text:         #1F1F1F;
  --text-muted:   #4A4A4A;
  --accent:       #6B2436;
  --accent-soft:  #8B3A4E;
  --line:         #D6CFC1;
  --line-soft:    #E5DDCC;

  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container:            1200px;
  --container-narrow-plus: 920px;
  --container-narrow:      760px;
  --container-tight:       640px;

  --pad-section: 4.5rem;
}

@media (min-width: 768px) {
  :root {
    --pad-section: 7rem;
  }
}

/* ============ RESET ============ */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt';
}

@media (min-width: 768px) {
  body { font-size: 18px; }
}

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

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { margin: 0; }

a {
  color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

a:hover { text-decoration-thickness: 2px; }

a:focus-visible,
button:focus-visible,
.cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

sup {
  font-size: 0.68em;
  vertical-align: super;
  line-height: 0;
}

/* ============ CONTAINER ============ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.container--narrow      { max-width: var(--container-narrow); }
.container--narrow-plus { max-width: var(--container-narrow-plus); }
.container--tight       { max-width: var(--container-tight); }

/* ============ SECTION-BASIS ============ */

.wofuer,
.staerken,
.belege,
.nutzen,
.rollen,
.kontakt {
  padding: var(--pad-section) 0;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 0.5em;
}

.section__subhead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--accent);
  margin: 0 0 2em;
  line-height: 1.45;
}

.prose p {
  margin-bottom: 1.25em;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .prose p { font-size: 1.0625rem; }
}

/* ============ HERO ============ */

.hero {
  background: var(--bg);
  padding: 2.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}


.hero__inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero { padding: 4rem 0 3rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 5rem 0 4.5rem; }
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "id"
    "tagline"
    "photo"
    "lead"
    "audience"
    "cta";
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 0 2rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    grid-template-areas:
      "id       photo"
      "tagline  photo"
      "lead     photo"
      "audience photo"
      "cta      photo";
    column-gap: 5rem;
    row-gap: 1.5rem;
    align-items: start;
  }
}

.hero__id       { grid-area: id;       margin: 0; }
.hero__tagline  { grid-area: tagline;  }
.hero__media    { grid-area: photo;    margin: 0; }
.hero__lead     { grid-area: lead;     }
.hero__audience { grid-area: audience; }
.hero__cta      { grid-area: cta;      justify-self: start; margin-top: 0.75rem; }

.hero__id {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--text);
}

.hero__role {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}


.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0.25rem 0 0.7rem;
}

.hero__lead {
  margin: 0;
}

.hero__lead p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
  color: var(--text);
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero__lead p { font-size: 1.0625rem; }
}

.hero__lead p:last-child { margin-bottom: 0; }

.hero__audience {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 1rem 0 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
}

/* HERO-Foto, jetzt ruhiger und kleiner */

.hero__photo-wrap {
  background: var(--bg-sand);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  max-width: 320px;
}

@media (min-width: 1024px) {
  .hero__photo-wrap {
    aspect-ratio: 4 / 5;
    height: 100%;
    min-height: 360px;
    max-height: 420px;
    max-width: 340px;
    margin-left: auto;
  }
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 767px) {
  .hero__inner {
    grid-template-areas:
      "id"
      "tagline"
      "lead"
      "audience"
      "cta"
      "photo";
  }

  .hero__photo-wrap {
    max-width: 260px;
    margin: 1.5rem auto 0;
  }
}

/* ============ CTA ============ */

.cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--accent);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cta:hover,
.cta:focus {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  text-decoration: none;
}

.cta--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.cta--text {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding: 0.5rem 0.25rem;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  letter-spacing: 0.01em;
}

.cta--text:hover,
.cta--text:focus {
  background: transparent;
  color: var(--accent-soft);
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent-soft);
  border-color: transparent;
}


.cta--work-sample {
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  font-weight: 700;
  padding: 0.55rem 0.1rem;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.cta--work-sample:hover,
.cta--work-sample:focus {
  text-decoration-thickness: 3px;
}

/* ============ BEWEISSTREIFEN ============ */

.beweis {
  background: var(--bg-sand);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 768px) {
  .beweis { padding: 3rem 0; }
}

@media (min-width: 1024px) {
  .beweis { padding: 3.25rem 0; }
}

.beweis__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .beweis__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem 3rem;
  }
}

@media (min-width: 1024px) {
  .beweis__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .beweis__item {
    padding: 0 2rem;
    border-left: 1px solid var(--line);
  }
  .beweis__item:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .beweis__item:last-child {
    padding-right: 0;
  }
}

.beweis__item { margin: 0; }

.beweis__key {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.beweis__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 28ch;
}

@media (min-width: 768px) {
  .beweis__desc { font-size: 1rem; }
}

/* ============ WENN KOMMUNIKATION FÜHRUNG BRAUCHT ============ */

.wofuer {
  background: var(--bg);
}

.wofuer__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .wofuer__split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 4.5rem;
    align-items: start;
  }
}

.wofuer__heading {
  position: relative;
}

@media (min-width: 900px) {
  .wofuer__heading {
    position: sticky;
    top: 2rem;
  }
}

.wofuer__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.6em;
}

.wofuer__sub {
  margin: 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
}

.wofuer__body p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .wofuer__body p { font-size: 1.125rem; }
}

.wofuer__body p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5em;
}

/* ============ AKT 2, sandfarbener Block ============ */

.act-two {
  background: var(--bg-sand);
}

@media (min-width: 768px) {
  .wofuer { padding-top: 5rem; padding-bottom: 5.5rem; }
  .staerken { padding-bottom: 2.25rem; }
  .belege { padding-top: 2.25rem; padding-bottom: 4rem; }
  .nutzen { padding-top: 3.25rem; padding-bottom: 5.25rem; }
  .rollen { padding-top: 4.75rem; padding-bottom: 3.5rem; }
  .kontakt { padding-top: 3.5rem; }
}

@media (max-width: 767px) {
  .wofuer { padding-top: 4rem; padding-bottom: 4.5rem; }
  .staerken { padding-bottom: 2.25rem; }
  .belege { padding-top: 2.25rem; padding-bottom: 3.5rem; }
  .nutzen { padding-top: 3rem; padding-bottom: 4.25rem; }
  .rollen { padding-top: 3.75rem; padding-bottom: 2.75rem; }
  .kontakt { padding-top: 3rem; }
}

/* ============ DREI STÄRKEN ============ */

.staerken__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .staerken__grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 3rem;
  }
}

.staerke {
  background: transparent;
  padding: 0;
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
}

.staerke__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.6vw, 1.375rem);
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: var(--text);
  margin: 0 0 1rem;
}

.staerke p {
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.6;
}

.staerke__tag {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.staerke__tag-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

/* ============ ICH FINDE DEN DREH ============ */

.belege .section__title {
  margin-bottom: 0.4em;
}

.belege__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--accent);
  margin: 0 0 2.75rem;
  max-width: 56ch;
}

.belege__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .belege__list { gap: 3.25rem; }
}

.beleg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .beleg {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    column-gap: 2.5rem;
    padding-top: 2.25rem;
    align-items: start;
  }

  .beleg__index {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .beleg__title,
  .beleg > p:not(.beleg__index),
  .beleg__lesson {
    grid-column: 2;
  }
}

.beleg__index {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-feature-settings: 'tnum';
}

@media (min-width: 768px) {
  .beleg__index {
    font-size: 1rem;
    margin: 0.45rem 0 0;
    line-height: 1;
  }
}

.beleg__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 1.125rem;
}

.beleg p {
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 68ch;
}

@media (min-width: 768px) {
  .beleg p { font-size: 1.0625rem; }
}

.beleg__lesson {
  margin: 1.25rem 0 0;
  padding: 0 0 0 1.25rem;
  background: transparent;
  border-left: 2px solid var(--accent);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 68ch;
}

@media (min-width: 768px) {
  .beleg__lesson {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

.beleg__lesson-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

/* ============ NUTZEN ============ */

.nutzen .section__title {
  margin-bottom: 2.75rem;
  max-width: 26ch;
}

.nutzen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .nutzen__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 2.75rem;
  }
}

.nutzen__card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--accent);
  padding-top: 1.5rem;
}

.nutzen__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.nutzen__list li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

@media (min-width: 768px) {
  .nutzen__list li { font-size: 1rem; }
}

.nutzen__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.nutzen__list li:last-child { margin-bottom: 0; }

.nutzen__cta {
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nutzen__cta { margin-top: 3.75rem; }
}

/* ============ ROLLEN, WO ICH WIRKUNG ENTFACHE ============ */

.rollen .section__title {
  margin-bottom: 2.75rem;
}

.rollen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .rollen__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.5rem;
    row-gap: 3rem;
  }
}

.rolle {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.rolle__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.rolle p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text);
}

@media (min-width: 768px) {
  .rolle p { font-size: 1.0625rem; }
}

/* ============ KONTAKT ============ */

.kontakt {
  background: var(--bg);
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .kontakt { padding-top: 3.5rem; padding-bottom: 5rem; }
}

.kontakt__line {
  display: block;
}

.kontakt__lead {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1rem;
}

.kontakt__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--accent);
  margin: 0 0 2rem;
}

.kontakt__details {
  font-style: normal;
  margin: 2.25rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

.kontakt__details p { margin: 0 0 0.15rem; }

.kontakt__name {
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.7rem !important;
  color: var(--text);
}

.kontakt__details a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.kontakt__details a:hover,
.kontakt__details a:focus {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--bg);
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--line-soft);
}

.footer__legal {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.footer__legal a:hover,
.footer__legal a:focus {
  color: var(--accent);
  text-decoration-color: var(--accent);
}


/* ============ MOBILE-FEINSCHLIFF ============ */

@media (max-width: 1023px) {
  

  .hero__inner {
    grid-template-areas:
      "id"
      "tagline"
      "lead"
      "audience"
      "cta"
      "photo";
  }

  .hero__photo-wrap {
    max-width: 280px;
    margin: 1.25rem auto 0;
  }

  .hero__cta {
    margin-top: 0.25rem;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .container,
  .hero__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .hero__inner {
    gap: 1rem;
  }

  .hero__id {
    margin-bottom: 0.25rem;
  }

  .hero__name {
    font-size: clamp(1.8rem, 8.2vw, 2.3rem);
  }

  .hero__role {
    font-size: 0.95rem;
    letter-spacing: 0.11em;
  }

  .hero__tagline {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }

  .hero__lead p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__audience {
    font-size: 1rem;
    line-height: 1.48;
    margin: 0.4rem 0 0.1rem;
  }

  .hero__photo-wrap {
    max-width: 260px;
    margin-top: 1.1rem;
  }

  .cta {
    padding: 0.95rem 1.55rem;
  }

  .beweis {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .beweis__grid {
    gap: 1.85rem;
  }

  .beweis__key {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .beweis__desc {
    font-size: 0.95rem;
    max-width: 30ch;
  }

  .section__title {
    font-size: clamp(1.8rem, 8.3vw, 2.25rem);
    line-height: 1.13;
  }

  .section__subhead {
    font-size: clamp(1.05rem, 4.8vw, 1.22rem);
    margin-bottom: 1.45rem;
  }

  .wofuer {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .wofuer__split {
    gap: 1.55rem;
  }

  .wofuer__title {
    font-size: clamp(2rem, 9vw, 2.55rem);
    margin-bottom: 0.45em;
  }

  .wofuer__body p,
  .wofuer__body p:first-child {
    font-size: 1rem;
    line-height: 1.62;
    margin-bottom: 1.05em;
  }

  .staerken {
    padding-top: 3rem;
    padding-bottom: 2.4rem;
  }

  .staerken__grid {
    margin-top: 2rem;
    gap: 2rem;
  }

  .staerke {
    padding-top: 1.15rem;
  }

  .staerke__title {
    font-size: clamp(1.35rem, 6.2vw, 1.65rem);
    line-height: 1.2;
  }

  .staerke p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .staerke__tag {
    margin-top: 1.1rem;
    padding-top: 1rem;
    font-size: 0.92rem;
  }

  .belege {
    padding-top: 2.35rem;
    padding-bottom: 2.7rem;
  }

  .belege .section__title {
    margin-bottom: 0.35em;
  }

  .belege__lead {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
    margin-bottom: 2rem;
  }

  .belege__list {
    gap: 2rem;
  }

  .beleg {
    padding-top: 1.55rem;
  }

  .beleg__index {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .beleg__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.18;
    margin-bottom: 0.9rem;
  }

  .beleg p {
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 0.9em;
  }

  .beleg__lesson {
    margin-top: 1rem;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .nutzen {
    padding-top: 2.35rem;
    padding-bottom: 3.25rem;
  }

  .nutzen .section__title {
    font-size: clamp(2rem, 8.4vw, 2.45rem);
    margin-bottom: 2rem;
    max-width: 19ch;
  }

  .nutzen__grid {
    gap: 2rem;
  }

  .nutzen__card {
    padding-top: 1.15rem;
  }

  .nutzen__title {
    font-size: clamp(1.25rem, 5.8vw, 1.55rem);
    margin-bottom: 1rem;
  }

  .nutzen__list li {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
  }

  .nutzen__cta {
    margin-top: 2.2rem;
  }

  .rollen {
    padding-top: 3rem;
    padding-bottom: 2.25rem;
  }

  .rollen .section__title {
    margin-bottom: 2rem;
  }

  .rollen__grid {
    gap: 2rem;
  }

  .rolle {
    padding-top: 1.2rem;
  }

  .rolle__title {
    font-size: clamp(1.25rem, 5.8vw, 1.5rem);
  }

  .rolle p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .kontakt {
    padding-top: 2.6rem;
    padding-bottom: 4rem;
  }

  .kontakt__lead {
    font-size: clamp(2rem, 8.5vw, 2.4rem);
  }

  .kontakt__sub {
    font-size: clamp(1.08rem, 5vw, 1.3rem);
    margin-bottom: 1.75rem;
  }

  .kontakt .cta--large {
    width: min(100%, 320px);
    padding: 1rem 1.35rem;
  }

  .kontakt__details {
    margin-top: 2rem;
  }

  .footer {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 390px) {
  .container,
  .hero__inner {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .section__title,
  .wofuer__title,
  .nutzen .section__title,
  .kontakt__lead {
    letter-spacing: -0.025em;
  }

  .hero__photo-wrap {
    max-width: 245px;
  }
}


/* ============ LETZTER MOBILE-FIX: schmale Browserbreiten ============ */

@media (max-width: 1199px) {
  

  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "id"
      "tagline"
      "lead"
      "audience"
      "cta"
      "photo";
    row-gap: 1rem;
  }

  .hero__media {
    justify-self: center;
    width: 100%;
  }

  .hero__photo-wrap {
    width: min(100%, 300px);
    max-width: 300px;
    margin: 1rem auto 0;
  }

  .hero__cta {
    margin-top: 0.25rem;
  }
}

@media (max-width: 767px) {
  .hero__photo-wrap {
    width: min(100%, 255px);
    max-width: 255px;
    margin-top: 0.85rem;
  }

  .hero__tagline,
  .hero__lead p,
  .hero__audience {
    max-width: 34rem;
  }

  .wofuer__title,
  .staerken .section__title,
  .belege .section__title,
  .nutzen .section__title,
  .rollen .section__title {
    font-size: clamp(1.85rem, 7.4vw, 2.25rem);
  }

  .beleg__title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .beweis__key {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
  }

  .wofuer,
  .staerken,
  .belege,
  .nutzen,
  .rollen {
    padding-top: 2.65rem;
    padding-bottom: 2.65rem;
  }

  .kontakt {
    padding-top: 2.4rem;
  }
}

@media (max-width: 390px) {
  .hero__photo-wrap {
    width: min(100%, 235px);
    max-width: 235px;
  }
}

/* ============ PRINT ============ */

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 10.5pt;
    line-height: 1.5;
  }

  .act-two { background: #fff; }

  .hero,
  .beweis,
  .wofuer,
  .staerken,
  .belege,
  .nutzen,
  .rollen,
  .kontakt,
  .footer {
    background: #fff;
    padding: 1.25rem 0;
    page-break-inside: avoid;
  }

  .staerke,
  .nutzen__card,
  .rolle {
    background: #fff;
    border-color: #000;
  }

  .beleg__lesson {
    background: #fff;
    border-left: 2px solid #000;
    color: #000;
  }

  .cta {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
  }

  .hero__photo { filter: grayscale(100%); }

  a { color: #000; }
}



/* ============ IMPRESSUM UND DATENSCHUTZ ============ */

.legal-page {
  background: var(--bg);
}

.legal-header {
  background: var(--bg);
  padding: 2.5rem 0 2.75rem;
  border-bottom: 1px solid var(--line-soft);
}

.legal-back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  margin-bottom: 1.4rem;
}

.legal-back:hover,
.legal-back:focus {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.legal-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--text);
}

.legal-content {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.legal-section {
  padding: 0 0 3.5rem;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 3.5rem;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.legal-section h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0 0.55rem;
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 66ch;
  margin: 0 0 0.9rem;
}

.legal-section strong {
  color: var(--text);
  font-weight: 700;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.legal-section a:hover,
.legal-section a:focus {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}

.legal-footer {
  padding-top: 1.5rem;
}

@media (max-width: 600px) {
  .legal-header {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .legal-content {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
  }

  .legal-section {
    padding-bottom: 3rem;
  }

  .legal-section + .legal-section {
    padding-top: 3rem;
  }
}

/* ============ MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============ LETZTER HERO-FIX: Mobile und schmale Browser ============ */


.hero__story-pair {
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .hero__media {
    margin-top: 0.75rem;
  }

  .hero__photo-wrap {
    width: min(100%, 280px) !important;
    max-width: 280px !important;
    margin: 0.75rem auto 0 !important;
  }
}

@media (max-width: 767px) {
  .hero__photo-wrap {
    width: min(100%, 245px) !important;
    max-width: 245px !important;
  }
}
