/* ==========================================================================
   PPEECK LRS — stylesheet
   ========================================================================== */

/* Fonts ------------------------------------------------------------------- */
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-v57-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-v57-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/lato-v25-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/lato-v25-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Design tokens ----------------------------------------------------------- */
:root {
  --navy: #252B4F;
  --navy-darker: #1a1f3d;
  --light-blue: #91B0DA;
  --slate-blue: #40536A;
  --bronze: #93753A;
  --yellow: #EEBA2B;

  --cream: #FAFAF8;
  --white: #FFFFFF;
  --text-primary: #252B4F;
  --text-secondary: #4A5568;

  --shadow-soft: 0 4px 20px rgba(37, 43, 79, 0.08);
  --shadow-header: 0 2px 12px rgba(37, 43, 79, 0.10);

  --container-max: 1200px;
  --pad-x-mobile: 24px;
  --pad-x-desktop: 48px;

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-darker);
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
}

h1 { font-size: 2rem; line-height: 1.15; }
h2 { font-size: 1.625rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.0625rem; line-height: 1.3; }

p { margin: 0 0 16px 0; }

p.lead {
  font-size: 1.125rem;
  color: var(--slate-blue);
}

@media (min-width: 768px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
  body { font-size: 1.125rem; }
  p.lead { font-size: 1.25rem; }
}

/* Skip link --------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  z-index: 9999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Layout helpers ---------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad-x-mobile);
  padding-right: var(--pad-x-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--pad-x-desktop);
    padding-right: var(--pad-x-desktop);
  }
}

section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}

@media (min-width: 768px) {
  section {
    padding: 96px 0;
  }
}

.section-inner {
  position: relative;
  z-index: 2;
}

/* Buttons ----------------------------------------------------------------- */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-darker);
  color: var(--white);
  transform: translateY(-1px);
}

.text-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: var(--navy);
}

/* Focus states ------------------------------------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 2px;
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  display: block;
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .brand img {
    height: 48px;
  }
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.nav-desktop a.nav-phone {
  font-weight: 700;
}

.nav-desktop a:hover {
  color: var(--slate-blue);
}

.menu-toggle {
  background: none;
  border: 0;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu overlay ----------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu nav {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--cream);
  padding-top: 32px;
}

.hero .curve-top-right {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero .airplane {
  position: absolute;
  bottom: 24px;
  left: -20px;
  width: 110px;
  height: 110px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.hero .airplane svg g {
  stroke: var(--light-blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-content h2 {
  font-size: 1.25rem;
  color: var(--slate-blue);
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero-content p {
  margin-bottom: 32px;
  color: var(--slate-blue);
}

.hero-secondary {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--slate-blue);
}

.hero-secondary a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  background: var(--light-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(20px, 20px);
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 120px;
  }
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
  .hero .curve-top-right {
    width: 720px;
    height: 720px;
    top: -180px;
    right: -180px;
  }
  .hero .airplane {
    width: 160px;
    height: 160px;
    bottom: 60px;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-image img,
  .hero-image::before {
    max-width: 400px;
  }
}

/* ==========================================================================
   ELTERNSTIMMEN  (carousel section)
   ========================================================================== */
.elternstimmen {
  background: var(--white);
}

.elternstimmen .blob {
  position: absolute;
  inset: 32px 0;
  background: var(--light-blue);
  border-radius: 80px;
  z-index: 1;
}

.elternstimmen .lightbulb {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 100px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.6;
}

.elternstimmen h2,
.elternstimmen .lead {
  text-align: center;
}

.elternstimmen h2 {
  color: var(--navy);
}

.elternstimmen .lead {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .elternstimmen .blob {
    border-radius: 120px;
    inset: 48px 0;
  }
  .elternstimmen .lightbulb {
    width: 140px;
    height: 140px;
    top: 24px;
    left: 48px;
  }
}

