:root {
  --primary: #282828;
  --secondary: #cab8a2;
  --text: #625a56;
  --accent: #af4b2f;
  --alternate: #e8e1d8;
  --background: #f4f0ee;
  --white: #ffffff;
  --display-muted: #6d5c50;
  --shell: min(80vw, 1536px);
  --wide-shell: min(90vw, 1728px);
  --body-size: 17px;
  --body-line: 1.65;
  --heading-size: 28px;
  --large-heading: 46px;
  --button-size: 15px;
  --display-tracking: -0.055em;
}

@font-face {
  font-family: "Epilogue";
  src: url("../fonts/epilogue-600-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-line);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--primary);
}

p,
ul,
ol {
  margin-top: 0;
}

p {
  margin-bottom: 0.9em;
}

ul,
ol {
  padding-left: 1.25em;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1,
h2 {
  font-size: var(--heading-size);
}

h3 {
  font-size: 22px;
}

strong {
  color: var(--primary);
  font-weight: 500;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--primary);
  color: var(--white);
  transform: translateY(-150%);
}

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

.section-shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.wide-shell {
  width: var(--wide-shell);
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  min-height: 18vh;
}

.header-inner {
  width: var(--shell);
  min-height: 18vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  flex: none;
}

.brand img,
.footer-brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  position: relative;
  color: #33373d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 20px 35px;
  border: 0;
  border-radius: 50px;
  background: var(--accent);
  color: var(--background);
  cursor: pointer;
  font-size: var(--button-size);
  font-weight: 400;
  line-height: 1;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.button:hover,
.button:focus-visible,
.button:active {
  color: var(--background);
  transform: translateY(8px);
}

.button.external::after {
  content: none;
}

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

.lead {
  color: var(--display-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.5px;
}

.rich-text {
  display: flow-root;
}

.rich-text ul {
  margin-bottom: 0;
  padding-left: 40px;
}

.rich-text ul:last-child {
  margin-bottom: 0;
}

.rich-text li::marker {
  color: currentColor;
}

.accent-rule {
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.display-title,
.display-statement,
.display-words,
.image-word,
.about-name {
  font-family: "Epilogue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: var(--display-tracking);
}

.display-title,
.display-statement {
  color: var(--secondary);
  font-size: 8vw;
  line-height: 1;
  text-transform: lowercase;
}

/* Scroll effects mirror the restrained Elementor entrance animations on the reference site. */
.js [data-reveal] {
  visibility: hidden;
}

.js [data-reveal].is-visible {
  visibility: visible;
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.js [data-reveal="down"].is-visible {
  animation-name: reveal-down;
}

.js [data-reveal="up"].is-visible {
  animation-name: reveal-up;
}

.js [data-reveal="fade"].is-visible {
  animation-name: reveal-fade;
}

.js [data-reveal-slow].is-visible {
  animation-delay: 0.3s;
  animation-duration: 2s;
}

[data-parallax] {
  translate: 0 var(--parallax-y, 0);
}

@keyframes reveal-down {
  from { opacity: 0; translate: 0 -100%; }
  to { opacity: 1; translate: none; }
}

@keyframes reveal-up {
  from { opacity: 0; translate: 0 100%; }
  to { opacity: 1; translate: none; }
}

@keyframes reveal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Home */

.home-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 82vh;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 12%;
}

.hero-copy-inner {
  max-width: 535px;
  padding-top: 22%;
}

.home-hero h1 {
  max-width: 550px;
  margin-bottom: 0.75em;
  font-size: 38px;
}

.home-hero .lead {
  max-width: 460px;
}

.home-hero .hero-copy-inner > p:not(.lead) {
  max-width: 460px;
  margin-top: 25px;
}

.home-hero .button {
  margin-top: 3%;
}

.home-hero-image {
  min-width: 0;
  background: url("../images/home-vase-laptop.jpg") center / cover no-repeat;
}

.display-words {
  position: relative;
  z-index: 2;
  width: 132%;
  margin: 0 0 -184px;
  color: var(--alternate);
  font-size: var(--body-size);
  line-height: var(--body-line);
  text-align: right;
}

.display-words span {
  font-size: 6.6vw;
  line-height: 0.7;
}

.display-words-motion {
  height: 100%;
}

.split-section {
  display: grid;
  grid-template-columns: 46% 42%;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 14%;
}

.image-panel {
  position: relative;
  min-height: 600px;
}

.clock-image {
  background: url("../images/home-uhrwerk.jpg") center / cover no-repeat;
}

.collaboration-image {
  background: linear-gradient(rgba(202, 184, 162, 0.4), rgba(202, 184, 162, 0.4)), url("../images/home-zusammenarbeit.png") center / cover no-repeat;
}

.image-word {
  position: absolute;
  right: 0;
  bottom: -0.53em;
  margin: 0;
  color: var(--background);
  font-size: 100px;
  line-height: 0.78;
  text-align: right;
  text-transform: lowercase;
}

.copy-panel {
  align-self: center;
}

.copy-panel .button {
  margin-top: 4%;
}

.fit-section .rich-text {
  max-width: 490px;
}

.fit-section .rich-text p:empty {
  display: none;
}

.role-section {
  margin-top: 12%;
  padding: 0 5vw;
}

.display-statement {
  margin: 0;
  padding: 40px 0 100px;
  font-size: 6vw;
  text-align: center;
}

.display-statement.left {
  padding: 40px 0 80px;
  font-size: 5.4vw;
  text-align: left;
}

.work-section .display-statement.left {
  font-size: 5.4vw;
  font-style: normal;
  font-weight: 600;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: -8px;
  word-spacing: 0;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  max-width: 62vw;
  margin: 0 auto;
}

.role-copy {
  padding-left: 6%;
}

.role-copy .button {
  margin-top: 4%;
}

.check-list {
  margin: 0;
  padding: 0 0 0 8%;
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 29px;
}

.check-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.check-list li:last-child {
  margin-bottom: 0;
}

.work-section {
  display: grid;
  grid-template-columns: 48% 40%;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10%;
  padding: 5vw 0;
}

.display-column {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.why-section {
  grid-template-columns: 40% 46%;
}

.why-section .copy-panel {
  grid-column: 1;
  grid-row: 1;
}

.why-section .image-panel {
  grid-column: 2;
  grid-row: 1;
}

.why-section .image-word {
  right: 0;
  left: auto;
  text-align: right;
}

.idea-section {
  display: grid;
  grid-template-columns: 46% 40%;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
  margin-top: 12%;
  padding: 5vw;
  background: var(--alternate);
}

.idea-display .display-statement {
  padding: 0;
  color: var(--background);
  text-align: left;
}

.idea-copy h2 {
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.idea-copy .button {
  margin-top: 4%;
}

.projects-section {
  margin-top: 10%;
  padding-bottom: 8%;
}

.projects-section > .display-title {
  margin-bottom: 0.22em;
  text-align: left;
}

.projects-intro {
  max-width: 720px;
  margin-bottom: clamp(38px, 5vw, 76px);
  color: var(--primary);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.project-showcase {
  display: grid;
  gap: clamp(28px, 3vw, 54px);
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 38px);
}

.project-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(117, 107, 102, 0.18);
  background: rgba(255, 255, 255, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--primary);
}

.project-card-link:hover,
.project-card-link:focus-visible {
  color: var(--primary);
}

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(175, 75, 47, 0.52);
  box-shadow: 0 18px 42px rgba(40, 40, 40, 0.09);
  transform: translateY(-4px);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--alternate);
}

.project-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  image-rendering: auto;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-card-media > img,
.project-card:focus-within .project-card-media > img {
  transform: scale(1.018);
}

.project-card-media--duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7%;
  padding: 5% 8% 0;
  background: #eee4d8;
}

.project-card-media--duo > img {
  width: 34%;
  height: 94%;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(40, 40, 40, 0.18);
}

.project-card-media--duo > img:first-child {
  transform: rotate(-2deg) translateY(3%);
}

.project-card-media--duo > img:last-child {
  transform: rotate(2deg);
}

.project-card:hover .project-card-media--duo > img:first-child,
.project-card:focus-within .project-card-media--duo > img:first-child {
  transform: rotate(-2deg) translateY(1%);
}

.project-card:hover .project-card-media--duo > img:last-child,
.project-card:focus-within .project-card-media--duo > img:last-child {
  transform: rotate(2deg) translateY(-2%);
}

.project-card-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.1vw, 34px);
}

