/* ==========================================================================
   Atlas Umzüge — Sections
   Hero, about, quote, services, process, benefits, reviews, CTA, subpages
   ========================================================================== */

/* --- Shared section heads ------------------------------------------------- */

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 5fr 4.5fr;
  column-gap: 30px;
  row-gap: 42px;
  align-items: start;
}

.section-head__primary {
  grid-column: 2;
}

.section-head__title {
  max-width: 20ch;
}

.section-head__primary .eyebrow {
  margin-bottom: 18px;
}

.section-head__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 4px;
}

.section-head__aside p {
  color: var(--color-text);
}

.section-head--center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 255px;
  padding-bottom: 150px;
  background-color: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

/* Two stacked gradients: darkens the left so the headline stays legible,
   and drops the bottom edge into the page background.                   */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 52%, rgba(0, 0, 0, 0.45) 78%, rgba(0, 0, 0, 0.6)),
    linear-gradient(
      90deg,
      rgba(20, 17, 13, 0.96) 0%,
      rgba(20, 17, 13, 0.9) 34%,
      rgba(20, 17, 13, 0.62) 56%,
      rgba(20, 17, 13, 0.28) 76%,
      rgba(20, 17, 13, 0.1) 100%
    );
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--color-dark) 92%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__title {
  width: 62%;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-weight: var(--fw-medium);
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--color-primary-soft);
}

.hero__lead {
  width: 46%;
  margin-bottom: 40px;
  color: var(--color-on-dark-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Lower-right information panel */

.hero__panel {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  width: 33%;
  max-width: 460px;
  z-index: 2;
}

.hero__panel-text {
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: var(--fs-eyebrow);
  line-height: var(--lh-eyebrow);
  font-weight: var(--fw-medium);
}

.hero__tag::before {
  content: '';
  flex: none;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
}

/* --- About ---------------------------------------------------------------- */

.about {
  padding-block: var(--section-space);
  background-color: var(--color-white);
}

.about__top,
.about__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 85%;
  margin-inline: auto;
}

.about__top { margin-bottom: -20px; }
.about__bottom { margin-top: 16px; align-items: flex-end; }

.about__figure {
  height: 220px;
  overflow: hidden;
}

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

.about__figure--one { width: 21%; }
.about__figure--two { width: 24%; }

.about__body {
  position: relative;
  z-index: 2;
  width: 60%;
  margin-inline: auto;
  text-align: center;
}

.about__body .eyebrow { justify-content: center; }

.about__title {
  margin-bottom: 24px;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
}

.about__text {
  margin-bottom: 16px;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.about__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

/* Stat / trust badge */

.about-badge {
  position: relative;
  z-index: 2;
  width: 20%;
  padding: 26px 28px 28px;
  background-color: var(--color-cream);
  text-align: center;
}

.about-badge__value {
  display: block;
  color: var(--color-heading);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

.about-badge__rule {
  width: 100%;
  height: 1px;
  margin-block: 12px;
  background-color: var(--color-border);
}

.about-badge__label {
  color: var(--color-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body-sm);
  line-height: 21px;
}

.about-badge__icon {
  display: block;
  width: 34px;
  margin: 0 auto 14px;
  color: var(--color-primary);
}

/* --- Quote / enquiry ------------------------------------------------------ */

.quote-section {
  background-color: var(--color-dark);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quote__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.quote__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__panel {
  padding: 76px 6% 76px 5%;
}

.quote__title {
  color: var(--color-white);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  letter-spacing: var(--ls-lead);
}

.quote__intro {
  max-width: 46ch;
  margin-top: 10px;
  margin-bottom: 36px;
  color: var(--color-on-dark-muted);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-bottom: 28px;
}

.quote-form__full { grid-column: 1 / -1; }

.quote-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
}

.quote-form__note {
  color: var(--color-on-dark-muted);
  font-size: var(--fs-body-sm);
  line-height: 22px;
}

.quote__rule {
  height: 1px;
  margin-block: 34px;
  background-color: var(--color-border-light);
}

/* Trust strip below the form */

.quote__trust {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.quote__trust-copy {
  max-width: 34ch;
  color: var(--color-on-dark-muted);
  font-size: var(--fs-body-sm);
  line-height: 22px;
}

.quote__trust-value {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white);
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: var(--ls-h2);
}

.quote__trust-side {
  text-align: right;
  color: var(--color-on-dark-faint);
  font-size: var(--fs-body-sm);
}

.stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 6px;
  color: #f0a500;
}

.stars svg { width: 16px; height: 16px; }

/* --- Services accordion ---------------------------------------------------
   Collapsed rows are 80px tall and reveal the top slice of the panel:
   the service title and the top of its photo. Expanding grows the row.  */

.services {
  background-color: var(--color-cream);
  overflow: hidden;
}

.service-list {
  margin-top: 56px;
  border-bottom: 1px solid var(--color-border);
}

/* One grid per row: the summary occupies the first two columns of row 1,
   the photo spans both rows in column 3, and the extra copy is a
   height-animated row underneath. Collapsed the row is 80px, so the photo
   shows as a band; opening it grows the row and the photo with it. */
.service {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 5fr 5.8fr;
  grid-template-rows: 80px auto;
  border-top: 1px solid var(--color-border);
}

.service__summary {
  grid-column: 1 / 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1.2fr 5fr;
  align-items: center;
  width: 100%;
  height: 80px;
  text-align: left;
  cursor: pointer;
}

.service__index {
  color: var(--color-text);
  font-size: var(--fs-body);
  transition: color var(--t-base) var(--ease-out);
}

.service__name {
  color: var(--color-heading);
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
  font-weight: var(--fw-medium);
  transition: color var(--t-base) var(--ease-out);
}

.service:hover .service__index,
.service.is-open .service__index { color: var(--color-primary); }

.service:hover .service__name,
.service.is-open .service__name { color: var(--color-primary); }

/* Panel: height is animated by JS via max-height */

.service__more {
  grid-column: 2;
  grid-row: 2;
  height: 0;
  overflow: hidden;
  transition: height 0.55s var(--ease-out);
}

.service__more-inner {
  padding: 2px 40px 56px 0;
}

.service__desc {
  margin-bottom: 22px;
  color: var(--color-text);
}

.service__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.service__points li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
  font-size: var(--fs-body-sm);
  line-height: 24px;
}

.service__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
}

