@font-face {
  font-family: 'Manrope';
  src: url("fonts/local/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url("fonts/local/SourceSerif4-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #071427;
  --bg-elevated: #0d1f3d;
  --bg-soft: #132a4d;
  --card: #10294f;
  --text: #eaf2ff;
  --text-muted: #adc0df;
  --line: #2c4f85;
  --accent: #4a8fff;
  --accent-strong: #2f71dc;
  --accent-soft: #7cb0ff;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #17396a, var(--bg) 45%);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Source Serif 4', serif;
  line-height: 1.15;
  margin-top: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.language-link {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  font-weight: 600;
}

.language-link--subtle {
  font-weight: 400;
}

.language-link:hover,
.language-link:focus-visible {
  color: #ffffff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #071427;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
  top: 1rem;
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 1.4rem 1.2rem 4rem;
  border-bottom: 1px solid var(--line);
}

.hero--home {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.58), rgba(7, 20, 39, 0.42)),
    url("images/mediation-stuttgart-hero-web.jpg") center 28% / cover no-repeat;
}

.hero--about {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.62), rgba(7, 20, 39, 0.45)),
    url("images/mediatorin-stuttgart-hero-web.jpg") center 34% / cover no-repeat;
}

.hero--verfahren {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.62), rgba(7, 20, 39, 0.45)),
    url("images/mediationsverfahren-ablauf-hero.jpg") center center / cover no-repeat;
}

.hero--russisch {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.64), rgba(7, 20, 39, 0.46)),
    url("images/mediation-russisch-hero.jpg") center center / cover no-repeat;
}

.hero--leistungen {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.66), rgba(7, 20, 39, 0.46)),
    url("images/mediationsleistungen-hero.jpg") center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(74, 143, 255, 0.1), transparent 42%),
    linear-gradient(340deg, rgba(124, 176, 255, 0.16), transparent 48%);
  pointer-events: none;
}

.topbar,
.hero__content,
.section,
.footer {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 25;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand__text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 0.35rem;
}

.brand__name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}

.menu__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  line-height: 1;
}

