:root {
  --green: #0d5e3a;
  --green-deep: #084a2d;
  --ink: #17221d;
  --muted: #68736d;
  --line: #d8dedb;
  --paper: #ffffff;
  --soft: #f2f5f3;
  --shell: min(92vw, 1540px);
  --display: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--green);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 6.2rem;
  padding: 1.35rem 4vw;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  transition: min-height 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  border-bottom-color: var(--line);
}

.wordmark {
  display: block;
  width: clamp(8.8rem, 12vw, 11.4rem);
  color: var(--green);
  line-height: 1;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.6vw, 3.2rem);
  font-size: 0.86rem;
  letter-spacing: 0.015em;
}

.site-nav a {
  position: relative;
  padding-block: 0.4rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  margin-left: 0.3rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--green);
  color: var(--green);
}

.site-nav .nav-contact::after {
  display: none;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  background: var(--green);
  color: #fff;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.4rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.language-switcher a {
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  line-height: 1;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  border-bottom-color: var(--green);
  color: var(--green);
}

.site-nav .language-switcher a::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 1px;
  margin: 0.42rem auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  padding-top: clamp(2.4rem, 4vw, 5rem);
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(32rem, 1.22fr);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  min-height: min(68vh, 48rem);
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.048em;
}

h1 {
  max-width: 10ch;
  margin: 2rem 0 1.5rem;
  font-size: clamp(3.4rem, 6.2vw, 7.6rem);
  line-height: 0.92;
}

.hero-intro {
  max-width: 31rem;
  margin: 0;
  color: #47524c;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2.3rem;
  margin-top: 2.6rem;
}

.text-link,
.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 13.7rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 0.9rem;
}

.text-link > .link-arrow-icon,
.profile-link > .link-arrow-icon,
.contact-callout > a > .link-arrow-icon {
  transition: transform 180ms ease;
}

.text-link:hover > .link-arrow-icon,
.text-link:focus-visible > .link-arrow-icon,
.profile-link:hover > .link-arrow-icon,
.profile-link:focus-visible > .link-arrow-icon,
.contact-callout > a:hover > .link-arrow-icon,
.contact-callout > a:focus-visible > .link-arrow-icon {
  transform: translate(0.18rem, -0.18rem);
}

.muted-link {
  border-color: var(--line);
  color: var(--ink);
}

.hero-figure {
  position: relative;
  margin: 0;
}

.hero-figure::before {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  z-index: -1;
  width: 42%;
  height: 54%;
  background: var(--soft);
  content: "";
}

.hero-figure img {
  width: 100%;
  min-height: 29rem;
  object-fit: cover;
}

.hero-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 5vw, 6rem);
  background: var(--green);
  color: #fff;
}

