:root {
  --paper: #ededed;
  --paper-soft: #ededed;
  --surface: #f8f8f8;
  --surface-muted: #eef1f3;
  --text: #233340;
  --muted: #545e68;
  --line: rgba(61, 102, 130, 0.18);
  --blue: #3d6682;
  --blue-deep: #27495f;
  --silver: #b0b8bf;
  --shadow: 0 20px 54px rgba(35, 51, 64, 0.09);
  --radius: 30px;
  --control-radius: 10px;
  --font-copy: "Roboto", "Segoe UI", Arial, sans-serif;
  --font-title: Georgia, "Times New Roman", serif;
  --measure: 50rem;
  --text-sm: 0.92rem;
  --anchor-offset: 108px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: var(--font-copy);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
}

p,
h1,
h2,
h3,
blockquote,
a {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 120px;
  display: flex;
  align-items: flex-start;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  min-height: 88px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 0;
  box-shadow: 0 6px 22px rgba(35, 51, 64, 0.06);
  transition:
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 60px;
  margin-top: 6px;
  box-shadow: 0 10px 28px rgba(35, 51, 64, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  transform-origin: left center;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: none;
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header.is-scrolled .brand-logo-img {
  transform: scale(0.75);
  transform-origin: left center;
}

@media (max-width: 1023px) {
  .brand-logo-img {
    height: 44px;
  }

  .site-header.is-scrolled .brand-logo-img {
    height: 44px;
    transform: scale(0.955);
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: auto;
  min-width: 0;
  transition: width 240ms ease;
  animation: brand-soft-enter 720ms ease both;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: visible;
  transition: width 240ms ease, height 240ms ease;
}

.brand-mark__shape {
  opacity: 1;
}

.brand-mark__shape--light {
  fill: var(--paper);
}

.brand-mark__shape--silver {
  fill: var(--silver);
}

.brand-mark__shape--blue {
  fill: var(--blue);
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.1;
}

.brand-wordmark span {
  display: block;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.brand-wordmark span:first-child {
  color: var(--blue);
  font-size: 1.06rem;
}

.brand-wordmark span:last-child {
  color: #8d9499;
  font-size: 0.86rem;
}

.site-header.is-scrolled .brand-logo {
  width: auto;
}

.site-header.is-scrolled .brand-mark {
  width: 44px;
  height: 44px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  font-size: 0.98rem;
  color: var(--blue-deep);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--control-radius);
  transition: background-color 200ms ease, color 240ms ease;
}

.site-nav a:hover {
  background: var(--surface);
  color: var(--blue);
}

.site-nav a.is-active {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--control-radius);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-toggle__bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 260ms ease, opacity 200ms ease, top 260ms ease;
}

.nav-toggle__bar:nth-child(1) { top: 14px; }
.nav-toggle__bar:nth-child(2) { top: 21px; }
.nav-toggle__bar:nth-child(3) { top: 28px; }

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero,
.section {
  padding: 56px 0;
}

.section {
  position: relative;
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 82px 0 70px;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.shape-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  display: block;
  opacity: 0.4;
  animation: calm-drift 12s ease-in-out infinite alternate;
}

.shape-stone {
  background: rgba(176, 184, 191, 0.32);
  mask: url("../img/blob-1.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-1.svg") center / contain no-repeat;
}

.shape-curve {
  background: rgba(237, 237, 237, 0.82);
  mask: url("../img/blob-2.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-2.svg") center / contain no-repeat;
}

.shape-wedge {
  width: 132px;
  height: 118px;
  background: rgba(61, 102, 130, 0.18);
  mask: url("../img/blob-3.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-3.svg") center / contain no-repeat;
}

.shape-stone-a {
  width: 320px;
  height: 270px;
  top: 10%;
  left: -5%;
  --shape-rotate: -14deg;
  display: none;
}

.shape-stone-b {
  width: 480px;
  height: 400px;
  right: -58px;
  bottom: -12%;
  background: rgba(61, 102, 130, 0.13);
  border-radius: 57% 43% 49% 51% / 46% 58% 42% 54%;
  mask: none;
  -webkit-mask: none;
  --shape-rotate: -8deg;
  animation-delay: -5s;
}

.shape-curve-a {
  width: 280px;
  height: 230px;
  top: 6%;
  right: 24%;
  --shape-rotate: 24deg;
  animation-delay: -2s;
}

.shape-wedge-a {
  width: 210px;
  height: 180px;
  left: 46%;
  bottom: 6%;
  --shape-rotate: -18deg;
  animation-delay: -8s;
  display: none;
}

.section-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.page-blob {
  position: absolute;
  display: block;
  width: 220px;
  height: 220px;
  opacity: 0.16;
  animation: calm-drift 14s ease-in-out infinite alternate;
}

.page-blob-blue {
  background: var(--blue);
}

.page-blob-silver {
  background: var(--silver);
}

.page-blob-paper {
  background: #ffffff;
  opacity: 0.72;
}

.page-blob-offer-a {
  width: 460px;
  height: 460px;
  right: 3%;
  top: -60px;
  mask: url("../img/blob-1.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-1.svg") center / contain no-repeat;
}

.page-blob-offer-b {
  width: 190px;
  height: 190px;
  left: -82px;
  bottom: 24px;
  opacity: 0.22;
  mask: url("../img/blob-5.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-5.svg") center / contain no-repeat;
  display: none;
}

.page-blob-approach-a {
  width: 360px;
  height: 360px;
  left: -150px;
  top: 72px;
  mask: url("../img/blob-1.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-1.svg") center / contain no-repeat;
  display: none;
}

.page-blob-approach-b {
  width: 360px;
  height: 360px;
  right: -60px;
  bottom: 4%;
  opacity: 0.16;
  mask: url("../img/blob-3.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-3.svg") center / contain no-repeat;
}

.page-blob-process-a {
  width: 260px;
  height: 260px;
  right: -96px;
  top: 50%;
  opacity: 0.2;
  mask: url("../img/blob-4.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-4.svg") center / contain no-repeat;
  display: none;
}

.page-blob-process-b {
  width: 690px;
  height: 590px;
  left: -8%;
  bottom: -118px;
  opacity: 0.22;
  --shape-rotate: -11deg;
  mask: url("../img/blob-organic.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-organic.svg") center / contain no-repeat;
  display: none;
}

.page-blob-costs-a {
  width: 300px;
  height: 300px;
  left: -122px;
  top: -24px;
  opacity: 0.09;
  mask: url("../img/blob-5.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-5.svg") center / contain no-repeat;
}

.page-blob-about-a {
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: 12%;
  opacity: 0.22;
  mask: url("../img/blob-1.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-1.svg") center / contain no-repeat;
}

.page-blob-about-b {
  width: 300px;
  height: 300px;
  left: -110px;
  top: auto;
  bottom: -120px;
  opacity: 0.16;
  background: var(--blue);
  mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  animation-delay: -7s;
}

.shape-stone-c {
  width: 300px;
  height: 300px;
  left: -70px;
  bottom: -90px;
  background: rgba(176, 184, 191, 0.28);
  mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
  --shape-rotate: 14deg;
  animation-delay: -4s;
}

.page-blob-approach-c {
  width: 460px;
  height: 460px;
  left: -160px;
  top: 4%;
  opacity: 0.22;
  background: var(--silver);
  mask: url("../img/logo-stone-light.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-light.svg") center / contain no-repeat;
  animation-delay: -6s;
}

.page-blob-process-c {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 18%;
  bottom: auto;
  opacity: 0.18;
  background: var(--blue);
  mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  animation-delay: -3s;
}

.page-blob-costs-a {
  width: 320px;
  height: 320px;
  left: -120px;
  top: -40px;
  opacity: 0.12;
  background: var(--silver);
  mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
}

.page-blob-costs-b {
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -90px;
  opacity: 0.14;
  background: var(--silver);
  mask: url("../img/logo-stone-light.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-light.svg") center / contain no-repeat;
  animation-delay: -5s;
}

.page-blob-quote-a {
  width: 280px;
  height: 280px;
  left: 6%;
  top: -70px;
  opacity: 0.18;
  background: var(--silver);
  mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-silver.svg") center / contain no-repeat;
}

.page-blob-quote-b {
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -80px;
  opacity: 0.16;
  background: var(--blue);
  mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-stone-blue.svg") center / contain no-repeat;
  animation-delay: -4s;
}

.hero-grid,
.split-grid {
  display: grid;
  gap: 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.hero-grid > *,
.split-grid > *,
.profile-grid > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy--centered {
  text-align: left;
  max-width: none;
}

.hero-copy--centered .eyebrow {
  margin-bottom: 10px;
}

.hero-copy--centered .lead {
  max-width: 60rem;
}

.hero-copy--centered h1 {
  max-width: none;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.eyebrow {
  margin: 0 0 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 500;
  color: #636c78;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

h1 {
  max-width: none;
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  color: var(--blue);
}

h2 {
  max-width: 20ch;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  color: var(--blue-deep);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  color: var(--blue-deep);
}

.lead,
.body-copy,
.section-heading > p:last-child,
.hero-card p,
.contact-strip p,
.footer-inner p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-card p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.lead {
  max-width: var(--measure);
  margin: 24px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  color: var(--blue-deep);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 102, 130, 0.34);
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  background: var(--surface);
}

.hero-card,
.service-card,
.benefit-panel,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-card,
.service-card,
.legal-card {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.hero-image {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-logo-mark {
  display: block;
  width: 74px;
  height: auto;
  margin-bottom: 24px;
}

.card-label,
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--control-radius);
  color: var(--blue);
  background: var(--surface-muted);
  border: 1px solid rgba(176, 184, 191, 0.55);
}

.card-label {
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-list {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.contact-list dt {
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.contact-list dd {
  margin: 0;
  color: var(--muted);
}

.contact-list dd span {
  display: block;
}

.section-soft {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.visual-section {
  padding: 0 0 56px;
}

.section-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-single {
  object-position: center right;
}

.section-image-wide {
  aspect-ratio: 16 / 7;
}

.hero-slider {
  display: grid;
  grid-template-areas: "slide";
}

.hero-slider .hero-slide {
  grid-area: slide;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2.1s ease-in-out;
  transform: translate3d(7%, 0, 0) scale(1.14);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-slider .hero-slide.is-active {
  animation: heroDesktopPan 6.5s linear both;
  opacity: 1;
  z-index: 1;
}

.hero-slider .hero-slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

@keyframes heroDesktopPan {
  from {
    transform: translate3d(7%, 0, 0) scale(1.14);
  }

  to {
    transform: translate3d(-7%, 0, 0) scale(1.14);
  }
}

@keyframes heroMobilePan {
  from {
    transform: translate3d(11%, 0, 0) scale(1.22);
  }

  to {
    transform: translate3d(-11%, 0, 0) scale(1.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide {
    animation: none;
    transition: none;
  }
}

[data-parallax] {
  overflow: hidden;
}

[data-parallax] img {
  transform: scale(1.22);
  will-change: transform;
}

.section-image-small {
  aspect-ratio: 4 / 3;
  margin-top: 24px;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(176, 184, 191, 0.28), rgba(237, 237, 237, 0.78)),
    repeating-linear-gradient(45deg, rgba(61, 102, 130, 0.08) 0 1px, transparent 1px 18px);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-placeholder .placeholder-form {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.placeholder-form-stone {
  width: 32%;
  aspect-ratio: 1.22;
  right: 8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.64);
  mask: url("../img/blob-4.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-4.svg") center / contain no-repeat;
  animation: calm-drift 10s ease-in-out infinite alternate;
}

.placeholder-form-curve {
  width: 27%;
  aspect-ratio: 1.24;
  left: 8%;
  top: 18%;
  background: rgba(61, 102, 130, 0.14);
  mask: url("../img/blob-5.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-5.svg") center / contain no-repeat;
  --shape-rotate: 14deg;
  animation: calm-drift 13s ease-in-out infinite alternate-reverse;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  display: block;
  inset: auto 8% -28% auto;
  width: 34%;
  aspect-ratio: 1.18;
  background: rgba(255, 255, 255, 0.62);
  mask: url("../img/blob-2.svg") center / contain no-repeat;
  -webkit-mask: url("../img/blob-2.svg") center / contain no-repeat;
}

.image-placeholder span {
  position: relative;
  z-index: 1;
}

.image-placeholder > span:not(.placeholder-form) {
  z-index: 2;
}

.image-placeholder-wide {
  min-height: 220px;
}

.image-placeholder-small {
  min-height: 160px;
  margin-top: 24px;
}

.image-placeholder-profile {
  min-height: 210px;
  margin-bottom: 24px;
}

.section-heading {
  display: block;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading h2 {
  max-width: none;
}

.section-heading > p:last-child {
  max-width: 60rem;
  margin: 0;
}

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

.service-card {
  min-height: 100%;
  padding: 24px 24px 20px;
}

.service-card h3 {
  margin: 0 0 14px;
}

.service-card p {
  margin: 0;
}

.service-index {
  width: 40px;
  height: 40px;
  margin: 0 0 18px;
  font-weight: 700;
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.process-layout {
  display: grid;
  gap: 28px;
}

.process-copy {
  max-width: 780px;
}

.body-copy {
  max-width: var(--measure);
  margin: 24px 0 0;
}

.rich-copy {
  color: var(--muted);
}

.rich-copy h2,
.rich-copy h3 {
  max-width: none;
  margin: 0 0 14px;
  font-family: var(--font-copy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--blue-deep);
}

.rich-copy h3 {
  margin-top: 22px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.profile-card.rich-copy h2 {
  font-family: var(--font-title);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.16;
  text-transform: none;
  letter-spacing: 0;
  color: var(--blue-deep);
}

.rich-copy p {
  margin: 0 0 14px;
}

.rich-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
}

.rich-copy li::marker {
  color: var(--blue);
}

.info-panel,
.profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-panel {
  padding: 28px;
}

.costs-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
  width: 100%;
}

.costs-image {
  aspect-ratio: 4 / 3;
}

.info-panel .eyebrow {
  margin-bottom: 10px;
}

.info-panel p:last-child,
.profile-card > *:last-child {
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.profile-card--georg {
  margin-top: auto;
}

.profile-card--antje {
  margin-top: 64px;
}

.about-intro {
  padding-top: 8px;
}

.about-intro h2 {
  margin: 0 0 16px;
}

.about-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 28rem;
}

.profile-card {
  position: relative;
  padding: 124px 32px 32px;
}

.profile-image {
  position: absolute;
  top: -56px;
  left: 32px;
  width: 168px;
  height: 168px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-card:first-child .profile-image img {
  object-position: center 18%;
}

.benefit-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.benefit-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item:last-child {
  border-bottom: 0;
}

.benefit-item > summary {
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.05rem;
}

.benefit-item > summary::-webkit-details-marker {
  display: none;
}

.benefit-item > summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -2px;
}

.benefit-item__bullet {
  display: none;
}

.benefit-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.benefit-item__icon::before,
.benefit-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.benefit-item__icon::before {
  width: 14px;
  height: 2px;
}

.benefit-item__icon::after {
  width: 2px;
  height: 14px;
}

.benefit-item[open] .benefit-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.benefit-item > p {
  display: block;
  margin: 0;
  padding: 0 22px 22px;
  overflow: hidden;
  min-height: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.approach-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-content {
  display: flex;
  flex-direction: column;
}

.approach-content h2 {
  margin: 0 0 16px;
}

.approach-content .body-copy {
  margin: 0;
  max-width: var(--measure);
}

.approach-content .benefit-panel {
  margin-top: 28px;
}

.ablauf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 48px;
  row-gap: 36px;
  align-items: start;
}

.ablauf-intro {
  display: flex;
  flex-direction: column;
  min-height: 700px;
}

.ablauf-intro h2 {
  margin: 0 0 16px;
}

.ablauf-cta {
  margin-top: 18px;
}

.ablauf-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: var(--measure);
}

.ablauf-cta {
  align-self: flex-start;
}

.process-logo-scroll {
  width: 190px;
  max-width: 55%;
  margin-top: clamp(34px, 5vw, 72px);
  margin-left: -10px;
  opacity: 1;
  transform: translate3d(
    0,
    calc(-30px * var(--logo-scroll-progress, 0)),
    0
  );
}

.process-logo-scroll__mark {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.process-logo-scroll__stone {
  transform-box: fill-box;
  transform-origin: center;
  will-change: d, transform, opacity;
}

.process-logo-scroll:not(.is-entered) .process-logo-scroll__stone {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0.97);
}

.process-logo-scroll.is-entered .process-logo-scroll__stone {
  animation: processStoneEnter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.process-logo-scroll.is-entered .process-logo-scroll__stone--blue {
  animation-delay: 80ms;
}

.process-logo-scroll.is-entered .process-logo-scroll__stone--light {
  animation-delay: 150ms;
}

.process-logo-scroll__stone--silver {
  fill: var(--silver);
  transform: none;
}

.process-logo-scroll__stone--blue {
  fill: var(--blue);
  transform: none;
}

.process-logo-scroll__stone--light {
  fill: #d8d6d2;
  transform: none;
}

@keyframes processStoneEnter {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale(0.97);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -14px, 0) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, -8px, 0) scale(1);
  }
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 44px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(61, 102, 130, 0.18) 100%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.timeline-step__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  font-family: var(--font-title);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--paper);
}

.timeline-step__number {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.timeline-step__body {
  padding-top: 6px;
}

.timeline-step__body h3 {
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--blue-deep);
}

.timeline-step__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
  max-width: 46rem;
}

.timeline-outro {
  margin: 36px 0 0;
  padding: 22px 26px;
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 var(--control-radius) var(--control-radius) 0;
  color: var(--blue-deep);
  font-family: var(--font-title);
  font-size: 1.18rem;
  line-height: 1.4;
  max-width: 44rem;
}

.costs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.costs-intro {
  display: flex;
  flex-direction: column;
}

.costs-intro h2 {
  margin: 0 0 16px;
}

.costs-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: var(--measure);
  margin: 0 0 28px;
}

.costs-image-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.costs-image-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.costs-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.costs-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(35, 51, 64, 0.05);
}

.costs-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  color: var(--blue-deep);
  font-family: var(--font-title);
  font-size: 1.1rem;
}

.costs-item > summary::-webkit-details-marker {
  display: none;
}

.costs-item > summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.costs-item__title {
  flex: 1;
}

.costs-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.costs-item__icon::before,
.costs-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 200ms ease;
}

.costs-item__icon::before {
  width: 14px;
  height: 2px;
}

.costs-item__icon::after {
  width: 2px;
  height: 14px;
}

.costs-item[open] .costs-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.costs-item > p {
  display: block;
  margin: 0;
  padding: 0 22px 20px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal {
  transform: translateX(-32px);
}

.service-card.reveal.is-visible {
  transform: translateX(0);
}

.benefit-item p {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
}

.section-accent {
  background: transparent;
}

.quote-block {
  position: relative;
  padding: 60px 0 8px;
}

.quote-mark {
  position: absolute;
  top: 0;
  left: -8px;
  width: 180px;
  height: auto;
  margin: 0;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.quote-block blockquote {
  position: relative;
  z-index: 1;
}

.quote-block blockquote .word {
  display: inline-block;
  white-space: nowrap;
}

.quote-block blockquote .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--char-delay, 0ms),
    transform 520ms ease var(--char-delay, 0ms);
  will-change: opacity, transform;
}

.quote-block.is-revealed blockquote .char {
  opacity: 1;
  transform: translateY(0);
}

blockquote {
  max-width: 30ch;
  font-size: clamp(1.55rem, 2.55vw, 2.35rem);
  color: var(--blue-deep);
}

.quote-source {
  margin: 14px 0 0;
  color: var(--ink-soft, #4a5560);
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--blue);
}

.contact-card__media {
  margin: 0;
  overflow: hidden;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1;
}

.contact-card__panel {
  grid-column: 1;
  grid-row: 1;
}

.contact-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__panel {
  padding: 56px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card__panel h2 {
  max-width: 100%;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  white-space: nowrap;
}

.contact-card__panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: -14px;
}

.contact-card__panel h2 {
  margin: 0;
  color: #ffffff;
  max-width: 18ch;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 0;
}

.contact-card__actions .button-primary {
  color: var(--blue-deep);
  background: #ffffff;
  border-color: #ffffff;
}

.contact-card__actions .button-primary:hover {
  background: var(--paper);
  color: var(--blue-deep);
}

.button-ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.contact-card__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-card__details > div {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}

.contact-card__details > div {
  min-width: 0;
}

.contact-card__details dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.contact-card__details dd {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-card__details dd span {
  display: block;
}

.hours-table {
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0 0.65rem 0 0;
  color: #ffffff;
  font: inherit;
  line-height: 1.55;
  text-align: left;
  white-space: nowrap;
}

.hours-table th {
  min-width: 6.4rem;
  font-weight: 700;
}

.hours-table td:last-child {
  padding-right: 0;
}

.contact-card__details a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 4px;
}

.contact-card__details .button.contact-card__phone {
  display: inline-flex;
  margin-top: 14px;
  text-decoration: none;
  color: var(--blue-deep);
  background: #ffffff;
  border-color: #ffffff;
}

.contact-card__details .button.contact-card__phone:hover {
  background: var(--paper);
  color: var(--blue-deep);
}

.contact-card__emails {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}

.contact-card__emails li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-card__emails-name {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card__emails a {
  word-break: break-word;
}

.stop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.bus-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bus-lines li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-card__note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-card__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
}

.section.section-accent:has(.quote-block--stones) {
  padding-top: 0;
  margin-top: -120px;
}

.quote-block--stones {
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.quote-block--stones .process-logo-scroll {
  width: 100%;
  max-width: 160px;
  margin: 60px 0 0;
  transform: none;
}

.quote-block--stones .quote-mark {
  display: none;
}

.quote-block--stones blockquote {
  max-width: 30ch;
}

@media (max-width: 720px) {
  .quote-block--stones {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quote-block--stones .process-logo-scroll {
    width: 130px;
  }
}

@media (min-width: 701px) and (max-width: 1023px) {
  #ablauf {
    padding-bottom: 48px;
  }

  .section.section-accent:has(.quote-block--stones) {
    margin-top: 0;
    padding-top: 56px;
  }
}

.site-footer {
  position: relative;
  padding: 0 0 30px;
}

.footer-stone {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 420px;
  height: 240px;
  pointer-events: none;
  opacity: 0.18;
  background: var(--blue);
  mask: url("../img/blob-process.svg") center top / 420px 357px no-repeat;
  -webkit-mask: url("../img/blob-process.svg") center top / 420px 357px no-repeat;
  z-index: 0;
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
}

body {
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.footer-inner > p {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  align-items: center;
}

.footer-links p {
  margin: 0;
}

.footer-links a {
  color: var(--blue);
  font-weight: 400;
}

.legal-page {
  padding: 52px 0 28px;
}

.legal-hero {
  padding: 32px 0 8px;
}

.legal-shell {
  width: min(1240px, calc(100vw - 40px));
}

.legal-card {
  padding: 32px;
}

.legal-page .legal-card.reveal {
  opacity: 1;
  transform: none;
}

.legal-copy {
  color: var(--muted);
}

.legal-copy h2,
.legal-copy h3 {
  margin: 30px 0 14px;
  color: var(--blue-deep);
}

.legal-copy h2:first-child,
.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin: 0 0 14px;
}

.legal-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(48, 76, 96, 0.16);
}

.legal-credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

.legal-credit img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes calm-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--shape-rotate, 0deg));
  }

  to {
    transform: translate3d(14px, -10px, 0) rotate(var(--shape-rotate, 0deg));
  }
}