.project-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--display-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.project-status {
  flex: none;
  padding: 6px 10px;
  border: 1px solid rgba(175, 75, 47, 0.35);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
}

.project-card-details > p {
  margin-bottom: 28px;
  color: var(--text);
  line-height: 1.6;
}

.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.project-card-cta > span {
  transition: transform 0.25s ease;
}

.project-card:hover .project-card-cta > span,
.project-card:focus-within .project-card-cta > span {
  transform: translateX(5px);
}

.project-card--featured .project-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
}

.project-card--featured .project-card-media {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.project-card--featured .project-card-details {
  justify-content: center;
  padding: clamp(34px, 4vw, 64px);
}

.project-card--featured h3 {
  font-size: clamp(34px, 3.4vw, 54px);
}

.project-card--featured .project-card-details > p {
  max-width: 460px;
  font-size: clamp(16px, 1.2vw, 19px);
}

/* About */

.about-intro {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 0;
  margin-top: 2vw;
  margin-bottom: 4vw;
}

.about-copy {
  padding-right: 0;
}

.profession-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 76px;
}

.profession-grid dt {
  margin: 0 0 -0.22em -4px;
  color: var(--secondary);
  font-family: "Epilogue", Arial, sans-serif;
  font-size: 5.5em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--display-tracking);
  text-transform: lowercase;
}

.profession-grid dd {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--primary);
  font-size: 2.3em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
}

.about-copy > h1 {
  margin-bottom: 0;
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.about-copy > .rich-text {
  width: 80%;
  padding-top: 18px;
  text-align: left;
}

.about-portrait {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.about-portrait-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-portrait::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(244, 240, 238, 0.92);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1200px) {
  .about-portrait {
    margin-left: -32.6316%;
  }

  .about-portrait img {
    left: auto;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: right top;
  }
}

.about-name {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -16px;
  width: 100%;
  margin: 0;
  color: var(--alternate);
  font-size: 7em;
  line-height: 0.8;
  text-align: right;
  text-transform: lowercase;
}

.about-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.about-row {
  padding-right: 0;
}

.about-row h2 {
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.about-row .rich-text {
  width: 80%;
  padding-top: 18px;
  text-align: left;
}

.about-row:last-of-type {
  grid-column: 1;
}

.about-cta {
  grid-column: 1;
  padding-top: 0;
}

/* Contact */

.contact-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 70vh;
  margin-top: 6vh;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 14%;
}

.contact-copy .display-title {
  margin-bottom: 0.38em;
  color: var(--secondary);
}

.contact-copy > p {
  max-width: 620px;
  margin: 0 0 2rem;
}

.contact-details {
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  margin-bottom: 12px;
}

.contact-details > div > span:first-child {
  color: var(--primary);
  font-weight: 400;
}

.contact-details a {
  color: var(--text);
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-hero-image {
  background: url("../images/kontakt-flaschenpost.jpg") center / cover no-repeat;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 47.5% 52.5%;
  min-height: 600px;
  margin-top: 14%;
}

.contact-form-image {
  background: url("../images/kontakt-brief-feder.jpg") center / cover no-repeat;
}

.contact-form-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12%;
}

.contact-form-copy .accent-rule {
  font-size: var(--large-heading);
}

/* Forms */

.site-form {
  width: 100%;
}

.field {
  margin-bottom: 18px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0;
  color: var(--text);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-line);
}

.field:has([required]) > label::after {
  margin-left: 0.2em;
  color: var(--accent);
  content: "*";
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--secondary);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--body-size);
  font-weight: 400;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  display: block;
  min-height: 108px;
  padding: 5px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--accent);
}

.validation-message {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: grid;
  width: 100%;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(232, 225, 216, 0.78);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.55;
  box-shadow: 0 10px 28px rgba(40, 40, 40, 0.06);
}

.form-status:empty {
  display: none;
}

.form-status.sending {
  border-left-color: var(--secondary);
  background: rgba(202, 184, 162, 0.2);
}