/* Absolute so the photo never dictates the row height — the copy does.
   Width matches the third grid column (5.8 of 12). */
.service__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48.3333%;
  overflow: hidden;
}

.service__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service.is-open .service__media img { transform: scale(1.03); }

/* --- Process --------------------------------------------------------------
   A tall scroll track with a sticky stage. Scroll progress promotes each
   of the four steps in turn.                                            */

.process {
  position: relative;
  background-color: var(--color-white);
}

.process__track {
  position: relative;
  height: 420vh;
}

.process__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.process__head {
  text-align: center;
  padding-top: 132px;   /* clears the fixed header while the stage is stuck */
}

.process__head .eyebrow { justify-content: center; }

.process__stage-inner {
  position: relative;
  flex: 1;
  max-width: var(--container-wide);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* The circle */

.process__circle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 520px;
  height: 520px;
}

.process__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.process__arc-bg {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 1;
}

.process__arc-fg {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-dasharray: var(--arc-len, 1000);
  stroke-dashoffset: var(--arc-len, 1000);
  transition: stroke-dashoffset 0.7s var(--ease-out);
}

/* Centre image stack */

.process__center {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.process__center img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.6s var(--ease-out), transform 0.9s var(--ease-out);
}

.process__center img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Nodes sit at 6, 9, 12 and 3 o'clock, so the bottom-right quarter of the
   circle stays free for the caption. */

.process__node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px dashed var(--color-border);
  background-color: var(--color-white);
  translate: -50% -50%;
  transition: border-color var(--t-base) var(--ease-out);
}

.process__node-dot {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-text-light);
  transition: background-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}

.process__node svg { width: 25px; height: 25px; }

.process__node[data-step='1'] { top: 100%; left: 50%; }
.process__node[data-step='2'] { top: 50%;  left: 0; }
.process__node[data-step='3'] { top: 0;    left: 50%; }
.process__node[data-step='4'] { top: 50%;  left: 100%; }

.process__node.is-active {
  border-color: var(--color-primary);
}