@keyframes brand-soft-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-grid,
  .card-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .about-left {
    gap: 72px;
  }

  .profile-card--antje {
    margin-top: 0;
  }

  .profile-card--georg {
    margin-top: 0;
  }

  .profile-card {
    padding: 100px 24px 24px;
  }

  .profile-image {
    top: -44px;
    left: 24px;
    width: 130px;
    height: 130px;
  }

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

  .contact-card__media {
    aspect-ratio: 16 / 10;
    max-height: 320px;
    grid-column: 1;
    grid-row: 1;
  }

  .contact-card__panel {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-card__panel {
    padding: 32px;
    gap: 20px;
  }

  .contact-card__panel h2 {
    white-space: normal;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .contact-card__details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .costs-panel {
    grid-template-columns: 1fr;
  }

  .costs-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ablauf-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ablauf-intro {
    min-height: 0;
  }

  .process-logo-scroll {
    width: min(145px, 40vw);
    margin-top: 18px;
    margin-left: 0;
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .approach-image img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .costs-image-figure {
    max-width: 480px;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .contact-card__actions {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(35, 51, 64, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    font-size: 1rem;
    transition: max-height 320ms ease, visibility 0s linear 320ms;
  }

  .site-header.is-nav-open .site-nav {
    max-height: calc(100vh - 120px);
    visibility: visible;
    transition: max-height 320ms ease, visibility 0s linear 0s;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --anchor-offset: 96px;
  }

  .container {
    width: min(1240px, calc(100vw - 24px));
  }

  .site-header {
    height: 82px;
  }

  .header-inner {
    margin-top: -18px;
    min-height: 74px;
    gap: 8px;
    padding-left: 10px;
    padding-right: 8px;
    overflow: hidden;
  }

  .site-header.is-nav-open {
    z-index: 30;
  }

  .site-header.is-nav-open .header-inner {
    overflow: visible;
  }

  .site-header.is-scrolled .header-inner {
    margin-top: 0;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 52px);
    overflow: hidden;
  }

  .brand-logo-img {
    width: min(100%, 266px);
    height: auto;
    max-height: 44px;
    margin-left: 0;
  }

  .brand-logo {
    width: auto;
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-wordmark span:first-child {
    font-size: 0.95rem;
  }

  .brand-wordmark span:last-child {
    font-size: 0.78rem;
  }

  .brand-wordmark span {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .about-left {
    display: contents;
  }

  .about-intro {
    order: 1;
  }

  .profile-card--antje {
    order: 2;
  }

  .profile-card--georg {
    order: 3;
  }

  .hero,
  .section {
    padding: 40px 0;
  }

  #ablauf {
    padding-bottom: 12px;
  }

  .section.section-accent:has(.quote-block--stones) {
    margin-top: 0;
    padding-top: 28px;
  }

  .quote-block--stones {
    gap: 18px;
  }

  .quote-block--stones .process-logo-scroll {
    width: 112px;
    margin: 14px 0 14px -10px;
  }

  .shape-stone-a {
    width: 160px;
    height: 132px;
    top: 25%;
    left: -18%;
  }

  .shape-wedge-a {
    display: none;
  }

  .shape-stone-b {
    display: block;
    width: 360px;
    height: 320px;
    right: -250px;
    bottom: 6px;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0.62;
  }

  .shape-curve-a {
    display: block;
    width: 180px;
    height: 150px;
    top: 8px;
    right: -72px;
    opacity: 0.58;
  }

  .page-blob {
    width: 150px;
    height: 150px;
    opacity: 0.12;
  }

  .page-blob-offer-a {
    display: block;
    width: 250px;
    height: 250px;
    top: -54px;
    right: -86px;
    opacity: 0.14;
  }

  .page-blob-costs-a {
    display: block;
    width: 230px;
    height: 230px;
    left: auto;
    right: -92px;
    top: -82px;
    opacity: 0.13;
  }

  .page-blob-process-a {
    display: block;
    width: 280px;
    height: 280px;
    right: -176px;
    top: -18px;
    opacity: 0.12;
  }

  .page-blob-process-b {
    display: none;
  }

  .page-blob-process-c {
    display: none;
  }

  .page-blob-offer-b,
  .page-blob-approach-b,
  .page-blob-about-a {
    display: none;
  }

  .visual-section {
    padding-bottom: 40px;
  }

  .section-image-wide {
    aspect-ratio: 4 / 2.5;
  }

  .hero-image-single {
    object-position: 82% center;
  }

  .hero-slider .hero-slide {
    object-position: 34% center;
    transform: translate3d(11%, 0, 0) scale(1.22);
  }

  .hero-slider .hero-slide.is-active {
    animation: heroMobilePan 6.5s linear both;
  }

  .image-placeholder-wide,
  .image-placeholder-profile {
    min-height: 170px;
  }

  .hero-card,
  .service-card,
  .legal-card {
    padding: 22px;
  }

  .contact-card__panel {
    padding: 24px;
  }

  .contact-card__media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    max-height: none;
  }

  .contact-card__panel h2 {
    max-width: none;
    white-space: normal;
    font-size: clamp(1.35rem, 5.2vw, 1.72rem);
    line-height: 1.08;
  }

  .footer-stone {
    left: auto;
    right: -82px;
    bottom: -82px;
    transform: none;
    width: 280px;
    height: 190px;
    opacity: 0.16;
    mask: url("../img/blob-process.svg") center / contain no-repeat;
    -webkit-mask: url("../img/blob-process.svg") center / contain no-repeat;
  }

  .site-footer {
    overflow: hidden;
  }

  .timeline-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .timeline-step__marker {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .timeline::before {
    left: 19px;
  }

  #ablauf .process-logo-scroll {
    margin-bottom: -34px;
  }

  .benefit-item > summary {
    grid-template-columns: 1fr 16px;
    padding: 16px 18px;
    font-size: 1rem;
  }

  .benefit-item > p {
    padding: 0 18px 16px;
  }

  .costs-card {
    padding: 20px 22px;
  }

  .hero-copy,
  .hero-card,
  .hero-image {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-image {
    min-height: 320px;
  }

  .lead {
    width: 100%;
    max-width: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.9vw, 2.45rem);
    line-height: 1.08;
  }

  .footer-inner,
  .hero-actions,
  .contact-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .legal-shell {
    width: min(1240px, calc(100vw - 48px));
  }
}

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

  .shape,
  .brand-logo,
  .brand-mark__shape,
  .process-logo-scroll__stone,
  .placeholder-form,
  .service-card,
  .reveal,
  .benefit-item > p,
  .benefit-item__icon::before,
  .benefit-item__icon::after {
    animation: none;
    transition: none;
  }

  .brand-mark__shape {
    opacity: 1;
    transform: none;
  }

  .brand-logo {
    opacity: 1;
    transform: none;
  }

  .process-logo-scroll__stone--silver,
  .process-logo-scroll__stone--blue,
  .process-logo-scroll__stone--light {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.86rem;
  }
}
