:root {
  --background-light: #f1f1ef;
  --ink: #1f102d;
  --ink-muted: #493d54;
  --damvos-orange: #ff6100;
  --orange: var(--damvos-orange);
  --action: var(--damvos-orange);
  --action-hover: var(--damvos-orange);
  --white: #ffffff;
  --lilac: #b0abb5;
  --border-soft: rgb(31 16 45 / 10%);
  --logo-filter: grayscale(1) contrast(0.82) opacity(0.55);
  --border-strong: rgb(31 16 45 / 55%);
  --container: 1320px;
  --gutter: 16px;
  --header-offset: 104px;
  --radius-tag: 15px;
  --radius-panel: 24px;
  --radius-card: 40px;
  --radius-hero: 60px;
  --radius-pill: 100px;
  color-scheme: light;
}

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

html {
  background: var(--background-light);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background-light);
  font-size: 18px;
  line-height: 32px;
  overflow-x: clip;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
}

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

.container {
  width: 100%;
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: calc(var(--container) - var(--gutter) - var(--gutter));
  margin: 0 auto;
  min-width: 0;
}

.section-cream {
  background: var(--background-light);
}

.section-sand {
  background: var(--background-light);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.anchor-target {
  scroll-margin-top: var(--header-offset);
}

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

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 36px;
  line-height: 44px;
}

h2 {
  font-size: 32px;
  line-height: 40px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 16px;
  pointer-events: none;
}

.header-shell {
  position: relative;
  pointer-events: auto;
}

.nav-bar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: var(--background-light);
  padding: 0 8px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link,
.mobile-nav-link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: var(--action);
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--white);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  display: grid;
  gap: 4px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--background-light);
  padding: 16px;
}

.mobile-nav-link {
  display: block;
  min-height: 44px;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
}

.hero {
  padding: 36px 0 48px;
}

.hero-copy {
  max-width: 896px;
  margin: 0;
  text-align: left;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}

.hero-badge {
  width: 90px;
  height: auto;
  flex: 0 0 auto;
}

.hero-badge:last-child {
  width: 60px;
  justify-self: end;
}

@media (min-width: 1200px) {
  .hero-intro {
    display: grid;
    grid-template-columns: 90px minmax(0, 896px) 90px;
    justify-content: space-between;
    column-gap: 24px;
  }

  .hero-intro .hero-copy,
  .hero-badges {
    display: contents;
  }

  .hero-intro .fox-marker,
  .hero-intro h1,
  .hero-intro .hero-copy > p {
    grid-column: 2;
  }

  .hero-intro .fox-marker { grid-row: 1; }
  .hero-intro h1 { grid-row: 2; }
  .hero-intro .hero-copy > p { grid-row: 3; }

  .hero-badge {
    grid-row: 2;
    align-self: center;
  }

  .hero-badge:first-child { grid-column: 1; }
  .hero-badge:last-child { grid-column: 3; }
}