.menu__lang[aria-current='page'] {
  color: var(--text);
  border-color: rgba(136, 176, 255, 0.45);
  background: rgba(136, 176, 255, 0.12);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.hero__content {
  margin-top: 15vh;
  max-width: 760px;
  display: grid;
  gap: 1.15rem;
}

.eyebrow {
  color: var(--accent-soft);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero__content p {
  color: var(--text-muted);
  max-width: 67ch;
}

.hero__intro--mobile {
  display: none;
}

.hero__title--mobile {
  display: none;
}

.hero__copy-panel {
  max-width: 67ch;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(124, 176, 255, 0.22);
  border-radius: 18px;
  background: rgba(7, 20, 39, 0.2);
  backdrop-filter: blur(4px);
}

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

.hero--about .hero__intro {
  max-width: 40rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(124, 176, 255, 0.22);
  border-radius: 18px;
  background: rgba(7, 20, 39, 0.3);
  backdrop-filter: blur(4px);
  color: #f3f7ff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.hero__more {
  display: grid;
  gap: 1.15rem;
}

.hero__more[hidden] {
  display: none;
}

.hero__more-toggle {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--accent-soft);
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.hero__more-toggle:hover {
  color: #ffffff;
}

.hero__more-toggle--close {
  margin-top: 0.2rem;
}

.hero__more-toggle--open[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--accent-soft);
}

.section {
  padding: 5rem 1.2rem;
  display: grid;
  gap: 1.4rem;
}

.section--alt {
  background: linear-gradient(180deg, rgba(16, 41, 79, 0.35), rgba(13, 31, 61, 0.45));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--contact-gap {
  margin-top: 0.9rem;
}

.section--compact {
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.section--note {
  justify-items: center;
}

.section__head {
  display: grid;
  gap: 0.55rem;
}

.section h2 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.section h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: 1.34rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.grid-two p,
.section p {
  color: var(--text-muted);
}

.feature-list,
.timeline {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.45rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  padding: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.card h3 {
  margin: 0;
}

.contact {
  max-width: 720px;
  display: grid;
  gap: 1rem;
}

.contact--split {
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.5rem;
}

.contact--feature {
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.5rem;
}

.contact__content {
  display: grid;
  gap: 1rem;
}

.contact__details {
  display: grid;
  gap: 0.95rem;
}

.contact__action {
  justify-self: center;
  align-self: center;
}

.contact__action .btn {
  width: clamp(16rem, 24vw, 25rem);
  max-width: 100%;
}

.contact--feature-center {
  max-width: 980px;
  grid-template-columns: minmax(0, 23rem) minmax(0, 25rem);
  align-items: center;
  justify-content: space-between;
  column-gap: 3rem;
}

.contact__choice {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  justify-self: center;
  width: min(100%, 25rem);
  transform: translateY(-1.1rem);
}

.contact__divider {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.contact--feature-center .contact__content {
  justify-self: start;
}

.contact--feature-center .contact__action {
  justify-self: center;
  width: 100%;
}

.contact--feature-center .contact__action .btn {
  width: 100%;
}

.section__head--compact {
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.contact a {
  text-decoration: none;
}

.contact-item a {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.35;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  color: var(--accent-soft);
  font-size: 1em;
  line-height: 1;
}

.contact-icon--email {
  font-size: 1.45em;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 20, 39, 0.75);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 0.25rem;
  border: 0;
  cursor: pointer;
}

.contact-form__hint,
.contact-form__status,
.contact-form__error {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-form__error {
  display: none;
  color: #ff8a8a;
  font-weight: 600;
}

.contact-form__error.visible {
  display: block;
}

.contact-form textarea[aria-invalid="true"] {
  border-color: rgba(255, 138, 138, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 138, 138, 0.2);
}

.contact-form__status {
  min-height: 52px;
  border-radius: 12px;
  padding: 12px 14px;
  display: none;
  line-height: 1.4;
}

.contact-form__status.visible {
  display: block;
}

.contact-form__status.success {
  background: rgba(74, 143, 255, 0.14);
  color: var(--text);
  border: 1px solid rgba(124, 176, 255, 0.25);
}

body.modal-open {
  overflow: hidden;
}

.form-error-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2200;
}

.form-error-modal.open {
  display: flex;
}

.form-error-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.form-error-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  background: #ffffff;
  color: #071427;
  border: 1px solid rgba(7, 20, 39, 0.12);
  border-radius: 16px;
  padding: 22px 18px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.form-error-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #071427;
}

.form-error-copy {
  margin: 0 0 16px;
  color: #42536e;
}

.form-error-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(7, 20, 39, 0.14);
  background: #ffffff;
  color: #071427;
  font-size: 24px;
  cursor: pointer;
}

.footer {
  padding: 2rem 1.2rem 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
}

.footer__brandline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-self: start;
}

.footer__brandline p,
.footer__credit {
  margin: 0;
}

.footer__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem;
}

.footer__credit {
  text-align: center;
  justify-self: center;
  width: auto;
}

.footer__credit-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transform: scaleX(-1);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.35rem;
  justify-self: end;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 25rem;
}

.footer__links a {
  white-space: nowrap;
}

.footer a {
  text-decoration: none;
  color: var(--accent-soft);
}

.footer .footer__credit a,
.footer .footer__credit a:visited,
.footer .footer__credit a:hover,
.footer .footer__credit a:active {
  color: var(--text-muted);
}

main a:not(.btn),
.back,
.menu-simple a {
  text-decoration: none;
}

.process-hero {
  min-height: 90vh;
}

.process-menu {
  display: flex;
}

.phase-section {
  padding-top: 3.5rem;
}

