:root {
  --bg: #eef1ef;
  --bg-deep: #e2e8e4;
  --surface: #fbfcfa;
  --ink: #141816;
  --ink-soft: #3d4743;
  --muted: #5f6b66;
  --line: #c8d0cb;
  --accent: #c43d5a;
  --accent-hover: #a3304a;
  --accent-soft: #f6dce2;
  --forest: #1c2b28;
  --forest-mid: #2f4a44;
  --gold: #c9a05a;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 18px 40px rgba(20, 24, 22, 0.08);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Figtree", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 61, 90, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(47, 74, 68, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--forest);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn--ghost:hover {
  background: var(--forest);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(238, 241, 239, 0.88);
  border-bottom: 1px solid rgba(200, 208, 203, 0.7);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.site-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.site-header__nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  color: var(--accent);
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .site-header__toggle { display: flex; }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--space) 1.25rem;
    display: none;
  }
  .site-header__nav.is-open { display: block; }
  .site-header__nav ul {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--forest);
  color: #d7e0db;
  padding: 3rem var(--space) 1.5rem;
}

.site-footer a { color: #f4ede4; }
.site-footer a:hover { color: var(--gold); }

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.site-footer h2 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

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

.site-footer li { margin-bottom: 0.4rem; }

.site-footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #9aada5;
}

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  max-width: 34rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  animation: rise-in 0.45s ease both;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes soft-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--space);
}

.section--tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

/* Home hero — full bleed, brand first */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: soft-zoom 12s ease-out both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 22, 0.25) 0%, rgba(20, 24, 22, 0.72) 70%, rgba(20, 24, 22, 0.9) 100%),
    linear-gradient(90deg, rgba(28, 43, 40, 0.55) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--space) 4rem;
  animation: fade-up 0.7s ease both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.85rem;
  color: #fff;
  line-height: 0.95;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  max-width: 28rem;
  margin: 0 0 0.65rem;
  color: #f4ede4;
  line-height: 1.35;
}

.hero__text {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.hero .btn-row { margin-top: 1.75rem; }
.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.hero .btn--ghost:hover {
  background: #fff;
  color: var(--forest);
}

/* Offer strip */
.offer-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.offer-strip__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-strip__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .offer-strip { grid-template-columns: 1fr; }
}

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.service-card__link {
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* Quote / evidence */
.quote-block {
  background: var(--forest);
  color: #e8efeb;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "„";
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(201, 160, 90, 0.25);
  line-height: 1;
}

.quote-block p {
  position: relative;
  font-size: 1.2rem;
  max-width: 42rem;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* Journal preview */
.post-list {
  display: grid;
  gap: 1.25rem;
}

.post-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease;
}

.post-item:hover {
  box-shadow: var(--shadow);
  color: inherit;
}

.post-item__media {
  aspect-ratio: 1;
  overflow: hidden;
}

.post-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item__body {
  padding: 1rem 1.2rem 1rem 0;
}

.post-item__body time {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .post-item {
    grid-template-columns: 1fr;
  }
  .post-item__media {
    aspect-ratio: 16 / 9;
  }
  .post-item__body {
    padding: 0 1.1rem 1.1rem;
  }
}

/* Page prose / legal */
.page-prose,
.service-detail,
.post-detail,
.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem var(--space) 3rem;
}

.page-prose__header,
.post-detail__header {
  max-width: 44rem;
  margin-bottom: 2rem;
  animation: fade-up 0.55s ease both;
}

.prose {
  max-width: 44rem;
}

.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25rem 0;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  background: var(--surface);
}
.prose th {
  background: var(--bg-deep);
  font-weight: 600;
}

/* Service detail */
.service-detail__hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.service-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .service-detail__hero { grid-template-columns: 1fr; }
}

/* Post */
.post-detail__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.post-detail__cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.post-detail__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.post-detail__back {
  margin-top: 2.5rem;
}

/* Pricing */
.price-stack {
  display: grid;
  gap: 1.25rem;
}

.price-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: start;
}

.price-row__amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .price-row { grid-template-columns: 1fr; }
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.35rem 1.5rem;
}

.review-card p:last-of-type { margin-bottom: 0.5rem; }

.review-card__meta {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.case-story {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.case-story__media {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.25rem 0;
}

.case-story__media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--forest);
  color: #e8efeb;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-card h2 { color: #fff; }
.contact-card a { color: var(--gold); }

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.form__group {
  margin-bottom: 1.1rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.form__error {
  color: var(--accent);
  font-size: 0.88rem;
  margin-top: 0.3rem;
  display: none;
}

.form__group.is-invalid .form__error { display: block; }
.form__group.is-invalid input,
.form__group.is-invalid select,
.form__group.is-invalid textarea {
  border-color: var(--accent);
}

.form__status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form__status.is-success {
  display: block;
  background: #e4f0e8;
  color: #1d4a32;
}

.form__status.is-error {
  display: block;
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Ablauf timeline */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--accent-soft);
  margin-left: 0.6rem;
  padding-left: 1.5rem;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
  animation: fade-up 0.5s ease both;
}

.timeline__item:nth-child(2) { animation-delay: 0.08s; }
.timeline__item:nth-child(3) { animation-delay: 0.16s; }
.timeline__item:nth-child(4) { animation-delay: 0.24s; }
.timeline__item:nth-child(5) { animation-delay: 0.32s; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline__step {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem var(--space);
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

/* Misc */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: #e8efeb;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-band p { margin: 0; max-width: 28rem; color: rgba(255,255,255,0.85); }

.factor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.factor {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

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

.factor p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-grid__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-grid__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.team-card {
  text-align: left;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 0.85rem;
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-card p { color: var(--muted); font-size: 0.95rem; }
