:root {
  --bg: #f6f2ec;
  --surface: #fffdf9;
  --surface-muted: #ece8e1;
  --ink: #141b20;
  --ink-soft: #4e5559;
  --dark: #111a21;
  --dark-raised: #18232b;
  --accent: #df3d0b;
  --accent-dark: #b92e08;
  --white: #ffffff;
  --border: #c9c3bb;
  --border-dark: #354048;
  --success: #1d7453;
  --error: #a42318;
  --shadow: 0 22px 60px rgb(20 27 32 / 14%);
  --radius-sm: 6px;
  --radius: 10px;
  --container: 1400px;
  --header-height: 106px;
  --font-display: Arial, Helvetica, sans-serif;
  --font-ui: "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 120px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--dark);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid #1387d4;
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 850;
  line-height: .98;
}

h3 {
  letter-spacing: -.025em;
}

.button,
.text-link,
.menu-button,
.icon-button,
.gallery-image {
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-light {
  background: var(--surface);
  color: var(--accent-dark);
}

.button-light:hover {
  background: var(--white);
}

.button-outline,
.button-quiet {
  border: 1px solid currentColor;
  background: transparent;
}

.button-outline:hover,
.button-quiet:hover {
  background: rgb(20 27 32 / 6%);
}

.button-large {
  min-height: 64px;
  padding-inline: 34px;
  font-size: 18px;
}

.text-link {
  min-height: 44px;
  padding: 8px 0 5px;
  border-bottom: 2px solid var(--accent);
  background: transparent;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
}

.text-link:hover {
  color: var(--accent-dark);
}

.text-link-light {
  border-bottom-color: var(--white);
  color: var(--white);
}

.text-link-light:hover {
  color: var(--white);
  opacity: .78;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgb(246 242 236 / 96%);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 88px, 1500px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  width: 100px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.brand img {
  width: 88px;
  height: 82px;
  object-fit: cover;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 16px;
  font-weight: 720;
  text-decoration: none;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 220ms var(--ease);
}

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

.header-cta {
  margin-left: clamp(12px, 2vw, 30px);
}

.menu-button {
  display: none;
  min-width: 92px;
  min-height: 52px;
  margin-left: auto;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
}

.mobile-menu {
  position: fixed;
  z-index: 105;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 20px 38px rgb(20 27 32 / 14%);
}

.mobile-menu nav {
  display: grid;
  margin-bottom: 20px;
}

.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu .button {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) + 60px);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  padding-bottom: 60px;
  background: var(--bg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 730px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 8vh, 120px) clamp(48px, 5vw, 94px) 150px max(44px, calc((100vw - 1500px) / 2));
  overflow: hidden;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 34px;
  font-size: clamp(4rem, 6.2vw, 6.5rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.06em;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 40px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-media {
  position: relative;
  min-height: 730px;
  margin: 0;
  overflow: hidden;
  background: #d8dbd9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 730px;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-media figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.route-line {
  position: absolute;
  right: 0;
  bottom: 96px;
  left: 0;
  height: 72px;
  pointer-events: none;
}

.route-line::before {
  content: "";
  position: absolute;
  right: 68px;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
}

.route-line::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 22px;
  width: 78px;
  height: 2px;
  transform: rotate(-45deg);
  background: var(--accent);
}

.route-line span {
  position: absolute;
  z-index: 1;
  right: 70px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}

.quick-start {
  position: absolute;
  z-index: 4;
  right: max(44px, calc((100vw - 1500px) / 2));
  bottom: 0;
  left: max(44px, calc((100vw - 1500px) / 2));
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(200px, .8fr);
  gap: 22px;
  align-items: end;
  padding: 22px 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 18px 44px rgb(20 27 32 / 10%);
}

.quick-start label {
  display: grid;
  gap: 8px;
}

.quick-start label > span,
.field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.quick-start input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quick-start input,
.field input,
.field select {
  padding: 0 15px;
}

.field textarea {
  min-height: 112px;
  padding: 13px 15px;
  resize: vertical;
}

.quick-start input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 3px rgb(223 61 11 / 16%);
}

.quick-start .button {
  min-height: 54px;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 78px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--accent);
}

.section-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 124px;
  height: 112px;
  overflow: hidden;
  background: var(--accent);
}

.section-corner::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 72px;
  height: 72px;
  transform: rotate(45deg) translate(52%, 52%);
  background: var(--bg);
}

.services {
  padding-top: 168px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 88px);
}

.service-item {
  min-width: 0;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  stroke-width: 2.25;
}

.service-item h3 {
  position: relative;
  margin-bottom: 28px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.service-item h3::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--accent);
}