.form-status.error {
  background: rgba(175, 75, 47, 0.09);
}

.form-status-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--background);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.form-status.sending .form-status-icon {
  background: var(--secondary);
  color: var(--primary);
}

.form-status-copy,
.form-status-title,
.form-status-message {
  display: block;
}

.form-status-title {
  margin-bottom: 2px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
}

.form-status.error .form-status-title {
  color: var(--accent);
}

.form-status-message {
  color: var(--text);
}

.form-status-message a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-form.is-sending .button[type="submit"] {
  cursor: wait;
  opacity: 0.65;
}

.submit-project {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 0;
  margin-top: 3vh;
}

.submit-intro {
  padding-right: 16%;
}

.submit-intro .display-title {
  margin-bottom: 0.44em;
  color: var(--secondary);
  font-size: 7vw;
  line-height: 0.82;
}

.submit-intro h2,
.submit-form > h2 {
  font-size: var(--large-heading);
}

.submit-intro .rich-text {
  max-width: 500px;
}

.submit-form {
  padding-left: 6%;
}

.project-form {
  position: relative;
}

.form-steps {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 40px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.form-steps li {
  position: relative;
  display: flex;
  flex: 1;
  height: 40px;
  align-items: flex-start;
}

.form-steps li:last-child {
  flex: none;
}

.form-steps li:not(:last-child)::after {
  width: 100%;
  height: 2px;
  margin: 14px 10px 0;
  background: var(--secondary);
  content: "";
}

.form-steps span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: none;
  place-items: center;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background: var(--background);
  color: var(--secondary);
  font-size: 13px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.form-steps li.active span,
.form-steps li.complete span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.step-panel {
  animation: panel-in 0.3s ease both;
}

.step-panel[hidden] {
  display: none;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.project-form .step-buttons {
  margin-bottom: 18px;
}

.project-form .field textarea {
  min-height: 84px;
  height: 84px;
}

.checkbox-field {
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.checkbox-field label {
  display: inline-flex;
  align-items: center;
  margin: 3px 22px 3px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin: 0 7px 0 0;
  accent-color: var(--accent);
}

/* Projects */

.project-hero {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  min-height: 65vh;
  margin-top: 2vw;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20%;
}

.project-copy h1 {
  margin-bottom: 20px;
  font-size: var(--large-heading);
}

.project-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
}

.project-category::before {
  color: var(--accent);
  content: "•";
  font-size: 24px;
  line-height: 0;
}

.case-study .project-category {
  gap: 5px;
}

.case-study .project-category::before {
  display: block;
  width: 26.25px;
  height: 21px;
  flex: 0 0 26.25px;
  background-color: var(--accent);
  content: "";
  font-size: 0;
  line-height: 0;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDQ0OCkgc2NhbGUoMSAtMSkiPjxwYXRoIGQ9Ik0zODQgMzI2VjMyMEgyNTZWNDQ4SDI2MlEyNzIgNDQ4IDI3OSA0NDFMMzc3IDM0M1EzODQgMzM2IDM4NCAzMjZaTTI0OCAyODhIMzg0Vi00MFEzODQgLTUwIDM3NyAtNTdRMzcwIC02NCAzNjAgLTY0SDI0UTE0IC02NCA3IC01N1EwIC01MCAwIC00MFY0MjRRMCA0MzQgNyA0NDFRMTQgNDQ4IDI0IDQ0OEgyMjRWMzEyUTIyNCAzMDIgMjMxIDI5NVEyMzggMjg4IDI0OCAyODhaTTEyMyA0NyAxNDMgNjhRMTQ0IDcwIDE0NCA3MlExNDQgNzUgMTQyIDc2TDEwMiAxMTJMMTQyIDE0OFExNDQgMTQ5IDE0NCAxNTJRMTQ0IDE1NCAxNDMgMTU2TDEyMyAxNzdRMTIyIDE3OCAxMTkgMTc4UTExNyAxNzggMTE2IDE3N0w1MSAxMTZRNDkgMTE0IDQ5IDExMlE0OSAxMTAgNTEgMTA4TDExNiA0N1ExMTcgNDYgMTE5IDQ2UTEyMiA0NiAxMjMgNDdaTTE3NSAtM1ExODAgLTMgMTgxIDFMMjQzIDIxMlEyNDMgMjE4IDIzOSAyMTlMMjExIDIyN1EyMDYgMjI3IDIwNSAyMjNMMTQzIDEyUTE0MyA2IDE0NyA1Wk0zMzUgMTA4UTMzNyAxMTAgMzM3IDExMlEzMzcgMTE0IDMzNSAxMTZMMjcwIDE3N1EyNjkgMTc4IDI2NyAxNzhRMjY0IDE3OCAyNjMgMTc3TDI0MyAxNTZRMjQyIDE1NCAyNDIgMTUyUTI0MiAxNDkgMjQ0IDE0OEwyODQgMTEyTDI0NCA3NlEyNDIgNzUgMjQyIDcyUTI0MiA3MCAyNDMgNjhMMjYzIDQ3UTI2NCA0NiAyNjcgNDZRMjY5IDQ2IDI3MCA0N1oiLz48L2c+PC9zdmc+") center / 15.75px 21px no-repeat;
          mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDQ0OCkgc2NhbGUoMSAtMSkiPjxwYXRoIGQ9Ik0zODQgMzI2VjMyMEgyNTZWNDQ4SDI2MlEyNzIgNDQ4IDI3OSA0NDFMMzc3IDM0M1EzODQgMzM2IDM4NCAzMjZaTTI0OCAyODhIMzg0Vi00MFEzODQgLTUwIDM3NyAtNTdRMzcwIC02NCAzNjAgLTY0SDI0UTE0IC02NCA3IC01N1EwIC01MCAwIC00MFY0MjRRMCA0MzQgNyA0NDFRMTQgNDQ4IDI0IDQ0OEgyMjRWMzEyUTIyNCAzMDIgMjMxIDI5NVEyMzggMjg4IDI0OCAyODhaTTEyMyA0NyAxNDMgNjhRMTQ0IDcwIDE0NCA3MlExNDQgNzUgMTQyIDc2TDEwMiAxMTJMMTQyIDE0OFExNDQgMTQ5IDE0NCAxNTJRMTQ0IDE1NCAxNDMgMTU2TDEyMyAxNzdRMTIyIDE3OCAxMTkgMTc4UTExNyAxNzggMTE2IDE3N0w1MSAxMTZRNDkgMTE0IDQ5IDExMlE0OSAxMTAgNTEgMTA4TDExNiA0N1ExMTcgNDYgMTE5IDQ2UTEyMiA0NiAxMjMgNDdaTTE3NSAtM1ExODAgLTMgMTgxIDFMMjQzIDIxMlEyNDMgMjE4IDIzOSAyMTlMMjExIDIyN1EyMDYgMjI3IDIwNSAyMjNMMTQzIDEyUTE0MyA2IDE0NyA1Wk0zMzUgMTA4UTMzNyAxMTAgMzM3IDExMlEzMzcgMTE0IDMzNSAxMTZMMjcwIDE3N1EyNjkgMTc4IDI2NyAxNzhRMjY0IDE3OCAyNjMgMTc3TDI0MyAxNTZRMjQyIDE1NCAyNDIgMTUyUTI0MiAxNDkgMjQ0IDE0OEwyODQgMTEyTDI0NCA3NlEyNDIgNzUgMjQyIDcyUTI0MiA3MCAyNDMgNjhMMjYzIDQ3UTI2NCA0NiAyNjcgNDZRMjY5IDQ2IDI3MCA0N1oiLz48L2c+PC9zdmc+") center / 15.75px 21px no-repeat;
}

.project-description {
  max-width: 560px;
}

.project-description p {
  margin-bottom: 0.9em;
}

.project-copy .button {
  margin-top: 20px;
}

.project-hero-image {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 65vh;
  overflow: hidden;
}

.project-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Schmale App-Screenshots können im gemeinsamen Hero als Doppelansicht erscheinen. */
.project-hero-image--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  padding: clamp(22px, 3vw, 46px) clamp(10px, 1.8vw, 28px);
}

.project-hero-image--duo .project-hero-shot {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: min(58vh, 640px);
  overflow: hidden;
  background: #fff;
  border-radius: clamp(10px, 1.2vw, 18px);
  box-shadow: 0 18px 42px rgb(44 38 34 / 14%);
}

.project-hero-image--duo .project-hero-shot:first-child {
  transform: translateY(-4%);
}

.project-hero-image--duo .project-hero-shot:last-child {
  transform: translateY(4%);
}

.project-hero-image--duo .project-hero-shot img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
}