.process__node.is-active .process__node-dot {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Active step caption, to the right of the circle */

.process__caption {
  position: absolute;
  z-index: 3;
  top: 58%;
  left: 60%;
  width: 30%;
  max-width: 380px;
}

.process__caption-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.process__caption-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.process__caption h3 {
  margin-bottom: 10px;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
}

.process__caption p { color: var(--color-text); }

/* Corner cards */

.process__card {
  position: absolute;
  width: 25%;
  max-width: 320px;
  padding: 30px 30px 26px;
  background-color: var(--color-cream);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.process__card[data-step='1'] { top: 4%;   left: var(--gutter); transform: translateX(-32px); }
.process__card[data-step='2'] { bottom: 6%; left: var(--gutter); transform: translateX(-32px); }
.process__card[data-step='3'] { top: 4%;   right: var(--gutter); transform: translateX(32px); }
.process__card[data-step='4'] { bottom: 6%; right: var(--gutter); transform: translateX(32px); }

.process__card.is-active {
  opacity: 1;
  transform: translateX(0);
}

.process__card-step {
  color: var(--color-text);
  font-size: var(--fs-body-sm);
}

.process__card h3 {
  margin-block: 6px 12px;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
}

.process__card p {
  color: var(--color-text);
  font-size: var(--fs-body-sm);
  line-height: 24px;
  max-width: 32ch;
}

.process__card-num {
  position: absolute;
  right: 10px;
  bottom: -34px;
  color: rgba(20, 17, 13, 0.06);
  font-size: 120px;
  line-height: 1;
  font-weight: var(--fw-medium);
  letter-spacing: -4px;
  pointer-events: none;
}

/* Mobile stepper fallback */

.process__steps-mobile { display: none; }

/* --- Benefits marquee ------------------------------------------------------ */

.benefits {
  padding-top: var(--section-space);
  background-color: var(--color-dark);
  overflow: hidden;
}

.benefits__head {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.benefits__title {
  max-width: 16ch;
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

.benefits__rule {
  height: 1px;
  margin-block: 34px;
  background-color: var(--color-border-light);
}

.benefits__lead {
  max-width: 52ch;
  margin-left: auto;
  color: var(--color-on-dark-muted);
}

.benefits__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 56px;
  padding-bottom: var(--section-space);
}

/* --- Reviews --------------------------------------------------------------- */

.reviews {
  position: relative;
  padding-block: var(--section-space);
  background-color: var(--color-white);
  overflow: hidden;
}

.reviews__head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.reviews__head .eyebrow { justify-content: center; }

.reviews__title {
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
}

.reviews__source {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  text-align: center;
  color: var(--color-text);
  font-size: var(--fs-body-sm);
}

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

.reviews__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.review {
  padding: 26px 25px 28px;
  background-color: var(--color-white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.review__mark {
  width: 34px;
  margin: 0 auto 14px;
  color: var(--color-border);
}

.review__text {
  margin-block: 14px 18px;
  color: var(--color-text-dark);
  font-style: italic;
  font-size: var(--fs-body);
  line-height: 27px;
}

.review__author {
  display: block;
  color: var(--color-heading);
  font-weight: var(--fw-medium);
}

.review__meta {
  display: block;
  margin-top: 3px;
  color: var(--color-text-light);
  font-size: var(--fs-body-sm);
}

/* Staggered column rhythm */

.reviews__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews__col--2 { margin-top: 130px; }
.reviews__col--3 { margin-top: 60px; }

/* --- CTA ------------------------------------------------------------------- */

.cta {
  position: relative;
  padding-block: 130px;
  background-color: var(--color-dark);
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.72), rgba(20, 17, 13, 0.58));
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.cta__inner .eyebrow { justify-content: center; }

.cta__title {
  max-width: 18ch;
  margin: 0 auto 18px;
  color: var(--color-white);
}

.cta__lead {
  max-width: 54ch;
  margin: 0 auto 34px;
  color: var(--color-on-dark-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* --- Sub-page header -------------------------------------------------------- */

.page-head {
  position: relative;
  padding-top: 210px;
  padding-bottom: 90px;
  background-color: var(--color-dark);
  overflow: hidden;
}

.page-head__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-head__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.85), rgba(20, 17, 13, 0.96));
}

.page-head__inner {
  position: relative;
  z-index: 2;
}

.page-head__title {
  max-width: 22ch;
  color: var(--color-white);
}

.page-head__lead {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--color-on-dark-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--color-on-dark-faint);
  font-size: var(--fs-body-sm);
}

.breadcrumb a:hover { color: var(--color-white); }

/* --- Long-form prose (legal pages) ------------------------------------------ */

.prose {
  max-width: 74ch;
}

.prose h2 {
  margin-top: 54px;
  margin-bottom: 16px;
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
}

.prose p,
.prose li {
  color: var(--color-text-dark);
  font-size: var(--fs-body);
  line-height: 28px;
}

.prose p + p { margin-top: 16px; }

.prose ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose ul li {
  position: relative;
  padding-left: 22px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
}

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

.prose address {
  font-style: normal;
  color: var(--color-text-dark);
  line-height: 28px;
}

/* --- Service detail cards (Leistungen page) --------------------------------- */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  scroll-margin-top: 140px;
}

.service-detail + .service-detail { margin-top: 100px; }

.service-detail:nth-child(even) .service-detail__media { order: 2; }

.service-detail__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-detail:hover .service-detail__media img { transform: scale(1.04); }

.service-detail__num {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
}

.service-detail h2 {
  margin-bottom: 16px;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
}

.service-detail p { margin-bottom: 20px; }

/* --- Contact page ----------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-card {
  padding: 34px 34px 36px;
  background-color: var(--color-cream);
}

.contact-card h2 {
  margin-bottom: 24px;
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
}

.contact-item {
  padding-block: 18px;
  border-top: 1px solid var(--color-border);
}

.contact-item__label {
  display: block;
  margin-bottom: 3px;
  color: var(--color-text);
  font-size: 13px;
}

.contact-item a,
.contact-item address {
  display: inline-block;
  padding-block: 4px;   /* 34px hit area */
  color: var(--color-heading);
  font-size: var(--fs-h6);
  line-height: 26px;
  font-weight: var(--fw-medium);
  font-style: normal;
}