.fox-marker {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.fox-marker--hero {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
}

.fox-marker--on-dark {
  filter: drop-shadow(0 4px 8px rgb(0 0 0 / 24%));
}

.section-title-block {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
}

.text-damvos-orange {
  color: var(--damvos-orange);
}

.hero-copy p {
  max-width: 672px;
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 28px;
}

.hero-copy span {
  display: block;
}

.hero-photo {
  margin: 48px 0 0;
  overflow: hidden;
  border-radius: var(--radius-hero);
}

.hero-image {
  width: 100%;
  height: 448px;
  object-fit: cover;
  object-position: center;
}

.image-crop--hero-marcel-cassandra {
  object-position: 62% 48%;
}

.image-crop--group-outside {
  object-position: 50% 54%;
}

.image-crop--problem-marcel-cassandra {
  object-position: 58% 48%;
}

.collaboration {
  padding: 0 0 48px;
}

.collaboration-grid {
  --client-text-padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.collaboration-panel {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 20px;
  border-radius: var(--radius-card);
  background: var(--ink);
  color: var(--white);
  padding: 32px var(--client-text-padding);
}

.collaboration-panel p {
  color: var(--lilac);
  font-size: 16px;
  line-height: 28px;
  overflow-wrap: break-word;
}

.collaboration-panel .fox-marker {
  margin-bottom: -10px;
}

.team-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.team.section-ink h2,
.team.section-ink .team-member h3 {
  color: var(--white);
}

.team.section-ink .team-intro p,
.team.section-ink .team-member p {
  color: var(--lilac);
}

.contact-form .button-primary {
  color: var(--white);
  font-weight: 700;
}

.team-button {
  gap: 14px;
  padding: 20px 36px;
  min-height: 64px;
  max-width: 100%;
  background: var(--damvos-orange);
  color: var(--white);
  font-weight: 500;
  line-height: 24px;
}

.team-button span {
  font-size: 20px;
}

.story {
  padding: 48px 0;
}

.story .story-panel {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .story {
    padding: 96px 0;
  }
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  align-items: center;
  gap: 28px 24px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.client-logo {
  display: grid;
  min-height: 56px;
  place-items: center;
}

.country-coverage { margin-top: 48px; align-items: start; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
  background: var(--background-light);
}
.photo-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 13%;
  box-shadow: 0 2px 7px rgb(0 0 0 / 20%);
}
@media (min-width: 1025px) {
  .photo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
  }
}
.country-coverage h3 {
  padding-inline: var(--client-text-padding);
  color: var(--ink);
  font-family: inherit;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-align: left;
  text-wrap: initial;
  margin-bottom: 0;
}
.country-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.country-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 24px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.country-flag-slot { width: 24px; height: 20px; display: grid; place-items: center; }
.country-flag { position: relative; display: flex; }
.country-flag img { width: auto; height: auto; max-width: 24px; max-height: 20px; }
.country-flag::after { content: ""; position: absolute; inset: 0; background: rgb(255 255 255 / 60%); pointer-events: none; }
.country-note { margin-top: 16px; color: var(--ink-muted); font-family: inherit; font-size: 20px; line-height: 32px; font-weight: 400; }
.country-tooltip {
  display: none;
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 3px);
  left: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  width: max-content;
  max-width: 180px;
  font-size: 12px;
  line-height: 18px;
  pointer-events: none;
}
.country-item:hover .country-tooltip,
.country-item:focus .country-tooltip { display: block; }
@media (min-width: 600px) {
  .country-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
  .country-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.client-logo-art { position: relative; display: block; }
.client-logo-art img {
  position: absolute;
  max-width: none;
  max-height: none;
  height: auto;
  filter: none;
  opacity: 1;
}

.problem,
.reviews,
.success,
.team,
.contact {
  padding: 48px 0;
}

.problem .section-title-block {
  margin-bottom: 32px;
}

.problem-list {
  display: grid;
  gap: 32px;
}

.problem-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.problem-copy {
  display: grid;
  min-width: 0;
  align-content: center;
}

.problem-copy p {
  max-width: 620px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 32px;
}

.problem-row--closing .problem-copy p {
  color: var(--ink);
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}

.problem-media,
.strategy-photo,
.team-wide,
.contact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.problem-media {
  width: 66.6667%;
  align-self: center;
}

.problem-media .section-image {
  height: auto;
  aspect-ratio: 4 / 3;
}

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

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head .section-title-block {
  max-width: 720px;
}

.rail-controls {
  display: inline-flex;
  flex-shrink: 0;
  gap: 8px;
}

.circle-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}

.circle-button:disabled {
  opacity: 0.4;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  scroll-snap-align: start;
}

.review-rail {
  grid-auto-columns: 100%;
}

.review-card {
  min-height: 240px;
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 32px 24px;
}

.review-card p {
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 32px;
}

.text-run {
  padding: 16px 0 48px;
}

.text-block {
  padding: 40px 0;
}

.text-narrow {
  max-width: 976px;
}

.text-aligned > .fox-marker,
.story-panel > .fox-marker { margin-bottom: 7px; }
.strategy-price { color: var(--white); }
.client-benefits .ai-logo-row { margin: 0 auto; padding: 64px 0; }
.text-run + .strategy { padding-top: 0; }

@media (min-width: 1025px) {
  .client-benefits .ai-logo-row { padding-block: 88px; }
}

.text-block h2 {
  margin-bottom: 20px;
}

.text-block p {
  max-width: 896px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 32px;
}

.text-block p + p {
  margin-top: 24px;
}

.inline-highlight-link {
  color: var(--damvos-orange);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.ai-logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 28px 24px;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}

.ai-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  height: 44px;
  filter: brightness(0) invert(0.689) var(--logo-filter);
  color: #000;
  font-size: 24px;
  font-weight: 600;
}