.project-facts {
  display: grid;
  grid-template-columns: 35% 30.5% 30.5%;
  gap: 2%;
  margin-top: 10%;
  margin-bottom: 0;
}

.project-facts h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.project-facts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 16px;
  color: #333;
}

.project-facts li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.project-facts li:last-child {
  margin-bottom: 0;
}

.project-sentence h2 {
  display: inline-block;
  padding-left: 20px;
  border-left: 1px solid var(--accent);
  font-size: 28px;
  line-height: 1.2;
}

.project-navigation {
  display: grid;
  grid-template-columns: calc(50% - 0.5px) calc(50% - 0.5px);
  column-gap: 0;
  align-items: end;
  width: var(--shell);
  min-height: calc(5.6vw + 33px);
  margin: 0 auto;
}

.project-navigation a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 15px;
  color: var(--text);
}

.project-navigation a:hover,
.project-navigation a:focus-visible {
  color: var(--accent);
}

.project-navigation .next {
  justify-content: flex-end;
  text-align: right;
}

.project-navigation .prev::before,
.project-navigation .next::after {
  color: currentColor;
  font-size: 42px;
  font-weight: 200;
  line-height: 30px;
}

.project-navigation .prev::before {
  content: "‹";
}

.project-navigation .next::after {
  content: "›";
}

.project-navigation small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.project-navigation span {
  min-width: 0;
  color: currentColor;
  font-size: 22px;
  font-weight: 400;
  overflow-wrap: anywhere;
  text-transform: capitalize;
}

.project-gallery {
  width: 100%;
  margin-top: 4%;
  padding: 5vw 10vw;
  background: var(--alternate);
}

.project-gallery .display-title {
  margin-bottom: 0;
  color: var(--secondary);
}

.project-gallery .project-navigation {
  width: 100%;
  min-height: calc(4vw + 33px);
  margin-top: 0;
  padding-top: 4vw;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.js .gallery-grid {
  position: relative;
  column-count: initial;
}

.js .gallery-grid a {
  position: absolute;
  margin-bottom: 0;
}

.gallery-grid a {
  display: block;
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  background: var(--background);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: filter 0.8s ease, transform 0.8s ease;
}

.js .gallery-grid[data-gallery-reveal] a {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.975);
  transition:
    opacity 0.75s ease var(--gallery-delay, 0ms),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--gallery-delay, 0ms);
  will-change: opacity, transform;
}

.js .gallery-grid[data-gallery-reveal] a.is-gallery-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.gallery-grid a:hover img,
.gallery-grid a:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  grid-template-rows: 60px minmax(0, 1fr) 54px;
  place-items: center;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.8);
  color: rgba(237, 237, 237, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-toolbar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 60px 8px 20px;
}