.contact-item a:hover { color: var(--color-primary); }

.form-panel {
  padding: 46px 46px 50px;
  background-color: var(--color-dark);
}

.form-panel h2 {
  color: var(--color-white);
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
}

.form-panel > p {
  max-width: 52ch;
  margin-top: 10px;
  margin-bottom: 34px;
  color: var(--color-on-dark-muted);
}

/* --- 404 --------------------------------------------------------------------- */

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 160px var(--gutter) 100px;
  background-color: var(--color-dark);
  text-align: center;
}

.error-page__code {
  color: rgba(255, 255, 255, 0.08);
  font-size: 220px;
  line-height: 0.85;
  font-weight: var(--fw-medium);
  letter-spacing: -8px;
}

.error-page h1 {
  margin-block: 16px 14px;
  color: var(--color-white);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

.error-page p {
  max-width: 46ch;
  margin: 0 auto 34px;
  color: var(--color-on-dark-muted);
}

/* --- About split (Über uns) -------------------------------------------------- */

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-split__media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__body h2 {
  margin-bottom: 20px;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
}

.about-split__body p {
  margin-bottom: 16px;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

/* Key facts */

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-block: 34px 34px;
  padding-block: 26px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.fact-list dt {
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 13px;
}

.fact-list dd {
  margin: 0;
  color: var(--color-heading);
  font-weight: var(--fw-medium);
  line-height: 24px;
}

/* --- Value cards ------------------------------------------------------------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  padding: 32px 28px 34px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background-color: rgba(160, 25, 29, 0.08);
  color: var(--color-primary);
}

.value-card__icon svg { width: 23px; height: 23px; }

.value-card h3 {
  margin-bottom: 10px;
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  letter-spacing: var(--ls-h6);
}

.value-card p {
  color: var(--color-text);
  font-size: var(--fs-body-sm);
  line-height: 24px;
}

/* --- Fieldset ---------------------------------------------------------------- */

.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.fieldset legend {
  padding: 0;
  margin-bottom: 12px;
}

.form-field-gap { margin-top: 26px; }