.ai-logo img {
  width: 128px;
  max-width: 100%;
  height: 36px;
  object-fit: contain;
}

.ai-logo:first-child img {
  width: 36px;
  height: 36px;
  mix-blend-mode: multiply;
}

.text-run .text-block--before-logos {
  padding-bottom: 0;
}

.text-run .ai-logo-row + .text-block {
  padding-top: 0;
}

#ai-content-heading {
  font-size: 28px;
  line-height: 35px;
}

/* The final logo row supplies its own balanced spacing before the next section. */
.text-run:has(> .ai-logo-row:last-child) {
  padding-bottom: 0;
}

.problem.section-ink h2,
.problem.section-ink .problem-copy p,
.client-benefits h2,
.client-benefits .text-block p {
  color: var(--white);
}

.client-benefits {
  display: flow-root;
}

.text-run:has(> .client-benefits:last-child) {
  padding-bottom: 0;
}

.client-benefits .ai-logo {
  filter: brightness(0) invert(0.79);
}

.ai-content-inverted {
  background: var(--background-light);
}

.ai-content-inverted .story-panel {
  background: var(--ink);
  color: var(--white);
}

.ai-content-inverted .story-panel p {
  color: var(--white);
}

@media (min-width: 768px) {
  #ai-content-heading {
    font-size: 32px;
    line-height: 39px;
  }
}

@media (min-width: 1025px) {
  #ai-content-heading {
    font-size: 39px;
    line-height: 46px;
  }
}

@media (min-width: 768px) {
  .ai-logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
}

.strategy {
  padding: 48px 0;
}

.strategy-intro {
  display: grid;
  align-items: start;
  gap: 32px;
}

.strategy-copy {
  display: grid;
  gap: 24px;
  color: var(--lilac);
  font-size: 20px;
  line-height: 32px;
}

.strategy-photos {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.strategy-photo--small .section-image {
  aspect-ratio: 7 / 6;
}

.strategy-photo--wide .section-image {
  aspect-ratio: 16 / 9;
}

.process-panel {
  margin-top: 48px;
  border-radius: var(--radius-panel);
  background: var(--background-light);
  color: var(--ink);
  padding: 32px 24px;
}

.process-panel h2 {
  margin-bottom: 28px;
}

.process-section {
  background: var(--background-light);
  padding: 48px 0;
}

.process-section .process-panel {
  margin-top: 0;
  background: var(--ink);
  color: var(--white);
}

.process-section .process-panel h2,
.process-section .process-panel li,
.process-section .process-panel p {
  color: var(--white);
}

.process-section .process-panel li strong {
  color: var(--lilac);
}

@media (min-width: 1025px) {
  .process-section {
    padding: 96px 0;
  }
}

.process-panel ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-panel li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 28px;
  counter-increment: process;
}

.process-panel li::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--damvos-orange);
  color: var(--white);
  content: counter(process);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.process-panel p {
  max-width: 780px;
  margin-top: 28px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 32px;
}

.success-rail {
  grid-auto-columns: 100%;
}

.success-card {
  overflow: hidden;
}

.success-image-wrap {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.success-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0, 0, 0.2, 1);
}

.success-card:hover .success-image {
  transform: scale(1.05);
}

.success-body {
  padding-top: 20px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 18px 24px;
  margin: 16px 0 0;
}

.metrics div {
  min-width: 0;
}

.metrics dt {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.metrics dd {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  overflow-wrap: break-word;
}

.team-intro {
  display: grid;
  gap: 24px;
}

.team-intro p {
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 32px;
}

.team-wide {
  margin-top: 40px;
}

.team-wide .section-image {
  height: 400px;
  object-position: center 30%;
}

.team-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.team-member {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.team-portrait {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-tag);
  object-fit: cover;
}

.team-portrait--lower-head {
  object-position: 50% 28%;
}

.team-member h3 {
  font-size: 18px;
  line-height: 28px;
}

.team-member p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.team-page-hero {
  padding: 112px 0 56px;
}

.team-page-intro {
  display: grid;
  gap: 24px;
  align-items: start;
}

.team-page-intro h1 {
  max-width: 8ch;
}

.team-page-intro-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 30px;
}

