@font-face {
  font-family: "THYRD Bahnschrift";
  src: url("fonts/bahnschrift-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --page-max: 1180px;
  --page-gutter: clamp(20px, 5vw, 72px);
  --off-white: #F3F2ED;
  --anthracite: #26282A;
  --petrol: #2F6B6B;
  --stone: #D7D2C6;
  --sand-dark: #C4BDAE;
  --coral: #F29589;
  --coral-dark: #EC6E61;
  --line-dark: rgba(38, 40, 42, 0.14);
  --line-light: rgba(243, 242, 237, 0.18);
  --font-headline: "THYRD Bahnschrift", Bahnschrift, "DIN Alternate", "Arial Narrow", Arial, Helvetica, sans-serif;
  --font-copy: "Arial Light", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--anthracite);
  font-family: var(--font-copy);
  font-weight: 300;
}

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

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

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

.container,
.topbar,
.hero-section,
.section,
footer {
  width: min(var(--page-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin-right: auto;
  margin-left: auto;
}

.onepager {
  --section-heading-size: 48px;
  --subheading-size: 28px;
  min-height: 100vh;
  background: var(--off-white);
}

.site-content {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.scroll-reveal-ready [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1.8s ease-out,
    transform 1.8s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal-ready [data-scroll-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-ready .service-card[data-scroll-reveal]:nth-child(2),
.scroll-reveal-ready .person-mini[data-scroll-reveal]:nth-child(2),
.scroll-reveal-ready .principle-item[data-scroll-reveal]:nth-child(2) {
  transition-delay: 0.25s;
}

.scroll-reveal-ready .service-card[data-scroll-reveal]:nth-child(3),
.scroll-reveal-ready .principle-item[data-scroll-reveal]:nth-child(3) {
  transition-delay: 0.5s;
}

.topbar {
  position: relative;
  z-index: 3;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 180px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3356 / 685;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.brand-animation {
  position: absolute;
  /* GIF: 734 x 294 canvas; final logo occupies x=59..675, y=84..210. */
  left: -9.577922%;
  top: -66.666667%;
  width: 119.155844%;
  height: 233.333333%;
  max-width: none;
  object-fit: fill;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.brand-mark[data-animating="true"] .brand-animation {
  opacity: 1;
}

.brand-mark[data-animating="true"] .brand-logo {
  opacity: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}

.topbar-link {
  color: rgba(38, 40, 42, 0.66);
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  transition: color 180ms ease;
}

.topbar-link:hover {
  color: var(--petrol);
}

.topbar-link:focus,
.topbar-link:focus-visible {
  outline: 0;
}

.linkedin-button {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: opacity 180ms ease;
}

.linkedin-button:hover {
  opacity: 0.74;
}

.linkedin-button:focus,
.linkedin-button:focus-visible {
  outline: 0;
}

.linkedin-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-shell {
  position: relative;
}

.menu-shell[open] {
  z-index: 20;
}

.menu-shell summary {
  list-style: none;
}

.menu-shell summary::-webkit-details-marker {
  display: none;
}

.menu-button {
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  outline: 0;
  background: transparent;
  transition: opacity 180ms ease;
}

.menu-button:hover {
  opacity: 0.7;
}

.menu-button:focus,
.menu-button:focus-visible {
  outline: 0;
}

.menu-button span[aria-hidden="true"] {
  width: 18px;
  height: 1px;
  display: block;
  background: var(--anthracite);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-shell[open] .menu-button {
  opacity: 1;
}

.menu-shell[open] .menu-button span[aria-hidden="true"]:first-of-type {
  transform: translateY(6px) rotate(45deg);
}

.menu-shell[open] .menu-button span[aria-hidden="true"]:nth-of-type(2) {
  opacity: 0;
}

.menu-shell[open] .menu-button span[aria-hidden="true"]:last-of-type {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-nav {
  position: absolute;
  top: calc(100% + 48px);
  right: 0;
  min-width: 190px;
  display: grid;
  justify-items: end;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--anthracite);
  background: transparent;
  box-shadow: none;
}

.menu-nav a {
  padding: 0;
  border-radius: 0;
  color: rgba(38, 40, 42, 0.72);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.menu-nav a:hover {
  color: var(--petrol);
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  padding: 70px 0 96px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.hero-decor-layer {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 100svh;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.organic-spot {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--spot-base-height);
  pointer-events: none;
  user-select: none;
}

.organic-spot--hero {
  top: clamp(60px, 10svh, 120px);
  --spot-base-width: clamp(720px, 55.2vw, 960px);
  --spot-base-height: clamp(960px, 74.4vw, 1272px);
  --drift-duration: 52s;
  --small-drift-duration: 67s;
  --morph-duration: 23s;
  --drift-delay: -20s;
  --morph-delay: -5s;
}

.organic-spot-shape {
  width: 100%;
  height: 100%;
}

.organic-spot-drift {
  --spot-width: var(--spot-base-width);
  position: absolute;
  width: var(--spot-width);
  height: var(--spot-base-height);
  transform: translate3d(calc(100vw - var(--spot-width) / 2), 0, 0);
  animation: organic-drift var(--drift-duration) ease-in-out var(--drift-delay) infinite alternate;
}

.organic-spot-drift--small {
  --spot-width: calc(var(--spot-base-width) * 0.75);
  --morph-duration: 31s;
  --morph-delay: -19s;
  top: 120px;
  height: calc(var(--spot-base-height) * 0.75);
  transform: translate3d(calc(var(--spot-width) / -2), 0, 0);
  animation-duration: var(--small-drift-duration);
  animation-delay: -14s;
  animation-direction: alternate-reverse;
}

.organic-spot-shape {
  background: var(--stone);
  opacity: 0.70;
  border-radius: 63% 37% 55% 45% / 37% 44% 56% 63%;
  filter: blur(32px);
  animation: organic-morph var(--morph-duration) ease-in-out var(--morph-delay) infinite alternate;
}

.organic-spot-drift--small .organic-spot-shape {
  opacity: 0.55;
}

.organic-spot .organic-spot-drift,
.organic-spot .organic-spot-shape {
  animation-play-state: paused;
}

.organic-spot[data-active="true"] .organic-spot-drift,
.organic-spot[data-active="true"] .organic-spot-shape {
  animation-play-state: running;
}

@keyframes organic-drift {
  0% { transform: translate3d(calc(var(--spot-width) / -2), -24px, 0); }
  33% { transform: translate3d(calc(34vw - var(--spot-width) / 2), 34px, 0); }
  67% { transform: translate3d(calc(68vw - var(--spot-width) / 2), -12px, 0); }
  100% { transform: translate3d(calc(100vw - var(--spot-width) / 2), 24px, 0); }
}

@keyframes organic-morph {
  0% {
    border-radius: 63% 37% 55% 45% / 37% 44% 56% 63%;
    transform: scale(0.96, 1.03);
  }
  50% {
    border-radius: 43% 57% 38% 62% / 52% 33% 67% 48%;
    transform: scale(1.04, 0.97);
  }
  100% {
    border-radius: 56% 44% 64% 36% / 40% 59% 41% 60%;
    transform: scale(0.98, 1.02);
  }
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--petrol);
  font-family: var(--font-copy);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
.service-card span,
.person-mini h3,
.legal-page h1 {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  color: var(--anthracite);
  font-size: 94px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  color: var(--anthracite);
  font-size: var(--section-heading-size, 54px);
  line-height: 1.12;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(38, 40, 42, 0.72);
  font-size: 23px;
  line-height: 1.42;
  font-weight: 300;
}

.text-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  color: var(--anthracite);
  background: var(--coral);
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.text-cta:hover {
  color: var(--anthracite);
  background: var(--coral-dark);
}

.text-cta:focus,
.text-cta:focus-visible {
  outline: 0;
}

.section {
  padding: 92px 0;
}

.sand-section {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow-x: hidden;
  background: var(--stone);
}

.section-grid {
  max-width: var(--page-max);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  margin: 0 auto;
}

.approach-section {
  display: flex;
  align-items: center;
}

.approach-inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.approach-heading {
  color: var(--anthracite);
}

.approach-heading span {
  display: block;
}

.approach-heading span + span {
  margin-top: 8px;
}

.approach-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 56px;
}

.section-copy {
  max-width: 580px;
  padding-top: 38px;
}

.section-copy p,
.approach-copy p,
.contact-copy p:not(.eyebrow),
.person-mini p,
.service-card p,
.legal-copy p {
  margin-bottom: 0;
  color: rgba(38, 40, 42, 0.68);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 300;
}

.section-copy p + p,
.person-mini p + p {
  margin-top: 18px;
}

.approach-copy p {
  color: var(--anthracite);
}

.why-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow: visible;
  background: var(--off-white);
}

.site-content > section > *,
.site-content > footer {
  position: relative;
  z-index: 2;
}

.petrol-section {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  background: var(--petrol);
}

.petrol-section .section-heading,
.petrol-section .service-list {
  max-width: var(--page-max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: min(100%, 1040px);
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(38, 40, 42, 0.68);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 300;
}

.petrol-section .eyebrow {
  color: var(--off-white);
}

.sand-section .eyebrow {
  color: #295f5f;
}

.petrol-section h2,
.petrol-section .service-card span,
.petrol-section .section-heading p:not(.eyebrow) {
  color: var(--off-white);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 36px;
  border: 0;
  border-radius: 8px;
  background: #295f5f;
}

.service-card:nth-child(2) {
  background: #245454;
}

.service-card:nth-child(3) {
  background: #1f4949;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  object-fit: contain;
}

.service-icon[src$="/strategie.svg"] {
  transform: scale(1.08);
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  font-size: var(--subheading-size);
  line-height: 1.15;
}

.service-card strong {
  display: block;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.service-card p {
  color: rgba(243, 242, 237, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.quote-section {
  padding: 86px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow: hidden;
  color: var(--anthracite);
  background: var(--sand-dark);
}

.quote-inner {
  max-width: var(--page-max);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.quote-section blockquote {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-family: var(--font-headline);
  font-size: var(--section-heading-size);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

.people-section {
  position: relative;
  padding-top: 98px;
  padding-bottom: 104px;
}

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

.person-mini {
  min-height: 520px;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.person-photo-placeholder {
  --portrait-size: clamp(220px, 24vw, 295px);
  width: min(100%, var(--portrait-size));
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 0;
  border-radius: 0;
  background: var(--stone);
}

.person-photo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.person-mini h3 {
  margin-bottom: 0;
  color: var(--anthracite);
  font-size: var(--subheading-size);
  line-height: 1.15;
}

.person-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.person-linkedin {
  width: 30px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: opacity 180ms ease;
}

.person-linkedin:hover {
  opacity: 0.74;
}

.person-linkedin:focus,
.person-linkedin:focus-visible {
  outline: 0;
}

.person-linkedin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-more {
  margin-top: 22px;
}

.person-more summary {
  width: max-content;
  list-style: none;
  color: var(--anthracite);
  background: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  outline: 0;
}

.person-more summary::-webkit-details-marker {
  display: none;
}

.person-more summary:focus,
.person-more summary:focus-visible {
  outline: 0;
  text-decoration: none;
}

.person-more summary:focus-visible {
  color: var(--off-white);
  background: var(--anthracite);
}

.person-more summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.person-more[open] summary::after {
  content: "−";
}

.person-bio {
  max-width: 540px;
  margin-top: 24px;
}

.person-bio p {
  margin-bottom: 0;
}

.person-bio p + p {
  margin-top: 18px;
}

.person-role {
  margin-bottom: 28px;
  color: var(--petrol) !important;
  font-weight: 700 !important;
}


.principles-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.principle-list {
  display: grid;
  gap: 28px;
  padding-top: 12px;
}

.principle-item h3 {
  margin-bottom: 10px;
  color: var(--petrol);
  font-family: var(--font-headline);
  font-size: var(--subheading-size);
  line-height: 1.15;
  font-weight: 400;
}

.principle-item p {
  margin-bottom: 0;
  color: rgba(38, 40, 42, 0.72);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 300;
}

.contact-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 72px;
  padding: 92px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  color: var(--off-white);
  background: var(--anthracite);
}

.contact-section .eyebrow {
  color: var(--coral);
}

.contact-section h2 {
  max-width: 720px;
  color: var(--off-white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(243, 242, 237, 0.72);
}

.contact-copy > .eyebrow {
  margin-top: 0;
}


.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  color: var(--anthracite);
  background: var(--coral);
  border-color: var(--coral);
}

.button.primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: rgba(38, 40, 42, 0.68);
  font-size: 13px;
  font-weight: 300;
}

.legal-page {
  min-height: 100vh;
  display: block;
  background: var(--anthracite);
}

.legal-inner {
  padding: 112px 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-brand {
  display: block;
  width: min(240px, 54vw);
  margin-bottom: 76px;
}

.legal-brand img {
  filter: brightness(0) invert(1);
}

.legal-page .eyebrow {
  color: var(--coral);
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--off-white);
  font-size: 72px;
  line-height: 0.98;
}

.legal-copy {
  max-width: 860px;
  margin-bottom: 42px;
}

.legal-copy h2 {
  margin-top: 54px;
  margin-bottom: 20px;
  color: var(--off-white);
  font-size: 42px;
  line-height: 1.05;
}

.legal-copy h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--off-white);
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 400;
}

.legal-copy p {
  color: rgba(243, 242, 237, 0.72);
}

.legal-copy p + p,
.legal-copy ul + p,
.legal-copy p + ul {
  margin-top: 14px;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(243, 242, 237, 0.72);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 300;
}

.legal-home-button {
  width: max-content;
  margin-top: 0;
}

@media (max-width: 900px) {
  .onepager {
    --section-heading-size: 40px;
    --subheading-size: 26px;
  }

  .approach-copy {
    gap: 36px;
    margin-top: 40px;
  }

  .brand {
    /* Match the 30px LinkedIn icon height at the original logo aspect ratio. */
    width: calc(30px * 3356 / 685);
  }

  h1 {
    font-size: 70px;
  }

  .lead {
    font-size: 20px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

}

@media (min-width: 901px) {
  .service-list,
  .people-grid {
    grid-auto-rows: minmax(0, 1fr);
  }

  .principle-item {
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(38, 40, 42, 0.22) transparent;
  }

  .service-card > div {
    min-height: 152px;
  }

  .person-mini {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .onepager {
    --section-heading-size: 32px;
    --subheading-size: 24px;
  }

  .approach-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  :root {
  }

  .topbar {
    min-height: 86px;
  }

  .header-actions {
    gap: 12px;
  }

  .topbar-link {
    font-size: 13px;
  }

  .menu-button {
    width: 28px;
    height: 28px;
  }

  .hero-section {
    min-height: calc(100svh - 86px);
    padding: 42px 0 68px;
  }

  .organic-spot--hero {
    top: 90px;
    --spot-base-width: 528px;
    --spot-base-height: 780px;
  }

  .organic-spot-shape {
    opacity: 0.70;
    filter: blur(24px);
  }

  .organic-spot-drift--small .organic-spot-shape {
    opacity: 0.55;
  }

  .section,
  .sand-section,
  .petrol-section,
  .why-section,
  .contact-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 18px;
  }

  .section-copy p,
  .approach-copy p,
  .contact-copy p:not(.eyebrow),
  .person-mini p,
  .service-card p,
  .legal-copy p {
    font-size: 16px;
  }

  .service-list {
    gap: 20px;
  }

  .service-card {
    padding: 28px;
  }

  .quote-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .person-mini {
    min-height: 0;
    padding: 26px;
  }

  .button {
    width: 100%;
  }

  footer {
    justify-content: flex-start;
  }

  .legal-inner {
    padding: 66px 0;
  }

  .legal-page h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .legal-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }
}

@media (max-width: 460px) {
  .onepager {
    --section-heading-size: 30px;
  }

  .topbar {
    gap: 16px;
  }

  .topbar-link {
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

}

/* Keyboard focus remains visible without outlined controls. */
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 0;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.brand:focus-visible,
.legal-brand:focus-visible,
.linkedin-button:focus-visible,
.person-linkedin:focus-visible {
  opacity: 0.6;
}

.menu-button:focus-visible span[aria-hidden="true"] {
  height: 2px;
  background: var(--petrol);
}

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

  .scroll-reveal-ready [data-scroll-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .organic-spot .organic-spot-drift,
  .organic-spot .organic-spot-shape {
    animation: none;
  }

}

.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;
}

/* Customer feedback, September 2026. */
.petrol-section .section-heading h2 span {
  display: block;
  text-wrap: balance;
}

.petrol-section .section-heading p:not(.eyebrow) {
  text-wrap: pretty;
}

.person-more summary:hover:not(:focus-visible) {
  background: var(--coral-dark);
}

.contact-copy .text-cta {
  margin-top: 30px;
}

.legal-page .privacy-title {
  max-width: none;
  font-size: clamp(28px, 6vw, 72px);
  overflow-wrap: normal;
  hyphens: none;
}

.legal-copy .legal-dispute-heading {
  font-size: clamp(23px, 3.3vw, 38px);
  line-height: 1.2;
  overflow-wrap: normal;
  hyphens: manual;
}

@media (max-width: 900px) {
  /* Let the open navigation expand the header, so the hero starts below it. */
  .topbar {
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .header-actions {
    align-items: flex-start;
  }

  .menu-shell {
    width: 28px;
    flex: 0 0 28px;
  }

  .menu-nav {
    position: static;
    width: calc(100vw - var(--page-gutter) - var(--page-gutter));
    min-width: 0;
    margin-left: calc(28px - (100vw - var(--page-gutter) - var(--page-gutter)));
    padding-top: 30px;
    justify-items: start;
  }
}

/* Optical alignment: Bahnschrift capitals include visible left sidebearings.
   Relative positioning preserves line wrapping and reveal animations. */
.onepager h1,
.onepager h2 {
  position: relative;
  left: calc(-1 * var(--headline-optical-offset, 0.075em));
}

.hero-section h1 {
  --headline-optical-offset: 0.04em;
}

.people-section h2 {
  --headline-optical-offset: 0.05em;
}

.contact-section h2 {
  --headline-optical-offset: 0.01em;
}

/* Privacy text: use one body scale for paragraphs and lists at every width. */
.privacy-page .legal-copy {
  --legal-body-size: 18px;
  text-align: left;
}

.privacy-page .legal-copy p,
.privacy-page .legal-copy ul {
  font-size: var(--legal-body-size);
  line-height: 1.62;
  text-indent: 0;
}

.privacy-page .legal-copy ul {
  padding-inline-start: 1.25em;
  list-style: disc outside;
}

.privacy-page .legal-copy li + li {
  margin-top: 0.5em;
}

.privacy-page .legal-copy h2 {
  line-height: 1.2;
}

.privacy-page .legal-copy h3 {
  line-height: 1.3;
}

@media (max-width: 640px) {
  .privacy-page .legal-copy {
    --legal-body-size: 16px;
  }
}

/* Final customer photos, September 2026. */
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.hero-copy h1 {
  font-size: clamp(48px, 5.5vw, 80px);
}

.hero-photo,
.contact-photo {
  overflow: hidden;
  aspect-ratio: 1;
}

.hero-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: 40% center;
}

.person-photo-placeholder {
  position: relative;
  overflow: hidden;
}

.person-photo-placeholder img {
  position: absolute;
  inset: 0;
}

.contact-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.contact-photo {
  aspect-ratio: 4 / 5;
}

.contact-photo img {
  object-position: center 45%;
}

@media (max-width: 900px) {
  .hero-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-photo,
  .contact-photo {
    width: min(100%, 560px);
  }

  .hero-copy h1 {
    font-size: 70px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 48px;
  }
}

@media (max-width: 460px) {
  .hero-copy h1 {
    font-size: 42px;
  }
}

/* Full-width contact image; keep the people anchored to the right edge. */
.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 44.5vw, 640px);
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
  background: #dedfdd;
}

.site-content > .contact-section > .contact-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.contact-section .contact-photo img {
  object-fit: cover;
  object-position: right top;
}

.contact-section .contact-copy {
  max-width: min(48%, 560px);
}

.contact-section h2,
.contact-section .contact-copy p:not(.eyebrow) {
  color: var(--anthracite);
}

.contact-section .eyebrow {
  color: var(--petrol);
}

@media (max-width: 700px) {
  .contact-section {
    min-height: max(580px, 140vw);
    align-items: flex-end;
    padding-top: 300px;
    padding-bottom: 28px;
  }

  .contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 38%, rgba(243, 242, 237, 0.88) 60%, var(--off-white) 100%);
  }

  .contact-section .contact-copy {
    max-width: 100%;
  }
}

@media (min-width: 901px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  }

  .hero-photo {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Full-bleed hero trial with the supplied wide photo. */
.hero-decor-layer {
  display: none;
}

.hero-section {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 50.535vw, 900px);
  padding: 72px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  background: var(--off-white);
  overflow: hidden;
}

.site-content > .hero-section > .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.hero-section .hero-photo img {
  object-fit: cover;
  object-position: left top;
}

.hero-section .hero-copy {
  width: 46%;
  max-width: 580px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .hero-section .hero-copy {
    width: calc(100% - var(--page-gutter) - var(--page-gutter));
    max-width: none;
    margin: 0 auto;
    padding: 42px 0 44px;
  }

  .site-content > .hero-section > .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

/* Keep branding and navigation available while scrolling. */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  background: var(--off-white);
  box-shadow: 0 1px 0 var(--line-dark);
}

.onepager section[id] {
  scroll-margin-top: 112px;
}

@media (min-width: 901px) {
  .menu-nav {
    top: calc(100% + 32px);
    min-width: 238px;
    padding: 24px;
    background: var(--off-white);
    box-shadow: 0 8px 24px rgba(38, 40, 42, 0.12);
  }
}

@media (max-width: 640px) {
  .onepager section[id] {
    scroll-margin-top: 102px;
  }
}

/* Subtle frosted header; retain a solid fallback without backdrop-filter. */
@supports ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .topbar {
    background: rgba(243, 242, 237, 0.88);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  /* The supplied GIF has an opaque background. Match it during playback. */
  .topbar:has(.brand-mark[data-animating="true"]) {
    background: var(--off-white);
  }
}

/* Keep the desktop claim on one line within its photo-side column. */
@media (min-width: 901px) {
  .hero-section .hero-copy {
    container-type: inline-size;
  }

  .hero-copy h1 {
    font-size: min(80px, 11.5cqw);
    white-space: nowrap;
  }
}
