/* Pflegedienst Kathrin Schede GmbH – zentrale Stylesheet
   Struktur: 1 Variablen · 2 Reset/Basis · 3 Layout · 4 Komponenten · 5 Formular · 6 Footer · 7 Responsive */

/* 1 Variablen ---------------------------------------------------------- */
:root {
  --red: #d9000f;
  --red-dark: #b40009;
  --red-deep: #a80009;
  --ink: #1e1b1a;
  --text: #4a4340;
  --muted: #5b534f;
  --soft: #7c736f;
  --bg: #fbf9f8;
  --white: #fff;
  --line: #ece5e2;
  --tint: #f4e7e5;
  --tint-soft: #f7efec;
  --rule: #e3cfca;
  --font-head: "Nunito", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1160px;
  --gutter: 28px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-red: 0 10px 24px rgba(217, 0, 15, .22);
  --shadow-card: 0 18px 40px rgba(30, 27, 26, .10);
}

/* 2 Reset / Basis ------------------------------------------------------ */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; text-wrap: pretty; letter-spacing: -.015em; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding-left: 22px; }

h1, .h1 { font-size: clamp(34px, 4.4vw, 50px); font-weight: 800; line-height: 1.08; }
h2, .h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; line-height: 1.15; }
h3, .h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 800; line-height: 1.25; }
.h4 { font-size: 18px; font-weight: 800; font-family: var(--font-head); }