/* Carousel ---------------------------------------------------------------- */
.carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.carousel-slide p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  font-style: italic;
}

.carousel-slide cite {
  font-style: normal;
  font-weight: 700;
  color: var(--slate-blue);
  font-size: 0.9375rem;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background 0.2s ease;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--navy-darker);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--white);
  opacity: 1;
  transform: scale(1.3);
}

@media (min-width: 768px) {
  .carousel {
    padding: 0 64px;
  }
  .carousel-track {
    min-height: 240px;
  }
  .carousel-slide {
    padding: 48px 56px;
  }
  .carousel-slide p {
    font-size: 1.125rem;
  }
  .carousel-prev,
  .carousel-next {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   BRIDGE
   ========================================================================== */
.bridge {
  background: var(--white);
}

.bridge .container {
  max-width: 760px;
}

.bridge .books {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 768px) {
  .bridge .books {
    width: 160px;
    height: 160px;
    bottom: 32px;
    right: 32px;
    opacity: 0.7;
  }
}

/* ==========================================================================
   METHODE
   ========================================================================== */
.methode {
  background: var(--white);
}

.methode .curve-bottom-left {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: var(--light-blue);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.methode .lead-rocket {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.methode h3 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.outcome-card {
  background: var(--white);
  border: 1px solid rgba(145, 176, 218, 0.4);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.outcome-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.outcome-icon svg {
  width: 40px;
  height: 40px;
}

.outcome-card h4 {
  margin-bottom: 8px;
}

.outcome-card p {
  font-size: 1rem;
  color: var(--slate-blue);
  margin: 0;
}

@media (min-width: 768px) {
  .outcome-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.course-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-bullets li {
  position: relative;
  padding-left: 40px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.course-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-color: var(--navy);
  -webkit-mask: url('assets/illustrations/rocket.svg') no-repeat center / contain;
          mask: url('assets/illustrations/rocket.svg') no-repeat center / contain;
}

/* ==========================================================================
   NACH DEM KURS
   ========================================================================== */
.nach-dem-kurs {
  background: var(--white);
}

.nach-dem-kurs .blob {
  position: absolute;
  inset: 32px 0;
  background: var(--light-blue);
  border-radius: 80px;
  z-index: 1;
}

.nach-dem-kurs .notebook {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.7;
}

.nach-dem-kurs .container {
  max-width: 760px;
}

.nach-dem-kurs h2,
.nach-dem-kurs h3,
.nach-dem-kurs p {
  color: var(--navy);
}

.nach-dem-kurs h3 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .nach-dem-kurs .blob {
    border-radius: 120px;
    inset: 48px 0;
  }
  .nach-dem-kurs .notebook {
    width: 140px;
    height: 140px;
    top: 32px;
    right: 48px;
  }
}

/* ==========================================================================
   ÜBER MICH
   ========================================================================== */
.ueber-mich {
  background: var(--white);
}

.ueber-mich .curve-bottom-left {
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: var(--light-blue);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.ueber-mich-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.ueber-mich-image {
  display: flex;
  justify-content: center;
  position: relative;
  order: -1;
}

.ueber-mich-image::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  background: var(--light-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-16px, 16px);
  z-index: 0;
}

.ueber-mich-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .ueber-mich-inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
  }
  .ueber-mich-image {
    order: 0;
  }
  .ueber-mich-image img,
  .ueber-mich-image::before {
    max-width: 360px;
  }
}

/* ==========================================================================
   FÜR WEN
   ========================================================================== */
.fuer-wen {
  background: var(--white);
}

.fuer-wen .curve-top-left {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: var(--light-blue);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.fuer-wen .container {
  max-width: 760px;
}

.divider {
  border: 0;
  height: 1px;
  background: rgba(37, 43, 79, 0.15);
  margin: 48px 0;
}

/* ==========================================================================
   KINDERSTIMMEN
   ========================================================================== */
.kinderstimmen {
  background: var(--white);
}

.kinderstimmen .blob {
  position: absolute;
  inset: 32px 0;
  background: var(--light-blue);
  border-radius: 80px;
  z-index: 1;
}

.kinderstimmen .grad-cap {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.7;
}

.kinderstimmen h2,
.kinderstimmen .lead {
  text-align: center;
}

.kinderstimmen .lead {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .kinderstimmen .blob {
    border-radius: 120px;
    inset: 48px 0;
  }
  .kinderstimmen .grad-cap {
    width: 140px;
    height: 140px;
    top: 32px;
    left: 48px;
  }
}

/* ==========================================================================
   PROZESS (3 steps)
   ========================================================================== */
.prozess {
  background: var(--light-blue);
}

.prozess .rocket {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.prozess h2,
.prozess .lead {
  text-align: center;
  color: var(--navy);
}

.prozess .lead {
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.step {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 56px 28px 28px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--light-blue);
  z-index: 0;
  pointer-events: none;
}

.step h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.step p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.cta-closing {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .prozess .rocket {
    width: 160px;
    height: 160px;
    bottom: 32px;
    right: 48px;
  }
  .cta-closing {
    font-size: 1.875rem;
  }
}

/* ==========================================================================
   BROSCHÜRE
   ========================================================================== */
.broschuere-download {
  background: var(--white);
}

.broschuere-download .curve-top-right {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 360px;
  height: 360px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
}

.broschuere-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.broschuere-image {
  display: flex;
  justify-content: center;
}

.broschuere-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-soft);
  border-radius: 6px;
}

.broschuere-content h3 {
  color: var(--slate-blue);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: -8px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .broschuere-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
  .broschuere-image img {
    max-width: 360px;
  }
}

/* ==========================================================================
   FORMS (shared)
   ========================================================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.form label {
  display: flex;
  flex-direction: column;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  gap: 6px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid rgba(37, 43, 79, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(145, 176, 218, 0.4);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.form label.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--slate-blue);
}

.form label.checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-note {
  font-size: 0.875rem;
  color: var(--slate-blue);
  margin: 8px 0 0 0;
  line-height: 1.5;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.kontakt {
  background: var(--cream);
}

.kontakt .curve-top-right {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: var(--navy);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.kontakt .airplane {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transform: scaleX(-1);
}

.kontakt .airplane svg g {
  stroke: var(--light-blue);
}

.kontakt > .container > h2,
.kontakt > .container > p:first-of-type {
  max-width: 720px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}

.kontakt-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-headshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 16px;
}

.kontakt-headshot img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.kontakt-credential {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--slate-blue);
  margin: 0;
}

.kontakt-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.0625rem;
}

.kontakt-icon {
  display: inline-block;
  margin-right: 6px;
}

.kontakt-item a {
  color: var(--navy);
  text-decoration: none;
}

.kontakt-item a:hover {
  text-decoration: underline;
}

.kontakt-item small {
  color: var(--slate-blue);
  font-size: 0.875rem;
  font-weight: 400;
}

.kontakt-form {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.kontakt-form h3 {
  margin-top: 0;
}

@media (min-width: 768px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
  .kontakt-headshot {
    align-items: flex-start;
    text-align: left;
  }
  .kontakt-form {
    padding: 40px;
  }
  .kontakt .airplane {
    width: 160px;
    height: 160px;
    bottom: 60px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 32px;
}

.site-footer a {
  color: var(--white);
}

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

.site-footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-brand p,
.footer-contact p {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-method {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-lrs-logo {
  max-width: 200px;
  height: auto;
}

.footer-legal {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-legal a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 0 0 6px 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
}

/* ==========================================================================
   LEGAL PAGES (impressum, datenschutz)
   ========================================================================== */
.legal-page {
  background: var(--cream);
  padding: 64px 0 96px;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page p {
  color: var(--slate-blue);
}

.legal-page .back-link {
  display: inline-block;
  margin-top: 32px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 2px;
}

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