.lightbox-counter {
  color: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.lightbox-actions {
  display: flex;
  align-items: center;
}

.lightbox figure {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.25s ease;
  user-select: none;
}

.lightbox-stage img.is-zoomed {
  cursor: zoom-out;
  transform: scale(1.65);
}

.lightbox figcaption {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 54px;
  padding: 15px 20px;
  color: inherit;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.lightbox button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  color: var(--white);
}

.lightbox-actions button,
.lightbox-close {
  width: 44px;
  height: 44px;
  padding: 12px;
  font-size: 20px;
  line-height: 20px;
}

.lightbox-actions button {
  margin: 0 2px;
}

.lightbox button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lightbox [data-lightbox-zoom][aria-pressed="true"] [data-zoom-plus] {
  display: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  top: 60px;
  bottom: 54px;
  width: 70px;
  font-size: 56px;
  font-weight: 200;
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
}

/* Legal */

.legal-page {
  padding: 4vh 0 10vh;
}

.legal-page > h1,
.legal-heading h1 {
  margin-bottom: 1.2em;
  font-size: var(--large-heading);
}

.legal-grid {
  display: grid;
  grid-template-columns: 42% 48%;
  justify-content: space-between;
  align-items: start;
}

.legal-column {
  min-width: 0;
}

.legal-seal {
  width: 120px;
  height: auto;
  margin: 34px 0;
}

.legal-source--mobile {
  display: none;
}

.legal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.legal-heading .legal-seal {
  margin: 0 0 25px 30px;
}

.privacy-page .legal-heading h1 {
  color: var(--accent);
}

.privacy-content {
  max-width: 80ch;
}

.privacy-content h2 {
  margin-top: 2.2em;
  font-size: 28px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  margin-top: 1.6em;
  font-size: 22px;
}

.privacy-content h4,
.privacy-content .privacy-detail-heading {
  margin-top: 1.25em;
  margin-bottom: 0.35em;
  font-size: 17px;
}

.privacy-content a,
.legal-page a {
  overflow-wrap: anywhere;
}

/* Footer */

.site-footer {
  min-height: 18vh;
  padding-top: clamp(64px, 7vw, 120px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  align-items: center;
  width: var(--shell);
  min-height: 18vh;
  margin: 0 auto;
}

.site-footer address {
  font-style: normal;
}

.site-footer address a {
  color: var(--text);
}

.site-footer address a[href^="mailto:"] {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-links nav a {
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-links nav a:hover,
.footer-links nav a:focus-visible {
  color: var(--accent);
}

.cookie-link {
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* Consent */

.consent-layer {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(40, 40, 40, 0.42);
}

.consent-layer[hidden] {
  display: none;
}

.consent-dialog {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 30px 24px 24px;
  border: 10px solid var(--white);
  border-radius: 3px;
  background: var(--background);
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.35);
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.5;
}

.consent-dialog h2 {
  margin-right: 52px;
  font-size: 20px;
}

.consent-dialog a {
  text-decoration: underline;
}

.consent-close {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  place-items: center;
}

.consent-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.consent-actions button {
  width: 100%;
  min-height: 44px;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 18px;
}

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

@media (min-width: 1200px) {
  .header-inner {
    width: var(--shell);
  }

  .brand img {
    max-width: none;
    margin-left: -25px;
  }

  .primary-navigation {
    transform: translateX(20px);
  }

  .primary-navigation ul {
    gap: 0;
  }

  .primary-navigation a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 13px 20px;
    color: var(--primary);
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-transform: none;
  }

  .primary-navigation a::after {
    display: none;
  }

  .primary-navigation a[aria-current="page"] {
    color: var(--accent);
  }

  .primary-navigation a:hover,
  .primary-navigation a:focus-visible {
    color: var(--accent);
  }

  .display-title,
  .display-statement,
  .display-words,
  .image-word,
  .about-name,
  .profession-grid dt {
    letter-spacing: -8px;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .hero-copy-inner {
    display: flex;
    max-width: none;
    flex-direction: column;
    gap: 20px;
    padding-top: 25%;
    padding-right: 20%;
  }

  .home-hero h1 {
    margin-bottom: 0;
  }

  .home-hero .lead,
  .home-hero .hero-copy-inner > p:not(.lead) {
    margin-top: 0;
    margin-bottom: 14.4px;
  }

  .home-hero .button {
    margin-top: 4%;
  }

  .display-words {
    width: 100%;
    margin-bottom: -184px;
  }

  .fit-section .copy-panel {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 19.05%;
  }

  .fit-section .copy-panel .accent-rule {
    margin-bottom: 0;
  }

  .role-section {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .role-grid {
    display: flex;
  }

  .role-grid > * {
    flex: 0 0 50%;
  }

  .role-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .role-copy .lead,
  .role-copy > p:not(.lead) {
    margin-top: 0;
    margin-bottom: 14.4px;
  }

  .work-section .copy-panel {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    padding-left: 20%;
  }

  .why-section {
    grid-template-columns: 46% 52.3%;
  }

  .why-section .image-panel {
    min-height: 400px;
  }

  .why-section .copy-panel {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 17.4%;
  }

  .why-section .copy-panel .accent-rule {
    margin-bottom: 0;
  }

  .why-section .image-word {
    right: 0;
    bottom: -154px;
    left: auto;
    width: 100%;
    line-height: 1.2;
    text-align: right;
    white-space: normal;
  }

  .idea-section {
    width: 100%;
    grid-template-columns: 46% 40%;
    margin-top: 10%;
    padding: 5% calc((100% - var(--shell)) / 2);
  }

  .idea-display .display-statement {
    padding: 40px 0 80px;
    color: var(--secondary);
    font-size: 5.4vw;
  }

  .idea-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 20%;
  }

  .idea-copy h2,
  .idea-copy p {
    margin-top: 0;
    margin-bottom: 14.4px;
  }

  .projects-section {
    margin-top: 12%;
    padding-bottom: 0;
  }

  .projects-section > .display-title {
    margin-bottom: 0.22em;
    text-align: left;
  }

  .profession-grid {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
  }

  .profession-grid > div {
    min-height: 0;
  }

  .profession-grid dt {
    margin-bottom: 0;
  }

  .profession-grid dd {
    margin-top: -12px;
  }

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

  .about-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
  }

  .about-copy > h1 {
    width: max-content;
    max-width: 100%;
    margin-bottom: 0;
  }

  .about-cta {
    margin-top: -10px;
  }

  .about-portrait::after {
    background: rgba(244, 240, 238, 0.92);
  }

  .contact-hero {
    width: 100%;
    min-height: 70vh;
    margin-top: 4%;
    padding-right: calc((100% - var(--shell)) / 2);
    padding-left: calc((100% - var(--shell)) / 2);
  }

  .contact-copy {
    justify-content: flex-start;
    padding: 12% 5% 0 0;
  }

  .contact-copy .display-title {
    margin-bottom: 18.9px;
    color: var(--secondary);
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 18.8px;
    padding-left: 0;
    border-left: 0;
  }

  .contact-details > div {
    display: block;
    width: 35%;
    min-height: 68.4px;
    margin-bottom: 0;
    padding-left: 20px;
    border-left: 1px solid var(--accent);
  }

  .contact-details > div > span:first-child {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .contact-form-section {
    grid-template-columns: 47.365% 52.635%;
    margin-top: 12%;
    margin-bottom: 8%;
  }

  .contact-form-copy {
    justify-content: flex-start;
    padding-top: 20px;
    padding-right: 28.35%;
    padding-left: 19%;
  }

  .contact-form-copy .accent-rule {
    margin-bottom: 43px;
    font-size: 28px;
  }

  .contact-form-copy .site-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-copy .site-form .field {
    width: 100%;
  }

  .submit-project {
    grid-template-columns: 53.76% 46.24%;
    min-height: 0;
    margin-top: 2%;
    margin-bottom: 8%;
  }

  .submit-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-right: 26.03%;
  }

  .submit-intro .display-title {
    margin-bottom: 0;
    font-size: 96px;
    line-height: 1;
    letter-spacing: -8px;
  }

  .submit-intro h2,
  .submit-intro .rich-text,
  .submit-form > h2 {
    margin-bottom: 0;
  }

  .submit-form {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }

  .submit-form > h2 {
    line-height: 1.2;
  }

  .submit-form > .project-form {
    margin-top: 38px;
  }

  .step-buttons {
    justify-content: flex-start;
  }

  .project-copy {
    justify-content: center;
  }

  .project-facts {
    grid-template-columns: 34.91% 30.55% 30.55%;
  }

  .project-gallery {
    width: 100%;
    padding-top: 5%;
    padding-right: calc((100% - var(--shell)) / 2);
    padding-bottom: 5%;
    padding-left: calc((100% - var(--shell)) / 2);
  }

  .case-study .project-hero {
    grid-template-columns: 54% 46%;
    margin-right: 0;
    margin-left: 10vw;
  }

  .case-study .project-copy {
    padding-right: 0;
  }

  .case-study .project-description {
    max-width: 660px;
  }

  .case-study .project-facts {
    margin-right: 0;
    margin-left: 15vw;
    margin-top: 10vw;
  }

  .case-study > .project-navigation {
    margin-right: 0;
    margin-left: 10vw;
  }

  .case-study .project-gallery {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 4vw;
    padding-top: 5vw;
    padding-right: 10vw;
    padding-bottom: 5vw;
    padding-left: 10vw;
  }

  .project-copy .button.external {
    padding-right: 60px;
    padding-left: 60px;
  }

  .project-facts {
    width: 70vw;
  }

  .project-gallery .display-title {
    letter-spacing: -8px;
    text-align: left;
  }

  .legal-page {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .legal-page > h1 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .legal-grid {
    grid-template-columns: 42% calc(58% - 20px);
    column-gap: 20px;
    justify-content: start;
  }

  .legal-grid > .legal-column:first-child {
    display: grid;
    grid-template-columns: 48% 46%;
    justify-content: start;
    align-items: start;
  }

  .legal-grid > .legal-column:first-child > .legal-seal {
    margin-top: 0;
    justify-self: end;
  }

  .legal-grid > .legal-column:first-child > .rich-text:last-child {
    grid-column: 1 / -1;
    margin-top: 110.4px;
  }

  .legal-heading h1 {
    width: 75%;
    margin-bottom: 20.8px;
    color: var(--accent);
    font-size: 46px;
  }

  .legal-heading .legal-seal {
    width: 22%;
    max-width: 120px;
    margin: 0 12.74px -80px 0;
  }

  .privacy-content {
    width: 100%;
    max-width: 80ch;
    margin-top: 20px;
  }

  .privacy-page {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .privacy-content h2,
  .privacy-content h2:first-child {
    margin-top: 8px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 32px;
  }

  .privacy-content h3 {
    margin-top: 8px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 28px;
  }

  .privacy-content h4,
  .privacy-content .privacy-detail-heading {
    margin-top: 8px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    width: var(--shell);
  }

  .footer-brand {
    width: 150px;
    justify-self: start;
  }

  .site-footer address {
    width: 100%;
    margin: 0;
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    position: relative;
    top: -0.3px;
    width: 100%;
    gap: 0;
  }

  .footer-links nav {
    align-items: flex-end;
    gap: 0;
  }

  .footer-links nav a {
    justify-content: flex-end;
    padding: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }

  .cookie-link {
    height: auto;
    margin-top: 0;
    margin-right: 0;
    border-bottom: 0;
    color: var(--accent);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .home-page .fit-section .copy-panel .accent-rule {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  :root {
    --body-size: 16px;
    --heading-size: 28px;
    --large-heading: 38px;
    --button-size: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1200;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--background);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .primary-navigation.open {
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation ul {
    flex-direction: column;
    gap: 34px;
  }

  .primary-navigation a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 18px;
    font-size: 22px;
    font-weight: 500;
    text-transform: none;
  }

  .home-hero,
  .split-section,
  .work-section,
  .why-section,
  .about-intro,
  .submit-project,
  .contact-hero,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    gap: 20px;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .hero-copy-inner {
    max-width: 680px;
    padding-top: 0;
  }

  .display-words {
    width: 100%;
    margin: 23px 0 0;
  }

  .display-words span {
    font-size: 10vw;
  }

  .home-page .display-statement,
  .home-page .display-words,
  .home-page .image-word {
    letter-spacing: -8px;
  }

  .home-hero-image {
    min-height: 38vh;
  }

  .split-section,
  .work-section,
  .why-section {
    gap: 65px;
    margin-top: 15%;
  }

  .work-section {
    gap: 40px;
    margin-top: 10%;
    padding: 10vw 0;
  }

  .image-panel,
  .display-column {
    min-height: 300px;
  }

  .why-section .copy-panel,
  .why-section .image-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .why-section .copy-panel {
    order: 2;
  }

  .why-section .image-panel {
    order: 1;
  }

  .image-word {
    bottom: -0.5em;
    font-size: 10vw;
  }

  .why-section .image-word {
    right: 0;
    bottom: -118px;
    left: auto;
    line-height: 1.2;
    text-align: right;
  }

  .copy-panel {
    justify-self: center;
    max-width: 620px;
  }

  .role-section {
    margin-top: 15%;
  }

  .display-statement,
  .display-statement.left {
    font-size: clamp(48px, 6vw, 72px);
    text-align: center;
  }

  .role-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 620px;
    text-align: center;
  }

  .role-copy,
  .check-list {
    padding-left: 0;
  }

  .role-copy .button {
    margin-right: auto;
    margin-left: auto;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .work-section .copy-panel {
    order: 2;
  }

  .work-section .display-column {
    order: 1;
  }

  .work-section .display-statement.left {
    font-size: clamp(48px, 6vw, 72px);
  }

  .idea-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10%;
    text-align: center;
  }

  .idea-display .display-statement {
    font-size: 14vw;
    text-align: center;
  }

  .idea-copy .button {
    margin-right: auto;
    margin-left: auto;
  }

  .projects-section .display-title,
  .project-gallery .display-title {
    font-size: 14vw;
  }

  .about-intro {
    gap: 65px;
    min-height: 0;
    margin-top: 5vw;
    margin-bottom: 6vw;
  }

  .about-copy {
    padding-right: 0;
  }

  .profession-grid dt {
    font-size: 4em;
  }

  .profession-grid dd {
    margin-top: 1em;
    font-size: 1.8em;
  }

  .about-copy > .rich-text,
  .about-row .rich-text {
    width: 100%;
    text-align: left;
  }

  .about-portrait {
    min-height: clamp(520px, 72vh, 760px);
  }

  .about-portrait img {
    object-position: center bottom;
  }

  .about-name {
    bottom: -25px;
    margin-top: -0.9em;
    font-size: 14vw;
    text-align: left;
  }

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

  .contact-hero {
    gap: 65px;
    margin-top: 5vw;
  }

  .contact-copy {
    padding-right: 0;
  }

  .contact-copy .display-title {
    font-size: 14vw;
  }

  .contact-hero-image,
  .contact-form-image {
    min-height: 52vh;
  }

  .contact-form-section {
    gap: 65px;
  }

  .contact-form-copy,
  .submit-form {
    padding-left: 0;
  }

  .submit-project {
    gap: 65px;
    min-height: 0;
    margin-top: 5vw;
    margin-bottom: 8vw;
  }

  .submit-intro {
    padding-right: 0;
  }

  .submit-intro .display-title {
    font-size: 14vw;
  }

  .project-hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
    margin-top: 8vw;
  }

  .project-copy {
    padding: 0;
  }

  .project-hero-image {
    min-height: 45vh;
  }

  .project-hero-image--duo {
    gap: clamp(14px, 4vw, 30px);
    padding: 20px clamp(8px, 4vw, 34px);
  }

  .project-hero-image--duo .project-hero-shot {
    max-width: 280px;
    height: min(48vh, 520px);
  }

  .project-facts {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 15%;
  }

  .project-facts > div {
    max-width: 680px;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .gallery-grid a {
    margin-bottom: 10px;
  }

  .project-gallery {
    margin-top: 5%;
    padding-top: 10%;
    padding-bottom: 5%;
  }

  .footer-inner {
    grid-template-columns: 22% 48% 30%;
  }

  .footer-brand img,
  .brand img {
    width: 125px;
    height: 125px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .project-card--featured .project-card-link {
    grid-template-columns: 1fr;
  }

  .project-card--featured .project-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

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

  .project-card-grid .project-card:last-child .project-card-link {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .project-card-grid .project-card:last-child .project-card-media {
    height: 100%;
    min-height: 310px;
    aspect-ratio: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --body-size: 16px;
    --heading-size: 22px;
    --large-heading: 30px;
    --button-size: 14px;
    --display-tracking: -0.045em;
  }

  .home-page {
    --shell: calc(100% - 40px);
    --wide-shell: calc(100% - 40px);
    --mobile-section-space: clamp(72px, 20vw, 88px);
  }

  .site-header,
  .header-inner {
    min-height: 0;
  }

  .site-header {
    padding: 18px 0 38px;
  }

  .brand img {
    width: 80px;
    height: 80px;
  }

  .button {
    min-height: 50px;
    padding: 18px 25px;
  }

  .lead {
    font-size: 16px;
  }

  .home-hero h1 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .home-hero h1 br {
    display: none;
  }

  .home-hero .hero-copy-inner > p:not(.lead) {
    text-align: left;
  }

  .home-hero .button {
    margin-right: 0;
    margin-left: 0;
  }

  .display-words {
    display: none;
  }

  .display-words span {
    font-size: 10vw;
    line-height: 0.7;
  }

  .home-page .display-statement,
  .home-page .display-words,
  .home-page .image-word {
    letter-spacing: -1.8px;
  }

  .home-page [data-parallax] {
    translate: none;
  }

  .home-page .home-hero-image,
  .home-page .collaboration-image {
    display: none;
  }

  .home-page .fit-section .clock-image {
    display: none;
  }

  .home-hero-image {
    min-height: 220px;
  }

  .split-section,
  .work-section,
  .why-section {
    gap: 40px;
  }

  .split-section,
  .why-section {
    margin-top: var(--mobile-section-space);
  }

  .image-panel,
  .display-column {
    min-height: 220px;
  }

  .image-word {
    bottom: -0.48em;
    font-size: 10vw;
  }

  .why-section .image-word {
    right: 18px;
    bottom: 0;
    left: 18px;
    color: var(--background);
    text-shadow: 0 2px 18px rgba(40, 40, 40, 0.38);
  }

  .copy-panel {
    width: 100%;
  }

  .role-section {
    margin-top: var(--mobile-section-space);
    padding: 0;
  }

  .display-statement,
  .display-statement.left {
    padding: 22px 0 49px;
    font-size: clamp(32px, 6.25vw, 48px);
  }

  .work-section {
    margin-top: var(--mobile-section-space);
    margin-bottom: 13px;
    padding: 0;
  }

  .work-section .display-statement.left {
    padding: 24px 0 32px;
    font-size: clamp(36px, 6.25vw, 48px);
    letter-spacing: -1.8px;
  }

  .role-grid {
    gap: 40px;
    max-width: 100%;
    text-align: left;
  }

  .role-copy .button {
    margin-right: 0;
    margin-left: 0;
  }

  .check-list {
    font-size: 16px;
  }

  .idea-section {
    width: var(--shell);
    min-height: 0;
    margin-top: var(--mobile-section-space);
    padding: 10% 0;
    background: transparent;
    text-align: left;
  }

  .idea-display {
    min-height: 220px;
    display: flex;
    align-items: center;
    background: var(--alternate);
    margin: 0 -5vw;
    padding: 5vw;
  }

  .idea-display .display-statement {
    color: var(--secondary);
    font-size: 45px;
    text-align: center;
  }

  .idea-copy {
    text-align: left;
  }

  .idea-copy .button {
    margin-left: 0;
  }

  .projects-section {
    margin-top: var(--mobile-section-space);
  }

  .projects-section .display-title,
  .project-gallery .display-title {
    font-size: clamp(42px, 13vw, 56px);
  }

  .project-gallery .display-title {
    color: var(--secondary);
    font-size: 10vw;
    letter-spacing: -1.8px;
  }

  .projects-intro {
    margin-bottom: 34px;
    font-size: 16px;
  }

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

  .project-showcase,
  .project-card-grid {
    gap: 24px;
  }

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

  .project-card--featured .project-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .project-card-details,
  .project-card--featured .project-card-details {
    padding: 22px 20px 24px;
  }

  .project-card h3,
  .project-card--featured h3 {
    font-size: 26px;
  }

  .project-card-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .project-card-media--duo > img {
    border-width: 3px;
    border-bottom-width: 0;
    border-radius: 16px 16px 0 0;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

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

  .project-card:hover,
  .project-card:focus-within {
    transform: none;
  }

  .project-card:hover .project-card-media > img,
  .project-card:focus-within .project-card-media > img {
    transform: none;
  }

  .project-card:hover .project-card-media--duo > img:first-child,
  .project-card:focus-within .project-card-media--duo > img:first-child {
    transform: rotate(-2deg) translateY(3%);
  }

  .project-card:hover .project-card-media--duo > img:last-child,
  .project-card:focus-within .project-card-media--duo > img:last-child {
    transform: rotate(2deg);
  }

  .profession-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 0;
  }

  .profession-grid dt {
    margin-bottom: -0.1em;
    font-size: 3.3em;
  }

  .profession-grid dd {
    margin-top: 0;
    font-size: 1.5em;
  }

  .about-copy > h1 {
    margin-top: 40px;
  }

  .about-copy > .rich-text {
    padding-top: 18px;
  }

  .about-portrait {
    min-height: 55vh;
  }

  .about-name {
    bottom: -10px;
    font-size: 15vw;
  }

  .about-sections {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-row,
  .about-row:last-of-type,
  .about-cta {
    grid-column: 1;
    padding-right: 0;
  }

  .about-row:not(:first-child) h2 {
    margin-top: 40px;
  }

  .about-negative-intro {
    margin-top: 32px;
  }

  .contact-hero {
    gap: 40px;
    min-height: 0;
    margin-top: 0;
  }

  .contact-copy .display-title {
    font-size: 15vw;
  }

  .contact-details > div {
    grid-template-columns: 90px 1fr;
  }

  .contact-hero-image,
  .contact-form-image {
    min-height: 55vh;
  }

  .contact-page .contact-form-image {
    display: none;
  }

  .contact-form-section {
    gap: 40px;
    margin-top: 15%;
  }

  .contact-form-copy .accent-rule {
    font-size: 30px;
  }

  .submit-project {
    gap: 40px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .submit-intro .display-title {
    font-size: 15vw;
  }

  .step-buttons {
    justify-content: space-between;
  }

  .project-copy {
    align-items: flex-start;
    padding-top: 0;
    text-align: left;
  }

  .project-copy h1 {
    font-size: 30px;
  }

  .project-hero {
    gap: 20px;
  }

  .project-description {
    width: 100%;
    text-align: left;
  }

  .project-copy .button.external {
    width: 100%;
  }

  .project-hero-image {
    min-height: 30vh;
    margin-top: 8%;
  }

  .project-hero-image--duo {
    gap: 12px;
    padding: 14px 0;
  }

  .project-hero-image--duo .project-hero-shot {
    height: min(72vw, 330px);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgb(44 38 34 / 14%);
  }

  .project-facts {
    margin-top: 15%;
  }

  .project-navigation {
    margin: 6% auto;
  }

  .project-navigation span {
    font-size: 14px;
  }

  .project-gallery {
    width: 100%;
    padding: 10vw;
  }

  .gallery-grid {
    column-count: 1;
  }

  .lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    grid-template-rows: 60px minmax(0, 1fr) 48px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .lightbox-toolbar {
    padding-right: 52px;
    padding-left: 8px;
  }

  .lightbox-counter {
    font-size: 14px;
  }

  .lightbox-actions button {
    margin-right: 0;
    margin-left: 0;
  }

  .lightbox-close {
    top: 8px;
    right: 4px;
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 48px;
    width: 42px;
    font-size: 42px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox figcaption {
    min-height: 48px;
    padding: 12px;
    font-size: 14px;
  }

  .legal-page {
    padding-top: 0;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-page .legal-seal--desktop {
    display: none;
  }

  .legal-source--desktop {
    display: none;
  }

  .legal-page .legal-source--mobile {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-top: 34px;
  }

  .legal-source--mobile .legal-seal {
    display: block;
    width: 72px;
    margin: 0;
  }

  .legal-source--mobile p {
    margin: 0;
  }

  .legal-heading {
    display: block;
  }

  .legal-heading .legal-seal {
    margin-left: 0;
  }

  .privacy-content h2 {
    font-size: 24px;
  }

  .privacy-content h3 {
    font-size: 19px;
  }

  .site-footer {
    padding: clamp(64px, 16vw, 92px) 0 8%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    margin: 0 auto;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links nav {
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .footer-links nav a,
  .cookie-link {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.5;
  }

  .cookie-link {
    margin-top: 0;
  }

  .consent-layer {
    align-items: end;
    padding: 0;
  }

  .consent-dialog {
    width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    border-width: 0;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .project-navigation {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .project-navigation a {
    width: 100%;
  }

  .project-navigation .next {
    justify-content: flex-end;
  }

  .project-gallery .project-navigation {
    min-height: 0;
  }
}

@media (min-width: 1700px) {
  .display-title {
    font-size: 138px;
  }
}

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

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