.lead { font-size: clamp(18px, 1.4vw, 20px); line-height: 1.6; color: var(--text); max-width: 32em; }
.text { font-size: 17.5px; line-height: 1.65; color: var(--muted); }
.text--sm { font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.note { font-size: 15.5px; color: var(--soft); }
.list { font-size: 16.5px; line-height: 1.8; color: var(--muted); }
.stack > * + * { margin-top: 14px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 14px;
}
.eyebrow--pill {
  display: inline-block;
  border: 1px solid #f0cfcc;
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 26px;
}

/* 3 Layout ------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--flush-top { padding-top: 0; }
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--tint { background: var(--tint-soft); border: 0; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--rule { gap: 24px 32px; }
.grid--wide-gap { gap: 56px; }
.span-2 { grid-column: span 2; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split--reverse { grid-template-columns: 1fr 1.08fr; }
.split--text-right { grid-template-columns: 1fr 1.1fr; align-items: start; }
.row { display: flex; flex-wrap: wrap; gap: 14px; }
.row--between { justify-content: space-between; align-items: center; gap: 32px; }
.row--end { justify-content: flex-end; }
.row--baseline { align-items: flex-end; }

/* 4 Komponenten -------------------------------------------------------- */
.topbar { background: var(--red-deep); color: #efe9e7; font-size: 14.5px; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar span[aria-hidden] { opacity: .7; }
.topbar__hint { opacity: .7; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(251, 249, 248, .95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; gap: 28px; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.site-header__logo img { height: 56px; width: auto; }

.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 2px; font-family: var(--font-head); font-weight: 700; font-size: 16.5px; }
.nav a { padding: 9px 15px; border-radius: 999px; color: var(--text); }
.nav a:hover { background: var(--tint); color: var(--ink); }
.nav a.is-active { background: var(--tint); color: var(--ink); }
.nav a.nav__cta { margin-left: 8px; padding: 11px 21px; background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(217, 0, 15, .22); }
.nav a.nav__cta:hover { background: var(--red-dark); color: #fff; }

.btn {
  display: inline-block;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 15px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  cursor: pointer;
}
.btn--sm { padding: 13px 24px; font-size: 16.5px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); color: #fff; }
.btn--outline { border-color: #ddd3cf; color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--outline-tint { border-color: #d8c4c1; color: var(--ink); }
.btn--outline-tint:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--red-dark); font-weight: 800; }
.btn--white:hover { background: #ffecec; color: var(--red-dark); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .12); color: #fff; }
.link-arrow { font-family: var(--font-head); font-weight: 700; font-size: 17px; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card--pad-lg { padding: 34px; }
.card--tint { background: var(--tint-soft); border-color: transparent; }
.card--plain { background: var(--bg); border-color: transparent; }
.card--soft { background: var(--tint); border-color: transparent; border-radius: 20px; padding: 44px; }
a.card { color: var(--ink); display: block; }
a.card:hover { border-color: var(--red); color: var(--ink); }
.card h2, .card h3 { margin-bottom: 10px; }

.feature { border-top: 2px solid var(--rule); padding-top: 18px; }
.feature h3 { margin-bottom: 7px; }

.media { width: 100%; object-fit: cover; border-radius: 18px; }
.media--sq { aspect-ratio: 1 / 1; }
.media--43 { aspect-ratio: 4 / 3; }
.media--32 { aspect-ratio: 3 / 2; }
.media--45 { aspect-ratio: 4 / 5; }
.media--fill { height: 100%; }

.hero { padding: 66px 0 78px; }
.hero__figure { position: relative; }
.stat-badge {
  position: absolute;
  left: -32px;
  bottom: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.stat-badge strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--red); line-height: 1; }
.stat-badge span { font-size: 14.5px; color: var(--text); }
.stat { font-family: var(--font-head); font-weight: 800; font-size: 46px; color: var(--red); line-height: 1; margin-bottom: 10px; }

.frame { background: var(--tint-soft); border-radius: 20px; padding: 12px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 12px; align-items: stretch; }
.frame img { border-radius: 14px; min-height: 380px; height: 100%; width: 100%; object-fit: cover; }
.frame__body { padding: 44px 44px 44px 30px; display: flex; flex-direction: column; justify-content: center; }

.quote { margin: 0; font-size: 19px; line-height: 1.65; color: #3a3431; }

.job__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.job__head h3 { font-size: clamp(24px, 2.6vw, 30px); }
.badge { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--red-deep); background: var(--tint); border-radius: 999px; padding: 7px 15px; }
.job__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.job__cols h4 { margin-bottom: 10px; }
.job__foot { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }

.cta { background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: 52px; }
.cta--split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.cta h2 { margin-bottom: 14px; }
.cta p { font-size: 18px; color: rgba(255, 255, 255, .88); }
.cta__panel { background: rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 30px; font-size: 17px; line-height: 1.75; }
.cta__panel h3 { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255, 255, 255, .78); margin-bottom: 12px; }
.cta__panel a { color: #fff; text-decoration: underline; }
.cta__panel hr { border: 0; border-top: 1px solid rgba(255, 255, 255, .22); margin: 22px 0; }
.cta .row { margin-top: 30px; }

/* 5 Formular ----------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; display: block; margin-bottom: 7px; }
input, textarea, select {
  font-family: inherit;
  font-size: 16.5px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #e4dcd8;
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--red); }
.form__consent { display: flex; gap: 11px; align-items: flex-start; font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.form__consent input { width: auto; margin-top: 3px; }
.contact-item { font-size: 17.5px; line-height: 1.65; color: var(--text); }
.contact-item dt { font-family: var(--font-head); font-weight: 800; font-size: 14.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--red-deep); margin-bottom: 4px; }
.contact-item dd { margin: 0 0 16px; }

/* 6 Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #bdb4b1; }
.site-footer .wrap { padding-top: 66px; }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 30px; }
.site-footer img { height: 58px; width: auto; background: #fff; border-radius: 10px; padding: 8px 12px; margin-bottom: 18px; }
.site-footer p { font-size: 16px; line-height: 1.6; }
.site-footer h3 { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 16px; }
.site-footer a { color: #bdb4b1; }
.site-footer a:hover { color: #fff; }
.site-footer__legal { border-top: 1px solid #332d2b; font-size: 14.5px; color: #8b8280; padding: 22px 0 40px; }

/* 7 Responsive --------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--4, .grid--3, .job__cols { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .split, .split--reverse, .split--text-right, .frame, .cta--split { grid-template-columns: 1fr; gap: 32px; }
  .frame img { min-height: 260px; }
  .frame__body { padding: 8px 24px 32px; }
  .stat-badge { left: 16px; }
}
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 48px; }
  .grid--2, .grid--3, .grid--4, .job__cols, .form__row, .grid--rule { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .cta, .card--soft { padding: 32px; }
  .nav { font-size: 15px; }
  .nav a { padding: 8px 11px; }
}
@media print {
  .site-header { position: static; }
  .topbar, .nav__cta { display: none; }
}
