/* =========================================================
   HerzStück Schulbegleitung e.K. – Stylesheet
   ========================================================= */

:root {
  /* Brand colours (aus dem Logo abgeleitet) */
  --color-rose:        #c69ba0;   /* zartes Altrosa */
  --color-rose-deep:   #a97a80;   /* kräftigeres Rosa/Mauve */
  --color-taupe:       #6f5f5a;   /* warmes Braun-Taupe */
  --color-taupe-dark:  #574a46;

  /* Flächen & Text */
  --color-bg:          #fbf7f4;   /* cremeweiß */
  --color-bg-soft:     #f4e9e6;   /* zartrosa Fläche */
  --color-surface:     #ffffff;
  --color-text:        #4a413e;   /* warmes Dunkelbraun */
  --color-text-soft:   #7c706b;
  --color-line:        #ecdedb;

  /* Schriften */
  --font-heading: "Quicksand", "Segoe UI", sans-serif;
  --font-body:    "Nunito", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -22px rgba(111, 95, 90, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(111, 95, 90, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-taupe-dark);
  margin: 0 0 0.5em;
}

a { color: var(--color-rose-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--color-taupe-dark); }

p { margin: 0 0 1em; text-wrap: pretty; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--color-rose-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--color-taupe); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--color-taupe-dark);
  border-color: var(--color-rose);
}
.btn-ghost:hover { background: var(--color-bg-soft); color: var(--color-taupe-dark); }