.phase-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.phase-card {
  position: relative;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0 1rem 5.2rem;
  min-height: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.phase-card h2 {
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(1.3rem, 3vw, 2.15rem);
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.phase-card p {
  margin: 0;
  color: var(--text-muted);
  max-width: 820px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.phase-number {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 0;
  background: #5f8fdd;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phase-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 2px;
  height: 2.4rem;
  background: rgba(234, 242, 255, 0.25);
}

.phase-closing {
  margin: 0.5rem auto 0;
  max-width: 900px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.phase-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.about-page {
  gap: 1.8rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1.6rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.about-intro-media,
.about-support-media {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
}

.about-intro-media img,
.about-support-media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-intro-media {
  width: min(100%, 380px);
  justify-self: end;
}

.about-support-media {
  max-width: 980px;
  justify-self: center;
}

.about-secondary {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.6rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.about-secondary__content {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.about-support-media--side {
  max-width: 360px;
  justify-self: start;
}

.about-text-block {
  display: grid;
  gap: 0.7rem;
  max-width: 980px;
  margin: 0 auto;
}

.about-text-block--intro {
  margin: 0;
  max-width: none;
}

.about-text-block--note {
  max-width: 880px;
  text-align: center;
}

.about-text-block--intro p + p {
  margin-top: 0.7rem;
}

.about-text-spacer {
  display: block;
  height: 2em;
}

.about-text-spacer--sm {
  height: 1em;
}

.about-text-block--side {
  margin: 0;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.about-text-block h2 {
  margin: 0;
}

.about-text-block--intro h2 {
  margin-bottom: 0.45rem;
}

.about-text-block p {
  margin: 0;
  color: var(--text-muted);
}

.service-areas {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-area {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.service-area:hover {
  border-color: var(--accent-soft);
  background: #14335f;
  transform: translateY(-2px);
}

.service-area:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.service-area__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.service-area h3 {
  margin: 0;
  font-size: 1.08rem;
}

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

.section-title-icon {
  margin-right: 0.4rem;
  font-size: 0.95em;
}

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

  .grid-two {
    grid-template-columns: 1fr;
  }

  .service-areas {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-secondary {
    grid-template-columns: 1fr;
  }

  .about-intro-media {
    justify-self: center;
    max-width: 520px;
  }

  .about-support-media--side {
    justify-self: center;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .topbar {
    gap: 0.7rem;
    align-items: center;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .brand__tagline {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0.7rem;
    padding-bottom: 2.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2101;
    flex: 0 0 auto;
    padding: 0.4rem 0.8rem;
  }

  .menu {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(9, 26, 52, 0.98);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
    display: none;
    z-index: 2100;
  }

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

  .menu a {
    font-size: 0.98rem;
  }

  .menu__lang {
    width: fit-content;
    min-width: 3rem;
    margin-top: 0.2rem;
  }

  .hero__content {
    margin-top: 7vh;
    gap: 0.72rem;
  }

  .hero__content .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .hero__content p {
    max-width: 29ch;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero--home .hero__content {
    max-width: 24rem;
    min-height: calc(100svh - 9.5rem);
  }

  .hero--home .hero__content h1 {
    max-width: 10.8ch;
    font-size: clamp(1.9rem, 7.8vw, 2.75rem);
    line-height: 0.98;
  }

  .hero--about .hero__content h1 {
    max-width: 12.5ch;
    font-size: clamp(1.9rem, 7.8vw, 2.75rem);
    line-height: 0.98;
  }

  .hero--leistungen .hero__content h1 {
    max-width: 14.5ch;
    font-size: clamp(1.9rem, 7.8vw, 2.75rem);
    line-height: 0.98;
  }

  .hero--about .hero__content {
    min-height: calc(100svh - 10rem);
  }

  .hero--about .hero__content .hero__intro {
    margin-top: auto;
    max-width: 23ch;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.55;
    color: #f3f7ff;
  }

  .hero--home .hero__title--desktop {
    display: none;
  }

  .hero--home .hero__title--mobile {
    display: inline;
  }

  .hero--home .hero__content .hero__intro--mobile {
    display: block;
    max-width: 23ch;
    padding: 0;
    color: #f3f7ff;
  }

  .hero--home .hero__content .hero__intro--full {
    display: none;
  }

  .hero__more,
  .hero__more-toggle {
    display: none;
  }

  .hero__actions {
    width: min(100%, 20rem);
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 1.2rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.78rem 1rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero__actions .btn--ghost {
    border: 1px solid rgba(124, 176, 255, 0.38);
    background: rgba(7, 20, 39, 0.16);
    justify-content: center;
    padding-top: 0.52rem;
    padding-bottom: 0.52rem;
    line-height: 1.2;
  }

  .contact--split {
    grid-template-columns: 1fr;
  }

  .about-text-spacer {
    display: none;
  }

  .about-text-spacer--sm {
    display: none;
  }

  .contact--feature {
    grid-template-columns: 1fr;
  }

  .contact--feature-center {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .contact__choice {
    display: grid;
    gap: 0.85rem;
    justify-items: center;
    transform: none;
  }

  .contact__divider {
    justify-self: center;
  }

  .contact__action {
    justify-self: stretch;
  }

  .contact__action .btn {
    width: 100%;
  }

  .phase-card {
    padding-bottom: 4.5rem;
  }

  .phase-number {
    width: 66px;
    height: 66px;
    font-size: 1.6rem;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 0.85rem;
    text-align: center;
  }

  .footer__brandline,
  .footer__links {
    justify-self: center;
    justify-content: center;
  }

  .footer__brandline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__credit-line {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }

  .footer__links {
    gap: 0.85rem 1.2rem;
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