.band-item {
  display: flex;
  min-height: 8.7rem;
  padding: 1.8rem 2.2rem;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.band-item:last-child {
  border-right: 0;
}

.band-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.band-value {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.section {
  padding-block: clamp(7rem, 10vw, 11rem);
}

.portfolio {
  padding-top: clamp(2.75rem, 3.5vw, 4rem);
  padding-bottom: clamp(3.75rem, 4.5vw, 5.25rem);
}

.portfolio .section-heading {
  margin-bottom: clamp(3rem, 4.5vw, 4.8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(24rem, 1.55fr);
  gap: clamp(2rem, 5vw, 7rem);
  margin-bottom: clamp(3.5rem, 6vw, 6.5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.section-heading h2,
.profile-intro h2,
.contact-callout h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 6rem);
  line-height: 0.96;
}

.section-heading > div > p {
  max-width: 34rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.6rem, 5vw, 6rem) clamp(1.6rem, 3vw, 3.5rem);
}

.project-card-large {
  grid-column: 1 / -1;
}

.project-image {
  overflow: hidden;
  background: var(--soft);
}

.project-card-large .project-image {
  aspect-ratio: 2.15 / 1;
}

.project-card:not(.project-card-large) .project-image {
  aspect-ratio: 4 / 3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
}

.project-meta p {
  margin: 0 0 0.3rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.project-meta > span {
  padding-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.83rem;
  white-space: nowrap;
}

.hero-editorial {
  padding: 0;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.hero-editorial-inner {
  display: flex;
  min-height: min(37rem, 55vh);
  padding-block: clamp(2rem, 3vw, 3.25rem) 1.5rem;
  flex-direction: column;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow-light span {
  background: #fff;
}

.hero-statement {
  display: grid;
  grid-template-columns: minmax(34rem, 1.55fr) minmax(18rem, 0.45fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
  margin-block: auto;
  padding-block: clamp(2rem, 3vw, 2.8rem);
}

.hero-editorial h1 {
  max-width: 9.5ch;
  margin: 0;
  color: #fff;
  font-size: clamp(4.8rem, 8.4vw, 9.5rem);
  line-height: 0.91;
  letter-spacing: -0.058em;
}

.hero-editorial .hero-title-refined {
  max-width: none;
  font-size: clamp(3.8rem, 5.8vw, 7.8rem);
  line-height: 0.94;
}

.hero-title-refined span {
  display: block;
  white-space: nowrap;
}

.hero-aside {
  padding-bottom: 0.7rem;
}

.hero-aside > p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.hero-copy-mobile {
  display: none;
}

.hero-aside .hero-actions {
  display: block;
  margin-top: 2.7rem;
}

.text-link-light {
  display: flex;
  width: 100%;
  margin-top: 1.15rem;
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.link-arrow-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-credentials span {
  padding: 1.35rem 1.5rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-credentials span + span {
  padding-left: 1.5rem;
}

.hero-credentials span:last-child {
  border-right: 0;
}

.project-grid-equal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3.5rem);
}

.project-grid-equal .project-image {
  aspect-ratio: 1 / 1.08;
}

.project-grid-equal .project-card:first-child .project-image img {
  object-position: 52% center;
}

.project-grid-equal .project-meta {
  display: block;
}

.project-grid-equal .project-meta > span {
  display: block;
  margin-top: 0.35rem;
}

.reference-index {
  display: grid;
  grid-template-columns: minmax(15rem, 0.5fr) minmax(30rem, 1.5fr);
  gap: clamp(3rem, 7vw, 9rem);
  margin-top: clamp(7rem, 11vw, 12rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.reference-index-heading h3 {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.reference-index-heading > p:last-child {
  max-width: 19rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.4rem, 3.4vw, 4rem) clamp(1.2rem, 2vw, 2.4rem);
}

.portfolio-gallery {
  align-items: start;
}

.reference-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 420ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reference-card:hover .reference-image img {
  filter: saturate(1);
  transform: scale(1.025);
}

.reference-meta {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 0.8rem;
  align-items: baseline;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.reference-meta span {
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.reference-meta h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.reference-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.profile {
  padding-block: clamp(4.5rem, 5.5vw, 6.5rem);
  background: var(--green);
  color: #fff;
}

.company {
  padding-top: clamp(3.75rem, 4.8vw, 5.25rem);
  padding-bottom: clamp(4.25rem, 5.4vw, 5.75rem);
}

.profile-inner {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(28rem, 1.2fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.section-index-light {
  color: rgba(255, 255, 255, 0.66);
}

.profile-intro h2 {
  margin-top: 2rem;
}

.profile-intro > p:not(.section-index) {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.profile-link {
  margin-top: 3.4rem;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.profile-list {
  margin: 0;
}

.profile-list > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) minmax(15rem, 1.6fr);
  gap: 1.5rem;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.profile-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.profile-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  line-height: 1.35;
}

.company-heading {
  margin-bottom: clamp(1.75rem, 2.25vw, 2.5rem);
}

.company-copy {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 7vw, 9rem);
  width: min(100%, 76rem);
  margin-left: auto;
}

.company-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.company-copy .company-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 4.25vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.principle {
  min-height: 12.5rem;
  padding: 1.4rem 2rem 1.8rem 0;
  border-right: 1px solid var(--line);
}

.principle + .principle {
  padding-left: 2rem;
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--green);
  font-size: 0.72rem;
}

.principle h3 {
  margin: 2.5rem 0 0.7rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: var(--soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(24rem, 1fr) minmax(13rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.contact-callout p {
  max-width: 34rem;
  margin: 1.6rem 0 2.8rem;
  color: var(--muted);
}

.contact-callout > a {
  display: flex;
  justify-content: space-between;
  width: min(100%, 29rem);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.contact address {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
}

.contact-address > span {
  display: block;
  margin: 0;
  padding: 0;
}

.contact-address .contact-phone {
  display: inline-block;
  margin-top: 1.8rem;
}

.contact address a {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  min-height: 12rem;
  padding-block: 3rem;
}

.site-footer p,
.site-footer div {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-footer div a:hover,
.site-footer div a:focus-visible {
  color: var(--green);
}

.legal-main {
  padding-block: clamp(5rem, 8vw, 9rem);
}

.legal-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(24rem, 1.55fr);
  gap: clamp(2rem, 5vw, 7rem);
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.legal-heading h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 8rem);
  line-height: 0.94;
}

.legal-content {
  width: min(100%, 76rem);
  margin: clamp(4rem, 7vw, 7rem) 0 0 auto;
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(20rem, 1.58fr);
  gap: clamp(2rem, 5vw, 7rem);
  padding-block: clamp(2rem, 3.5vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-copy {
  max-width: 48rem;
}

.legal-copy p,
.legal-copy address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.legal-copy p + p {
  margin-top: 1rem;
}

.legal-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 0.22em;
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
  color: var(--green);
  text-decoration-color: var(--green);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.legal-header-actions .language-switcher {
  margin-left: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(0.9rem);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-delay {
  transition-delay: 50ms;
}

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

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

@media (min-width: 1051px) {
  .hero-statement {
    transform: translateY(-1.5rem);
  }

  .profile-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    gap: clamp(4rem, 6vw, 7rem);
  }

  .profile-intro h2 {
    margin-top: 1.35rem;
    font-size: clamp(3.1rem, 3.8vw, 4.6rem);
    line-height: 0.98;
  }

  html:lang(de) .profile-intro h2 {
    white-space: nowrap;
  }

  .hero-editorial .hero-title-refined {
    position: relative;
    top: -0.45rem;
  }

  html:not(:lang(de)) .hero-editorial .hero-title-refined {
    font-size: clamp(3.2rem, 4.6vw, 6rem);
  }
}

@media (max-width: 1050px) {
  .hero-editorial-inner {
    min-height: auto;
    padding-block: 2.75rem 1.8rem;
  }

  .hero-statement {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 3.4rem;
  }

  .hero-editorial h1 {
    max-width: 10ch;
    font-size: clamp(4.6rem, 11vw, 7.5rem);
  }

  .hero-editorial .hero-title-refined {
    max-width: none;
    font-size: clamp(3.8rem, 7.2vw, 5.4rem);
  }

  .hero-aside {
    max-width: 32rem;
  }

  .reference-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid-equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid-equal .project-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 1rem);
  }

  .reference-index {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 3rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 10.5vw, 7rem);
  }

  .hero-figure img {
    min-height: 0;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 0.45fr 1.3fr;
  }

  .contact address {
    grid-column: 2;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    padding-inline: 2vw;
  }

  .wordmark {
    width: 8rem;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.76rem;
  }

  .site-nav .nav-contact {
    margin-left: 0;
    padding: 0.62rem 0.8rem;
  }

  .site-nav .language-switcher {
    gap: 0.5rem;
    margin-left: 0;
    padding-left: 0.8rem;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 2rem);
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 4.8rem;
    padding-block: 0.85rem;
    padding-inline: 1rem;
  }

  .wordmark {
    display: flex;
    width: 8.7rem;
    align-items: center;
    align-self: center;
  }

  .menu-toggle {
    position: relative;
    z-index: 61;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
  }

  .menu-toggle span {
    margin: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.24rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.24rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    min-height: 100dvh;
    padding: 7rem 1rem 3rem;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.1rem;
    background: #fff;
    font-family: var(--display);
    font-size: 2rem;
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav .nav-contact {
    margin: 1rem 0 0;
    padding: 0.65rem 1rem;
    font-family: var(--body);
    font-size: 1rem;
  }

  .site-nav .language-switcher {
    width: 100%;
    margin: 1.2rem 0 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    font-family: var(--body);
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-editorial {
    padding-top: 0;
  }

  .hero-editorial-inner {
    padding-block: 0;
  }

  .hero-statement {
    gap: 1.65rem;
    padding-block: clamp(2.5rem, 9vw, 3.25rem) 1.75rem;
  }

  .hero-editorial h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.5rem, 16.5vw, 5.4rem);
    line-height: 0.94;
  }

  .hero-editorial .hero-title-refined {
    max-width: 100%;
    font-size: min(3.05rem, 10.65vw);
    line-height: 1;
    letter-spacing: -0.052em;
  }

  .hero-title-refined span {
    max-width: 100%;
    white-space: normal;
  }

  .hero-title-refined span:last-child {
    margin-top: 0;
    font-size: 1em;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .hero-statement > *,
  .section-heading > *,
  .profile-inner > *,
  .company-copy > *,
  .contact-inner > *,
  .legal-heading > *,
  .legal-content section > * {
    min-width: 0;
  }

  .hero-aside {
    padding-bottom: 0;
  }

  .hero-aside > p {
    max-width: 31rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: block;
  }

  .hero-aside .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.35rem;
  }

  .hero-aside .text-link-light {
    min-width: 0;
    min-height: 2.65rem;
    margin-top: 0;
    padding: 0.25rem 0 0.55rem;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.94rem;
  }

  .hero-aside .text-link-light + .text-link-light {
    margin-top: 0.65rem;
  }

  .text-link-light .link-label {
    min-width: 0;
    white-space: nowrap;
  }

  .hero-credentials {
    display: none;
  }

  .hero-credentials span,
  .hero-credentials span + span {
    display: flex;
    min-height: 3.65rem;
    padding: 0.9rem 0.55rem 0.25rem;
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
    font-size: 0.58rem;
    line-height: 1.35;
    letter-spacing: 0.045em;
    overflow-wrap: normal;
  }

  .hero-credentials span:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-credentials span:nth-child(2) {
    padding-left: 0.55rem;
  }

  .hero-credentials span:last-child {
    grid-column: auto;
    padding-right: 0;
    border-right: 0;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    margin-top: 1.5rem;
    font-size: clamp(3.4rem, 16vw, 5.2rem);
    line-height: 0.94;
  }

  .hero-intro {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: block;
  }

  .text-link {
    display: flex;
    width: 100%;
    margin-top: 1.1rem;
  }

  .hero-figure::before {
    top: -0.65rem;
    right: -0.65rem;
  }

  .hero-figure img {
    aspect-ratio: 4 / 3;
  }

  .hero-band {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .band-item {
    min-height: 6.8rem;
    padding: 1.25rem 1.4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

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

  .section {
    padding-block: 4rem;
  }

  .portfolio {
    padding-top: 2.25rem;
    padding-bottom: 3.75rem;
  }

  .portfolio .section-heading {
    margin-bottom: 2.4rem;
    padding-top: 0;
    border-top: 0;
  }

  .profile {
    padding-block: 3.75rem;
  }

  .company {
    padding-top: 3.25rem;
    padding-bottom: 3.75rem;
  }

  .company-heading {
    margin-bottom: 1.5rem;
  }

  .principles {
    margin-top: 2.6rem;
  }

  .section-heading,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading h2,
  .profile-intro h2,
  .contact-callout h2 {
    font-size: clamp(2.65rem, 11.8vw, 3.65rem);
    overflow-wrap: break-word;
  }

  .portfolio .section-heading h2 {
    font-size: min(3rem, 10vw);
  }

  .section-heading > div > p {
    margin-top: 0.9rem;
    font-size: 1rem;
  }

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

  .project-grid-equal .project-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .project-grid-equal .project-image {
    aspect-ratio: 4 / 3;
  }

  .reference-index {
    margin-top: 6rem;
  }

  .reference-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0.75rem;
  }

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

  .reference-meta {
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: 0.2rem 0.35rem;
    padding-top: 0.65rem;
  }

  .reference-meta h4 {
    font-size: 1.05rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .reference-meta p {
    grid-column: 2;
    font-size: 0.72rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .project-card-large {
    grid-column: auto;
  }

  .project-card-large .project-image,
  .project-card:not(.project-card-large) .project-image {
    aspect-ratio: 4 / 3;
  }

  .project-meta {
    align-items: flex-start;
  }

  .profile-inner {
    gap: 3rem;
  }

  .profile-intro h2 {
    margin-top: 1.35rem;
  }

  html:lang(de) .profile-intro h2 {
    font-size: min(2.75rem, 9.2vw);
    line-height: 1.02;
    white-space: nowrap;
  }

  .profile-intro > p:not(.section-index) {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .profile-link {
    width: 100%;
    min-width: 0;
    margin-top: 2.1rem;
    gap: 1rem;
  }

  .profile-list > div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1.35rem 0 1.55rem;
  }

  .profile-list dd {
    font-size: 1.15rem;
    line-height: 1.4;
    overflow-wrap: break-word;
  }

  .company-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-copy .company-lead {
    font-size: 1.55rem;
    line-height: 1.3;
  }

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

  .principle,
  .principle + .principle {
    min-height: 0;
    padding: 1.25rem 0 1.55rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle h3 {
    margin: 1.15rem 0 0.45rem;
    font-size: 1.75rem;
  }

  .contact {
    padding-block: 3.75rem;
  }

  .contact-callout p {
    margin: 1.1rem 0 2rem;
  }

  .contact-callout > a {
    min-width: 0;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .contact address {
    grid-column: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.2rem;
    min-height: 0;
    padding-block: 2.75rem;
  }

  .site-footer div {
    justify-content: flex-start;
  }

  .legal-main {
    padding-block: 3.75rem;
  }

  .legal-heading,
  .legal-content section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-heading h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .legal-content {
    margin-top: 2.75rem;
  }

  .legal-copy p,
  .legal-copy address {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .legal-header {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .legal-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .legal-header-actions .language-switcher {
    padding-left: 1rem;
  }
}

@media (max-width: 350px) {
  .reference-gallery {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .reference-meta h4 {
    font-size: 0.98rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Seller-focused acquisition page */
.seo-page {
  background: var(--paper);
}

.seo-header {
  display: flex;
  min-height: 6.2rem;
  align-items: center;
  justify-content: space-between;
}

.seo-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.seo-header-link:hover,
.seo-header-link:focus-visible {
  border-bottom-color: var(--green);
  color: var(--green);
}

.seo-hero {
  background: var(--green);
  color: #fff;
}

.seo-hero-inner {
  padding-block: clamp(4.5rem, 7vw, 8rem) 0;
}

.seo-kicker {
  margin: 0 0 clamp(3rem, 5vw, 5.5rem);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(34rem, 1.45fr) minmax(20rem, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.seo-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.1vw, 8.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.seo-hero-copy > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.seo-actions {
  margin-top: 2.6rem;
}

.seo-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.seo-action:hover,
.seo-action:focus-visible {
  border-bottom-color: #fff;
}

.seo-action-muted {
  color: rgba(255, 255, 255, 0.75);
}

.seo-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.seo-credentials span {
  padding: 1.25rem 1.4rem 1.4rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-credentials span + span {
  padding-left: 1.4rem;
}

.seo-credentials span:last-child {
  border-right: 0;
}

.seo-section {
  padding-block: clamp(5.5rem, 9vw, 10rem);
}

.seo-section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(28rem, 1.58fr);
  gap: clamp(3rem, 7vw, 9rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.seo-section-heading h2,
.seo-faq-heading h2,
.seo-contact h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.5vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.seo-section-heading > div > p {
  max-width: 43rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-card {
  min-height: 23rem;
  padding: 1.35rem clamp(1.2rem, 2.3vw, 2.5rem) 2rem 0;
}

.seo-card + .seo-card {
  padding-left: clamp(1.2rem, 2.3vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.seo-card > span,
.seo-steps > li > span {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.seo-card h3,
.seo-steps h3 {
  margin: 4.5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.seo-card p,
.seo-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-region {
  padding-block: clamp(5.5rem, 8vw, 9rem);
  background: var(--green);
  color: #fff;
}

.seo-region-inner {
  display: grid;
  grid-template-columns: minmax(24rem, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(4rem, 9vw, 11rem);
}

.seo-region h2 {
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5vw, 6rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.seo-region-list {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.seo-region-list > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(16rem, 1.55fr);
  gap: 1.5rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.seo-region-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-region-list p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.seo-process {
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.seo-steps {
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.seo-steps li {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(24rem, 1.58fr);
  gap: clamp(3rem, 7vw, 9rem);
  padding-block: 2rem 2.4rem;
  border-bottom: 1px solid var(--line);
}

.seo-steps h3 {
  margin: 0 0 0.7rem;
}

.seo-steps p {
  max-width: 38rem;
}

.seo-faq {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(28rem, 1.22fr);
  gap: clamp(4rem, 9vw, 11rem);
  padding-block: clamp(4rem, 7vw, 8rem) clamp(6rem, 9vw, 10rem);
}

.seo-faq-heading {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.seo-faq-heading h2 {
  margin-top: 2rem;
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
}

.seo-faq-list {
  border-top: 1px solid var(--line);
}

.seo-faq-list details {
  border-bottom: 1px solid var(--line);
}

.seo-faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  list-style: none;
}

.seo-faq-list summary::-webkit-details-marker {
  display: none;
}

.seo-faq-list summary::after {
  position: absolute;
  top: 1.6rem;
  right: 0;
  color: var(--green);
  content: "+";
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 400;
}

.seo-faq-list details[open] summary::after {
  content: "–";
}

.seo-faq-list details p {
  max-width: 42rem;
  margin: -0.35rem 0 1.8rem;
  color: var(--muted);
}

.seo-contact {
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--soft);
}

.seo-contact-inner {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(28rem, 1.58fr);
  gap: clamp(3rem, 7vw, 9rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.seo-contact h2 {
  max-width: 11ch;
}

.seo-contact-inner > div > p {
  max-width: 38rem;
  margin: 1.6rem 0 2.8rem;
  color: var(--muted);
}

.seo-contact-link {
  display: flex;
  width: min(100%, 37rem);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.seo-phone {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--muted);
}

.seo-topic-links {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) repeat(4, minmax(10rem, 1fr));
  gap: 0;
  padding-block: 1.4rem clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}

.seo-topic-links p,
.seo-topic-links a {
  margin: 0;
  padding: 1rem 1.2rem 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.seo-topic-links p {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-topic-links a {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.seo-topic-links a:hover,
.seo-topic-links a:focus-visible {
  color: var(--green);
}

@media (max-width: 900px) {
  .seo-hero-grid,
  .seo-section-heading,
  .seo-region-inner,
  .seo-faq,
  .seo-contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .seo-hero h1 {
    max-width: 12ch;
  }

  .seo-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-card:nth-child(3) {
    border-left: 0;
  }

  .seo-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .seo-faq-heading h2 {
    max-width: 13ch;
  }

  .seo-topic-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-topic-links p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .seo-header {
    min-height: 7rem;
  }

  .seo-header .wordmark {
    width: 10.8rem;
  }

  .seo-header-link span {
    display: none;
  }

  .seo-header-link {
    padding: 0.65rem;
    border: 1px solid var(--line);
  }

  .seo-hero-inner {
    padding-top: 3.75rem;
  }

  .seo-kicker {
    margin-bottom: 2.5rem;
  }

  .seo-hero h1 {
    max-width: 9.8ch;
    font-size: clamp(3.2rem, 14.2vw, 4.7rem);
    line-height: 0.94;
  }

  .seo-page-long-title .seo-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .seo-hero-copy > p {
    font-size: 1rem;
  }

  .seo-actions {
    margin-top: 2rem;
  }

  .seo-credentials {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .seo-credentials span,
  .seo-credentials span + span {
    padding: 0.95rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .seo-credentials span:last-child {
    border-bottom: 0;
  }

  .seo-section {
    padding-block: 4.5rem;
  }

  .seo-section-heading {
    gap: 2rem;
  }

  .seo-section-heading h2,
  .seo-contact h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .seo-card-grid {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .seo-card,
  .seo-card + .seo-card {
    min-height: 0;
    padding: 1.35rem 0 2rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .seo-card:first-child {
    border-top: 0;
  }

  .seo-card h3 {
    margin-top: 2.4rem;
  }

  .seo-region {
    padding-block: 4.5rem;
  }

  .seo-region h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .seo-region-list > div,
  .seo-steps li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .seo-steps {
    margin-top: 3.5rem;
  }

  .seo-faq {
    padding-block: 1rem 5rem;
  }

  .seo-faq-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .seo-contact-link {
    overflow-wrap: anywhere;
  }

  .seo-topic-links {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }

  .seo-topic-links p,
  .seo-topic-links a {
    grid-column: auto;
    padding: 1rem 0;
    border-left: 0;
  }
}

/* Confidential property offer */
.offer-hero .seo-hero-copy {
  align-self: end;
}

.offer-jump {
  margin-top: 2.6rem;
}

.offer-section {
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--green);
  color: #fff;
}

.offer-section-inner {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(34rem, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.offer-copy h2 {
  max-width: 10ch;
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.2vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.offer-copy > p:not(.section-index) {
  max-width: 32rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.offer-contact-alternative {
  display: grid;
  gap: 0.45rem;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-contact-alternative span {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-contact-alternative a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
}

.offer-form {
  scroll-margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #fff;
  color: var(--ink);
}

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

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.form-field label span {
  color: var(--muted);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 1px solid var(--green);
  outline-offset: 0;
}

.form-field textarea::placeholder {
  color: #879089;
}

.form-consent {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--green);
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.offer-submit {
  display: flex;
  width: 100%;
  min-height: 3.7rem;
  margin-top: 1.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--green);
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.offer-submit:hover,
.offer-submit:focus-visible {
  background: #084f30;
}

.form-privacy-note,
.form-status {
  max-width: 40rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--green);
}

@media (max-width: 900px) {
  .offer-section-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 760px) {
  .offer-hero h1 {
    max-width: 9ch;
  }

  .offer-section {
    padding-block: 4.5rem;
  }

  .offer-copy h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .offer-contact-alternative {
    margin-top: 2.5rem;
  }

  .offer-form {
    padding: 1.25rem 1rem 1.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-field-wide {
    grid-column: auto;
  }
}
