@font-face {
  font-family: Archivo;
  src: url("fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("fonts/IBMPlexMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
:root {
  --paper: #f6f6ef;
  --ink: #202321;
  --lime: #d9ff3f;
  --soft: #e1e5dc;
  --muted: #62665f;
  --line: #c4c8bf;
  --display: Archivo, "Arial Black", sans-serif;
  --mono: Plex, "Courier New", monospace;
  --gutter: clamp(24px, 5.55vw, 96px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 15px/1.75 var(--mono);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.03;
}
h2 {
  font-size: clamp(40px, 4.4vw, 68px);
}
h3 {
  font-size: clamp(25px, 2.5vw, 37px);
}
p + p {
  margin-top: 20px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
.site-footer a:focus-visible,
.statement a:focus-visible {
  outline-color: var(--lime);
}
section[id],
article[id] {
  scroll-margin-top: 40px;
}
.section-pad {
  padding: 100px var(--gutter);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 500;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  background: var(--lime);
  padding: 14px 22px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 124px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 76px;
  position: relative;
  z-index: 10;
}
.wordmark {
  display: inline-flex;
  flex: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 0.8;
  letter-spacing: -0.078em;
  white-space: nowrap;
}
.wordmark span {
  display: block;
}
.wordmark img {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  margin: -3px 0 0 2px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 39px;
  font-size: 13px;
}
.navigation a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  position: relative;
}
.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.navigation a:hover::after {
  transform: scaleX(1);
}
.header-note {
  margin-left: auto;
  text-transform: uppercase;
  font-size: 9px;
  line-height: 1.65;
  letter-spacing: 0.09em;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 9px;
}
.icon {
  flex: none;
}
.hero {
  position: relative;
  min-height: 595px;
  padding: 96px var(--gutter) 92px;
  isolation: isolate;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 49px;
  pointer-events: none;
}
.hero-content > * {
  pointer-events: auto;
}
.hero-eyebrow {
  display: none;
}
.hero h1 {
  font-size: clamp(61px, 7.1vw, 117px);
  line-height: 0.97;
  letter-spacing: -0.078em;
  width: max-content;
  max-width: 100%;
}
.hero h1 span {
  display: block;
}
.hero-description {
  margin-top: 25px;
  font-size: clamp(14px, 1.25vw, 19px);
  letter-spacing: -0.045em;
}
.mobile-break {
  display: none;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 62px;
  padding: 16px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button img {
  flex: none;
  transition: transform 0.2s;
}
.button:hover img {
  transform: translateX(4px);
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
}
.button-lime:hover {
  background: var(--ink);
  color: var(--paper);
}
.button-lime:hover img {
  filter: invert(1);
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark img {
  filter: invert(1);
}
.button-dark:hover {
  background: #3c413b;
}
.hero .button {
  margin-top: 35px;
  min-width: 286px;
}
.hero-art {
  position: absolute;
  z-index: 1;
  width: 37%;
  max-width: 540px;
  top: -15px;
  right: calc(var(--gutter) - 36px);
  mix-blend-mode: multiply;
}
.hero-art > img {
  width: 100%;
  height: auto;
}
.hero-art figcaption {
  position: absolute;
  bottom: 17.5%;
  left: 23%;
  font-size: 9px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-corner {
  position: absolute;
  right: var(--gutter);
  bottom: 72px;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 105px;
}
.hero-index {
  position: absolute;
  left: var(--gutter);
  top: 109px;
  bottom: 90px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  font-size: 9px;
  line-height: 1.8;
  color: var(--muted);
}
.index-line {
  height: 115px;
  width: 1px;
  background: var(--line);
}
.service-jump {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  padding-inline: var(--gutter);
}
.service-jump a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 34px 22px;
  min-height: 128px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.service-jump a:first-child {
  border-left: 1px solid var(--line);
}
.service-jump a:hover {
  background: var(--lime);
}
.jump-number {
  font-size: 12px;
  align-self: flex-start;
  margin-top: 5px;
}
.service-jump a > span:nth-child(2) {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.1;
  letter-spacing: -0.07em;
  min-width: 0;
}
.service-jump img {
  margin-left: auto;
  flex: none;
}
.intro {
  padding-top: 123px;
  padding-bottom: 111px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 38px;
}
.intro > .eyebrow {
  padding-top: 8px;
}
.intro-body {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  gap: 66px;
}
.intro h2 {
  font-size: clamp(38px, 4.2vw, 64px);
}
.highlight {
  background: var(--lime);
  box-shadow:
    6px 0 0 var(--lime),
    -2px 0 0 var(--lime);
}
.intro-copy {
  max-width: 460px;
  padding-top: 5px;
}
.intro-copy p:first-child {
  color: var(--ink);
}
.intro-copy p + p {
  color: var(--muted);
}
.services {
  padding-top: 85px;
  border-top: 1px solid var(--line);
  padding-bottom: 72px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 63px;
}
.section-heading > .eyebrow {
  padding-top: 8px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.38fr 1.48fr;
  gap: 38px;
  border-top: 1px solid var(--line);
  padding: 46px 0 53px;
}
.service-number {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-top: 6px;
}
.service-title h3 {
  line-height: 1.12;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  line-height: 1.6;
  padding: 10px 0;
  min-height: 44px;
}
.text-link img {
  transition: transform 0.2s;
  flex: none;
}
.text-link:hover img {
  transform: translate(3px, -3px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.service-title .text-link {
  margin-top: 26px;
}
.service-copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
}
.capabilities {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  font-size: 12px;
  line-height: 1.6;
}
.capabilities li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.capabilities li:last-child {
  padding-bottom: 0;
}
.statement {
  background: var(--ink);
  color: var(--paper);
  padding-top: 70px;
  padding-bottom: 69px;
}
.statement-top {
  display: flex;
  justify-content: space-between;
}
.statement h2 {
  font-size: clamp(52px, 7.5vw, 116px);
  line-height: 1.02;
  margin-top: 74px;
  letter-spacing: -0.069em;
}
.statement h2 span {
  color: var(--lime);
}
.statement-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 48px;
  gap: 50px;
}
.statement-bottom p {
  max-width: 570px;
  font-size: 14px;
  color: #c6cbc1;
}
.statement .text-link {
  color: var(--paper);
}
.statement .text-link img {
  filter: invert(1);
}
.process {
  padding-top: 108px;
  padding-bottom: 113px;
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.process-list li {
  padding: 28px 25px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.process-list li:first-child {
  padding-left: 0;
}
.process-list li:last-child {
  border: 0;
  padding-right: 0;
}
.process-index {
  font-size: 11px;
  display: inline-flex;
  background: var(--lime);
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
}
.process-list h3 {
  font-size: clamp(23px, 2.05vw, 32px);
  margin: 31px 0 20px;
  letter-spacing: -0.075em;
}
.process-list p {
  font-size: 13px;
  color: var(--muted);
}
.process-result {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  padding-top: 27px;
  margin-top: auto;
}
.faq {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 70px;
  padding-top: 91px;
  padding-bottom: 105px;
}
.faq h2 {
  margin-top: 26px;
}
.faq-items {
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  min-height: 84px;
  padding: 23px 0;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary img {
  flex: none;
  transition: transform 0.2s;
}
.faq details[open] summary img {
  transform: rotate(45deg);
}
.faq details > p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 45px 27px 0;
  max-width: 730px;
}
.contact {
  background: var(--lime);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 87px;
  padding-bottom: 91px;
}
.contact h2 {
  font-size: clamp(52px, 5.8vw, 84px);
  margin-top: 36px;
  line-height: 0.98;
}
.contact h2 > span {
  display: block;
  white-space: nowrap;
}
.contact-intro > p:not(.eyebrow) {
  margin-top: 31px;
  font-size: 14px;
}
.contact-mark {
  margin: 28px 0 0 -24px;
  mix-blend-mode: multiply;
}
.contact-panel {
  padding-top: 2px;
  min-width: 0;
}
.preview-note {
  font-size: 10px;
  line-height: 1.8;
  border: 1px solid #94a934;
  padding: 13px 16px;
  margin-bottom: 30px;
}
.contact fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
  min-width: 0;
}
.contact legend {
  font-size: 12px;
  margin-bottom: 13px;
  padding: 0;
}
.service-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-options label {
  position: relative;
  cursor: pointer;
}
.service-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.service-options span {
  display: block;
  border: 1px solid #829330;
  padding: 8px 13px;
  font-size: 11px;
  line-height: 1.7;
  min-height: 39px;
  transition:
    background 0.15s,
    color 0.15s;
}
.service-options input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.service-options input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.service-options label:hover span {
  border-color: var(--ink);
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  min-width: 0;
  margin-bottom: 28px;
}
.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #829330;
  border-radius: 0;
  padding: 10px 0 13px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
  resize: vertical;
}
.form-field input {
  min-height: 47px;
}
.form-field textarea {
  min-height: 113px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #536022;
  opacity: 1;
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--ink);
}
.form-note {
  font-size: 10px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 24px;
}
.contact .button {
  width: 100%;
  font-size: 13px;
}
.brief-result {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
  margin-top: 34px;
}
.brief-result h3 {
  font-size: 25px;
}
.brief-result > p {
  font-size: 12px;
  margin: 13px 0 20px;
}
.brief-result textarea {
  font-size: 12px;
  background: #ffffff29;
  padding: 14px;
  border: 1px solid #829330;
  min-height: 180px;
}
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.brief-actions .button {
  width: auto;
  min-height: 48px;
}
.brief-result .status {
  font-size: 11px;
  min-height: 20px;
  margin-bottom: 0;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 65px;
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 95px;
  margin-bottom: 65px;
}
.footer-wordmark {
  font-size: 59px;
  letter-spacing: -0.07em;
  line-height: 0.83;
}
.footer-top > p {
  font-size: 11px;
  margin-top: 5px;
  color: #c6cbc1;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 11px;
  margin-left: auto;
  min-height: 44px;
}
.back-top img {
  filter: invert(1);
}
.footer-bottom {
  border-top: 1px solid #52574e;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #c6cbc1;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  display: inline-block;
  padding: 10px 0;
}
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.legal-main {
  max-width: 1000px;
  min-height: 60vh;
  padding: 70px var(--gutter) 110px;
}
.legal-main h1 {
  font-size: clamp(38px, 5vw, 70px);
  margin-bottom: 35px;
  overflow-wrap: anywhere;
}
.legal-main h2 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin: 36px 0 18px;
}
.legal-main p,
.legal-main li {
  font-size: 14px;
}
.legal-main a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-alert {
  padding: 20px;
  background: var(--lime);
  margin: 30px 0;
}
.legal-main .text-link {
  margin-bottom: 35px;
}
/* Die Grafik bleibt neben der langen zweiten Titelzeile, nicht hinter ihr. */
@media (min-width: 761px) {
  .hero h1 {
    font-size: clamp(60px, 6.6vw, 108px);
  }
  .hero-art {
    width: 31.5%;
    top: 15px;
    right: calc(var(--gutter) - 38px);
  }
}
@media (min-width: 1700px) {
  body {
    max-width: 1920px;
    margin-inline: auto;
  }
  .hero {
    min-height: 675px;
    padding-top: 125px;
  }
  .hero-art {
    top: 10px;
  }
  .hero-index {
    top: 135px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    gap: 45px;
    height: 108px;
  }
  .navigation {
    gap: 25px;
  }
  .header-note {
    display: none;
  }
  .hero {
    min-height: 525px;
    padding-top: 95px;
    padding-bottom: 68px;
  }
  .hero-content {
    padding-left: 30px;
  }
  .hero-index {
    font-size: 8px;
    top: 102px;
  }
  .hero-art {
    width: 38%;
    top: 8px;
    right: 14px;
  }
  .hero-corner {
    bottom: 40px;
  }
  .hero h1 {
    font-size: 7.2vw;
  }
  .hero-description {
    max-width: 48vw;
    font-size: 14px;
  }
  .service-jump a {
    padding: 29px 17px;
    gap: 14px;
    min-height: 109px;
  }
  .service-jump a > span:nth-child(2) {
    font-size: clamp(19px, 1.8vw, 28px);
  }
  .service-jump img {
    width: 25px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 85px;
  }
  .intro-body {
    gap: 55px;
    grid-template-columns: 1fr 1fr;
  }
  .section-pad {
    padding-inline: var(--gutter);
  }
  .section-heading {
    grid-template-columns: 1fr 2.5fr;
    gap: 30px;
  }
  .service-row {
    grid-template-columns: 0.65fr 1.2fr 1.45fr;
    gap: 25px;
  }
  .service-title h3 {
    font-size: 29px;
  }
  .service-title .text-link {
    font-size: 10px;
  }
  .service-copy p {
    font-size: 13px;
  }
  .capabilities {
    font-size: 11px;
  }
  .contact {
    gap: 50px;
  }
  .form-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact h2 {
    font-size: clamp(44px, 5.4vw, 70px);
  }
  .process-list li {
    padding-inline: 18px;
  }
  .process-list p {
    font-size: 12px;
  }
  .process-result {
    font-size: 9px;
  }
  .faq {
    gap: 45px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 20px;
  }
  .section-pad {
    padding: 68px var(--gutter);
  }
  .site-header {
    height: 100px;
    padding-block: 24px;
    gap: 25px;
    justify-content: space-between;
  }
  .wordmark {
    font-size: clamp(24px, 7.2vw, 29px);
  }
  .wordmark img {
    width: 34px;
    height: 34px;
  }
  .navigation {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 10px;
  }
  .navigation a {
    min-height: 30px;
  }
  .navigation .icon {
    display: none;
  }
  .js .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }
  .js .navigation {
    display: none;
  }
  .js .navigation.is-open {
    display: flex;
    position: fixed;
    inset: 100px 0 0;
    background: var(--paper);
    padding: 36px var(--gutter) 80px;
    z-index: 11;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: auto;
    flex-wrap: nowrap;
  }
  .js .navigation.is-open a {
    font-family: var(--display);
    font-size: 38px;
    letter-spacing: -0.06em;
    line-height: 1.2;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
    min-height: 80px;
  }
  .js .navigation a::after {
    display: none;
  }
  .hero {
    min-height: 0;
    padding: 26px var(--gutter) 34px;
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(38px, 8.4vw, 64px);
    line-height: 1.03;
    letter-spacing: -0.075em;
    width: 100%;
    position: relative;
  }
  .hero-eyebrow {
    display: block;
    font-size: 9px;
    margin-bottom: 26px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: -0.025em;
    margin-top: 22px;
    max-width: 80%;
  }
  .mobile-break {
    display: block;
  }
  .hero .button {
    min-width: 0;
    min-height: 57px;
    padding: 14px 20px;
    gap: 32px;
    margin-top: 24px;
    font-size: 12px;
  }
  .hero .button img {
    width: 25px;
  }
  .hero-art {
    position: relative;
    width: 65%;
    align-self: flex-end;
    right: -12px;
    top: 0;
    max-width: 375px;
    margin: -22px -2px -5px 0;
    z-index: 0;
  }
  .hero-art figcaption {
    font-size: 7px;
    bottom: 17%;
    left: 24%;
  }
  .hero-index,
  .hero-corner {
    display: none;
  }
  .service-jump {
    padding: 0 var(--gutter);
    grid-template-columns: 1fr;
  }
  .service-jump a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    min-height: 80px;
    gap: 23px;
  }
  .service-jump a:first-child {
    border-left: 0;
  }
  .service-jump a:last-child {
    border-bottom: 0;
  }
  .service-jump a > span:nth-child(2) {
    font-size: 29px;
  }
  .jump-number {
    font-size: 10px;
    margin-top: 3px;
  }
  .service-jump img {
    width: 25px;
    height: 25px;
  }
  .intro {
    gap: 28px;
  }
  .intro-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro h2 {
    font-size: 47px;
  }
  .intro-copy {
    font-size: 13px;
    max-width: 520px;
    padding: 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
  }
  .section-heading > .eyebrow {
    padding: 0;
  }
  h2 {
    font-size: 45px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 31px 0 39px;
  }
  .service-number {
    font-size: 10px;
    padding: 0;
  }
  .service-title h3 {
    font-size: 34px;
  }
  .service-title .text-link {
    margin-top: 13px;
    font-size: 11px;
  }
  .service-copy p {
    font-size: 13px;
    max-width: none;
  }
  .capabilities {
    font-size: 11px;
    margin-top: 24px;
  }
  .capabilities li {
    padding: 12px 0;
  }
  .services {
    padding-bottom: 33px;
  }
  .statement {
    padding-top: 40px;
    padding-bottom: 46px;
  }
  .statement-top > .eyebrow:last-child {
    display: none;
  }
  .statement h2 {
    font-size: clamp(37px, 8.9vw, 66px);
    letter-spacing: -0.07em;
    line-height: 1.05;
    margin-top: 47px;
  }
  .statement-bottom {
    display: block;
    margin-top: 31px;
  }
  .statement-bottom p {
    font-size: 12px;
  }
  .statement-bottom .text-link {
    margin-top: 23px;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .process-list li {
    padding: 28px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }
  .process-index {
    grid-row: 1;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    font-size: 10px;
  }
  .process-list h3 {
    font-size: 29px;
    margin: 0;
    grid-column: 2;
  }
  .process-list p {
    grid-column: 2;
    font-size: 13px;
  }
  .process-result {
    grid-column: 2;
    font-size: 10px;
    padding: 0;
    margin: 5px 0 0;
  }
  .process {
    padding-bottom: 45px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .faq h2 {
    margin-top: 24px;
  }
  .faq summary {
    font-size: 12px;
    min-height: 77px;
    gap: 22px;
  }
  .faq details > p {
    font-size: 12px;
    padding-right: 25px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .contact h2 {
    font-size: clamp(39px, 12.3vw, 48px);
    margin-top: 30px;
  }
  .contact-intro > p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 24px;
  }
  .contact-mark {
    display: none;
  }
  .contact-panel {
    padding: 0;
  }
  .preview-note {
    font-size: 10px;
    margin-bottom: 26px;
  }
  .service-options span {
    padding: 8px 11px;
    font-size: 10px;
    min-height: 40px;
  }
  .form-field {
    margin-bottom: 24px;
  }
  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }
  .form-field textarea {
    min-height: 142px;
  }
  .form-note {
    font-size: 10px;
  }
  .form-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact .button {
    min-height: 57px;
  }
  .footer-top {
    gap: 31px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .footer-wordmark {
    font-size: clamp(38px, 12vw, 49px);
  }
  .footer-top > p {
    font-size: 9px;
    margin-left: auto;
  }
  .back-top {
    margin: 0;
    font-size: 10px;
    width: 100%;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 9px;
  }
  .footer-bottom nav {
    width: 100%;
    gap: 25px;
  }
  .site-footer {
    padding-top: 43px;
    padding-bottom: 24px;
  }
  .legal-main {
    padding-top: 40px;
  }
  .legal-main h1 {
    font-size: 36px;
  }
  .legal-main p,
  .legal-main li {
    font-size: 12px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter: 20px;
  }
  .hero h1 {
    font-size: 9.2vw;
  }
  .hero-description {
    font-size: 11px;
    max-width: 100%;
  }
  .hero-art {
    margin-top: 0;
    width: 70%;
  }
  .intro h2,
  h2 {
    font-size: 40px;
  }
  .service-options {
    gap: 6px;
  }
  .service-options span {
    padding: 8px 9px;
  }
  .footer-top > p {
    margin-left: 0;
  }
  .statement h2 {
    font-size: 9vw;
  }
}
@media (min-width: 761px) and (max-width: 1150px) {
  .hero h1 {
    font-size: 6.4vw;
  }
  .hero-art {
    width: 30%;
    top: 30px;
    right: calc(var(--gutter) - 25px);
  }
}
@media (min-width: 761px) and (max-width: 1000px) {
  .service-jump {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-jump a:nth-child(odd) {
    border-left: 1px solid var(--line);
  }
  .service-jump a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .service-jump a > span:nth-child(2) {
    font-size: clamp(22px, 3.2vw, 31px);
  }
  .service-jump .jump-number {
    display: none;
  }
  .service-jump a {
    gap: 14px;
  }
  .service-row {
    grid-template-columns: 1fr 1.3fr;
  }
  .service-number {
    grid-column: 1/-1;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }
  .process-list li:nth-child(2) {
    border-right: 0;
  }
  .process-list li:nth-child(3) {
    padding-left: 0;
  }
  .process-list li:nth-child(4) {
    padding-left: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