.team-page-hero-media {
  max-width: 980px;
  margin: 36px auto 0;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.team-page-hero-media .section-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.team-language {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 56px auto 0;
}

.team-language-copy {
  display: grid;
  gap: 18px;
  max-width: 800px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 30px;
}

.team-directory {
  padding: 56px 0 104px;
}

.team-directory-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.team-directory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  max-width: 980px;
  margin: 36px auto 0;
}

.team-profile-card {
  min-width: 0;
}

.team-profile-card--wide {
  min-width: 0;
}

.team-profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #ddd9d2;
}

.team-profile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 34%;
}

.team-profile-image--wide {
  aspect-ratio: 2 / 1;
  object-position: 50% 50%;
}

.team-profile-copy {
  margin-top: 16px;
}

.team-profile-copy h3 {
  font-size: 18px;
  line-height: 26px;
}

.team-profile-role {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.team-profile-note {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-copy > p {
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 32px;
}

.contact-photo {
  margin-top: 32px;
}

.contact-photo .section-image {
  aspect-ratio: 4 / 3;
}

.direct-contact {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.direct-contact p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.direct-contact a {
  width: fit-content;
  color: var(--ink);
  font-size: 18px;
  line-height: 28px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 20px;
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 32px 24px;
}

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

.field span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
}

input {
  min-height: 60px;
  border-radius: var(--radius-pill);
  padding: 0 24px;
}

textarea {
  min-height: 136px;
  resize: vertical;
  border-radius: var(--radius-panel);
  padding: 20px 24px;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--ink);
  outline-offset: 0;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 32px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button-primary {
  width: 100%;
  margin-top: 12px;
  border-color: var(--action);
  background: var(--action);
  color: var(--ink);
}

.button-primary:hover {
  border-color: var(--damvos-orange);
  background: var(--damvos-orange);
}

.form-status {
  min-height: 24px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 20px;
}

.site-footer {
  padding: 48px 0;
}

.footer-copyright {
  margin-top: 28px;
  text-align: center;
  color: var(--lilac);
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

.site-footer .brand {
  position: relative;
  width: calc(220px * 2097 / 2172);
  height: calc(220px * 378 / 2172);
  overflow: hidden;
  background: transparent;
  color: var(--white);
  padding: 0;
}

.site-footer .brand-logo {
  /* Compensate for transparent margins in the supplied 2172 × 724 file. */
  position: absolute;
  width: 220px;
  max-width: none;
  height: auto;
  left: calc(-220px * 45 / 2172);
  top: calc(-220px * 174 / 2172);
}

.footer-grid {
  display: grid;
  gap: 32px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  padding-top: 40px;
}

.footer-grid p {
  max-width: 360px;
  margin-top: 20px;
  color: var(--lilac);
}

.footer-email {
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-address {
  display: grid;
  gap: 4px;
  color: var(--lilac);
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
}

.footer-address strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  padding: 28px 0;
}

.footer-utility-links,
.footer-assets,
.footer-badges,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-utility-links {
  gap: 12px 28px;
}

.footer-utility-link {
  color: var(--lilac);
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}

.footer-utility-link:hover {
  color: var(--white);
}

.is-missing-destination {
  cursor: default;
}

.footer-assets {
  gap: 22px;
}

.footer-badges {
  gap: 22px;
}

.footer-socials {
  gap: 12px;
}

.footer-badge-link,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-badge {
  width: auto;
  height: calc(70px * 2 / 3);
  object-fit: contain;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
}

@media (max-width: 767px) {
  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .section-head .section-title-block {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 20px;
  }

  h1 {
    font-size: 44px;
    line-height: 52px;
  }

  h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .fox-marker {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 32px;
  }

  .hero-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 36px;
  }

  .problem-row {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    width: 100%;
    max-width: calc((100% - 48px) * 5 / 6 + 32px);
    margin-inline: auto;
    gap: 32px;
    align-items: center;
  }

  .problem-row--reverse {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }

  .problem-media {
    width: 100%;
  }

  .problem-row--reverse .problem-copy {
    order: 2;
  }

  .problem-row--reverse .problem-media {
    order: 1;
  }

  .review-rail {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .review-card,
  .contact-form {
    padding: 32px;
  }

  .strategy-photos {
    grid-template-columns: 40% minmax(0, 1fr);
  }

  .strategy-photo--wide .section-image {
    aspect-ratio: 1129 / 524;
  }

  .process-panel {
    padding: 40px 32px;
  }

  .success-rail {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .team-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .team-wide .section-image {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }

  .team-member {
    display: block;
  }

  .team-portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .team-member div {
    margin-top: 20px;
  }

  .team-member h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .team-member p {
    font-size: 14px;
    line-height: 24px;
  }

  .team-page-hero {
    padding-top: 128px;
  }

  .team-page-intro {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
  }

  .team-page-intro-copy {
    font-size: 18px;
    line-height: 30px;
  }

  .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .team-profile-card--wide {
    grid-column: span 2;
  }

  .contact-photo .section-image {
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
    align-items: start;
  }

  .footer-address {
    justify-self: end;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .footer-assets {
    justify-content: flex-end;
  }
}

@media (min-width: 1025px) {
  :root {
    --gutter: 40px;
  }

  h1 {
    font-size: 64px;
    line-height: 72px;
  }

  h2 {
    font-size: 44px;
    line-height: 52px;
  }

  .nav-bar {
    min-height: 64px;
    padding: 0 12px 0 32px;
  }

  .brand-logo {
    width: 164px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    padding: 48px 0 96px;
  }

  .hero-photo {
    margin-top: 64px;
  }

  .hero-image {
    aspect-ratio: 1240 / 560;
  }

  .collaboration {
    padding-bottom: 96px;
  }

  .collaboration-grid {
    --client-text-padding: 40px;
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
  }

  .collaboration-panel {
    padding: 40px var(--client-text-padding);
  }

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 44px;
  }

  .problem,
  .reviews,
  .success {
    padding: 96px 0;
  }

  .team,
  .contact {
    padding: 96px 0 120px;
  }

  .problem h2 {
    margin-bottom: 0;
  }

  .problem-list {
    gap: 40px;
  }

  .problem-row {
    max-width: calc((100% - 80px) * 5 / 6 + 48px);
    gap: 48px;
  }

  .review-rail {
    grid-auto-columns: calc((100% - 64px) / 3);
    gap: 32px;
  }

  .review-card,
  .contact-form {
    padding: 40px;
  }

  .circle-button {
    width: 60px;
    height: 60px;
  }

  .text-run {
    padding: 16px 0 96px;
  }

  .text-block {
    padding: 56px 0;
  }

  .strategy {
    padding: 96px 0 120px;
  }

  .strategy-intro {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 80px;
  }

  .strategy-photos,
  .process-panel {
    margin-top: 64px;
  }

  .process-panel {
    padding: 48px 40px;
  }

  .process-panel li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    font-size: 20px;
    line-height: 32px;
  }

  .process-panel li::before {
    width: 52px;
    height: 52px;
  }

  .success-rail {
    grid-auto-columns: calc((100% - 32px) / 2);
    gap: 32px;
  }

  .team-grid {
    gap: 32px;
  }

  .team-member h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .team-member p {
    font-size: 16px;
    line-height: 24px;
  }

  .team-page-hero {
    padding: 144px 0 72px;
  }

  .team-page-intro {
    max-width: 980px;
    margin: 0 auto;
  }

  .team-page-intro-copy {
    padding-top: 18px;
  }

  .team-page-hero-media {
    margin-top: 48px;
  }

  .team-directory {
    padding: 72px 0 128px;
  }

  .team-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 32px;
    margin-top: 44px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    gap: 48px;
    align-items: start;
  }

  .contact-photo .section-image {
    aspect-ratio: 5 / 3;
  }

  .site-footer {
    padding: 60px 0 48px;
  }

  .footer-bottom {
    margin-top: 48px;
    padding: 34px 0;
  }
}

.review-card { flex-direction: column; gap: 24px; }
.review-author { margin-top: auto; display: grid; gap: 2px; color: var(--ink); font-size: 16px; line-height: 24px; }
.review-author span { color: var(--ink-muted); }
.footer-badge--emerce { width: 52.5px; height: auto; }
.sources-trigger { padding: 0; border: 0; background: none; font: inherit; cursor: pointer; }
.sources-panel {
  position: fixed;
  z-index: 1000;
  display: block;
  width: min(520px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--background-light);
  color: var(--ink);
  box-shadow: 0 8px 30px rgb(31 16 45 / 18%);
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.source-line { display: block; }
.source-line + .source-line { margin-top: 12px; }
.source-line a { color: var(--ink-muted); font-weight: 400; text-decoration: underline; overflow-wrap: anywhere; }