.btn-light {
  background: #fff;
  color: var(--color-taupe-dark);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { background: var(--color-bg-soft); color: var(--color-taupe-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}
.brand { flex: none; }
.brand-logo {
  height: 72px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.main-nav--center { flex: 1 1 auto; justify-content: center; flex-wrap: wrap; }
.nav-cta--solo { flex: none; }
.main-nav-mobile { display: none; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-taupe);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.main-nav a:hover { background: var(--color-bg-soft); color: var(--color-taupe-dark); }
.main-nav a.active,
.main-nav a[aria-current="page"] {
  background: var(--color-bg-soft);
  color: var(--color-rose-deep);
  font-weight: 600;
}
.main-nav .nav-cta {
  background: var(--color-rose-deep);
  color: #fff;
  margin-left: 0.4rem;
}
.main-nav .nav-cta:hover { background: var(--color-taupe); color: #fff; }

.nav-cta--solo {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: var(--color-rose-deep);
  color: #fff;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-cta--solo:hover { background: var(--color-taupe); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--color-bg-soft);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-taupe-dark);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections generic ---------- */
section { position: relative; }
.section-kicker {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-rose-deep);
  margin: 0 0 0.6rem;
}
.section-kicker--light { color: #f4e0e0; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 0.7rem; }
.section-title--light { color: #fff; }
.section-intro { max-width: 60ch; color: var(--color-text-soft); font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #f7ece9 0%, #fbf7f4 60%);
  padding: clamp(2.5rem, 6vw, 5rem) 0 5.5rem;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob--1 { width: 340px; height: 340px; background: #ecccce; top: -80px; right: -60px; }
.hero-blob--2 { width: 240px; height: 240px; background: #e5d6cf; bottom: 20px; left: -90px; opacity: 0.6; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-rose-deep);
  padding: 0;
  margin-bottom: 1.3rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--color-rose-deep); }
.lead { font-size: 1.2rem; color: var(--color-text-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.6rem; }
.hero-motto {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-taupe);
  font-size: 1.05rem;
  border-left: 3px solid var(--color-rose);
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.hero-media { display: flex; justify-content: center; }
.hero-logo {
  width: min(100%, 360px);
  filter: drop-shadow(0 20px 30px rgba(111,95,90,0.25));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.wave { position: absolute; left: 0; right: 0; line-height: 0; }
.wave svg { width: 100%; height: 90px; display: block; }
.wave--top { bottom: -1px; }
.wave--top svg path { fill: var(--color-bg); }

/* ---------- Leistungen auf einen Blick (USPs) ---------- */
.glance { padding: 4rem 0; }
.glance-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
  max-width: 1120px;
}
.glance-card {
  flex: 1 1 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  background: var(--color-rose-deep);
  border-radius: var(--radius-sm);
  padding: 2rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.glance-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.glance-ic {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-rose-deep);
}
.glance-ic svg { width: 28px; height: 28px; }

/* ---------- Über uns ---------- */
.about { padding: 4.5rem 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about .about-inner {
  grid-template-areas: "media intro" "media rest";
  column-gap: 3.5rem;
  row-gap: 0.4rem;
}
.about-intro { grid-area: intro; align-self: end; }
.about-rest { grid-area: rest; align-self: start; }
.about .about-media { grid-area: media; }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--color-rose-deep);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  max-width: 180px;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-heading); font-size: 2rem; display: block; line-height: 1; }
.about-badge span { font-size: 0.85rem; line-height: 1.3; display: block; margin-top: 0.3rem; }
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-rose-deep);
  margin: 1.4rem 0;
  padding: 0;
  border: 0;
  font-weight: 600;
}

/* ---------- Leistungen Detail ---------- */
.services { padding: 4.5rem 0; background: var(--color-bg-soft); }
.services .section-intro { margin-bottom: 2.6rem; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-link {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-rose-deep);
  align-self: flex-start;
}
.card-link:hover { color: var(--color-taupe-dark); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--color-bg-soft);
  color: var(--color-rose-deep);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--color-text-soft); font-size: 1rem; }
.card-foot { font-family: var(--font-heading); font-style: italic; color: var(--color-taupe); }

.check-list { list-style: none; margin: 0.5rem 0 1rem; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.45rem;
  color: var(--color-text);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-rose);
}

/* ---------- Für Eltern / Schulen ---------- */
.audience { padding: 4.5rem 0; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.audience-card {
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}
.audience-card--parents { background: linear-gradient(155deg, #f7ece9, #fff); }
.audience-card--schools { background: linear-gradient(155deg, #efe7e2, #fff); }
.audience-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-rose-deep);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.audience-card h2 { font-size: 1.55rem; }
.audience-card p { color: var(--color-text-soft); }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0.5rem 0 1.2rem; }
.tag-list li {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-taupe-dark);
}

/* ---------- Karriere ---------- */
.career {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(150deg, var(--color-taupe) 0%, var(--color-rose-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.career-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -120px; right: -80px;
}
.career-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.career-text p { color: rgba(255,255,255,0.9); }
.career-perks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.career-perks li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: 500;
}
.career-perks li span { color: #f6d7d7; font-size: 1.1rem; }
.career-inner--stack { display: block; }
.career-inner--stack .career-text { max-width: 62ch; margin-bottom: 2rem; }
.career-perks--grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Kontakt ---------- */
.contact { padding: 4.5rem 0 5rem; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-details { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: 1.2rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--color-bg-soft);
  color: var(--color-rose-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-ic svg { width: 22px; height: 22px; }
.contact-warm { font-family: var(--font-heading); font-style: italic; color: var(--color-taupe); font-size: 1.1rem; }

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-taupe-dark);
  margin-bottom: 0.4rem;
}
.field label .opt { font-weight: 400; color: var(--color-text-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(198,155,160,0.25);
}
.field textarea { resize: vertical; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-text-soft); margin-bottom: 1.2rem; }
.consent input { margin-top: 0.25rem; accent-color: var(--color-rose-deep); width: 18px; height: 18px; flex: none; }
.contact-form .btn { width: 100%; }
.form-status { margin: 0.9rem 0 0; font-weight: 600; font-family: var(--font-heading); min-height: 1.2em; }
.form-status.success { color: #5b8a5b; }
.form-status.error { color: #b05656; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-taupe-dark); color: #e9ddd8; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  padding: 1.6rem 0;
}
.footer-logo { height: 54px; width: auto; filter: brightness(0) invert(1) opacity(0.92); display: block; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; justify-content: center; }
.footer-links a { color: rgba(233,221,216,0.82); font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: #f4e0e0;
}
.footer-social svg { width: 20px; height: 20px; }
.footer-social:hover { background: rgba(255,255,255,0.22); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 0.9rem 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(233,221,216,0.65); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: -1; }
  .hero-logo { width: min(35%, 130px); }
  .hero-actions, .lead { margin-inline: auto; }
  .hero-motto { display: inline-block; text-align: left; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about .about-inner { grid-template-areas: "intro" "media" "rest"; row-gap: 2rem; }
  .about-intro, .about-rest { align-self: auto; }
  .hero { padding-bottom: 2.75rem; }
  .glance { padding-top: 2rem; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .about-badge { right: 10px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .career-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1200px) {
  /* Mobile-Navigation */
  .header-inner { justify-content: space-between; }
  .nav-toggle { display: flex; }
  .main-nav--center, .nav-cta--solo { display: none; }
  .brand-logo { height: 60px; }
  .main-nav-mobile {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    padding: 0.8rem 1.25rem 1.2rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .main-nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav-mobile a { padding: 0.8rem 1rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-taupe); border-radius: 999px; }
  .main-nav-mobile a:hover { background: var(--color-bg-soft); color: var(--color-taupe-dark); }
  .main-nav-mobile a.active { background: var(--color-bg-soft); color: var(--color-rose-deep); font-weight: 600; }
  .main-nav-mobile .nav-cta { margin-left: 0; text-align: center; margin-top: 0.3rem; background: var(--color-rose-deep); color: #fff; }

  .service-cards { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .about-badge { position: static; margin: 1rem auto 0; max-width: none; display: inline-block; }
  .service-row.service-row { grid-template-columns: 1fr; }
  .service-row .service-row-media.service-row-media { order: -1; }
  .service-row-media img { max-height: 300px; }
  .career-perks--hide-mobile { display: none; }

  /* Hero-Buttons zentrieren */
  .hero-actions { justify-content: center; }

  /* USP-Karten: immer zwei nebeneinander */
  .glance-card { flex: 1 1 calc(50% - 0.65rem); max-width: none; min-width: 0; padding: 1.5rem 0.9rem; }

  /* Stellenangebote untereinander */
  .jobs.jobs { grid-template-columns: 1fr; }
  .career-perks--grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer zentriert, Links gestapelt, Logo größer */
  .footer-inner { flex-direction: column; text-align: center; gap: 1.4rem; padding: 2.4rem 0; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.7rem; }
  .footer-logo { height: 84px; }
}

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

/* ---------- Subpages ---------- */
.page-hero {
  background: linear-gradient(160deg, #f7ece9 0%, #fbf7f4 70%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; }
.page-hero p { max-width: 60ch; margin: 0.5rem auto 0; color: var(--color-text-soft); font-size: 1.15rem; }
.breadcrumb { font-family: var(--font-heading); font-size: 0.9rem; color: var(--color-rose-deep); margin-bottom: 0.6rem; }
.breadcrumb a { color: var(--color-taupe); }
.page-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-section:nth-of-type(even) { background: var(--color-bg-soft); }
.prose { max-width: 68ch; margin: 0 auto; }
.prose--center { text-align: center; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0; }
.prose .pull-quote { text-align: center; }
.detail-block { max-width: 760px; margin: 0 auto; scroll-margin-top: 100px; }
.detail-block + .detail-block { margin-top: 2.5rem; }
.detail-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.detail-head .card-icon { margin-bottom: 0; }
.detail-head h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.back-cta { text-align: center; padding-top: 3rem; padding-bottom: 4rem; }

/* Stellenanzeigen (Karriere) */
.jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.job-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.job-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-rose-deep);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.job-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.job-meta { color: var(--color-text-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.job-card h4 { font-size: 1rem; margin: 0.9rem 0 0.4rem; color: var(--color-rose-deep); }
.job-card .check-list { margin: 0; }
.job-card .btn { margin-top: auto; align-self: flex-start; }
.job-card .check-list + h4 { margin-top: 1.1rem; }

/* Bildergalerie (Über uns) */
.gallery {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
}
.gallery img:hover { transform: scale(1.02); }

/* Hero-Shortcuts (Leistungen) */
.hero-shortcuts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.hero-shortcuts a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-taupe-dark);
  background: #fff;
  border: 1.5px solid var(--color-rose);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.hero-shortcuts a:hover { background: var(--color-rose-deep); color: #fff; border-color: var(--color-rose-deep); }

/* Leistungen – abwechselnde Bild-/Text-Reihen */
.services-detail { padding: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  margin: 2rem auto;
  scroll-margin-top: 100px;
}
.service-row:nth-child(even) .service-row-media { order: 2; }
.service-row--rose  { background: var(--color-bg-soft); }
.service-row--cream { background: #f0e7e2; }
.service-row--taupe { background: #ece3df; }
.service-row-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.service-row-text .card-icon { margin-bottom: 1rem; }
.service-row-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.service-row-text .btn { margin-top: 0.6rem; }

/* Accordion */
.accordion {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
  margin: 1rem 0 1.4rem;
  overflow: hidden;
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-taupe-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-rose-deep);
  transition: transform 0.2s var(--ease);
}
.accordion[open] summary::after { content: "–"; }
.accordion .check-list { margin: 0; padding: 0 1.2rem 1.1rem; }
.accordion[open] .check-list { animation: accReveal 0.3s var(--ease); }
@keyframes accReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.job-card .accordion { margin: 0.5rem 0; }
.job-card .accordion + .accordion { margin-top: 0.4rem; }