.service-item p {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.process {
  padding: 88px 0 100px;
  background: var(--dark);
  color: var(--white);
}

.section-heading-light {
  max-width: 820px;
  margin-bottom: 68px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 52px;
  right: calc(12.5% - 4px);
  left: 12px;
  height: 2px;
  background: var(--accent);
}

.process-list li {
  position: relative;
  padding-top: 82px;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
}

.process-dot {
  position: absolute;
  z-index: 1;
  top: 44px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: var(--dark);
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.process-list p {
  max-width: 230px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 16px;
}

.reach {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.reach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.reach-layout h2 {
  font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.reach-copy > p {
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-size: 20px;
}

.reach-copy ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.reach-copy li {
  display: grid;
  gap: 5px;
  padding: 22px 14px 0 0;
}

.reach-copy li + li {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.reach-copy strong {
  font-size: 17px;
}

.reach-copy span {
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.story {
  padding-bottom: 0;
  overflow: hidden;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}

.story-copy {
  position: relative;
  padding-bottom: 90px;
}

.section-lead {
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.story-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(3.1rem, 5.8vw, 6.1rem);
}

.story-copy > p:not(.section-lead) {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 20px;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 650;
}

.location-line svg,
.footer-location svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  stroke-width: 1.8;
}

.route-line-small {
  bottom: 10px;
}

.route-line-small::before {
  right: 96px;
}

.story-media {
  position: relative;
  min-height: 760px;
}

.gallery-image {
  position: absolute;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.gallery-image::after {
  content: "Vergrößern";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-image:hover::after,
.gallery-image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-image:hover img {
  transform: scale(1.018);
}

.gallery-image-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 760px;
  border-radius: var(--radius) 0 0 0;
}

.gallery-image-main img {
  object-position: 50% 44%;
}

.gallery-image-secondary {
  z-index: 2;
  bottom: 22px;
  left: 0;
  width: 54%;
  aspect-ratio: 1.55;
  border: 5px solid var(--bg);
  border-radius: var(--radius-sm);
}

.proof {
  padding: 66px 0 76px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.proof-head h2 {
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.proof-head a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  text-underline-offset: 5px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
}

.quote-grid blockquote {
  position: relative;
  min-height: 215px;
  margin: 0;
  padding: 12px 64px 0 96px;
}

.quote-grid blockquote + blockquote {
  border-left: 1px solid var(--accent);
}

.quote-mark {
  position: absolute;
  top: -12px;
  left: 16px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}

.quote-grid blockquote p {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.quote-grid blockquote:last-child p {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.quote-grid footer {
  color: var(--ink-soft);
  font-size: 14px;
}

.faq {
  background: var(--bg);
}

.faq .section-heading {
  max-width: none;
  margin-bottom: 0;
  border-bottom-color: var(--ink);
}

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

.faq-list summary {
  position: relative;
  padding: 26px 72px 26px 54px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--accent);
}

.faq-list summary::before {
  left: 16px;
  width: 18px;
  height: 3px;
  transform: translateY(-50%);
}

.faq-list summary::after {
  left: 23px;
  width: 3px;
  height: 18px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list summary:hover {
  color: var(--accent-dark);
}

.faq-list details p {
  max-width: 900px;
  margin: -2px 60px 28px 54px;
  color: var(--ink-soft);
  font-size: 17px;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.closing-layout {
  position: relative;
  min-height: 200px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  padding-block: 48px;
}

.closing-layout h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.closing-layout p {
  margin-bottom: 0;
  font-size: 18px;
}

.closing-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 38px;
}

.closing-actions .button {
  min-width: 200px;
}

.route-line-light {
  right: -80px;
  bottom: 0;
  left: auto;
  width: 240px;
}

.route-line-light::before,
.route-line-light::after {
  background: var(--white);
}

.route-line-light span {
  border-color: var(--white);
  background: var(--accent);
}

.site-footer {
  padding: 38px 0 24px;
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 76px;
  align-items: center;
}

.brand-footer {
  width: 92px;
  padding: 5px;
  border-radius: 4px;
  background: var(--bg);
}

.brand-footer img {
  width: 80px;
  height: 74px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 650;
}

.footer-rule {
  position: relative;
  height: 42px;
  border-bottom: 2px solid var(--accent);
}

.footer-rule span {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--dark);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
}

.footer-meta > div {
  display: flex;
  gap: 28px;
}

.footer-meta a {
  color: var(--white);
  text-underline-offset: 5px;
}

.footer-meta p {
  margin: 0;
}

.mobile-actionbar {
  display: none;
}

dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgb(9 14 18 / 76%);
  backdrop-filter: blur(3px);
}

.request-dialog,
.gallery-dialog {
  width: min(960px, calc(100% - 40px));
  max-height: min(94svh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.request-dialog[open],
.gallery-dialog[open] {
  animation: dialog-in 220ms var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.request-dialog form {
  min-height: 600px;
}

.dialog-header,
.gallery-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 40px 22px;
}

.dialog-header h2,
.gallery-dialog-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.prototype-label {
  margin-bottom: 7px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.icon-button {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  transition: background-color 160ms ease;
}

.icon-button:hover {
  background: rgb(20 27 32 / 8%);
}

.icon-button svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.wizard-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 40px 28px;
  padding: 0 0 20px;
  border-bottom: 3px solid var(--surface-muted);
  list-style: none;
}

.wizard-progress::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: var(--wizard-progress, 0%);
  height: 3px;
  background: var(--accent);
  transition: width 250ms var(--ease);
}

.wizard-progress li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.wizard-progress li:nth-child(2) {
  justify-self: center;
}

.wizard-progress li:nth-child(3) {
  justify-self: end;
}

.wizard-progress span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  font-size: 16px;
  font-weight: 750;
}

.wizard-progress .is-active,
.wizard-progress .is-complete {
  color: var(--ink);
}

.wizard-progress .is-active span {
  border-color: var(--accent);
}

.wizard-progress .is-complete span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.wizard-step {
  padding: 0 40px 30px;
}

.wizard-step fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step legend {
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.field-grid {
  display: grid;
  gap: 20px 24px;
}

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

.field-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field em {
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.choice-control {
  position: relative;
}

.choice-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-control span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.choice-control input:checked + span {
  border: 2px solid var(--accent);
  background: rgb(223 61 11 / 4%);
  color: var(--accent-dark);
}

.choice-control input:focus-visible + span {
  outline: 3px solid #1387d4;
  outline-offset: 3px;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 22px;
}

.check-row label,
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--accent);
}

.check-row input,
.privacy-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
}

.extra-services {
  margin-top: 26px;
}

.extra-services h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.check-row-services {
  justify-content: space-between;
}

.upload-field {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  padding: 14px 20px;
  border: 1px dashed #8f969a;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.upload-field:hover {
  border-color: var(--accent);
  background: rgb(223 61 11 / 4%);
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-field:focus-within {
  outline: 3px solid #1387d4;
  outline-offset: 3px;
}

.upload-field svg {
  width: 34px;
  height: 34px;
}

.upload-field span {
  display: grid;
}

.upload-field strong {
  font-size: 15px;
}

.upload-field small {
  color: var(--ink-soft);
  font-size: 12px;
}

.upload-status {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.privacy-check {
  margin-top: 22px;
  color: var(--ink-soft);
}

.privacy-check a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.contact-error {
  margin: 14px 0 0;
  color: var(--error);
  font-size: 14px;
  font-weight: 700;
}

[aria-invalid="true"] {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgb(184 35 21 / 12%);
}

.dialog-footer {
  position: sticky;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.dialog-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.wizard-success {
  padding: 26px 40px 46px;
  text-align: center;
}

.wizard-success > svg {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  padding: 13px;
  border: 2px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  stroke-width: 2.4;
}

.wizard-success h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.wizard-success > p:not(.prototype-label) {
  max-width: 650px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
}

.request-summary {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--border);
  text-align: left;
}

.request-summary p {
  margin: 0;
  padding: 14px 16px;
  background: var(--surface);
  font-size: 14px;
}

.request-summary strong {
  display: block;
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.gallery-dialog {
  width: min(1060px, calc(100% - 40px));
  max-height: 94svh;
}

.gallery-dialog figure {
  margin: 0;
  background: var(--dark);
}

.gallery-dialog figure img {
  width: 100%;
  max-height: 68svh;
  object-fit: contain;
}

.gallery-dialog figcaption {
  padding: 12px 28px;
  color: rgb(255 255 255 / 74%);
  font-size: 13px;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 28px 22px;
}

.gallery-controls [data-gallery-prev] {
  justify-self: start;
}

.gallery-controls [data-gallery-next] {
  justify-self: end;
}

.gallery-controls span {
  color: var(--ink-soft);
  font-size: 14px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  padding: 15px 18px;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 650;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

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

.legal-page {
  min-height: 100svh;
}

.legal-shell {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-shell .brand {
  margin-bottom: 60px;
}

.legal-shell h1 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
}

.legal-notice {
  margin: 36px 0;
  padding: 20px 24px;
  border-left: 5px solid var(--accent);
  background: var(--surface);
}

.legal-shell h2 {
  margin: 50px 0 16px;
  font-size: 1.65rem;
  letter-spacing: -.02em;
}

.legal-shell p,
.legal-shell li {
  color: var(--ink-soft);
}

.legal-back {
  display: inline-flex;
  margin-top: 48px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 94px;
  }

  .container {
    width: min(100% - 72px, var(--container));
  }

  .header-inner {
    width: calc(100% - 56px);
    gap: 24px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  }

  .hero-copy,
  .hero-media,
  .hero-media img {
    min-height: 660px;
  }

  .hero-copy {
    padding-left: 36px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6vw, 5.6rem);
  }

  .quick-start {
    right: 36px;
    left: 36px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quick-start .button {
    grid-column: 3;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 90px;
  }

  .process-list {
    gap: 24px;
  }

  .story-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  body {
    padding-bottom: 74px;
    font-size: 17px;
  }

  .container {
    width: min(100% - 44px, var(--container));
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .brand,
  .brand img {
    width: 70px;
  }

  .brand img {
    height: 66px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 72px 22px 96px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.25rem, 13vw, 5rem);
    line-height: .98;
  }

  .hero-intro {
    margin-bottom: 30px;
    font-size: 1.18rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 20px 26px;
  }

  .hero-actions .button {
    min-width: 210px;
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: 500px;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .quick-start {
    display: none;
  }

  .route-line {
    bottom: 28px;
  }

  .services {
    padding-top: 104px;
  }

  .section {
    padding-block: 98px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-corner {
    width: 82px;
    height: 76px;
  }

  .service-grid {
    gap: 62px 40px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    padding-top: 74px;
  }

  .process-dot {
    top: 38px;
  }

  .reach-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .reach-copy ul {
    margin-top: 10px;
  }

  .story-copy {
    padding-bottom: 70px;
  }

  .story-media {
    min-height: 700px;
  }

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

  .quote-grid blockquote {
    padding-bottom: 44px;
  }

  .quote-grid blockquote + blockquote {
    padding-top: 44px;
    border-top: 1px solid var(--accent);
    border-left: 0;
  }

  .proof-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-main {
    grid-template-columns: auto 1fr;
    gap: 38px;
  }

  .footer-main nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .footer-location {
    grid-column: 1 / -1;
  }

  .mobile-actionbar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgb(246 242 236 / 97%);
    backdrop-filter: blur(14px);
  }

  .mobile-actionbar .button {
    min-height: 52px;
  }

  .request-dialog,
  .gallery-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }

  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.35rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-media,
  .hero-media img {
    height: 390px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 46px;
    padding-bottom: 22px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .service-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
  }

  .service-icon {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    margin: 4px 0 0;
  }

  .service-item h3,
  .service-item p {
    grid-column: 2;
  }

  .service-item h3 {
    margin-bottom: 24px;
    font-size: 1.7rem;
  }

  .process {
    padding-block: 76px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 38px;
  }

  .process-list::before {
    display: block;
    top: 8px;
    bottom: 16px;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .process-list li {
    padding-top: 0;
  }

  .process-number {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
  }

  .process-dot {
    top: 6px;
    left: -38px;
  }

  .reach-layout {
    gap: 46px;
  }

  .reach-layout h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .reach-copy ul {
    grid-template-columns: 1fr;
  }

  .reach-copy li + li {
    margin-top: 18px;
    padding-left: 0;
    border-left: 0;
  }

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

  .story-media {
    min-height: 560px;
  }

  .gallery-image-main {
    width: 88%;
    height: 560px;
  }

  .gallery-image-secondary {
    width: 66%;
  }

  .proof {
    padding-block: 54px;
  }

  .quote-grid blockquote {
    min-height: 0;
    padding: 8px 0 38px 58px;
  }

  .quote-grid blockquote + blockquote {
    padding-top: 38px;
  }

  .quote-mark {
    left: 0;
    font-size: 70px;
  }

  .faq-list summary {
    padding: 22px 34px 22px 38px;
  }

  .faq-list summary::before {
    left: 5px;
  }

  .faq-list summary::after {
    left: 12px;
  }

  .faq-list details p {
    margin-inline: 38px 10px;
  }

  .closing-layout {
    padding-block: 46px;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .closing-actions .button {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-location {
    grid-column: auto;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-header,
  .gallery-dialog-head {
    padding: 24px 20px 18px;
  }

  .wizard-progress {
    margin-inline: 20px;
  }

  .wizard-progress li {
    gap: 6px;
    font-size: 12px;
  }

  .wizard-progress span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .wizard-step,
  .wizard-success {
    padding-inline: 20px;
  }

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

  .check-row-services {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dialog-footer {
    grid-template-columns: auto 1fr;
    padding: 14px 20px;
  }

  .dialog-footer p {
    display: none;
  }

  .dialog-footer [data-wizard-next],
  .dialog-footer [data-wizard-submit] {
    justify-self: end;
  }

  .request-summary {
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-controls span {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
