:root {
  --brand-navy: #182038;
  --deep: var(--brand-navy);
  --teal: #007788;
  --teal-dark: var(--brand-navy);
  --green: var(--brand-navy);
  --stone: #e7e7e7;
  --mist: #f2f2f2;
  --pale: #f7f7f7;
  --ink: #202620;
  --muted: #60666a;
  --white: #ffffff;
  --soft-radius: 10px;
  --card-radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background: var(--deep);
  font-family: var(--sans);
  overflow-x: hidden;
  max-width: 100%;
  transition: background-color .9s ease, color .45s ease;
}

body.menu-is-open {
  overflow: hidden;
}

body[data-tone="dark"] { background: var(--deep); }
body[data-tone="teal"] { background: var(--green); }
body[data-tone="mist"] { background: var(--mist); }
body[data-tone="stone"] { background: var(--stone); }

body::before {
  content: none;
}

main [id] {
  scroll-margin-top: 128px;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 128px;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fff;
  animation: loaderOut .9s ease 1.05s forwards;
}

html.skip-loader .loader {
  display: none;
}

.loader img {
  width: min(210px, 42vw);
  animation: logoPulse 1s ease both;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 86px;
  pointer-events: none;
  transition: height .35s ease, opacity .25s ease;
}

body.menu-is-open .topbar {
  opacity: 0;
}

.top-logo {
  position: absolute;
  top: 50vh;
  left: 50vw;
  right: auto;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  display: inline-grid;
  align-items: center;
  min-height: 92px;
  color: var(--ink);
  transition:
    left .8s cubic-bezier(.22, 1, .36, 1),
    right .8s cubic-bezier(.22, 1, .36, 1),
    top .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.top-logo img {
  width: 118px;
  height: auto;
  padding: 9px 13px;
  background: rgba(255, 255, 255, .94);
  border-radius: var(--soft-radius);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .16);
  transition: opacity .45s ease, visibility .45s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

.brand-wordmark {
  position: absolute;
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 205px;
  padding: 10px 14px 11px;
  background: rgba(32, 38, 32, .68);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transform-origin: left center;
  transition:
    opacity .55s ease,
    visibility .55s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1),
    min-width .8s cubic-bezier(.22, 1, .36, 1),
    padding .8s cubic-bezier(.22, 1, .36, 1);
}

.brand-wordmark strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: .86;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .32);
}

.brand-wordmark small {
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.topbar.brand-docked .top-logo,
.topbar.compact .top-logo {
  position: fixed;
  top: 26px;
  left: auto;
  right: 98px;
  min-height: 0;
  transform: none;
}

.topbar.brand-docked .top-logo img,
.topbar.compact .top-logo img {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translate(18px, -8px) scale(.76);
}

.topbar.brand-docked .brand-wordmark,
.topbar.compact .brand-wordmark {
  position: static;
  display: grid;
  gap: 2px;
  align-content: center;
  opacity: 1;
  visibility: visible;
  width: 150px;
  height: 44px;
  min-width: 0;
  min-height: 0;
  padding: 6px 11px 7px;
  transform: none;
  white-space: normal;
}

.topbar.brand-docked .brand-wordmark {
  animation: wordmarkFadeIn .9s ease .35s both;
}

.topbar.brand-docked .brand-wordmark strong,
.topbar.brand-docked .brand-wordmark small,
.topbar.compact .brand-wordmark strong,
.topbar.compact .brand-wordmark small {
  writing-mode: horizontal-tb;
  transform: none;
}

.topbar.brand-docked .brand-wordmark strong,
.topbar.compact .brand-wordmark strong {
  font-size: 17px;
  line-height: .88;
}

.topbar.brand-docked .brand-wordmark small,
.topbar.compact .brand-wordmark small {
  font-size: 5.5px;
  letter-spacing: .1em;
}

.topbar.compact .menu-toggle {
  top: 26px;
}

.top-nav {
  position: fixed;
  top: 26px;
  left: 24px;
  right: auto;
  width: min(1040px, calc(100vw - 360px));
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(32, 38, 32, .24);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .45s cubic-bezier(.22, 1, .36, 1),
    background-color .3s ease;
}

.topbar.scrolled .top-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subpage .top-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .84);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition:
    background-color .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}

.top-nav .top-nav-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-height: 34px;
  margin-right: 18px;
  padding: 0;
  border: 0;
  opacity: 1;
  pointer-events: none;
}

.top-nav .top-nav-logo img {
  display: block;
  width: 44px;
  height: auto;
  opacity: .72;
  filter: saturate(1.08) contrast(1.12);
}

.top-nav-social {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding-left: 12px;
}

.top-nav-social a {
  width: 30px;
  min-height: 30px;
  padding: 0;
  color: rgba(255, 255, 255, .46);
  background: transparent;
  text-shadow: none;
  transition:
    color .25s ease,
    opacity .25s ease,
    transform .25s ease,
    background-color .25s ease;
}

.top-nav-social a svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.top-nav-social a:hover,
.top-nav-social a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .1);
}

.top-nav-social .social-facebook:hover,
.top-nav-social .social-facebook:focus-visible {
  color: #1877f2;
}

.top-nav-social .social-instagram:hover,
.top-nav-social .social-instagram:focus-visible {
  color: #e4405f;
}

.top-nav-social .social-tiktok:hover,
.top-nav-social .social-tiktok:focus-visible {
  color: #ff0050;
}

.top-nav > a:hover,
.top-nav > a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.top-nav > a.is-current {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.menu-toggle {
  position: absolute;
  top: 26px;
  right: 42px;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: var(--soft-radius);
  background: var(--teal-dark);
  cursor: pointer;
  pointer-events: auto;
  transition: background-color .3s ease, transform .3s ease;
}

.menu-toggle:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(32, 38, 32, .98), rgba(0, 47, 60, .97)),
    radial-gradient(circle at right top, rgba(206, 220, 225, .16), transparent 35%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  opacity: .18;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .6) 49% 50%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 40px;
  right: 52px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--soft-radius);
  color: #fff;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.menu-inner {
  width: min(1120px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(420px, 1fr);
  gap: clamp(58px, 8vw, 128px);
  align-items: center;
}

.menu-brand {
  align-self: stretch;
}

.menu-brand img {
  width: 168px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--soft-radius);
}

.menu-brand p,
.menu-meta {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.8;
  text-transform: uppercase;
}

.menu-meta {
  display: grid;
  gap: 16px;
  max-width: 310px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.menu-meta span {
  display: grid;
  gap: 5px;
}

.menu-meta strong {
  display: block;
  color: rgba(206, 220, 225, .96);
  font-size: 10px;
  letter-spacing: .18em;
}

.menu-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  text-align: left;
}

.menu-links a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  padding: 8px 18px 9px;
  color: rgba(255, 255, 255, .86);
  font-family: var(--sans);
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.08;
  text-transform: uppercase;
  opacity: 0;
  border-radius: var(--soft-radius);
  transform: translateY(28px);
  transition: color .25s ease, background-color .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1), padding-left .35s ease;
}

.menu-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: rgba(206, 220, 225, .72);
  transform: translate(-14px, -50%);
  transition: width .35s ease;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  outline: none;
  padding-left: 28px;
  transform: translateY(0) scale(1.035);
}

.menu-links a:hover::before,
.menu-links a:focus-visible::before {
  width: 22px;
}

.menu-links a.is-current {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  padding-left: 32px;
}

.menu-links a.is-current::before {
  width: 26px;
  background: rgba(255, 255, 255, .9);
}

.menu-links a.is-current::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 16px;
  border-radius: 999px;
  background: rgba(206, 220, 225, .92);
  box-shadow: 0 0 0 5px rgba(206, 220, 225, .12);
}

.menu-panel.open .menu-links a {
  animation: menuItem .6s ease forwards;
}

.menu-panel.open .menu-links a:nth-child(2) { animation-delay: .06s; }
.menu-panel.open .menu-links a:nth-child(3) { animation-delay: .12s; }
.menu-panel.open .menu-links a:nth-child(4) { animation-delay: .18s; }
.menu-panel.open .menu-links a:nth-child(5) { animation-delay: .24s; }
.menu-panel.open .menu-links a:nth-child(6) { animation-delay: .3s; }
.menu-panel.open .menu-links a:nth-child(7) { animation-delay: .36s; }

.menu-meta a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
  background: var(--brand-navy);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-picture {
  display: none;
  position: absolute;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 23, 35, .48), rgba(17, 17, 17, .2) 46%, rgba(20, 20, 20, .68));
}

.hero-content {
  position: absolute;
  left: clamp(52px, 7vw, 112px);
  top: clamp(220px, 37vh, 292px);
  bottom: auto;
  width: min(560px, calc(100% - 104px));
  transform: none;
  text-align: left;
}

.hero-copy-motion {
  opacity: 0;
  transition: opacity 1.05s ease;
  will-change: opacity;
}

.hero-mobile-logo {
  display: none;
}

.hero.is-title-ready .hero-copy-motion {
  opacity: 1;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 86px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: 0;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, .55),
    0 18px 46px rgba(0, 0, 0, .46);
}

.hero-title span {
  display: block;
  opacity: 0;
  transition: opacity 1.05s ease;
}

.hero-title span:nth-child(2) {
  transition-delay: .08s;
}

.hero.is-title-ready .hero-title span {
  opacity: 1;
}

.hero-line {
  width: min(330px, 66%);
  height: 2px;
  margin: 18px 0 14px;
  background: #fff;
  opacity: 0;
  transform: none;
  transform-origin: left;
  transition: opacity .95s ease .24s;
}

.hero.is-title-ready .hero-line {
  opacity: 1;
}

.hero-line::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  transform: translateY(-2px);
}

.hero-content p {
  width: min(480px, 100%);
  margin: 0;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transform: none;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, .58),
    0 14px 34px rgba(0, 0, 0, .46);
  transition: opacity 1s ease .38s;
}

.hero.is-title-ready .hero-content p {
  opacity: 1;
}

.hero-quote-link {
  position: absolute;
  left: 50%;
  bottom: clamp(96px, 10vh, 128px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 178px;
  padding: 0 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 46%),
    linear-gradient(135deg, rgba(0, 119, 136, .92), rgba(24, 32, 56, .94));
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--soft-radius);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  animation: heroQuoteFadeIn .72s ease 1.35s both;
  transition:
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

@keyframes heroQuoteFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 901px) {
  .hero-quote-link {
    animation-delay: 8.5s;
  }
}

.hero-quote-link:hover,
.hero-quote-link:focus-visible {
  border-color: rgba(255, 255, 255, .48);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, .3),
    0 0 0 1px rgba(255, 255, 255, .14) inset;
  transition:
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
  transform: translate3d(-50%, -2px, 0);
}

.availability-card {
  position: fixed;
  right: 26px;
  bottom: 22px;
  z-index: 120;
  width: min(344px, calc(100vw - 40px));
  min-height: 164px;
  padding: 20px 22px 20px 58px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 44%),
    rgba(32, 38, 32, .24);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
  transform: translateY(20px);
  opacity: 0;
  animation: popupIn .7s ease forwards 2s;
  cursor: default;
  contain: layout paint style;
  will-change: width, min-height, padding;
  transition:
    width .36s cubic-bezier(.22, 1, .36, 1),
    min-height .36s cubic-bezier(.22, 1, .36, 1),
    padding .36s cubic-bezier(.22, 1, .36, 1),
    border-radius .3s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    opacity .24s ease;
}

.availability-card::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 46px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .06));
  pointer-events: none;
}

.availability-dismiss,
.availability-collapse {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.availability-dismiss {
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
}

.availability-collapse {
  left: 12px;
  top: 50%;
  width: 30px;
  height: 58px;
  border-radius: 10px;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.availability-dismiss:hover,
.availability-dismiss:focus-visible,
.availability-collapse:hover,
.availability-collapse:focus-visible {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .36);
}

.availability-copy {
  position: relative;
  z-index: 1;
}

.availability-copy > span {
  display: block;
  max-height: 24px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: opacity .22s ease, max-height .28s ease, margin .28s ease;
}

.availability-copy small {
  display: block;
  max-height: 22px;
  margin: -3px 0 10px;
  color: rgba(206, 220, 225, .78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  transition: opacity .22s ease, max-height .28s ease, margin .28s ease;
}

.availability-card h2 {
  margin: 0 34px 10px 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.12;
  max-height: 56px;
  overflow: hidden;
  transition: opacity .22s ease, max-height .28s ease, font-size .28s ease, margin .28s ease;
}

.availability-card p {
  max-height: 72px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 650;
  overflow: hidden;
  line-height: 1.45;
  transition: opacity .24s ease, max-height .32s ease, margin .32s ease;
}

.availability-card a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  max-height: 42px;
  padding: 0 18px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .9);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition:
    min-height .28s ease,
    padding .28s ease,
    color .24s ease,
    background-color .24s ease,
    border-radius .24s ease,
    font-size .24s ease;
}

.contact-form button {
  color: #fff;
  background: var(--teal);
  border-radius: var(--soft-radius);
  min-height: 38px;
  padding: 0 20px;
  font-size: 14px;
}

.availability-card img {
  display: none;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) {
  width: 174px;
  min-height: 54px;
  padding: 9px 13px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 48%),
    rgba(32, 38, 32, .24);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
  cursor: pointer;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) .availability-copy {
  display: flex;
  min-height: 36px;
  flex-direction: column;
  justify-content: center;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open)::before,
.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) .availability-dismiss,
.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) .availability-collapse,
.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) h2,
.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) p,
.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) a {
  max-height: 0;
  min-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) h2 {
  margin: 0;
  font-size: 0;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) .availability-copy > span {
  max-height: none;
  margin: 0 0 3px;
  color: rgba(255, 255, 255, .92);
  font-size: 10px;
  letter-spacing: .1em;
  line-height: 1.2;
  opacity: 1;
}

.availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) .availability-copy small {
  max-height: none;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  letter-spacing: .06em;
  line-height: 1.25;
  opacity: 1;
}


.cookie-notice {
  position: fixed;
  left: 26px;
  bottom: 24px;
  z-index: 23;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(360px, calc(100vw - 52px));
  padding: 14px 14px 14px 16px;
  color: rgba(32, 38, 32, .78);
  background: rgba(239, 244, 244, .88);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 47, 60, .18);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .32s ease, transform .32s ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cookie-notice.is-leaving {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
}

.cookie-notice strong {
  display: block;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-notice p {
  margin: 4px 0 5px;
  color: rgba(32, 38, 32, .62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.cookie-notice a {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-notice button {
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: var(--teal-dark);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  font: 800 10px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .24s ease, transform .24s ease;
}

.cookie-notice button:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.intro {
  padding: 115px 10vw 105px;
  text-align: center;
  background: var(--mist);
}

.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.intro h2,
.split-copy h2,
.process-content h2,
.portfolio-head h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 95px);
  font-weight: 400;
  line-height: .92;
}

.intro .lead {
  width: min(900px, 100%);
  margin: 34px auto 0;
  color: #344247;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

.intro > .intro-szaki-badge {
  position: absolute;
  top: clamp(48px, 5.4vw, 82px);
  left: clamp(42px, 7vw, 124px);
  z-index: 0;
  width: clamp(188px, 16vw, 248px);
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.intro > .intro-szaki-badge img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 47, 60, .16));
}

.wolf-term-wrap {
  position: relative;
  display: inline-flex;
  vertical-align: baseline;
}

.wolf-term {
  display: inline;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 650;
  line-height: inherit;
  cursor: help;
}

.wolf-term:hover,
.wolf-term:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.wolf-popover {
  width: min(440px, 86vw);
  text-align: left;
}

.wolf-popover strong {
  display: block;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.wolf-term-wrap:hover .wolf-popover,
.wolf-term-wrap:focus-within .wolf-popover,
.wolf-term-wrap.is-visible .wolf-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
  align-items: center;
  padding: 120px 8vw;
}

.split-copy p:not(.section-label),
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.profile-flow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 28px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 119, 136, .96), rgba(0, 47, 60, .98));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--soft-radius);
  box-shadow: 0 18px 46px rgba(0, 47, 60, .2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: box-shadow .3s ease, transform .3s ease;
}

.profile-flow-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, .24) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.profile-flow-button:hover,
.profile-flow-button:focus-visible {
  box-shadow: 0 24px 68px rgba(0, 47, 60, .28);
  outline: none;
  transform: translateY(-3px);
}

.profile-flow-button:hover::before,
.profile-flow-button:focus-visible::before {
  transform: translateX(120%);
}

.profile-redesign {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 255, 255, .62), transparent 32%),
    linear-gradient(135deg, rgba(247, 247, 247, .96), rgba(231, 231, 231, .98));
}

.profile-redesign .split-copy {
  max-width: 760px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.profile-redesign .split-copy h2 {
  max-width: 740px;
  font-size: clamp(50px, 5.35vw, 84px);
}

.profile-body {
  display: grid;
  gap: 17px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 47, 60, .18);
}

.profile-redesign .profile-body p {
  max-width: 710px;
  margin: 0;
  color: #334246;
  font-size: clamp(16px, 1.02vw, 18px);
  font-weight: 520;
  line-height: 1.78;
}

.profile-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 28px;
}

.profile-highlight {
  min-height: 112px;
  padding: 18px 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28));
  border: 1px solid rgba(0, 47, 60, .14);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 18px 44px rgba(0, 47, 60, .08);
}

.profile-highlight span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.profile-highlight strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 2.8vw, 44px);
  font-weight: 500;
  line-height: .96;
}

.image-stack {
  position: relative;
  isolation: isolate;
  height: 640px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 58px -66px -60px 68px;
  z-index: 0;
  background:
    radial-gradient(circle at 54% 48%, rgba(7, 13, 28, .42), rgba(7, 13, 28, .22) 52%, rgba(7, 13, 28, 0) 74%),
    rgba(12, 20, 38, .26);
  border-radius: 42px;
  filter: blur(66px);
  opacity: .82;
  transform: translate3d(24px, 42px, 0);
  pointer-events: none;
}

.image-stack img {
  --hover-scale: 1;
  position: absolute;
  object-fit: cover;
  border-radius: var(--card-radius);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .18);
  filter:
    grayscale(calc(var(--motion-out, 0) * 1))
    saturate(calc(.34 + (var(--motion-focus, 1) * .66)))
    contrast(calc(.96 + (var(--motion-focus, 1) * .04)));
  transition:
    filter .9s ease,
    transform .85s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease,
    opacity .55s ease;
  will-change: filter, transform;
}

.image-stack img:hover {
  --hover-scale: 1.055;
  box-shadow: 0 30px 96px rgba(0, 47, 60, .26);
}

.stack-large {
  z-index: 1;
  inset: 72px 8px 0 138px;
  width: calc(100% - 138px);
  height: 438px;
  object-position: center;
}

.stack-small.top {
  z-index: 3;
  top: -6px;
  left: -22px;
  width: 282px;
  height: 208px;
}

.stack-small.bottom {
  z-index: 4;
  right: 44px;
  bottom: -30px;
  width: 344px;
  height: 252px;
}

.process {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  box-sizing: border-box;
  padding: clamp(88px, 7vw, 118px) 0 clamp(82px, 5.4vw, 100px);
  overflow: hidden;
  color: #fff;
  background: var(--brand-navy);
}

.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .34)), url("assets/sopte-1.jpg") center/cover;
  transform: scale(1.08);
}

.process-bg::before {
  content: "";
  position: absolute;
  inset: -26px;
  background-image: url("assets/process-logo-pattern-tile.png");
  background-repeat: repeat;
  background-position: center;
  background-size: clamp(48px, 4.2vw, 68px) auto;
  filter: grayscale(1) saturate(.35) contrast(.9);
  opacity: .1;
  -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .86) 44%, rgba(0, 0, 0, .16) 100%);
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .86) 44%, rgba(0, 0, 0, .16) 100%);
  pointer-events: none;
}

.process-bg::after {
  content: "";
  position: absolute;
  inset: -26px;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, .68) 0%, rgba(255, 255, 255, .34) 30%, transparent 72%),
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, .22) 100%);
  pointer-events: none;
}

.process-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
}

.steps {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
  background: transparent;
}

.steps::before {
  content: "";
  position: absolute;
  inset: 18px -54px -40px -42px;
  z-index: 0;
  background: rgba(0, 47, 60, .18);
  border-radius: 34px;
  filter: blur(54px);
  opacity: .52;
  transform: translate3d(18px, 30px, 0);
  pointer-events: none;
}

.steps article {
  position: relative;
  z-index: 1;
  min-height: 132px;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(54px) scale(.96);
  transform-origin: center bottom;
}

.steps article:nth-child(4n + 2),
.steps article:nth-child(4n + 4) {
  margin-top: 0;
}

.steps article:nth-child(n + 5) {
  margin-top: 0;
}

.steps article:nth-child(6),
.steps article:nth-child(8) {
  margin-top: 0;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  height: 100%;
  padding: 15px 14px 13px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(0, 63, 78, .86), rgba(0, 39, 50, .8));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 16px 46px rgba(0, 0, 0, .15);
  backdrop-filter: blur(10px);
  transform-origin: center;
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(0, 160, 178, .2), transparent 34%);
  opacity: .55;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  opacity: .7;
}

.process-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .86);
  outline-offset: 4px;
}

.steps span {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 1;
  color: rgba(255, 255, 255, .42);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.steps h3 {
  position: relative;
  z-index: 1;
  min-height: 32px;
  margin: 0 38px 7px 0;
  font-size: 13px;
  line-height: 1.2;
}

.steps p {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.process-duration {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
}

.steps article.is-finish .process-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(124, 18, 24, .92), rgba(72, 8, 14, .9));
  border-color: rgba(255, 190, 190, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 20px 54px rgba(96, 11, 17, .28);
}

.steps article.is-finish .process-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .24), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(255, 120, 118, .34), transparent 34%);
  opacity: .82;
}

.steps article.is-finish span {
  color: rgba(255, 226, 226, .72);
}

.steps article.is-finish h3::after {
  content: "finish";
  display: inline-block;
  margin-left: 8px;
  padding: 3px 6px 2px;
  color: rgba(255, 235, 235, .86);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}

.portfolio {
  padding: 108px 0 116px;
  overflow: hidden;
  background: #f7f7f7;
}

.portfolio-head {
  width: min(1220px, calc(100% - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px clamp(28px, 5vw, 74px);
  align-items: end;
  margin: 0 auto 54px;
}

.portfolio-head h2 {
  max-width: 980px;
}

.portfolio-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.75;
}

.portfolio-sample-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 0;
  padding: 8px 13px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.portfolio-sample-note span {
  display: inline-block;
  font-size: 1.16em;
  line-height: .8;
  transition: transform .25s ease;
}

.portfolio-sample-note:hover,
.portfolio-sample-note:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .17);
  border-color: rgba(255, 255, 255, .38);
  outline: none;
  transform: translateY(-2px);
}

.portfolio-sample-note:hover span,
.portfolio-sample-note:focus-visible span {
  transform: translateX(3px);
}

.portfolio-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 0 6px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
  white-space: nowrap;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.portfolio-all-link:hover,
.portfolio-all-link:focus-visible {
  background: rgba(255, 255, 255, .17);
  border-color: rgba(255, 255, 255, .42);
  outline: none;
  transform: translateY(-2px);
}

.portfolio-slider {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.portfolio-window {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  contain: paint;
  scrollbar-width: none;
}

.portfolio-window::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: clamp(18px, 1.9vw, 26px);
  width: max-content;
  padding-left: max(62px, calc((100vw - 1220px) / 2));
  padding-right: max(62px, calc((100vw - 1220px) / 2));
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.portfolio-slider.is-continuous .portfolio-track {
  transition: none;
}

.portfolio-slider.is-animating .portfolio-track,
.portfolio-slider.is-progress-dragging .portfolio-track {
  transition: none;
}

.portfolio-slider.is-touch-scroll .portfolio-track {
  transition: none;
}

.portfolio-slider.is-dragging .portfolio-track {
  transition: none;
}

.portfolio article {
  width: clamp(310px, 29vw, 378px);
  background: #fff;
  border-radius: var(--card-radius);
}

.portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-radius);
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: clamp(48px, 4.4vw, 62px);
  height: clamp(48px, 4.4vw, 62px);
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .06)),
    rgba(0, 47, 60, .82);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    0 22px 52px rgba(0, 0, 0, .26);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.portfolio-arrow.prev {
  left: max(18px, calc((100vw - 1320px) / 2));
}

.portfolio-arrow.next {
  right: max(18px, calc((100vw - 1320px) / 2));
}

.portfolio-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(255, 255, 255, .92);
  border-right: 2px solid rgba(255, 255, 255, .92);
}

.portfolio-arrow.prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.portfolio-arrow.next::before {
  transform: translateX(-3px) rotate(45deg);
}

.portfolio-arrow:hover,
.portfolio-arrow:focus-visible {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .08)),
    rgba(0, 119, 136, .9);
  border-color: rgba(255, 255, 255, .48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    0 26px 62px rgba(0, 0, 0, .32);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.portfolio-arrow:active {
  transform: translateY(-50%) scale(.98);
}

.portfolio-progress {
  width: min(760px, calc(100% - 72px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.portfolio-progress-track {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
  border-radius: 999px;
  cursor: grab;
  touch-action: none;
  transition: height .25s ease, background-color .25s ease;
}

.portfolio-progress-track span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(161, 211, 218, .98));
  border-radius: inherit;
  box-shadow: 0 0 24px rgba(161, 211, 218, .46);
  transform: scaleX(.07);
  transform-origin: left;
  transition: transform .22s ease-out;
}

.portfolio-progress-track:hover,
.portfolio-progress-track:focus-visible,
.portfolio-slider.is-progress-dragging .portfolio-progress-track {
  height: 4px;
  background: rgba(255, 255, 255, .3);
}

.portfolio-slider.is-progress-dragging .portfolio-progress-track {
  cursor: grabbing;
}

.portfolio-slider.is-progress-dragging .portfolio-progress-track span {
  transition: none;
}

.portfolio h3 {
  margin: 0;
  padding: 22px 24px 28px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: 0 8vw clamp(76px, 7vw, 112px);
  color: var(--ink);
  background: var(--mist);
}

.numbers div {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px 10px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(0, 47, 60, .18);
}

.numbers div::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(0, 119, 136, .1);
  transform: translateX(-50%);
}

.numbers strong {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 3.35em;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: .9;
}

.numbers span {
  position: relative;
  z-index: 1;
  max-width: 270px;
  color: rgba(32, 38, 32, .62);
  font-size: clamp(11px, .9vw, 13px);
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--mist);
}

.quote > img {
  width: 100%;
  height: clamp(540px, 52vw, 720px);
  object-fit: cover;
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.quote > div {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(540px, 52vw, 720px);
  padding: clamp(78px, 8vw, 120px) max(8vw, 76px);
}

.quote .panel-line.vertical {
  left: calc(max(8vw, 76px) - 22px);
  bottom: calc(clamp(78px, 8vw, 120px) - 30px);
}

.quote .panel-line.horizontal {
  left: calc(max(8vw, 76px) - 22px);
  bottom: calc(clamp(78px, 8vw, 120px) - 30px);
}

blockquote {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.02;
}

.cert-term-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  vertical-align: .08em;
}

.cert-term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: .92em;
  margin: 0 .07em;
  padding: .03em .25em .05em;
  color: #fff;
  background: var(--teal-dark);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: .16em;
  box-shadow: 0 10px 28px rgba(0, 47, 60, .18);
  font: inherit;
  line-height: .9;
  cursor: help;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cert-term:hover,
.cert-term:focus-visible {
  background: var(--teal);
  box-shadow: 0 16px 38px rgba(0, 47, 60, .26);
  outline: none;
  transform: translateY(-2px);
}

.cert-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  z-index: 6;
  width: min(360px, 82vw);
  padding: 18px 20px;
  color: rgba(255, 255, 255, .88);
  background:
    radial-gradient(circle at 16% 12%, rgba(206, 220, 225, .16), transparent 42%),
    linear-gradient(145deg, rgba(0, 63, 77, .98), rgba(0, 47, 60, .98));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--soft-radius);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .24);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease;
}

.cert-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #002f3c;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transform: translateX(-50%) rotate(45deg);
}

.cert-term-wrap:hover .cert-popover,
.cert-term-wrap:focus-within .cert-popover,
.cert-term-wrap.is-visible .cert-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.advantages {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: stretch;
  padding: clamp(56px, 5.5vw, 88px) 8vw;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 119, 136, .1), transparent 34%),
    linear-gradient(180deg, var(--mist), rgba(231, 231, 231, .88));
  box-shadow:
    inset 0 -1px rgba(0, 47, 60, .18),
    inset 0 -34px 64px rgba(0, 47, 60, .045);
}

.advantages::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: clamp(18px, 2vw, 30px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 47, 60, 0), rgba(0, 47, 60, .08));
}

.advantages-media {
  position: sticky;
  top: 118px;
  display: grid;
  align-content: start;
  align-self: stretch;
  gap: clamp(18px, 2vw, 30px);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 0;
  height: var(--advantages-content-height, auto);
  padding: clamp(14px, 1.6vw, 22px);
  overflow: visible;
  max-width: min(100%, 760px);
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(0, 47, 60, .14);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 74px rgba(0, 47, 60, .12);
}

.advantages-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: calc(var(--card-radius) - 3px);
  pointer-events: none;
}

.advantages-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  isolation: isolate;
  max-width: 100%;
  justify-self: center;
  border-radius: calc(var(--card-radius) - 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(206, 220, 225, .18)),
    var(--photo) center / cover;
  box-shadow: 0 22px 58px rgba(0, 47, 60, .18);
  transform-origin: 50% 0;
}

.advantages-frame.featured {
  z-index: 4;
  overflow: hidden;
}

.advantages-frame:not(.featured) {
  z-index: 2;
  overflow: hidden;
}

.advantages-frame:nth-child(2) {
  z-index: 3;
}

.advantages-frame:nth-child(3) {
  z-index: 1;
}

.advantages-frame::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--photo) center / cover;
  filter: blur(18px) saturate(1) brightness(.96);
  transform: scale(1.08);
  opacity: .34;
  transition: filter .65s ease, opacity .65s ease;
}

.advantages-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 34%),
    linear-gradient(0deg, rgba(0, 47, 60, .08), transparent 44%);
  pointer-events: none;
}

.advantages-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--card-radius) - 8px);
  box-shadow: 0 16px 42px rgba(0, 47, 60, .16);
  filter: saturate(1) contrast(1.02);
  transition: filter .65s ease, transform .65s ease;
}

.advantages-frame:hover::before,
.advantages-frame:focus-within::before {
  filter: blur(18px) saturate(.85) brightness(.94);
  opacity: .4;
}

.advantages-frame:hover .advantages-photo,
.advantages-frame:focus-within .advantages-photo {
  filter: saturate(1.04) contrast(1.02);
}

.advantages-watermark {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  width: clamp(70px, 16%, 132px);
  height: auto;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 12px 30px rgba(0, 47, 60, .1);
  opacity: .34;
  pointer-events: none;
}

.advantages-content {
  position: relative;
  display: grid;
  align-content: start;
  align-self: start;
  gap: clamp(12px, 1.15vw, 18px);
  min-height: 0;
  padding: clamp(26px, 2.7vw, 42px);
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 80px rgba(0, 47, 60, .08);
}

.advantages-content .panel-line.vertical {
  left: 24px;
  bottom: 24px;
}

.advantages-content .panel-line.horizontal {
  left: 24px;
  bottom: 24px;
}

.advantages-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(52px, 6.3vw, 92px);
  font-weight: 500;
  line-height: .88;
}

.advantages-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(32, 38, 32, .68);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.58;
}

.cert-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 26px;
  align-items: center;
  width: min(720px, 100%);
  max-width: 720px;
  padding: 14px 18px;
  background: rgba(0, 47, 60, .06);
  border: 1px solid rgba(0, 47, 60, .1);
  border-radius: var(--soft-radius);
}

.cert-copy {
  color: var(--teal-dark);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.cert-strip .cert-term-wrap {
  min-height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cert-strip .cert-term {
  min-height: 38px;
  min-width: 82px;
  margin: 0;
  padding: 0 17px;
  color: var(--teal-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .16)),
    rgba(0, 47, 60, .08);
  border: 1px solid rgba(0, 47, 60, .13);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    0 10px 24px rgba(0, 47, 60, .08);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
}

.cert-strip .cert-term:hover,
.cert-strip .cert-term:focus-visible {
  color: var(--teal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, .22)),
    rgba(0, 119, 136, .1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .58),
    0 14px 30px rgba(0, 47, 60, .12);
  transform: translateY(-1px);
}

.cert-check {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 20px;
  transform: rotate(-7deg);
}

.cert-check::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 9px;
  height: 18px;
  border-right: 3px solid rgba(92, 139, 50, .92);
  border-bottom: 3px solid rgba(92, 139, 50, .92);
  border-radius: 0 0 2px 0;
  transform: rotate(41deg) skew(-7deg);
}

.cert-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 7px;
  height: 15px;
  border-right: 1px solid rgba(0, 47, 60, .18);
  border-bottom: 1px solid rgba(0, 47, 60, .18);
  transform: rotate(41deg) skew(-7deg);
}

.advantages-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantages-list li {
  position: relative;
  padding: 0 0 0 22px;
  color: rgba(32, 38, 32, .74);
  font-size: clamp(11.5px, .9vw, 13px);
  font-weight: 650;
  line-height: 1.48;
}

.advantages-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 119, 136, .11);
}

.advantages-note {
  margin: 6px 0 0;
  padding: 15px 18px;
  color: rgba(255, 255, 255, .86);
  background: linear-gradient(135deg, rgba(0, 63, 77, .96), rgba(0, 47, 60, .96));
  border-radius: var(--soft-radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58;
}

.contact-section {
  scroll-margin-top: clamp(140px, 12vh, 170px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(460px, 1.05fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: start;
  padding: clamp(96px, 8vw, 128px) 8vw;
}

.contact-copy {
  position: sticky;
  top: 126px;
  display: grid;
  align-content: start;
}

.contact-copy h2 {
  max-width: 640px;
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: .98;
  text-wrap: balance;
}

.contact-copy .contact-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(32, 38, 32, .7);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 650;
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 46px;
  max-width: 610px;
}

.contact-details p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(32, 38, 32, .66);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 650;
  line-height: 1.58;
}

.contact-details strong {
  color: rgba(32, 38, 32, .82);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.35vw, 32px);
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--card-radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .44),
    0 28px 86px rgba(32, 38, 32, .08);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(32, 38, 32, .86);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 38, 32, .08);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  font: 400 15px/1.5 var(--sans);
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(32, 38, 32, .34);
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(0, 119, 136, .5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 0 0 4px rgba(0, 119, 136, .12);
  outline: none;
}

.contact-form input {
  height: 44px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  resize: none;
  padding: 13px 14px;
}

.pac-container {
  z-index: 10000;
  margin-top: 8px;
  border: 1px solid rgba(32, 38, 32, .1);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(32, 38, 32, .16);
  color: var(--ink);
  font-family: var(--sans);
  overflow: hidden;
}

.pac-item {
  padding: 10px 14px;
  border-top: 1px solid rgba(32, 38, 32, .06);
  color: rgba(32, 38, 32, .62);
  font-size: 13px;
  line-height: 1.45;
}

.pac-item:first-child {
  border-top: 0;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(0, 119, 136, .08);
}

.pac-item-query {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
}

.contact-choice-group {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice-group legend {
  margin: 0 0 5px;
  padding: 0;
  color: rgba(32, 38, 32, .86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.contact-radio-group label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(32, 38, 32, .76);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

.contact-radio-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  flex: 0 0 auto;
  padding: 0;
}

.contact-radio-group label:has(input:checked) {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .94);
  border-color: rgba(0, 119, 136, .42);
  box-shadow: 0 0 0 4px rgba(0, 119, 136, .1);
}

.contact-choice-group[aria-invalid="true"] .contact-radio-group label {
  border-color: rgba(154, 67, 52, .38);
}

.contact-plot-details {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: 16px;
}

.contact-plot-details[hidden] {
  display: none;
}

.file-upload-field {
  gap: 7px;
}

.file-upload-control {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 7px 11px 7px 7px;
  background: rgba(255, 255, 255, .76);
  border: 1px dashed rgba(0, 47, 60, .22);
  border-radius: 12px;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.file-upload-control:focus-within {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(0, 119, 136, .52);
  box-shadow: 0 0 0 4px rgba(0, 119, 136, .1);
}

.file-upload-field.has-file-error .file-upload-control {
  border-color: rgba(154, 67, 52, .5);
  box-shadow: 0 0 0 4px rgba(154, 67, 52, .08);
}

.file-upload-control input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 47, 60, .14);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
  will-change: transform;
}

.file-upload-control:hover .file-upload-button,
.file-upload-control:focus-within .file-upload-button {
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(0, 119, 136, .22);
  transform: translateY(-2px);
}

.file-upload-copy,
.file-upload-list {
  color: rgba(32, 38, 32, .58);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.file-upload-list {
  display: none;
  gap: 5px;
}

.file-upload-list.is-visible {
  display: grid;
}

.file-upload-list.is-error {
  color: #8a3429;
}

.file-upload-list span {
  overflow-wrap: anywhere;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  font: 800 14px/1.55 var(--sans);
}

.form-alert.success {
  color: #133f38;
  background: rgba(138, 185, 139, .28);
  border: 1px solid rgba(86, 142, 96, .26);
}

.form-alert.error {
  color: #612d26;
  background: rgba(198, 94, 75, .16);
  border: 1px solid rgba(154, 67, 52, .22);
}

.form-error {
  color: #8a3429;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: none;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: rgba(154, 67, 52, .5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 0 0 4px rgba(154, 67, 52, .1);
}

.contact-form button {
  height: 50px;
  margin-top: 2px;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  letter-spacing: .14em;
  box-shadow: 0 16px 34px rgba(0, 119, 136, .22);
  cursor: pointer;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-form button:focus-visible {
  outline: 3px solid rgba(0, 119, 136, .24);
  outline-offset: 4px;
}

body.contact-preview-open {
  overflow: hidden;
}

.contact-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.contact-preview-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 18, .68);
  backdrop-filter: blur(16px) saturate(.9);
}

.contact-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(24px, 3.8vw, 42px);
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 24px;
  box-shadow: 0 34px 96px rgba(12, 19, 17, .34);
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}

.contact-preview-modal.is-visible .contact-preview-dialog {
  transform: translateY(0) scale(1);
}

.contact-preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: rgba(32, 38, 32, .7);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(32, 38, 32, .12);
  font: 700 26px/1 var(--sans);
  cursor: pointer;
}

.contact-preview-dialog h3 {
  max-width: 580px;
  margin: 8px 0 12px;
  color: #202620;
  font: 500 clamp(32px, 3.6vw, 46px)/1.06 var(--serif);
}

.contact-preview-lead {
  max-width: 600px;
  margin: 0 0 22px;
  color: rgba(32, 38, 32, .68);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.contact-preview-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.contact-preview-list div {
  display: grid;
  grid-template-columns: minmax(150px, .54fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(32, 38, 32, .07);
  border-radius: 14px;
}

.contact-preview-list span {
  color: rgba(32, 38, 32, .54);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-preview-list strong {
  color: rgba(32, 38, 32, .9);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.contact-preview-message strong {
  color: rgba(32, 38, 32, .78);
  font-weight: 750;
}

.contact-preview-note {
  margin: 0 0 20px;
  padding: 18px 20px;
  color: rgba(32, 38, 32, .7);
  background: rgba(0, 119, 136, .08);
  border: 1px solid rgba(0, 119, 136, .12);
  border-radius: 16px;
}

.contact-preview-note strong {
  display: block;
  margin: 0 0 5px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-preview-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
}

.contact-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-preview-actions button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-preview-secondary {
  color: rgba(32, 38, 32, .72);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(32, 38, 32, .1);
}

.contact-preview-primary {
  color: #fff;
  background: var(--teal-dark);
  border: 1px solid var(--teal-dark);
  box-shadow: 0 16px 34px rgba(0, 119, 136, .22);
}

.contact-preview-actions button:focus-visible,
.contact-preview-close:focus-visible {
  outline: 3px solid rgba(0, 119, 136, .24);
  outline-offset: 4px;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(340px, 1fr) minmax(190px, 250px) minmax(92px, 124px);
  column-gap: clamp(16px, 2vw, 30px);
  row-gap: 8px;
  align-items: center;
  padding: clamp(22px, 2.4vw, 34px) 8vw clamp(16px, 2vw, 26px);
  color: rgba(32, 38, 32, .78);
  background: #c6d2d5;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 8vw auto;
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 47, 60, .2) 16%, rgba(0, 119, 136, .55) 50%, rgba(0, 47, 60, .2) 84%, transparent 100%);
  box-shadow: 0 10px 28px rgba(0, 47, 60, .1);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(0, 119, 136, .1);
  transform: translate(-50%, -4px);
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
}

.footer-logo {
  width: 74px;
  padding: 6px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  opacity: .72;
}

.footer-brand p {
  max-width: 180px;
  margin: 0;
  color: rgba(32, 38, 32, .52);
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
  font-size: 12px;
}

.footer-info div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  align-items: start;
  min-height: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 47, 60, .14);
}

.footer-info span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-info p {
  margin: 0;
  color: rgba(32, 38, 32, .74);
  font-size: clamp(11px, .85vw, 12.5px);
  font-weight: 600;
  line-height: 1.32;
}

.footer-info a {
  color: inherit;
}

.footer-info a:hover {
  color: var(--teal-dark);
}

.footer-legal {
  display: grid;
  gap: 7px;
  align-content: start;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 47, 60, .14);
}

.footer-legal span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 11px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .32);
  border: 1px solid rgba(0, 47, 60, .12);
  border-radius: var(--soft-radius);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.footer-legal a:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateX(3px);
}

.footer-stamp {
  justify-self: end;
  align-self: center;
  margin-right: clamp(24px, 3.5vw, 46px);
  width: clamp(74px, 5.8vw, 92px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .22));
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 640px);
  margin: 0;
  padding-top: 6px;
  color: rgba(32, 38, 32, .42);
  border-top: 1px solid rgba(0, 47, 60, .12);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-credit a:hover {
  color: var(--teal-dark);
}

@media (max-width: 1180px) {
  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    right: 86px;
    top: 22px;
  }

  .topbar.brand-docked .menu-toggle,
  .topbar.compact .menu-toggle,
  .menu-toggle {
    top: 22px;
    right: 22px;
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: 132px;
    height: 44px;
    padding: 6px 10px 7px;
  }

  .topbar.brand-docked .brand-wordmark strong,
  .topbar.compact .brand-wordmark strong {
    font-size: 16px;
  }

  .topbar.brand-docked .brand-wordmark small,
  .topbar.compact .brand-wordmark small {
    font-size: 5.5px;
    letter-spacing: .08em;
  }

  .top-nav {
    top: 22px;
    left: 16px;
    right: auto;
    width: min(1040px, calc(100vw - 250px));
    height: 46px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding: 5px 8px;
    background: rgba(32, 38, 32, .24);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    scrollbar-width: none;
  }

  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .top-nav .top-nav-logo {
    width: 42px;
    min-height: 32px;
    margin-right: 8px;
    padding: 0;
  }

  .top-nav .top-nav-logo img {
    width: 34px;
    opacity: .78;
  }

  .top-nav-social {
    flex: 0 0 auto;
    margin-left: 6px;
    padding-left: 4px;
    gap: 6px;
  }

  .top-nav-social a {
    flex: 0 0 36px;
    width: 36px;
    min-height: 36px;
    color: rgba(255, 255, 255, .62);
  }

  .top-nav-social a svg {
    flex: 0 0 22px;
    min-width: 22px;
    width: 22px;
    height: 22px;
  }

  .about-editorial,
  .about-split,
  .about-control,
  .about-inspection {
    padding-left: clamp(36px, 5vw, 64px);
    padding-right: clamp(36px, 5vw, 64px);
  }

  .about-editorial {
    padding-top: 34px;
    row-gap: 12px;
  }

  .about-control-layout,
  .about-inspection {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .about-control-head {
    position: relative;
    top: auto;
    order: 1;
    min-height: 0;
  }

  .about-control-copy {
    order: 2;
    max-width: 820px;
    padding: 0;
  }

  .about-control-copy::before {
    display: none;
  }

  .about-inspection-copy {
    max-width: 820px;
    padding-top: 0;
  }

  .about-summary {
    max-width: 820px;
  }

  .footer {
    grid-template-columns: minmax(104px, 132px) minmax(250px, 1fr) minmax(210px, .8fr) minmax(74px, 92px);
    align-items: start;
  }

  .footer-stamp {
    justify-self: end;
    align-self: start;
    margin-right: 0;
    width: clamp(72px, 7.4vw, 84px);
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .steps article {
    min-height: 132px;
  }
}

.hero::after,
.process::after,
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, .14) 39px, transparent 40px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .14) 49% 50%, transparent 51%);
}

.hero::after {
  inset: auto 0 0 auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
}

.section-label {
  color: var(--teal);
}

.intro {
  position: relative;
  background:
    linear-gradient(180deg, rgba(206, 220, 225, .96), rgba(206, 220, 225, 1));
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(40vw, 470px);
  height: min(40vw, 470px);
  opacity: .22;
  background:
    repeating-linear-gradient(0deg, rgba(0, 47, 60, .22) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0, 47, 60, .12) 0 1px, transparent 1px 24px);
}

.intro > * {
  position: relative;
  z-index: 1;
}

.vision {
  background: var(--stone);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(242, 242, 242, .94) 18%, rgba(231, 231, 231, .96) 100%);
  border-top: 1px solid rgba(0, 47, 60, .18);
  box-shadow:
    inset 0 42px 78px rgba(255, 255, 255, .38),
    inset 0 1px rgba(255, 255, 255, .68);
}

.panel-section {
  position: relative;
}

.split-copy,
.quote > div {
  position: relative;
}

.split-copy {
  padding: 44px 0 44px 44px;
}

.panel-line {
  position: absolute;
  background: currentColor;
  color: var(--teal-dark);
}

.panel-line::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.panel-line.vertical {
  left: 0;
  bottom: 0;
  width: 1px;
  height: 86px;
  transform-origin: bottom;
}

.panel-line.horizontal {
  left: 0;
  bottom: 0;
  width: 86px;
  height: 1px;
  transform-origin: left;
}

.panel-line.vertical::before {
  top: 0;
  left: 0;
  transform: translate(-40%, -50%);
}

.panel-line.horizontal::before {
  right: 0;
  top: 0;
  transform: translate(50%, -40%);
}

.process {
  color: var(--ink);
  background: #cfd9d8;
}

.process-bg {
  background: linear-gradient(135deg, #d9dfdc 0%, #c6d2d1 46%, #b8c8c7 100%);
}

.process-bg::before {
  opacity: .14;
  mix-blend-mode: multiply;
}

.process-bg::after {
  mix-blend-mode: soft-light;
}

.process .section-label {
  color: var(--teal);
}

.process-content h2 {
  color: rgba(32, 38, 32, .82);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .34);
}

.steps {
  background: transparent;
}

.process::after {
  opacity: .28;
  background:
    linear-gradient(90deg, rgba(0, 47, 60, .08) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, rgba(0, 47, 60, .06) 1px, transparent 1px) 0 0 / 64px 64px;
}

.steps article {
  transition: transform .35s ease, opacity .35s ease;
}

.steps article:hover .process-card,
.steps article:focus-within .process-card {
  border-color: rgba(255, 255, 255, .3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 24px 68px rgba(0, 0, 0, .25);
  transform: translateY(-7px) scale(1.018);
}

.steps article:hover .process-duration,
.steps article:focus-within .process-duration {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.portfolio {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(11, 71, 87, 1), rgba(0, 47, 60, 1));
}

.portfolio .section-label,
.portfolio .text-link {
  color: #fff;
}

.portfolio .portfolio-all-link {
  border-bottom: 1px solid rgba(255, 255, 255, .26);
}

.portfolio article {
  position: relative;
  min-height: clamp(322px, 31vw, 360px);
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  flex: 0 0 auto;
}

.portfolio-card-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
}

.portfolio img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: none;
  transform: scale(1);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tile-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: 42px 40px 52px;
  text-align: left;
}

.portfolio h3 {
  padding: 0;
  max-width: calc(100% - 72px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72), 0 1px 2px rgba(0, 0, 0, .78);
  font-size: clamp(28px, 2.6vw, 35px);
  transition: opacity .3s ease .2s, transform .3s ease .2s;
}

.portfolio article p {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  margin: 0;
  opacity: .78;
  color: rgba(255, 255, 255, .86);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .72), 0 1px 2px rgba(0, 0, 0, .78);
  text-transform: uppercase;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}

.tile-line {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  background: #fff;
  transition: width .75s ease, height .75s ease;
}

.tile-line::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
}

.tile-line.vertical {
  width: 1px;
  height: 50px;
}

.tile-line.horizontal {
  width: 50px;
  height: 1px;
}

.tile-line.vertical::before {
  top: 0;
  left: 0;
  transform: translate(-40%, -50%);
}

.tile-line.horizontal::before {
  left: 0;
  top: 0;
  transform: translate(-50%, -40%);
}

.portfolio article:hover img {
  filter: none;
  transform: scale(1.04);
}

.portfolio article:hover h3 {
  opacity: 1;
  transform: translateY(-6px);
  transition-delay: 0s;
}

.portfolio article:hover p {
  opacity: .92;
  transform: translateY(0);
  transition-delay: .18s;
}

.portfolio article:hover .tile-line.vertical {
  height: 76px;
}

.portfolio article:hover .tile-line.horizontal {
  width: 76px;
}

.numbers {
  background: var(--mist);
}

.quote {
  background: var(--mist);
}

.quote > div {
  padding-left: max(8vw, 76px);
}

.availability-card a:hover {
  color: #fff;
  background: var(--teal-dark);
}

.contact-form button:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 42px rgba(0, 47, 60, .24);
  transform: translateY(-2px);
}

.about-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 28px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--soft-radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
}

.about-more-button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.about-more-button.light {
  color: var(--teal-dark);
  background: #fff;
}

.subpage .loader {
  display: none;
}

body.subpage :is(
  .about-hero-content,
  .workflow-hero-content,
  .flow-hero-content,
  .references-hero-copy,
  .policy-hero
) > :is(.section-label, h1, p:not(.section-label)) {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 18px, 0);
  animation: subpageHeaderTextIn 1.05s cubic-bezier(.22, 1, .36, 1) var(--subpage-header-delay, 0s) forwards;
  will-change: opacity, transform, filter;
}

body.subpage :is(
  .about-hero-content,
  .workflow-hero-content,
  .flow-hero-content,
  .references-hero-copy,
  .policy-hero
) > .section-label {
  --subpage-header-delay: .16s;
}

body.subpage :is(
  .about-hero-content,
  .workflow-hero-content,
  .flow-hero-content,
  .references-hero-copy,
  .policy-hero
) > h1 {
  --subpage-header-delay: .34s;
}

body.subpage :is(
  .about-hero-content,
  .workflow-hero-content,
  .flow-hero-content,
  .references-hero-copy,
  .policy-hero
) > p:not(.section-label) {
  --subpage-header-delay: .56s;
}

.about-main {
  color: var(--ink);
  background: var(--stone);
}

.policy-main {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(231, 231, 231, .96), rgba(242, 242, 242, .92)),
    var(--stone);
}

.policy-hero {
  min-height: 58vh;
  display: grid;
  align-content: end;
  gap: 20px;
  padding: 150px 8vw 72px;
}

.policy-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 500;
  line-height: .88;
}

.policy-hero > p:not(.section-label) {
  max-width: 620px;
  margin: 0;
  color: rgba(32, 38, 32, .68);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}

.policy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 8vw 112px;
}

.policy-card,
.policy-note {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .07);
}

.policy-card h2 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.policy-card p {
  margin: 0;
  color: rgba(32, 38, 32, .72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
}

.policy-note {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(32, 38, 32, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
  padding: 180px 8vw 92px;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .64) 31%, rgba(0, 0, 0, .16) 58%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(180deg, rgba(32, 38, 32, .12), rgba(32, 38, 32, .72)),
    var(--image) 74% center / cover no-repeat;
  transform: scale(1.02);
  transform-origin: 72% 50%;
  animation: aboutHeroKenBurns 18s ease-in-out infinite alternate;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  opacity: .17;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, .18) 39px, transparent 40px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .18) 49% 50%, transparent 51%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.about-hero-person {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 clamp(38px, 4.2vw, 62px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .52);
  transform: translate3d(-18px, -4px, 0);
}

.about-hero-person strong {
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .92;
}

.about-hero-person span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero.visible .about-hero-person {
  animation: aboutPersonReveal .9s ease 1.1s forwards;
}

.about-hero h1,
.about-editorial h2,
.about-split h2,
.about-control h2,
.about-inspection h2,
.about-final h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .92;
}

.about-hero h1 {
  max-width: 740px;
  font-size: clamp(54px, 6.4vw, 104px);
}

.about-hero-content > p:not(.section-label) {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.about-editorial,
.about-split,
.about-inspection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  gap: clamp(42px, 5vw, 66px);
  align-items: start;
  padding: 44px 8vw 86px;
}

.about-editorial {
  align-items: stretch;
  row-gap: 14px;
}

.about-editorial.reveal {
  opacity: 1;
}

.about-back {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 0;
}

.about-copy h2,
.about-split h2,
.about-control h2,
.about-inspection h2 {
  font-size: clamp(48px, 5.4vw, 86px);
}

.about-copy p:not(.section-label),
.about-inspection-copy p,
.about-control-copy p {
  color: rgba(32, 38, 32, .72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
}

.about-editorial .about-copy {
  max-width: 940px;
}

.about-editorial .about-copy h2 {
  margin-bottom: clamp(24px, 2.4vw, 36px);
  line-height: .98;
}

.about-editorial .about-copy p:not(.section-label) {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.68;
  text-wrap: pretty;
}

.about-stat-column {
  position: relative;
  top: auto;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  align-items: center;
  justify-items: center;
  gap: clamp(56px, 5.6vw, 86px);
  align-self: start;
}

.about-stat-column.is-signoff-anchored {
  min-height: 100%;
  align-self: stretch;
}

.about-stat-column.is-signoff-anchored .about-founder-signoff {
  position: absolute;
  left: 50%;
  top: var(--founder-signoff-top, auto);
  transform: translateX(-50%);
}

.about-founder-signoff {
  display: grid;
  width: 100%;
  margin: 0;
  padding-bottom: 0;
  justify-items: center;
  transform: none;
}

.about-stat-panel {
  position: relative;
  display: flex;
  width: 100%;
  min-height: clamp(300px, 22vw, 420px);
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 14%, rgba(206, 220, 225, .18), transparent 34%),
    linear-gradient(145deg, rgba(0, 119, 136, .9), rgba(0, 47, 60, .95));
  border-radius: var(--card-radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

.about-stat-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: .48;
  filter: grayscale(.18) saturate(.72);
}

.about-stat-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(70px, 5.6vw, 88px);
  font-weight: 400;
  line-height: .9;
}

.about-stat-panel span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-stat-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  line-height: 1.62;
}

.about-split {
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--mist);
}

.about-image-frame {
  position: sticky;
  top: 110px;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .16);
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.about-image-frame img.about-engineering-image {
  object-position: center center;
}

.about-image-frame.engineering-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(32, 38, 32, 0) 52%, rgba(32, 38, 32, .16) 100%),
    linear-gradient(180deg, rgba(32, 38, 32, .08), rgba(32, 38, 32, 0) 28%, rgba(32, 38, 32, .12));
}

.about-copy.compact {
  position: relative;
  padding-left: clamp(34px, 4vw, 52px);
}

.about-copy.compact h2 {
  margin-bottom: 24px;
}

.about-copy.compact p:not(.section-label) {
  margin: 0 0 18px;
}

.about-control {
  padding: 96px 8vw 104px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(11, 71, 87, 1), rgba(0, 47, 60, 1));
}

.about-control .section-label,
.about-control .about-control-copy p {
  color: rgba(255, 255, 255, .78);
}

.about-control-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: start;
}

.about-control-head {
  position: sticky;
  top: 126px;
  order: 2;
  min-height: 0;
}

.about-control h2 {
  max-width: 780px;
}

.szaki-stamp {
  position: relative;
  width: min(250px, 54%);
  margin: 42px 0 0 18px;
  transform: rotate(-5deg);
}

.szaki-stamp::before {
  content: "";
  position: absolute;
  inset: 16% 10% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .22), transparent 64%);
  filter: blur(10px);
  opacity: .55;
}

.szaki-stamp img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, .24));
}

.about-control-copy {
  position: relative;
  order: 1;
  max-width: 840px;
  padding: 4px clamp(34px, 4vw, 58px) 0 0;
}

.about-control-copy::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .04));
}

.about-control-copy p {
  max-width: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: clamp(16px, 1.12vw, 19px);
  font-weight: 600;
  line-height: 1.68;
}

.about-control-copy p + p {
  padding-top: 0;
  border-top: 0;
}

.about-control-copy .statement {
  width: 100%;
  margin: 30px 0 32px;
  padding: 20px 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.about-inspection {
  background: var(--stone);
  grid-template-columns: minmax(420px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(38px, 4vw, 64px);
}

.about-inspection h2 {
  max-width: 720px;
  font-size: clamp(48px, 4.8vw, 74px);
  line-height: .96;
}

.about-inspection-copy {
  max-width: 760px;
  padding-top: 4px;
}

.about-inspection-copy p {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.66;
}

.about-summary {
  margin-top: 24px;
  padding: 28px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--card-radius);
}

.about-summary p {
  color: rgba(255, 255, 255, .84);
}

@media (max-width: 1180px) {
  .about-editorial,
  .about-split,
  .about-control,
  .about-inspection {
    padding-left: clamp(36px, 5vw, 64px);
    padding-right: clamp(36px, 5vw, 64px);
  }

  .about-control-layout,
  .about-inspection {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .about-control-head {
    position: relative;
    top: auto;
    order: 1;
    min-height: 0;
  }

  .about-control-copy {
    order: 2;
    max-width: 820px;
    padding: 0;
  }

  .about-control-copy::before {
    display: none;
  }

  .szaki-stamp {
    margin-left: auto;
    margin-right: auto;
  }

  .about-inspection-copy {
    max-width: 820px;
    padding-top: 0;
  }

  .about-summary {
    max-width: 820px;
  }
}

.about-control.reveal,
.about-inspection.reveal {
  opacity: 1;
  transform: none;
}

.about-control.scroll-scene :is(.about-control-title, .section-label, h2, .about-control-copy, .about-control-copy p),
.about-inspection.scroll-scene :is(.section-label, h2, .about-inspection-copy, .about-inspection-copy p, .about-summary) {
  opacity: 1;
  transform: none;
}

.about-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 8vw;
  color: #fff;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(0, 0, 0, .08)),
    var(--deep);
}

.about-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(0, 119, 136, .045) 34px 36px);
  opacity: .7;
  pointer-events: none;
}

.about-final h2 {
  font-size: clamp(58px, 7vw, 112px);
}

.about-final p {
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 22px;
  font-weight: 700;
}

.workflow-main {
  color: var(--ink);
  background: var(--stone);
}

.workflow-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 190px 8vw 86px;
  background: var(--deep);
}

.workflow-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 47, 60, .36)),
    var(--image) center/cover;
  transform: scale(1.04);
}

.workflow-hero-content {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
}

.workflow-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 152px);
  font-weight: 400;
  line-height: .88;
}

.workflow-hero-content > p:not(.section-label) {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.55;
}

.workflow-detail {
  display: grid;
  grid-template-columns: minmax(360px, .39fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
  padding: 118px 8vw 126px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .26), transparent 42%),
    var(--stone);
}

.workflow-nav {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
  padding-left: 28px;
}

.workflow-nav .section-label {
  position: relative;
  top: -12px;
}

.workflow-nav::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 54px;
  bottom: 18px;
  width: 2px;
  background:
    linear-gradient(180deg, rgba(0, 119, 136, .06), rgba(0, 119, 136, .78), rgba(0, 47, 60, .2));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 119, 136, .18);
  transform: scaleY(0);
  transform-origin: top;
  animation: workflowWireDraw 5.6s cubic-bezier(.22, 1, .36, 1) .35s forwards;
}

.workflow-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  color: rgba(32, 38, 32, .72);
  background: rgba(255, 255, 255, .34);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: var(--soft-radius);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .05);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  isolation: isolate;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    color .25s ease,
    transform .25s ease;
}

.workflow-nav a::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  background: var(--stone);
  border: 2px solid rgba(0, 119, 136, .78);
  border-radius: 999px;
  box-shadow:
    0 0 0 7px rgba(0, 119, 136, .08),
    0 8px 20px rgba(0, 47, 60, .12);
  transform: translateY(-50%) scale(.92);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.workflow-nav a:hover,
.workflow-nav a.active {
  color: #fff;
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 22px 52px rgba(0, 47, 60, .18);
  transform: translateX(4px);
}

.workflow-nav a:hover::before,
.workflow-nav a.active::before {
  background: var(--teal);
  border-color: #fff;
  box-shadow:
    0 0 0 8px rgba(0, 119, 136, .18),
    0 0 28px rgba(0, 119, 136, .42);
  transform: translateY(-50%) scale(1.08);
}

.workflow-nav span {
  color: currentColor;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
  justify-self: end;
}

.workflow-nav img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 7px;
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, .22), transparent 42%),
    rgba(0, 47, 60, .08);
  border: 1px solid rgba(0, 47, 60, .08);
  border-radius: 9px;
  filter: saturate(.86) drop-shadow(0 8px 18px rgba(0, 0, 0, .14));
  transition:
    background-color .25s ease,
    border-color .25s ease,
    filter .25s ease,
    transform .25s ease;
}

.workflow-nav a:hover img,
.workflow-nav a.active img {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
  filter: brightness(1.2) saturate(.72) drop-shadow(0 12px 26px rgba(0, 0, 0, .26));
  transform: scale(1.04);
}

.workflow-nav strong {
  min-width: 0;
  font: inherit;
  line-height: 1.15;
  white-space: nowrap;
}

.workflow-article {
  max-width: min(780px, 100%);
  transition: opacity .22s ease, transform .22s ease;
}

.workflow-article.is-switching {
  opacity: .28;
  transform: translateY(10px);
}

.workflow-kicker {
  margin: 0 0 38px;
  color: var(--teal-dark);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.42;
}

.workflow-article > p:not(.workflow-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(32, 38, 32, .72);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 500;
  line-height: 1.74;
}

.workflow-article > p:not(.workflow-kicker) + p:not(.workflow-kicker) {
  margin-top: clamp(26px, 2.1vw, 36px);
}

.workflow-points {
  margin-top: 58px;
  padding: clamp(30px, 4vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(206, 220, 225, .18), transparent 36%),
    linear-gradient(145deg, rgba(0, 119, 136, .94), rgba(0, 47, 60, .96));
  border-radius: var(--card-radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
}

.workflow-points h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 400;
  line-height: .96;
}

.workflow-points ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.workflow-points li::before {
  content: "";
  position: absolute;
  top: .74em;
  left: 0;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, .72);
}

.workflow-pager {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.workflow-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .44);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: var(--soft-radius);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.workflow-pager a:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.flow-main {
  color: var(--ink);
  background: var(--stone);
}

.flow-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 190px 8vw 92px;
  background: var(--deep);
}

.flow-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 47, 60, .42)),
    url("assets/sopte-1.jpg") center/cover;
  transform: scale(1.04);
}

.flow-hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
}

.flow-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8.4vw, 132px);
  font-weight: 400;
  line-height: .9;
}

.flow-hero-content > p:not(.section-label) {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.58;
}

.flow-thread-section {
  position: relative;
  padding: 118px 8vw 132px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .24), transparent 42%),
    var(--stone);
}

.flow-thread-head {
  width: min(980px, 100%);
  margin: 0 auto 72px;
  text-align: center;
}

.flow-thread-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  line-height: .92;
}

.flow-thread {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.flow-thread::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 47, 60, .08), rgba(0, 47, 60, .6), rgba(0, 47, 60, .08));
  transform: scaleY(0);
  transform-origin: top;
  animation: threadDraw 1.8s cubic-bezier(.22, 1, .36, 1) .35s forwards;
}

.flow-step-card {
  position: relative;
  width: calc(50% - 56px);
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(32, 38, 32, .08);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .08);
  opacity: 0;
  transform: translateY(42px) scale(.98);
  transition:
    opacity .72s ease,
    transform .82s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s ease;
}

.flow-step-link {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 24px;
  align-items: start;
  min-height: 100%;
  outline: 0;
}

.flow-step-card:nth-child(odd) {
  justify-self: start;
}

.flow-step-card:nth-child(even) {
  justify-self: end;
}

.flow-step-icon {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .2), transparent 34%),
    linear-gradient(145deg, rgba(0, 119, 136, .92), rgba(0, 47, 60, .96));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--soft-radius);
  box-shadow: 0 18px 42px rgba(0, 47, 60, .22);
}

.flow-step-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.flow-step-icon img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.flow-step-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flow-step-card.is-visible:hover {
  box-shadow: 0 30px 84px rgba(0, 47, 60, .14);
  transform: translateY(-4px) scale(1.01);
}

.flow-step-card:focus-within {
  box-shadow: 0 30px 84px rgba(0, 47, 60, .14), 0 0 0 3px rgba(0, 119, 136, .18);
  transform: translateY(-4px) scale(1.01);
}

.flow-step-card::before {
  content: "";
  position: absolute;
  top: 42px;
  width: 56px;
  height: 1px;
  background: rgba(0, 47, 60, .38);
}

.flow-step-card::after {
  content: "";
  position: absolute;
  top: 36px;
  width: 13px;
  height: 13px;
  background: var(--stone);
  border: 2px solid var(--teal-dark);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(0, 47, 60, .06);
}

.flow-step-card:nth-child(odd)::before {
  right: -56px;
}

.flow-step-card:nth-child(odd)::after {
  right: -65px;
}

.flow-step-card:nth-child(even)::before {
  left: -56px;
}

.flow-step-card:nth-child(even)::after {
  left: -65px;
}

.flow-step-number {
  grid-column: 1;
  grid-row: 2;
  margin-top: 18px;
  color: rgba(0, 47, 60, .32);
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: .86;
}

.flow-step-link > div {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.flow-step-card h3 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
}

.flow-step-card p {
  margin: 0;
  color: rgba(32, 38, 32, .72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.flow-step-card strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--soft-radius);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.references-main {
  color: var(--ink);
  background: var(--stone);
}

.references-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 8vw 84px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 38, 32, .95), rgba(0, 47, 60, .92)),
    var(--teal-dark);
}

.references-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 44px 44px;
  opacity: .45;
  pointer-events: none;
}

.references-hero > img,
.references-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(.42) saturate(.82);
  transform: scale(1.04);
}

.references-hero-picture {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--brand-navy);
}

.references-hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.42) saturate(.82);
}

.references-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.subpage-home-back {
  position: fixed;
  z-index: 21;
  top: 82px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px 0 10px;
  color: rgba(255, 255, 255, .9);
  background: rgba(32, 38, 32, .38);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .32);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.subpage-home-back::before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.subpage-home-back:hover,
.subpage-home-back:focus-visible {
  color: #fff;
  background: rgba(32, 38, 32, .48);
  border-color: rgba(255, 255, 255, .28);
  outline: none;
  transform: translateX(-2px);
}

.references-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 132px);
  font-weight: 500;
  line-height: .86;
}

.references-hero-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.reference-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reference-back::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.reference-detail,
.reference-collection {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 92px max(36px, calc((100vw - 1240px) / 2)) 118px;
}

.reference-back {
  min-height: 38px;
  margin-bottom: 34px;
  padding: 0 16px 0 14px;
  border: 1px solid rgba(0, 47, 60, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 14px 32px rgba(0, 47, 60, .08);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.reference-back:hover,
.reference-back:focus-visible {
  background: rgba(255, 255, 255, .62);
  border-color: rgba(0, 47, 60, .34);
  outline: none;
  transform: translateX(-3px);
}

.reference-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 20px 42px;
  align-items: end;
  margin-bottom: 34px;
}

.reference-detail-head .section-label {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.reference-detail-head h2 {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 500;
  line-height: .9;
}

.reference-detail-head > p:not(.section-label) {
  justify-self: end;
  margin: 0;
  padding-bottom: 8px;
  color: rgba(32, 38, 32, .62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.reference-gallery {
  display: grid;
  gap: 16px;
}

.reference-gallery-main {
  position: relative;
  overflow: hidden;
  min-height: min(66vw, 720px);
  background: var(--teal-dark);
  border-radius: 8px;
}

.reference-gallery-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .45s ease, transform .7s ease;
}

.reference-gallery-main > img.active {
  opacity: 1;
  transform: scale(1);
}

.reference-gallery-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(0, 47, 60, .44);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .25s ease, transform .25s ease;
}

.reference-gallery-control::before {
  content: "";
  position: absolute;
  inset: 15px 13px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.reference-gallery-control.prev {
  left: 18px;
}

.reference-gallery-control.next {
  right: 18px;
}

.reference-gallery-control.prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.reference-gallery-control.next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.reference-gallery-control:hover,
.reference-gallery-control:focus-visible {
  background: rgba(0, 119, 136, .72);
  transform: translateY(-50%) scale(1.04);
}

.reference-gallery-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(0, 47, 60, .5);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.reference-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 120px;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 47, 60, .36) transparent;
}

.reference-thumbs button {
  position: relative;
  width: 120px;
  height: 76px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 60, .12);
  border-radius: 8px;
  background: var(--teal-dark);
  cursor: pointer;
}

.reference-thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color .25s ease;
}

.reference-thumbs button.active::after,
.reference-thumbs button:hover::after,
.reference-thumbs button:focus-visible::after {
  border-color: var(--teal);
}

.reference-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}

.reference-empty-media {
  min-height: 460px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 40px;
  color: #fff;
  text-align: center;
}

.reference-empty-media strong {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
}

.reference-empty-media span {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reference-project-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  margin-top: 56px;
  padding: 48px;
  border: 1px solid rgba(0, 47, 60, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .32);
}

.reference-project-copy h2 {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 68px);
  font-weight: 500;
  line-height: .94;
}

.reference-project-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(32, 38, 32, .7);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.85;
}

.reference-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.reference-year-card {
  display: inline-grid;
  min-width: 176px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 119, 136, .18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 119, 136, .12), rgba(255, 255, 255, .46));
  box-shadow: 0 16px 42px rgba(0, 47, 60, .08);
}

.reference-year-card span {
  color: rgba(0, 47, 60, .66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.reference-year-card strong {
  margin-top: 4px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .9;
}

.reference-project-intro {
  margin-bottom: 24px !important;
}

.reference-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-feature-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 44px;
  color: rgba(32, 38, 32, .78);
  border: 1px solid rgba(0, 47, 60, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .38);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.reference-feature-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 119, 136, .08);
}

.reference-project-copy aside {
  align-self: start;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 26px;
  color: #fff;
  border-radius: 8px;
  background: var(--teal-dark);
}

.reference-project-copy aside span {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reference-project-copy aside strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: .94;
}

.reference-project-copy aside p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.reference-price-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.reference-price-list div {
  display: grid;
  gap: 7px;
  padding: 16px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.reference-price-list small {
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reference-price-list strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: .96;
}

.reference-project-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 26px 30px;
  border: 1px solid rgba(0, 47, 60, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
}

.reference-project-notice p {
  max-width: 880px;
  margin: 0;
  color: rgba(32, 38, 32, .68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.reference-project-notice p + p {
  margin-top: 8px;
}

.reference-project-notice img {
  width: 112px;
  max-width: 22vw;
  opacity: .62;
  filter: saturate(.82);
}

.reference-documents {
  margin-top: 36px;
}

.reference-documents > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reference-documents a {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 52px;
  max-width: 360px;
  padding: 9px 15px 9px 9px;
  color: var(--teal-dark);
  border: 1px solid rgba(0, 47, 60, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.reference-documents a span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 34px;
  color: #fff;
  border-radius: 6px;
  background: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.reference-documents a strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.reference-documents a:hover,
.reference-documents a:focus-visible {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(0, 119, 136, .38);
  transform: translateY(-2px);
}

.reference-collection {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reference-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: var(--teal-dark);
}

.reference-card img,
.reference-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reference-card img {
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reference-card-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(0, 47, 60, .96), rgba(11, 71, 87, .9)),
    var(--teal-dark);
  color: rgba(255, 255, 255, .82);
  font-family: var(--serif);
  font-size: 40px;
  line-height: .96;
  text-align: center;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reference-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72), 0 1px 2px rgba(0, 0, 0, .78);
}

.reference-card-copy span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reference-card-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 500;
  line-height: .9;
}

.reference-card:hover img,
.reference-card:focus-visible img {
  transform: scale(1.04);
}

.scroll-scene {
  --scroll-progress: 0;
  --motion-balance: 0;
  --motion-focus: 1;
  --motion-out: 0;
  --section-slide: 0px;
  --section-stack: 1;
  --section-overlap: clamp(34px, 5vw, 76px);
}

main {
  isolation: isolate;
  overflow: clip;
}

main > section {
  position: relative;
  z-index: var(--section-stack);
}

main > section[data-tone="mist"] {
  background-color: var(--mist);
}

main > section[data-tone="stone"] {
  background-color: var(--stone);
}

main > section[data-tone="dark"] {
  background-color: var(--brand-navy);
}

main > section[data-tone="teal"] {
  background-color: var(--teal-dark);
}

main > section:not(:first-of-type) {
  --section-radius: clamp(22px, 3vw, 38px);
  margin-top: calc(-1 * var(--section-overlap));
  overflow: hidden;
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  background-clip: padding-box;
  clip-path: inset(0 round var(--section-radius) var(--section-radius) 0 0);
  box-shadow:
    0 -26px 64px rgba(0, 47, 60, .14),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: translate3d(0, var(--section-slide), 0);
  transition:
    transform .52s cubic-bezier(.22, 1, .36, 1),
    box-shadow .52s ease;
  will-change: transform;
}

html.is-anchor-scrolling main > section:not(:first-of-type) {
  transition: box-shadow .52s ease !important;
}

html.is-anchor-scrolling .scroll-scene :is(.section-label, h1, h2, h3, p, blockquote, .text-link, .contact-form, .steps article, .numbers div, .portfolio article, .panel-line),
html.is-anchor-scrolling .scroll-scene :is(.image-stack, .stack-large, .stack-small, .process-bg, .process-content, .portfolio-head, .quote > img, .quote > div, .advantages-media, .advantages-content, .contact-copy, .contact-form) {
  transition-duration: .01ms !important;
}

html.mo-js main > section.reveal {
  opacity: 1;
  transform: translate3d(0, var(--section-slide), 0);
}

html.mo-js main > section.reveal.visible {
  transform: translate3d(0, var(--section-slide), 0);
}

html.mo-js main > section:first-of-type.reveal,
html.mo-js main > section:first-of-type.reveal.visible {
  transform: none;
}

body:not(.subpage) main > section.numbers {
  --section-overlap: clamp(16px, 2.5vw, 34px);
  --section-radius: 0px;
  overflow: visible;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.scroll-scene :is(.section-label, h1, h2, h3, p, blockquote, .text-link, .contact-form, .steps article, .numbers div, .portfolio article, .panel-line) {
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .55s ease;
  will-change: transform, opacity;
}

.scroll-scene :is(.image-stack, .stack-large, .stack-small, .process-bg, .process-content, .portfolio-head, .quote > img, .quote > div, .advantages-media, .advantages-content, .contact-copy, .contact-form) {
  transition: transform .85s cubic-bezier(.22, 1, .36, 1), opacity .55s ease;
  will-change: transform, opacity;
}

.scroll-scene :is(.section-label, h2, .lead, .split-copy p:not(.section-label), .contact-copy p, blockquote, .text-link) {
  opacity: calc(.42 + (var(--motion-focus) * .58));
  transform:
    translate3d(
      calc(var(--motion-balance) * -18px),
      calc(var(--motion-out) * 26px),
      0
    )
    scale(calc(.985 + (var(--motion-focus) * .015)));
}

.scroll-scene .section-label {
  transform:
    translate3d(
      calc(var(--motion-balance) * -22px),
      calc(var(--motion-out) * 16px),
      0
    );
}

.hero.scroll-scene .hero-content {
  transform:
    translate3d(
      calc(var(--motion-balance) * -24px),
      calc(var(--motion-balance) * -38px),
      0
    )
    scale(calc(.965 + (var(--motion-focus) * .035)));
}

.hero.scroll-scene .hero-shade {
  opacity: calc(.72 + (var(--motion-out) * .16));
}

.intro.scroll-scene::before,
.portfolio.scroll-scene::before,
.process.scroll-scene::after {
  transform:
    translate3d(
      calc(var(--motion-balance) * -24px),
      calc(var(--motion-balance) * 18px),
      0
    );
}

.split.scroll-scene .split-copy {
  transform:
    translate3d(
      calc(var(--motion-balance) * -58px),
      calc(var(--motion-out) * 22px),
      0
    );
}

.split.scroll-scene .image-stack {
  transform:
    translate3d(
      calc(var(--motion-balance) * 92px),
      calc(var(--motion-out) * -28px),
      0
    );
}

.split.scroll-scene .stack-large {
  transform:
    translate3d(
      calc(var(--motion-balance) * -52px),
      calc(var(--motion-out) * 34px),
      0
    )
    scale(calc(.97 + (var(--motion-focus) * .03)))
    scale(var(--hover-scale));
}

.split.scroll-scene .stack-large:hover {
  transform:
    translate3d(
      calc(var(--motion-balance) * -52px),
      calc(var(--motion-out) * 34px),
      0
    )
    scale(calc(.97 + (var(--motion-focus) * .03)))
    scale(1.055);
}

.split.scroll-scene .stack-small.top {
  transform:
    translate3d(
      calc(var(--motion-balance) * 86px),
      calc(var(--motion-out) * -66px),
      0
    )
    scale(var(--hover-scale));
}

.split.scroll-scene .stack-small.top:hover {
  transform:
    translate3d(
      calc(var(--motion-balance) * 86px),
      calc(var(--motion-out) * -66px),
      0
    )
    scale(1.055);
}

.split.scroll-scene .stack-small.bottom {
  transform:
    translate3d(
      calc(var(--motion-balance) * -92px),
      calc(var(--motion-out) * 72px),
      0
    )
    scale(var(--hover-scale));
}

.split.scroll-scene .stack-small.bottom:hover {
  transform:
    translate3d(
      calc(var(--motion-balance) * -92px),
      calc(var(--motion-out) * 72px),
      0
    )
    scale(1.055);
}

.process.scroll-scene .process-bg {
  transform:
    translate3d(0, calc(var(--motion-balance) * 42px), 0)
    scale(calc(1.06 + (var(--motion-out) * .04)));
}

.process.scroll-scene .process-content {
  transform:
    translate3d(
      calc(var(--motion-balance) * -42px),
      calc(var(--motion-out) * 18px),
      0
    );
}

.process.scroll-scene .steps article {
  opacity: calc(.5 + (var(--motion-focus) * .5));
  transform:
    translate3d(
      0,
      calc(var(--motion-out) * 42px),
      0
    );
}

.process.scroll-scene .steps article:nth-child(2) {
  transform: translate3d(0, calc(var(--motion-out) * 30px), 0);
}

.process.scroll-scene .steps article:nth-child(3) {
  transform: translate3d(0, calc(var(--motion-out) * 18px), 0);
}

.process.scroll-scene .steps article:nth-child(4) {
  transform: translate3d(0, calc(var(--motion-out) * 6px), 0);
}

.process.scroll-scene .steps article:nth-child(5) {
  transform: translate3d(0, calc(var(--motion-out) * 38px), 0);
}

.process.scroll-scene .steps article:nth-child(6) {
  transform: translate3d(0, calc(var(--motion-out) * 24px), 0);
}

.process.scroll-scene .steps article:nth-child(7) {
  transform: translate3d(0, calc(var(--motion-out) * 14px), 0);
}

.process.scroll-scene .steps article:nth-child(8) {
  transform: translate3d(0, calc(var(--motion-out) * 4px), 0);
}

.process.scroll-scene .steps article:nth-child(9) {
  transform: translate3d(0, calc(var(--motion-out) * 34px), 0);
}

.process.scroll-scene .steps article:nth-child(10) {
  transform: translate3d(0, calc(var(--motion-out) * 22px), 0);
}

.process.scroll-scene .steps article:nth-child(11) {
  transform: translate3d(0, calc(var(--motion-out) * 10px), 0);
}

.process:not(.visible) .steps article {
  opacity: 0;
  transform: translateY(54px) scale(.96);
}

.process.visible .steps article {
  animation: processTileIn .74s cubic-bezier(.22, 1, .36, 1) both;
}

.process.visible .steps article:nth-child(1) {
  animation-delay: .12s;
}

.process.visible .steps article:nth-child(2) {
  animation-delay: .28s;
}

.process.visible .steps article:nth-child(3) {
  animation-delay: .44s;
}

.process.visible .steps article:nth-child(4) {
  animation-delay: .6s;
}

.process.visible .steps article:nth-child(5) {
  animation-delay: .2s;
}

.process.visible .steps article:nth-child(6) {
  animation-delay: .36s;
}

.process.visible .steps article:nth-child(7) {
  animation-delay: .52s;
}

.process.visible .steps article:nth-child(8) {
  animation-delay: .68s;
}

.process.visible .steps article:nth-child(9) {
  animation-delay: .24s;
}

.process.visible .steps article:nth-child(10) {
  animation-delay: .4s;
}

.process.visible .steps article:nth-child(11) {
  animation-delay: .56s;
}

.portfolio.scroll-scene .portfolio-head {
  transform:
    translate3d(
      0,
      calc(var(--motion-out) * 24px),
      0
    );
}

.portfolio.scroll-scene .portfolio article {
  transform:
    translate3d(
      0,
      calc(var(--motion-out) * 34px),
      0
    )
    scale(calc(.975 + (var(--motion-focus) * .025)));
}

.portfolio.scroll-scene .portfolio article:nth-child(2n) {
  transform:
    translate3d(
      0,
      calc(var(--motion-out) * -22px),
      0
    )
    scale(calc(.975 + (var(--motion-focus) * .025)));
}

.numbers.scroll-scene div {
  opacity: calc(.48 + (var(--motion-focus) * .52));
  transform:
    translate3d(
      calc(var(--motion-balance) * -22px),
      calc(var(--motion-out) * 28px),
      0
    );
}

.numbers.scroll-scene div:nth-child(2) {
  transform: translate3d(0, calc(var(--motion-out) * 18px), 0);
}

.numbers.scroll-scene div:nth-child(3) {
  transform:
    translate3d(
      calc(var(--motion-balance) * 22px),
      calc(var(--motion-out) * 28px),
      0
    );
}

.advantages.scroll-scene .advantages-media,
.quote.scroll-scene > img {
  transform:
    translate3d(
      calc(var(--motion-balance) * -42px),
      0,
      0
    )
    scale(calc(.98 + (var(--motion-focus) * .02)));
}

.advantages.scroll-scene .advantages-media {
  transform: none;
}

.advantages.scroll-scene .advantages-content,
.quote.scroll-scene > div {
  transform:
    translate3d(
      calc(var(--motion-balance) * 44px),
      calc(var(--motion-out) * 20px),
      0
    );
}

.contact-section.scroll-scene .contact-copy {
  transform:
    translate3d(
      calc(var(--motion-balance) * -44px),
      calc(var(--motion-out) * 20px),
      0
    );
}

.contact-section.scroll-scene .contact-form {
  opacity: calc(.62 + (var(--motion-focus) * .38));
  transform:
    translate3d(
      calc(var(--motion-balance) * 54px),
      calc(var(--motion-out) * 26px),
      0
    )
    scale(calc(.985 + (var(--motion-focus) * .015)));
}

html.mo-js .portfolio.reveal:not(.visible) .portfolio article,
html.mo-js .workflow-detail.reveal:not(.visible) .workflow-nav a {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(.98);
}

html.mo-js .portfolio.reveal.visible .portfolio article,
html.mo-js .workflow-detail.reveal.visible .workflow-nav a {
  opacity: 1;
}

html.mo-js .portfolio.reveal.visible .portfolio article:nth-child(1),
html.mo-js .workflow-detail.reveal.visible .workflow-nav a:nth-of-type(1) {
  transition-delay: .04s;
}

html.mo-js .portfolio.reveal.visible .portfolio article:nth-child(2),
html.mo-js .workflow-detail.reveal.visible .workflow-nav a:nth-of-type(2) {
  transition-delay: .1s;
}

html.mo-js .portfolio.reveal.visible .portfolio article:nth-child(3),
html.mo-js .workflow-detail.reveal.visible .workflow-nav a:nth-of-type(3) {
  transition-delay: .16s;
}

html.mo-js .portfolio.reveal.visible .portfolio article:nth-child(n + 4),
html.mo-js .workflow-detail.reveal.visible .workflow-nav a:nth-of-type(n + 4) {
  transition-delay: .22s;
}

body.menu-is-open .availability-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.mo-js .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .9s ease, transform .9s ease;
}

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

html.mo-js body.references-page .reveal {
  opacity: 1;
}

body.references-page .references-main > .reveal,
body.references-page .reference-collection {
  opacity: 1 !important;
  visibility: visible !important;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-quote-link {
    animation: none;
  }

  .scroll-scene *,
  .scroll-scene::before,
  .scroll-scene::after {
    opacity: 1 !important;
    transform: none !important;
  }

  main > section,
  main > section.reveal,
  main > section.reveal.visible {
    margin-top: 0 !important;
    transform: none !important;
  }

  .advantages-frame {
    opacity: 1 !important;
    transform: none !important;
  }

  body.subpage :is(
    .about-hero-content,
    .workflow-hero-content,
    .flow-hero-content,
    .references-hero-copy,
    .policy-hero
  ) > :is(.section-label, h1, p:not(.section-label)) {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }

}

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoPulse {
  from {
    opacity: 0;
    transform: scale(.92);
  }
}

@keyframes wordmarkFadeIn {
  from {
    opacity: .08;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes aboutHeroKenBurns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-1.2%, .6%, 0);
  }
}

@keyframes titleUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subpageHeaderTextIn {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aboutPersonReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes popupIn {
  to {
    opacity: .94;
    transform: translateY(0);
  }
}

@keyframes menuItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes threadDraw {
  to {
    transform: scaleY(1);
  }
}

@keyframes workflowWireDraw {
  to {
    transform: scaleY(1);
  }
}

@keyframes flowCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processTileIn {
  from {
    opacity: 0;
    transform: translateY(54px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slowTrack {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .top-logo {
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 72px;
  }

  .top-logo img {
    width: 98px;
    padding: 7px;
  }

  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    position: fixed;
    left: auto;
    right: 86px;
    top: 22px;
    min-height: 0;
    transform: none;
  }

  .brand-wordmark {
    min-width: 184px;
    padding: 10px 12px;
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: 132px;
    height: 44px;
    min-width: 0;
    min-height: 0;
    padding: 6px 10px 7px;
    transform: none;
  }

  .brand-wordmark strong {
    font-size: 16px;
  }

  .brand-wordmark small {
    font-size: 5.5px;
    letter-spacing: .08em;
  }

  .top-nav {
    top: 22px;
    left: 16px;
    right: auto;
    width: min(1040px, calc(100vw - 250px));
    height: 46px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding: 5px 8px;
    background: rgba(32, 38, 32, .24);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    scrollbar-width: none;
  }

  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .top-nav .top-nav-logo {
    width: 42px;
    min-height: 32px;
    margin-right: 8px;
    padding: 0;
  }

  .top-nav .top-nav-logo img {
    width: 34px;
    opacity: .78;
  }

  .top-nav-social {
    flex: 0 0 auto;
    margin-left: 6px;
    padding-left: 4px;
    gap: 6px;
  }

  .top-nav-social a {
    flex: 0 0 36px;
    width: 36px;
    min-height: 36px;
    color: rgba(255, 255, 255, .62);
  }

  .top-nav-social a svg {
    flex: 0 0 22px;
    min-width: 22px;
    width: 22px;
    height: 22px;
  }

  main > section:not(:first-of-type) {
    --section-radius: 26px;
    border-radius: var(--section-radius) var(--section-radius) 0 0;
    clip-path: inset(0 round var(--section-radius) var(--section-radius) 0 0);
    box-shadow:
      0 -14px 36px rgba(0, 47, 60, .11),
      inset 0 1px 0 rgba(255, 255, 255, .18);
  }

  main > section[data-tone="mist"] {
    background-color: var(--mist);
  }

  main > section[data-tone="stone"] {
    background-color: var(--stone);
  }

  main > section[data-tone="dark"] {
    background-color: var(--brand-navy);
  }

  main > section:has(.availability-card) {
    z-index: 90;
  }

  .hero {
    aspect-ratio: auto;
    width: 100%;
    max-width: 100vw;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .about-hero,
  .workflow-hero,
  .flow-hero,
  .references-hero {
    min-height: 74svh;
    min-height: 74dvh;
  }

  main > section:has(.cert-term-wrap:hover),
  main > section:has(.cert-term-wrap:focus-within),
  main > section:has(.cert-term-wrap.is-visible),
  main > section:has(.wolf-term-wrap:hover),
  main > section:has(.wolf-term-wrap:focus-within),
  main > section:has(.wolf-term-wrap.is-visible) {
    z-index: 80;
    overflow: visible;
    clip-path: none;
  }

  .menu-toggle {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .menu-close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .menu-panel {
    background:
      linear-gradient(135deg, rgba(32, 38, 32, .995), rgba(0, 47, 60, .99)),
      radial-gradient(circle at right top, rgba(206, 220, 225, .12), transparent 38%);
  }

  .menu-inner {
    width: min(420px, calc(100% - 40px));
    max-height: calc(100vh - 104px);
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    overflow-y: auto;
    padding: 64px 0 24px;
    text-align: left;
  }

  .menu-brand,
  .menu-meta {
    justify-items: start;
    text-align: left;
  }

  .menu-brand img {
    width: 96px;
    padding: 8px 12px;
  }

  .menu-brand p,
  .menu-meta {
    margin-top: 10px;
    font-size: 9px;
    line-height: 1.55;
  }

  .menu-meta {
    gap: 9px;
    max-width: none;
    padding-top: 14px;
  }

  .menu-links {
    gap: 7px;
    justify-items: stretch;
    width: 100%;
  }

  .menu-links a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    padding: 8px 12px 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .045);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .menu-links a::before {
    display: none;
  }

  .hero-content {
    left: 50%;
    right: auto;
    width: min(346px, calc(100vw - 44px));
    top: auto;
    bottom: 142px;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-title {
    max-width: none;
    font-size: 43px;
    line-height: .95;
  }

  .hero-line {
    width: min(280px, 82%);
    margin-top: 16px;
    margin-bottom: 13px;
    margin-left: auto;
    margin-right: auto;
    transform-origin: center;
  }

  .hero-content p {
    width: 330px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero.scroll-scene .hero-content {
    transform:
      translate3d(
        -50%,
        calc(var(--motion-balance) * -28px),
        0
      )
      scale(calc(.97 + (var(--motion-focus) * .03)));
  }

  .availability-card {
    z-index: 120;
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    min-height: 154px;
    padding: 18px 18px 18px 54px;
  }

  .availability-card h2 {
    margin-right: 34px;
    font-size: 19px;
  }

  .availability-card p {
    max-height: 68px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .availability-card a {
    min-height: 36px;
    padding: 0 16px;
    font-size: 10px;
  }

  .availability-card.is-collapsed:not(:focus-within):not(.is-peek-open) {
    width: 168px;
    min-height: 54px;
    padding: 9px 12px;
  }

  .cookie-notice {
    left: 16px;
    bottom: 96px;
    width: calc(100% - 32px);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 13px 13px 13px 15px;
  }

  .cookie-notice p {
    max-width: 210px;
  }

  .cert-popover,
  .wolf-popover {
    position: fixed;
    z-index: 120;
    left: 18px;
    right: 18px;
    bottom: auto;
    top: 122px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(10px);
  }

  .cert-popover::after {
    display: none;
  }

  .cert-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .cert-list {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }

  .cert-strip .cert-term-wrap {
    flex: 0 1 auto;
  }

  .cert-strip .cert-term {
    flex: 0 1 auto;
    min-width: 78px;
  }

  .cert-term-wrap:hover .cert-popover,
  .cert-term-wrap:focus-within .cert-popover,
  .cert-term-wrap.is-visible .cert-popover,
  .wolf-term-wrap:hover .wolf-popover,
  .wolf-term-wrap:focus-within .wolf-popover,
  .wolf-term-wrap.is-visible .wolf-popover {
    transform: translateY(0);
  }

  .intro,
  .split,
  .about-editorial,
  .about-split,
  .about-control,
  .about-inspection,
  .workflow-detail,
  .flow-thread-section,
  .process-content,
  .portfolio-head,
  .contact-section {
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro h2,
  .split-copy h2,
  .process-content h2,
  .portfolio-head h2,
  .contact-copy h2 {
    font-size: 48px;
  }

  .split,
  .about-editorial,
  .about-split,
  .about-control-layout,
  .about-inspection,
  .workflow-detail,
  .workflow-pager,
  .flow-step-card,
  .steps,
  .numbers,
  .advantages,
  .quote,
  .contact-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vision.split {
    justify-items: center;
    gap: 48px;
  }

  .vision .split-copy {
    width: min(100%, 640px);
    padding: 54px 0 18px;
    text-align: center;
  }

  .vision .split-copy .panel-line {
    display: none;
  }

  .vision .profile-flow-button {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

  .contact-copy h2 {
    max-width: 560px;
  }

  .contact-copy .contact-lead,
  .contact-details {
    max-width: none;
  }

  .contact-form {
    gap: 11px;
    padding: 18px;
  }

  .contact-form input {
    height: 44px;
  }

  .contact-form textarea {
    min-height: 128px;
  }

  .contact-preview-dialog {
    max-height: 88vh;
    padding: 24px;
    border-radius: 20px;
  }

  .contact-preview-dialog h3 {
    max-width: calc(100% - 42px);
    font-size: 30px;
  }

  .contact-preview-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px 14px;
  }

  .contact-preview-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-preview-actions button {
    width: 100%;
  }

  .file-upload-control {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .file-upload-button {
    width: fit-content;
  }

  .numbers {
    gap: 14px;
    padding: 14px;
  }

  .about-hero {
    min-height: 82vh;
    padding: 138px 24px 72px;
  }

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

  .about-hero h1 {
    max-width: 560px;
    font-size: 48px;
  }

  .about-hero-content > p:not(.section-label),
  .about-final p {
    font-size: 17px;
  }

  .about-copy h2,
  .about-split h2,
  .about-control h2,
  .about-inspection h2 {
    font-size: 48px;
  }

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

  .about-copy p:not(.section-label),
  .about-inspection-copy p,
  .about-control-copy p {
    font-size: 16px;
    line-height: 1.68;
  }

  .about-stat-column,
  .about-stat-panel,
  .about-image-frame {
    position: relative;
    top: auto;
  }

  .about-stat-column {
    gap: 48px;
    min-height: 0;
    align-self: center;
  }

  .about-founder-signoff {
    margin-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .about-stat-logo {
    width: 100%;
    max-width: 100%;
    opacity: .44;
  }

  .about-image-frame img {
    height: 420px;
  }

  .about-editorial {
    padding-top: 30px;
    row-gap: 12px;
  }

  .about-copy.compact {
    padding-left: 28px;
  }

  .about-control-head {
    position: relative;
    top: auto;
    order: 1;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .szaki-stamp {
    width: min(230px, 72%);
    margin: 42px auto 0;
  }

  .about-control-copy {
    order: 2;
    padding: 0;
  }

  .about-control-copy::before {
    display: none;
  }

  .about-control-copy .statement {
    width: auto;
    font-size: 38px;
  }

  .about-inspection-copy {
    max-width: none;
    padding-top: 0;
  }

  .workflow-hero {
    padding: 138px 24px 72px;
  }

  .workflow-hero h1 {
    font-size: 58px;
  }

  .workflow-hero-content > p:not(.section-label) {
    font-size: 17px;
  }

  .workflow-nav {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0;
  }

  .workflow-nav::before {
    display: none;
  }

  .workflow-nav a {
    grid-template-columns: 40px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 62px;
    padding: 10px 14px;
    letter-spacing: .08em;
  }

  .workflow-nav a::before {
    display: none;
  }

  .workflow-nav span {
    font-size: 24px;
  }

  .workflow-nav img {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .workflow-nav strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .workflow-article {
    max-width: none;
  }

  .workflow-kicker {
    font-size: 23px;
  }

  .workflow-article > p:not(.workflow-kicker),
  .workflow-points li {
    font-size: 16px;
  }

  .workflow-points {
    padding: 28px 24px;
  }

  .workflow-points h2 {
    font-size: 42px;
  }

  .profile-flow-button {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .flow-hero {
    min-height: 74vh;
    padding: 138px 24px 72px;
  }

  .flow-hero h1 {
    font-size: 52px;
  }

  .flow-hero-content > p:not(.section-label) {
    font-size: 17px;
  }

  .flow-thread-head {
    margin-bottom: 44px;
    text-align: left;
  }

  .flow-thread-head h2 {
    font-size: 48px;
  }

  .flow-thread {
    gap: 24px;
  }

  .flow-thread::before {
    left: 17px;
  }

  .flow-step-card {
    width: auto;
    min-height: 0;
    margin-left: 34px;
    padding: 24px;
  }

  .flow-step-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .flow-step-icon {
    grid-column: auto;
    grid-row: auto;
    width: 66px;
    height: 66px;
  }

  .flow-step-icon img {
    width: 52px;
    height: 52px;
  }

  .flow-step-card:nth-child(odd),
  .flow-step-card:nth-child(even) {
    justify-self: stretch;
  }

  .flow-step-card::before {
    left: -34px;
    right: auto;
    width: 34px;
  }

  .flow-step-card::after {
    left: -43px;
    right: auto;
  }

  .flow-step-number {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    font-size: 46px;
  }

  .flow-step-link > div {
    grid-column: auto;
    grid-row: auto;
  }

  .image-stack {
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    height: 480px;
  }

  .image-stack::before {
    inset: 34px -32px -42px 18px;
    border-radius: 32px;
    filter: blur(48px);
    opacity: .76;
    transform: translate3d(12px, 30px, 0);
  }

  .stack-large {
    inset: 0;
    width: 100%;
    height: 340px;
  }

  .stack-small.top {
    top: 270px;
    left: 0;
    width: 48%;
  }

  .stack-small.bottom {
    right: 0;
    bottom: 0;
    width: 48%;
  }

  .steps article {
    min-height: 0;
    margin-top: 0 !important;
    animation-name: processTileIn !important;
  }

  .steps::before {
    inset: 16px -24px -30px -24px;
    border-radius: 26px;
    filter: blur(38px);
    opacity: .46;
    transform: translate3d(8px, 22px, 0);
  }

  .process-card {
    min-height: 132px;
  }

  .portfolio-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .portfolio-all-link {
    justify-self: start;
  }

  .portfolio article {
    width: 310px;
    min-height: 330px;
  }

  .portfolio img {
    height: 100%;
  }

  .portfolio article p {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .portfolio-progress {
    width: calc(100% - 48px);
  }

  .references-hero {
    padding: 138px 24px 64px;
  }

  .subpage-home-back {
    top: 82px;
    left: 24px;
  }

  .references-hero h1 {
    font-size: 58px;
  }

  .references-hero-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .reference-detail,
  .reference-collection {
    width: auto;
    padding: 64px 24px 86px;
  }

  .reference-detail-head,
  .reference-project-copy {
    grid-template-columns: 1fr;
  }

  .reference-detail-head > p:not(.section-label) {
    justify-self: start;
    text-align: left;
  }

  .reference-gallery-main {
    min-height: 62vw;
  }

  .reference-project-copy {
    gap: 28px;
    padding: 28px;
  }

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

  .reference-project-copy aside {
    min-height: 0;
  }

  .reference-project-notice {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .reference-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .reference-card {
    min-height: 360px;
  }

  .advantages {
    padding-top: clamp(42px, 8vw, 72px);
    padding-bottom: clamp(48px, 8vw, 76px);
  }

  .advantages-media {
    position: relative;
    top: auto;
    align-content: start;
    gap: clamp(18px, 5vw, 28px);
    min-height: 0;
    grid-template-rows: none;
    padding: 14px;
    background: rgba(255, 255, 255, .96);
  }

  .advantages-frame {
    width: min(100%, 560px);
    height: auto;
    aspect-ratio: 16 / 10;
    max-width: 100%;
  }

  .quote > img {
    position: relative;
    top: auto;
    height: 420px;
  }

  .advantages-photo {
    height: 100%;
  }

  .advantages-watermark {
    top: clamp(14px, 3vw, 18px);
    left: clamp(14px, 3vw, 18px);
    width: clamp(74px, 18%, 92px);
    padding: 6px 8px;
    border-radius: 8px;
    opacity: .28;
  }

  .advantages-content,
  .quote > div {
    position: relative;
    z-index: 2;
    min-height: 0;
    padding: clamp(30px, 7vw, 44px) 24px clamp(44px, 8vw, 60px);
  }

  .advantages-content {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(32, 38, 32, .12);
    box-shadow: 0 22px 56px rgba(0, 47, 60, .14);
  }

  .advantages-content .panel-line.vertical,
  .advantages-content .panel-line.horizontal,
  .quote .panel-line.vertical,
  .quote .panel-line.horizontal {
    left: 18px;
    bottom: 24px;
  }

  .scroll-scene :is(.section-label, h2, .lead, .split-copy p:not(.section-label), .contact-copy p, blockquote, .text-link) {
    transform:
      translate3d(0, calc(var(--motion-out) * 20px), 0)
      scale(calc(.99 + (var(--motion-focus) * .01)));
  }

  .scroll-scene .section-label,
  .split.scroll-scene .split-copy,
  .split.scroll-scene .image-stack,
  .process.scroll-scene .process-content,
  .portfolio.scroll-scene .portfolio-head,
  .advantages.scroll-scene .advantages-content,
  .quote.scroll-scene > div,
  .contact-section.scroll-scene .contact-copy,
  .contact-section.scroll-scene .contact-form {
    transform: translate3d(0, calc(var(--motion-out) * 18px), 0);
  }

  .split.scroll-scene .stack-large,
  .split.scroll-scene .stack-small.top,
  .split.scroll-scene .stack-small.bottom,
  .advantages.scroll-scene .advantages-media,
  .quote.scroll-scene > img {
    transform:
      translate3d(0, calc(var(--motion-out) * 14px), 0)
      scale(calc(.985 + (var(--motion-focus) * .015)));
  }

  .advantages.scroll-scene .advantages-media,
  .advantages.scroll-scene .advantages-content {
    transform: none;
  }

  .footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    align-items: start;
    padding: 26px 24px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 12px;
  }

  .footer-brand p {
    max-width: none;
    text-align: left;
  }

  .footer-info div {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 4px;
    min-height: 0;
  }

  .footer-info {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    grid-column: 1;
    align-self: end;
  }

  .footer-legal a {
    width: 100%;
    justify-content: center;
  }

  .footer-credit {
    justify-self: stretch;
    margin-top: 0;
    font-size: 9px;
  }

  .footer-logo {
    width: 66px;
  }

  .footer-stamp {
    grid-column: 2;
    justify-self: end;
    align-self: end;
    margin-right: 0;
    width: 82px;
  }

  .policy-hero {
    min-height: auto;
    padding: 130px 24px 48px;
  }

  .policy-content {
    grid-template-columns: 1fr;
    padding: 0 24px 72px;
  }

  .policy-note {
    display: grid;
  }
}

@media (max-width: 1020px) {
  .process .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process .steps article {
    min-height: 138px;
    margin-top: 0 !important;
  }

  .process .process-card {
    min-height: 138px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .about-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: stretch;
    padding-left: clamp(36px, 5vw, 64px);
    padding-right: clamp(36px, 5vw, 64px);
  }

  .about-editorial .about-copy p:not(.section-label) {
    font-size: clamp(17px, 1.2vw, 19px);
    line-height: 1.68;
  }

  .about-stat-column {
    align-self: stretch;
    gap: clamp(34px, 5vw, 54px);
  }

  .about-stat-panel {
    min-height: clamp(240px, 32vw, 300px);
    padding: 24px;
  }

  .about-founder-signoff {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
  }

  .about-stat-logo {
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 1024px) {
  .hero {
    color: #fff;
    background: var(--brand-navy);
  }

  .hero-picture {
    display: block;
  }

  .hero-video {
    display: none;
  }

  .references-hero-picture {
    display: block;
    background: var(--brand-navy);
  }

  .references-hero {
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
  }

  .reference-project-page .references-hero {
    min-height: clamp(560px, 74svh, 760px);
    min-height: clamp(560px, 74dvh, 760px);
    padding: calc(var(--safe-top) + 156px) clamp(24px, 5vw, 56px) 96px;
  }

  .reference-project-page .references-hero h1 {
    font-size: clamp(44px, 8vw, 76px);
    line-height: .9;
  }

  .references-hero-picture img {
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: none;
  }

  .references-hero::after {
    opacity: .16;
  }

  .references-hero-copy {
    text-shadow:
      0 4px 12px rgba(0, 0, 0, .72),
      0 18px 42px rgba(0, 0, 0, .58);
  }

  .references-hero-copy > p:not(.section-label) {
    color: rgba(255, 255, 255, .96);
    text-shadow:
      0 3px 10px rgba(0, 0, 0, .72),
      0 12px 28px rgba(0, 0, 0, .54);
  }

  .references-hero-video {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(31, 23, 35, .48), rgba(17, 17, 17, .2) 46%, rgba(20, 20, 20, .68));
  }

  .hero-copy-motion {
    transition-duration: 2.2s;
  }

  .hero-title {
    color: #fff;
    text-shadow:
      0 4px 12px rgba(0, 0, 0, .58),
      0 18px 46px rgba(0, 0, 0, .48);
  }

  .hero-title span {
    transition-duration: 2.2s;
  }

  .hero-title span:nth-child(2) {
    transition-delay: .18s;
  }

  .hero-line,
  .hero-line::after {
    background: #fff;
  }

  .hero-line {
    transition-duration: 1.9s;
    transition-delay: .46s;
  }

  .hero-content p {
    color: #fff;
    text-shadow:
      0 3px 10px rgba(0, 0, 0, .6),
      0 14px 34px rgba(0, 0, 0, .48);
    transition-duration: 2.05s;
    transition-delay: .74s;
  }
}

@media (max-width: 900px) {
  .about-stat-column.is-signoff-anchored .about-founder-signoff {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-bleed-top: max(var(--safe-top), 104px);
  }

  html,
  body {
    min-height: 100svh;
    min-height: 100dvh;
    overflow-x: clip;
  }

  main {
    margin-top: calc(-1 * var(--mobile-bleed-top));
    min-height: 100svh;
    min-height: 100dvh;
  }

  main > section:first-of-type {
    min-height: calc(100svh + var(--mobile-bleed-top));
    min-height: calc(100dvh + var(--mobile-bleed-top));
  }

  .process-bg::before {
    inset: -18px;
    background-size: clamp(46px, 14vw, 60px) auto;
    opacity: .12;
  }

  .process-bg::after {
    inset: -18px;
  }

  .process {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 46px;
  }

  .process-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  main > section:not(:first-of-type) {
    border-radius: 0;
    clip-path: none;
    box-shadow: none;
  }

  main > section:not(:first-of-type) {
    --section-radius: 22px;
    margin-top: calc(-1 * var(--section-overlap));
    overflow: hidden;
    border-radius: var(--section-radius) var(--section-radius) 0 0;
    background-clip: padding-box;
    clip-path: inset(0 round var(--section-radius) var(--section-radius) 0 0);
    box-shadow:
      0 -16px 36px rgba(0, 47, 60, .1),
      inset 0 1px 0 rgba(255, 255, 255, .18);
  }

  .vision.split {
    padding-top: 64px;
  }

  .vision .split-copy {
    padding-top: 0;
  }

  .about-editorial {
    padding-bottom: clamp(76px, 20vw, 84px);
  }

  .about-editorial .about-stat-column {
    gap: clamp(28px, 8vw, 40px);
  }

  .about-editorial .about-founder-signoff {
    display: none;
  }

  .about-editorial .about-stat-logo {
    width: 100%;
    max-width: 100%;
  }

  body::before {
    content: none;
    display: none;
  }

  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    top: calc(18px + var(--safe-top));
    right: calc(78px + var(--safe-right));
  }

  .topbar.brand-docked .menu-toggle,
  .topbar.compact .menu-toggle,
  .menu-toggle {
    top: calc(18px + var(--safe-top));
    right: calc(18px + var(--safe-right));
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: min(132px, calc(100vw - 174px));
  }

  .topbar .top-nav,
  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    top: calc(78px + var(--safe-top));
    left: calc(18px + var(--safe-left));
    right: calc(18px + var(--safe-right));
    width: auto;
    height: 46px;
    padding: 5px 7px;
    background: rgba(32, 38, 32, .18);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
    backdrop-filter: blur(7px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-nav a {
    min-height: 30px;
    padding: 0 12px;
    font-size: 8px;
  }

  .top-nav .top-nav-logo {
    width: 38px;
    min-height: 30px;
    margin-right: 6px;
  }

  .hero-mobile-logo {
    display: block;
    width: clamp(218px, 59vw, 292px);
    height: auto;
    margin: -50px auto 18px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-2px);
    filter:
      drop-shadow(0 0 7px rgba(255, 255, 255, .86))
      drop-shadow(0 0 18px rgba(255, 255, 255, .62))
      drop-shadow(0 0 38px rgba(255, 255, 255, .34))
      drop-shadow(0 9px 13px rgba(0, 0, 0, .42))
      drop-shadow(0 22px 34px rgba(0, 0, 0, .34));
    transition:
      opacity 2.65s ease .32s,
      transform 2.65s ease .32s;
  }

  .hero.is-title-ready .hero-mobile-logo {
    opacity: 1;
    transform: translateY(-26px);
  }

  .top-nav .top-nav-logo img {
    width: 32px;
  }

  .top-nav-social {
    margin-left: 4px;
    padding-left: 2px;
    gap: 6px;
  }

  .top-nav-social a {
    flex: 0 0 36px;
    width: 36px;
    min-height: 36px;
    color: rgba(255, 255, 255, .62);
  }

  .top-nav-social a svg {
    flex: 0 0 22px;
    min-width: 22px;
    width: 22px;
    height: 22px;
  }

  .subpage-home-back {
    top: calc(132px + var(--safe-top));
    left: calc(18px + var(--safe-left));
    min-height: 30px;
    padding: 0 11px 0 9px;
    font-size: 7.5px;
  }

  .about-hero {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    align-items: end;
    padding: calc(var(--safe-top) + 152px) 22px 72px;
  }

  .about-hero-media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .5) 72%, rgba(0, 0, 0, .9) 100%),
      var(--mobile-image, var(--image)) 0% center / auto 98% no-repeat;
    transform-origin: 0% center;
  }

  .about-hero::after {
    display: none;
  }

  .about-hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 360px);
    max-width: none;
  }

  .about-hero-person {
    gap: 5px;
    margin-bottom: 34px;
  }

  .about-hero-person strong {
    font-size: clamp(27px, 7.4vw, 34px);
  }

  .about-hero-person span {
    font-size: 9px;
    letter-spacing: .22em;
  }

  .about-hero .section-label {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: .34em;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 11vw, 52px);
    line-height: .93;
  }

  .about-hero-content > p:not(.section-label) {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.48;
  }

  .workflow-hero,
  .flow-hero,
  .references-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(var(--safe-top) + 152px);
    padding-bottom: 72px;
  }

  .workflow-page .workflow-hero {
    min-height: clamp(520px, 72svh, 680px);
    min-height: clamp(520px, 72dvh, 680px);
    aspect-ratio: auto;
    padding: calc(var(--safe-top) + 152px) 18px 72px;
  }

  .workflow-page .workflow-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: .92;
  }

  .workflow-page .workflow-hero-content > p:not(.section-label) {
    display: block;
    max-width: 320px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .workflow-detail {
    gap: 32px;
    padding: 52px 18px 92px;
  }

  .workflow-nav {
    gap: 10px;
  }

  .workflow-nav .section-label {
    position: relative;
    top: -12px;
    margin-bottom: 4px;
  }

  .flow-page .flow-hero {
    min-height: clamp(620px, 82svh, 760px);
    min-height: clamp(620px, 82dvh, 760px);
    padding-top: calc(var(--safe-top) + 156px);
    padding-bottom: 82px;
  }

  .flow-page .flow-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: .94;
  }

  .flow-page .flow-hero-content > p:not(.section-label) {
    max-width: 330px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .reference-project-page .references-hero {
    min-height: clamp(620px, 84svh, 760px);
    min-height: clamp(620px, 84dvh, 760px);
    aspect-ratio: auto;
    padding: calc(var(--safe-top) + 152px) 24px 96px;
  }

  .reference-project-page .references-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: .92;
  }

  .reference-project-page .references-hero-copy > p:not(.section-label) {
    display: none;
  }

  .references-page:not(.reference-project-page) .references-hero-copy {
    width: min(100%, 345px);
    min-width: 0;
    max-width: 100%;
  }

  .references-page:not(.reference-project-page) .references-hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 56px);
  }

  .flow-thread-section {
    padding: 106px 18px 116px;
  }

  .flow-thread-head {
    margin-bottom: 48px;
    text-align: left;
  }

  .flow-thread-head h2 {
    font-size: clamp(46px, 15vw, 62px);
    line-height: .96;
  }

  .flow-thread {
    gap: 34px;
  }

  .flow-thread::before {
    left: 12px;
    top: 34px;
    bottom: 34px;
  }

  .flow-step-card {
    margin-left: 28px;
    padding: 26px 20px 28px;
    border-radius: 16px;
  }

  .flow-step-card::before {
    left: -28px;
    right: auto;
    width: 28px;
  }

  .flow-step-card::after {
    left: -37px;
    right: auto;
  }

  .flow-step-link {
    gap: 18px;
  }

  .flow-step-number {
    font-size: 48px;
  }

  .flow-step-card h3 {
    font-size: 29px;
  }

  .flow-step-card p {
    font-size: 15px;
    line-height: 1.62;
  }

  .process.scroll-scene .process-content,
  .process.scroll-scene .steps article,
  .process.scroll-scene .steps article:nth-child(n) {
    transform: none;
  }

  .process .steps {
    grid-template-columns: 1fr;
  }

  .process .steps article,
  .process .process-card {
    min-height: 0;
  }

  .portfolio-window {
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .portfolio-arrow {
    display: none;
  }

  .portfolio-slider.is-touch-scroll .portfolio-track {
    cursor: grab;
  }

  .portfolio-slider.is-touch-scroll.is-dragging .portfolio-track {
    cursor: grabbing;
  }

  .portfolio article {
    width: 280px;
    min-height: 310px;
  }

  .contact-section {
    scroll-margin-top: calc(var(--safe-top) + 230px);
  }

  .footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .footer-info,
  .footer-legal,
  .footer-credit {
    grid-column: 1 / -1;
  }

  .footer-stamp {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 66px;
    transform: translateY(-4px);
  }

  .tile-content {
    padding: 32px 26px 48px;
  }

  .portfolio h3 {
    font-size: 31px;
  }

  .references-hero h1,
  .reference-detail-head h2 {
    font-size: 48px;
  }

  .reference-gallery-main {
    min-height: 72vw;
  }

  .reference-gallery-control {
    width: 42px;
    height: 42px;
  }

  .reference-thumbs {
    grid-auto-columns: 92px;
  }

  .reference-thumbs button {
    width: 92px;
    height: 62px;
  }

  .reference-project-copy {
    padding: 24px 20px;
  }

  .reference-feature-list li {
    min-height: 0;
  }

  .reference-project-notice {
    padding: 22px 20px;
  }

  .reference-documents a {
    width: 100%;
    max-width: none;
  }

  .reference-collection {
    grid-template-columns: 1fr;
  }

  .reference-card {
    min-height: 340px;
  }

  .advantages-watermark {
    top: 14px;
    left: 14px;
    width: 76px;
    padding: 5px 7px;
    opacity: .24;
  }

  .advantages-content .panel-line.vertical {
    left: 24px;
    bottom: 26px;
    height: 42px;
  }

  .advantages-content .panel-line.horizontal {
    left: 24px;
    bottom: 26px;
    width: 76px;
  }
}

@media (max-width: 520px) {
  .footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 24px 20px 18px;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 0;
  }

  .footer-info div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-top: 5px;
  }

  .footer-info {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .footer-legal,
  .footer-credit {
    grid-column: 1 / -1;
  }

  .footer-stamp {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 66px;
  }
}

/* Unified monochrome premium background system */
:root {
  --deep: var(--brand-navy);
  --green: var(--brand-navy);
  --stone: #e7e7e7;
  --mist: #f2f2f2;
  --pale: #f7f7f7;
  --premium-page: #f2f2f2;
  --premium-band: #e7e7e7;
  --premium-band-soft: #fafafa;
  --premium-panel: rgba(255, 255, 255, .7);
  --premium-panel-solid: #ffffff;
  --premium-line: rgba(24, 32, 56, .1);
  --premium-shadow: rgba(24, 32, 56, .08);
  --premium-charcoal: var(--brand-navy);
}

body,
body[data-tone="teal"],
body[data-tone="mist"],
body[data-tone="stone"] {
  background: var(--premium-page);
}

body[data-tone="dark"] {
  background: var(--premium-charcoal);
}

main > section[data-tone="mist"],
main > section[data-tone="stone"],
main > section[data-tone="teal"] {
  background-color: var(--premium-band);
}

main > section[data-tone="dark"] {
  background-color: var(--premium-charcoal);
}

.intro,
.numbers,
.portfolio,
.advantages,
.contact-section,
.about-main,
.about-editorial,
.about-split,
.about-inspection,
.workflow-main,
.workflow-detail,
.flow-main,
.flow-thread-section,
.references-main,
.reference-detail,
.reference-collection,
.policy-main,
.policy-hero,
.policy-content {
  color: var(--ink);
  background: var(--premium-band);
}

.intro,
.portfolio,
.about-editorial,
.workflow-detail,
.reference-detail,
.policy-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, 0)),
    var(--premium-band-soft);
}

.numbers,
.vision,
.about-split,
.about-inspection,
.flow-thread-section,
.reference-collection,
.policy-content {
  background: var(--premium-band);
}

.profile-redesign,
.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(255, 255, 255, .08)),
    var(--premium-band);
}

.portfolio-intro,
.portfolio-progress,
.portfolio-all-link {
  color: rgba(32, 38, 32, .72);
}

.portfolio-all-link {
  background: rgba(255, 255, 255, .42);
  border-color: rgba(32, 38, 32, .12);
  box-shadow: 0 14px 34px rgba(32, 38, 32, .06);
}

.portfolio-all-link:hover,
.portfolio-all-link:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(32, 38, 32, .18);
}

.portfolio-progress-track {
  background: rgba(32, 38, 32, .18);
}

.portfolio-progress-track span {
  background: linear-gradient(90deg, rgba(32, 38, 32, .68), rgba(0, 119, 136, .68));
  box-shadow: none;
}

.advantages {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .34),
    inset 0 -1px rgba(32, 38, 32, .08);
}

.advantages::after {
  background: linear-gradient(180deg, rgba(32, 38, 32, 0), rgba(32, 38, 32, .04));
}

.advantages-media,
.advantages-content,
.contact-form,
.policy-card,
.policy-note,
.workflow-nav a,
.workflow-pager a,
.flow-step-card,
.reference-project-copy,
.reference-project-notice,
.reference-documents a,
.reference-feature-list li,
.reference-back,
.contact-preview-dialog {
  background: var(--premium-panel);
  border-color: var(--premium-line);
  box-shadow: 0 22px 62px var(--premium-shadow);
}

.contact-form input,
.contact-form textarea,
.contact-radio-group label,
.file-upload-control,
.contact-preview-list div,
.contact-preview-secondary {
  background: rgba(255, 255, 255, .88);
  border-color: var(--premium-line);
}

.about-control {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, 0)),
    var(--premium-band);
}

.about-control .section-label,
.about-control .about-control-copy p,
.about-control-copy .statement {
  color: rgba(32, 38, 32, .76);
}

.about-control-copy::before,
.about-control-copy .statement {
  border-color: rgba(32, 38, 32, .16);
}

.about-stat-panel,
.about-summary,
.workflow-points,
.reference-project-copy aside,
.reference-card-placeholder,
.advantages-note {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0)),
    var(--premium-charcoal);
  box-shadow: 0 26px 72px rgba(32, 38, 32, .16);
}

.about-final,
.footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .08)),
    var(--premium-charcoal);
}

.footer {
  color: rgba(255, 255, 255, .74);
}

.footer::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  box-shadow: none;
}

.footer::after {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .08);
}

.footer-logo,
.footer-legal a {
  background: rgba(255, 255, 255, .9);
}

.footer-brand p,
.footer-info p,
.footer-credit,
.footer-info a,
.footer-legal a {
  color: rgba(255, 255, 255, .68);
}

.footer-info span,
.footer-legal span {
  color: rgba(255, 255, 255, .76);
}

.footer-info div,
.footer-legal,
.footer-credit {
  border-color: rgba(255, 255, 255, .14);
}

.footer-legal a {
  color: var(--premium-charcoal);
}

.about-hero,
.workflow-hero,
.flow-hero,
.references-hero {
  background: var(--premium-charcoal);
}

.about-hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .14) 62%, rgba(0, 0, 0, .2) 100%),
    linear-gradient(180deg, rgba(32, 38, 32, .08), rgba(32, 38, 32, .72)),
    var(--image) 74% center / cover no-repeat;
}

.workflow-hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(32, 38, 32, .34)),
    var(--image) center/cover;
}

.flow-hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(32, 38, 32, .38)),
    url("assets/sopte-1.jpg") center/cover;
}

.references-hero {
  background: var(--premium-charcoal);
}

.references-hero::after {
  opacity: .28;
}

.references-hero-picture,
.reference-gallery-main,
.reference-thumbs button,
.reference-card {
  background: var(--premium-charcoal);
}

.reference-year-card {
  background: rgba(255, 255, 255, .68);
  border-color: var(--premium-line);
  box-shadow: 0 16px 38px rgba(32, 38, 32, .06);
}

.cert-popover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0)),
    var(--premium-charcoal);
}

.cert-popover::after {
  background: var(--premium-charcoal);
}

.cert-strip,
.contact-preview-note {
  background: rgba(255, 255, 255, .58);
  border-color: var(--premium-line);
}

.section-label,
.footer-info span,
.footer-legal span {
  color: var(--teal);
}

.about-final .section-label,
.about-final p,
.about-final h2,
.footer .footer-info span,
.footer .footer-legal span {
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 1180px) {
  .profile-redesign {
    grid-template-columns: 1fr;
  }

  .profile-redesign .split-copy {
    max-width: 860px;
  }

  .profile-redesign .image-stack {
    justify-self: center;
    width: min(760px, 100%);
  }
}

@media (max-width: 900px) {
  .vision.profile-redesign {
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .vision.profile-redesign .split-copy {
    width: min(100%, 700px);
    padding-top: 36px;
    padding-bottom: 8px;
  }

  .profile-redesign .profile-body {
    text-align: left;
  }

  .profile-redesign .profile-highlights {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .profile-redesign .split-copy h2 {
    font-size: 44px;
  }

  .profile-redesign .profile-body {
    gap: 15px;
    margin-top: 26px;
    padding-top: 24px;
  }

  .profile-redesign .profile-body p {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .profile-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .profile-highlight {
    min-height: 96px;
    padding: 17px 18px;
  }

  .profile-highlight strong {
    font-size: 34px;
  }
}

/* Strict elegant black/white block alternation */
:root {
  --bw-black: var(--brand-navy);
  --bw-white: #ffffff;
  --bw-panel: #f3f3f3;
  --bw-panel-dark: rgba(255, 255, 255, .08);
  --bw-line: rgba(24, 32, 56, .11);
  --bw-line-dark: rgba(255, 255, 255, .14);
}

main > section:nth-of-type(odd) {
  color: #fff;
  background: var(--bw-black) !important;
}

main > section:nth-of-type(even) {
  color: var(--ink);
  background: var(--bw-white) !important;
}

main > section:nth-of-type(odd):not(:first-of-type) {
  box-shadow:
    0 -22px 58px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

main > section:nth-of-type(even):not(:first-of-type) {
  box-shadow:
    0 -22px 58px rgba(0, 0, 0, .08),
    inset 0 1px 0 rgba(15, 17, 16, .08);
}

main > section:nth-of-type(odd) :is(h1, h2, h3, blockquote),
main > section:nth-of-type(odd) :is(.section-label, .text-link) {
  color: #fff;
}

main > section:nth-of-type(odd) :is(p, li),
main > section:nth-of-type(odd) :is(.lead, .portfolio-intro, .contact-lead, .workflow-kicker) {
  color: rgba(255, 255, 255, .74);
}

main > section:nth-of-type(odd) .section-label {
  color: rgba(255, 255, 255, .58);
}

main > section:nth-of-type(even) :is(h1, h2, h3, blockquote),
main > section:nth-of-type(even) :is(.section-label, .text-link) {
  color: var(--ink);
}

main > section:nth-of-type(even) :is(p, li),
main > section:nth-of-type(even) :is(.lead, .portfolio-intro, .contact-lead, .workflow-kicker) {
  color: rgba(17, 19, 18, .72);
}

main > section:nth-of-type(even) .section-label {
  color: rgba(17, 19, 18, .58);
}

.hero,
.about-hero,
.workflow-hero,
.flow-hero,
.references-hero {
  color: #fff;
  background: var(--bw-black) !important;
}

.hero :is(h1, h2, h3, p),
.about-hero :is(h1, h2, h3, p),
.workflow-hero :is(h1, h2, h3, p),
.flow-hero :is(h1, h2, h3, p),
.references-hero :is(h1, h2, h3, p),
.hero .section-label,
.about-hero .section-label,
.workflow-hero .section-label,
.flow-hero .section-label,
.references-hero .section-label {
  color: #fff;
}

main > section:nth-of-type(even) :is(
  .advantages-media,
  .advantages-content,
  .workflow-nav a,
  .workflow-pager a,
  .flow-step-card,
  .reference-project-copy,
  .reference-project-notice,
  .reference-documents a,
  .reference-feature-list li,
  .reference-back,
  .policy-card,
  .policy-note,
  .profile-highlight,
  .cert-strip
) {
  color: var(--ink);
  background: var(--bw-panel);
  border-color: var(--bw-line);
  box-shadow: 0 18px 48px rgba(15, 17, 16, .07);
}

main > section:nth-of-type(odd) :is(
  .about-stat-panel,
  .about-summary,
  .advantages-media,
  .advantages-content,
  .workflow-points,
  .reference-project-copy,
  .reference-project-notice,
  .reference-documents a,
  .reference-feature-list li,
  .reference-back,
  .policy-card,
  .policy-note,
  .profile-highlight,
  .cert-strip
) {
  color: #fff;
  background: var(--bw-panel-dark);
  border: 1px solid var(--bw-line-dark);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .2);
}

main > section:nth-of-type(odd) :is(
  .about-stat-panel,
  .about-summary,
  .advantages-media,
  .advantages-content,
  .workflow-points,
  .reference-project-copy,
  .reference-project-notice,
  .reference-documents a,
  .reference-feature-list li,
  .reference-back,
  .policy-card,
  .policy-note,
  .profile-highlight,
  .cert-strip
) :is(h2, h3, strong, span) {
  color: #fff;
}

main > section:nth-of-type(odd) :is(
  .about-stat-panel,
  .about-summary,
  .advantages-media,
  .advantages-content,
  .workflow-points,
  .reference-project-copy,
  .reference-project-notice,
  .reference-documents a,
  .reference-feature-list li,
  .reference-back,
  .policy-card,
  .policy-note,
  .profile-highlight,
  .cert-strip
) :is(p, li, small) {
  color: rgba(255, 255, 255, .72);
}

.portfolio .tile-content,
.portfolio .tile-content *,
.reference-card-copy,
.reference-card-copy *,
.reference-empty-media,
.reference-empty-media *,
.reference-gallery-count {
  color: #fff !important;
}

.portfolio-all-link,
main > section:nth-of-type(odd) .text-link {
  color: var(--bw-black);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

main > section:nth-of-type(even) .text-link,
.about-more-button:not(.light) {
  color: #fff;
  background: var(--bw-black);
  border: 1px solid var(--bw-black);
  box-shadow: 0 16px 34px rgba(15, 17, 16, .18);
}

.portfolio-all-link:hover,
.portfolio-all-link:focus-visible,
main > section:nth-of-type(odd) .text-link:hover,
main > section:nth-of-type(odd) .text-link:focus-visible {
  color: var(--bw-black);
  background: #f2f2f2;
  border-color: #fff;
}

main > section:nth-of-type(even) .text-link:hover,
main > section:nth-of-type(even) .text-link:focus-visible,
.about-more-button:not(.light):hover,
.about-more-button:not(.light):focus-visible {
  color: var(--bw-black);
  background: #fff;
  border-color: var(--bw-black);
}

.contact-form,
.contact-preview-dialog {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow: 0 28px 84px rgba(0, 0, 0, .3);
}

.contact-form :is(label, legend, p, span, strong),
.contact-preview-dialog :is(h3, p, span, strong) {
  color: var(--ink);
}

.contact-form input,
.contact-form textarea,
.contact-radio-group label,
.file-upload-control,
.contact-preview-list div,
.contact-preview-note,
.contact-preview-secondary {
  color: var(--ink);
  background: #f4f4f4;
  border-color: rgba(15, 17, 16, .12);
}

.contact-form button,
.contact-preview-primary,
.file-upload-button {
  color: #fff;
  background: var(--bw-black);
  border: 1px solid var(--bw-black);
  box-shadow: 0 16px 34px rgba(15, 17, 16, .22);
}

.contact-form button:hover,
.contact-form button:focus-visible,
.contact-preview-primary:hover,
.contact-preview-primary:focus-visible,
.file-upload-control:hover .file-upload-button,
.file-upload-control:focus-within .file-upload-button {
  color: var(--bw-black);
  background: #fff;
  border-color: var(--bw-black);
}

.numbers div {
  border-top-color: rgba(255, 255, 255, .24);
}

.numbers div::before {
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .1);
}

.numbers strong {
  color: #fff;
}

.numbers span {
  color: rgba(255, 255, 255, .66);
}

.portfolio-progress {
  color: rgba(255, 255, 255, .82);
}

.portfolio-progress-track {
  background: rgba(255, 255, 255, .22);
}

.portfolio-progress-track span {
  background: #fff;
  box-shadow: none;
}

.about-stat-panel,
.about-summary,
.workflow-points,
.reference-project-copy aside,
.advantages-note,
.reference-card-placeholder {
  color: #fff !important;
  background: var(--bw-black) !important;
  border: 1px solid var(--bw-line-dark);
}

.about-stat-panel :is(strong, span, p),
.about-summary :is(strong, span, p),
.workflow-points :is(h2, h3, p, li, strong, span),
.reference-project-copy aside :is(strong, span, p),
.advantages-note,
.advantages-note :is(strong, span, p),
.reference-card-placeholder,
.reference-card-placeholder :is(strong, span, p) {
  color: #fff !important;
}

.about-stat-panel p,
.about-summary p,
.workflow-points li,
.reference-project-copy aside p,
.advantages-note {
  color: rgba(255, 255, 255, .78) !important;
}

.about-final .about-more-button.light {
  color: #fff;
  background: var(--bw-black);
  border: 1px solid var(--bw-black);
}

.about-final .about-more-button.light:hover,
.about-final .about-more-button.light:focus-visible {
  color: var(--bw-black);
  background: #fff;
  border-color: var(--bw-black);
}

/* Stronger black and white block rhythm */
.intro,
.vision,
.advantages,
.about-editorial,
.about-control,
.workflow-detail,
.flow-thread-section,
.reference-detail,
.reference-collection,
.policy-hero,
.policy-content {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 246, 246, .92), rgba(255, 255, 255, 1) 30%),
    #fff;
}

.numbers,
.portfolio,
.contact-section,
.about-split,
.about-inspection {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    var(--brand-navy);
}

.intro .section-label,
.vision .section-label,
.advantages .section-label,
.about-editorial .section-label,
.about-control .section-label,
.workflow-detail .section-label,
.flow-thread-section .section-label,
.reference-detail .section-label,
.reference-collection .section-label,
.policy-hero .section-label,
.policy-content .section-label {
  color: #5b6462;
}

.numbers .section-label,
.portfolio .section-label,
.contact-section .section-label,
.about-split .section-label,
.about-inspection .section-label {
  color: rgba(255, 255, 255, .62);
}

.numbers strong,
.numbers span,
.portfolio-head h2,
.portfolio-intro,
.portfolio-progress,
.contact-copy h2,
.contact-copy .contact-lead,
.contact-details p,
.contact-details strong,
.contact-details a,
.about-split h2,
.about-split .about-copy p:not(.section-label),
.about-inspection h2,
.about-inspection-copy p {
  color: inherit;
}

.numbers span,
.portfolio-intro,
.portfolio-progress,
.contact-copy .contact-lead,
.contact-details p,
.about-split .about-copy p:not(.section-label),
.about-inspection-copy p {
  color: rgba(255, 255, 255, .74);
}

.numbers div {
  border-top-color: rgba(255, 255, 255, .22);
}

.numbers div::before {
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .1);
}

.portfolio-all-link,
.about-more-button.light {
  color: var(--brand-navy);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .56);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.portfolio-all-link:hover,
.portfolio-all-link:focus-visible,
.about-more-button.light:hover,
.about-more-button.light:focus-visible {
  color: var(--brand-navy);
  background: #fff;
  border-color: #fff;
}

.portfolio-progress-track {
  background: rgba(255, 255, 255, .22);
}

.portfolio-progress-track span {
  background: #fff;
}

.portfolio article {
  background: #f2f2f2;
}

.advantages-media,
.advantages-content,
.workflow-nav a,
.workflow-pager a,
.flow-step-card,
.reference-project-copy,
.reference-project-notice,
.reference-documents a,
.reference-feature-list li,
.reference-back,
.policy-card,
.policy-note {
  background: #f4f4f4;
  border-color: rgba(17, 19, 18, .1);
  box-shadow: 0 18px 54px rgba(17, 19, 18, .07);
}

.about-split .about-image-frame,
.about-inspection .about-summary {
  box-shadow: 0 28px 78px rgba(0, 0, 0, .26);
}

.about-inspection .about-summary,
.about-split .about-stat-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.about-inspection .about-summary p {
  color: rgba(255, 255, 255, .78);
}

.about-control .about-control-copy p,
.about-control-copy .statement,
.about-control .section-label {
  color: rgba(17, 19, 18, .76);
}

.cert-strip,
.contact-preview-note,
.profile-highlight,
.reference-year-card {
  background: #f1f1f1;
  border-color: rgba(17, 19, 18, .1);
}

.profile-redesign .profile-body p,
.advantages-lead,
.advantages-list li,
.advantages-note,
.workflow-article > p:not(.workflow-kicker),
.flow-step-card p,
.reference-project-copy p,
.reference-project-notice p,
.policy-card p,
.policy-note {
  color: rgba(17, 19, 18, .72);
}

.workflow-points,
.reference-project-copy aside,
.advantages-note {
  color: #fff;
  background: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, .08);
}

.workflow-points li,
.reference-project-copy aside p,
.advantages-note {
  color: rgba(255, 255, 255, .78);
}

.contact-form {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 28px 78px rgba(0, 0, 0, .28);
}

.contact-form label,
.contact-choice-group legend {
  color: rgba(17, 19, 18, .86);
}

.contact-form input,
.contact-form textarea,
.contact-radio-group label,
.file-upload-control {
  color: var(--ink);
  background: #f6f6f6;
  border-color: rgba(17, 19, 18, .12);
}

.contact-form input:focus,
.contact-form textarea:focus,
.file-upload-control:focus-within {
  background: #fff;
  border-color: rgba(17, 19, 18, .36);
  box-shadow: 0 0 0 4px rgba(17, 19, 18, .08);
}

.contact-form button,
.contact-preview-primary,
.file-upload-button,
.about-more-button,
.availability-card a {
  color: #fff;
  background: var(--brand-navy);
  border: 1px solid var(--brand-navy);
  box-shadow: 0 16px 34px rgba(17, 19, 18, .22);
}

.contact-form button:hover,
.contact-form button:focus-visible,
.contact-preview-primary:hover,
.contact-preview-primary:focus-visible,
.file-upload-control:hover .file-upload-button,
.file-upload-control:focus-within .file-upload-button,
.about-more-button:hover,
.about-more-button:focus-visible,
.availability-card a:hover,
.availability-card a:focus-visible {
  color: var(--brand-navy);
  background: #fff;
  border-color: var(--brand-navy);
  box-shadow: 0 18px 42px rgba(17, 19, 18, .18);
}

.contact-radio-group label:has(input:checked) {
  color: var(--brand-navy);
  background: #fff;
  border-color: rgba(17, 19, 18, .38);
  box-shadow: 0 0 0 4px rgba(17, 19, 18, .08);
}

.contact-form button:focus-visible,
.contact-preview-primary:focus-visible,
.about-more-button:focus-visible {
  outline: 3px solid rgba(17, 19, 18, .2);
  outline-offset: 4px;
}

.workflow-nav a:hover,
.workflow-nav a.active,
.workflow-pager a:hover,
.reference-documents a:hover span,
.reference-documents a:focus-visible span {
  color: #fff;
  background: var(--brand-navy);
}

.reference-documents a span,
.flow-step-icon {
  background: var(--brand-navy);
}

.footer,
.about-final {
  background: var(--brand-navy);
}

.contact-form .file-upload-button,
.contact-form .file-upload-control:hover .file-upload-button,
.contact-form .file-upload-control:focus-within .file-upload-button {
  color: #fff !important;
  background: var(--brand-navy) !important;
  border: 1px solid var(--brand-navy);
  text-shadow: none;
}

@media (max-width: 640px) {
  .about-hero-media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .5) 72%, rgba(0, 0, 0, .9) 100%),
      var(--mobile-image, var(--image)) 0% center / auto 98% no-repeat;
    transform-origin: 0% center;
  }
}

/* Compact link-only footer */
.footer {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 18px !important;
  min-height: 0 !important;
  padding: 12px clamp(20px, 4vw, 56px) 10px !important;
  color: rgba(255, 255, 255, .76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065) 0%, rgba(255, 255, 255, 0) 42%),
    var(--brand-navy) !important;
  border-top: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, .18);
}

.footer::before,
.footer::after {
  display: none !important;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 14px;
  width: auto;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  background: transparent;
  border-color: transparent;
  outline: none;
  transform: translateY(-1px);
}

.footer-logo-mark,
.footer-stamp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0 !important;
  opacity: .66;
}

.footer-logo-mark {
  overflow: visible;
  padding: 5px 7px !important;
  background: rgba(255, 255, 255, .82) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.footer-stamp-mark {
  padding: 0 !important;
  background: transparent !important;
}

.footer-logo {
  width: 62px !important;
  max-width: 100%;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.footer-stamp {
  width: 42px !important;
  height: auto;
  margin: 0 !important;
  justify-self: auto !important;
  align-self: auto !important;
  filter: none !important;
  transform: none !important;
}

.footer-credit {
  flex: 0 1 auto;
  grid-column: auto !important;
  justify-self: center;
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 0 0 18px !important;
  color: rgba(255, 255, 255, .52) !important;
  border-top: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, .14) !important;
  font-size: 8.5px !important;
  font-weight: 750 !important;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 640px) {
  .footer {
    align-items: stretch;
    flex-direction: column;
    gap: 8px !important;
    padding: 12px 16px 11px !important;
  }

  .footer-links {
    display: grid;
    grid-template-columns: max-content max-content minmax(0, 1fr);
    grid-template-areas:
      "logo stamp privacy"
      "logo stamp cookie";
    align-items: center;
    justify-items: start;
    justify-content: start;
    gap: 5px 10px;
    width: 100%;
  }

  .footer-links::after {
    content: none;
  }

  .footer-links a {
    align-self: center;
    justify-content: flex-start;
    min-height: 17px;
    padding: 0;
    font-size: 8.5px;
    letter-spacing: .08em;
    line-height: 1.1;
    text-align: left;
    white-space: nowrap;
  }

  .footer-logo-mark,
  .footer-stamp-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0 !important;
    align-self: center;
  }

  .footer-logo-mark {
    grid-area: logo;
    width: 54px;
    padding: 3px 5px !important;
  }

  .footer-logo {
    width: 42px !important;
  }

  .footer-stamp-mark {
    grid-area: stamp;
    width: 42px;
  }

  .footer-stamp {
    width: 42px !important;
  }

  .footer-links a:nth-of-type(1) {
    grid-area: privacy;
  }

  .footer-links a:nth-of-type(2) {
    grid-area: cookie;
  }

  .footer-credit {
    width: 100% !important;
    max-width: 100%;
    margin: 0 !important;
    padding: 7px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    border-left: 0 !important;
    font-size: 8.2px !important;
    line-height: 1.3;
    text-align: left;
  }
}

/* Glass-like light refraction on blue block backgrounds */
.numbers,
.portfolio,
.contact-section,
.about-split,
.about-inspection,
.about-stat-panel,
.workflow-points,
.reference-project-copy aside,
.advantages-note,
.about-final,
.footer {
  background-color: var(--brand-navy) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.numbers::after,
.portfolio::after,
.contact-section::after,
.about-split::after,
.about-inspection::after,
.about-stat-panel::after,
.workflow-points::after,
.reference-project-copy aside::after,
.advantages-note::after,
.about-final::after,
.footer::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  width: min(54%, 760px);
  z-index: 0;
  display: block !important;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .13) 54%, rgba(255, 255, 255, .035) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 62% 100%);
  mix-blend-mode: screen;
  opacity: .48;
  pointer-events: none;
}

.numbers > *,
.portfolio > *,
.contact-section > *,
.about-split > *,
.about-inspection > *,
.about-stat-panel > *,
.workflow-points > *,
.reference-project-copy aside > *,
.advantages-note > *,
.about-final > *,
.footer > * {
  position: relative;
  z-index: 1;
}

.footer::after {
  width: min(42%, 560px);
  opacity: .3;
}

.advantages-note::after,
.reference-project-copy aside::after,
.workflow-points::after,
.about-stat-panel::after {
  width: min(62%, 520px);
  opacity: .38;
}

@media (max-width: 640px) {
  .numbers::after,
  .portfolio::after,
  .contact-section::after,
  .about-split::after,
  .about-inspection::after,
  .about-stat-panel::after,
  .workflow-points::after,
  .reference-project-copy aside::after,
  .advantages-note::after,
  .about-final::after,
  .footer::after {
    width: 72%;
    opacity: .38;
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 70% 100%);
  }
}

/* Keep interactive text readable on dark blue backgrounds */
:is(.menu-panel, .hero, .numbers, .portfolio, .contact-section, .about-split, .about-inspection, .workflow-points, .reference-project-copy aside, .advantages-note, .about-final, .footer) :is(a, button, .text-link) {
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

:is(.menu-panel, .hero, .numbers, .portfolio, .contact-section, .about-split, .about-inspection, .workflow-points, .reference-project-copy aside, .advantages-note, .about-final, .footer) :is(a:not(.portfolio-all-link):not(.about-more-button), .text-link):hover,
:is(.menu-panel, .hero, .numbers, .portfolio, .contact-section, .about-split, .about-inspection, .workflow-points, .reference-project-copy aside, .advantages-note, .about-final, .footer) :is(a:not(.portfolio-all-link):not(.about-more-button), .text-link):focus-visible {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, .78);
  outline: none;
  text-shadow: 0 0 16px rgba(255, 255, 255, .22);
}

.contact-section .contact-details a {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 -4px -9px;
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, .9) !important;
  text-decoration: none !important;
  transition:
    background-color .26s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    color .24s ease,
    text-shadow .24s ease;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
}

.contact-section .contact-details a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055)),
    rgba(255, 255, 255, .045);
  transition: opacity .26s ease;
  backdrop-filter: blur(10px) saturate(128%);
  -webkit-backdrop-filter: blur(10px) saturate(128%);
}

.contact-section .contact-details a:hover,
.contact-section .contact-details a:focus-visible {
  background-color: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 10px 28px rgba(0, 0, 0, .12);
  color: #fff !important;
  outline: none;
  text-decoration: none !important;
  text-shadow: 0 0 14px rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px) saturate(128%);
  -webkit-backdrop-filter: blur(10px) saturate(128%);
}

.contact-section .contact-details a:hover::before,
.contact-section .contact-details a:focus-visible::before {
  opacity: 1;
}

/* Refined advantages list: calmer typography and no round bullet markers */
.advantages-list {
  gap: 0;
  max-width: 760px;
  border-top: 1px solid rgba(24, 32, 56, .1);
}

.advantages-list li {
  padding: 10px 0 10px 22px;
  color: rgba(24, 32, 56, .7) !important;
  border-bottom: 1px solid rgba(24, 32, 56, .1);
  font-size: clamp(13.5px, .95vw, 16px);
  font-weight: 570;
  line-height: 1.52;
}

.advantages-list li::before {
  top: 1.45em;
  left: 0;
  width: 9px;
  height: 1px;
  background: rgba(0, 47, 60, .46);
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 640px) {
  .advantages-list li {
    padding: 9px 0 9px 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .advantages-list li::before {
    width: 7px;
  }
}

:is(.numbers, .portfolio, .contact-section, .about-split, .about-inspection, .workflow-points, .reference-project-copy aside, .advantages-note, .about-final, .footer) :is(button, .portfolio-all-link, .about-more-button, .availability-card a):hover,
:is(.numbers, .portfolio, .contact-section, .about-split, .about-inspection, .workflow-points, .reference-project-copy aside, .advantages-note, .about-final, .footer) :is(button, .portfolio-all-link, .about-more-button, .availability-card a):focus-visible {
  outline: 3px solid rgba(255, 255, 255, .32);
  outline-offset: 4px;
}

.contact-section :is(.contact-form button, .file-upload-button):hover,
.contact-section :is(.contact-form button, .file-upload-button):focus-visible {
  color: var(--brand-navy) !important;
  background: #fff !important;
  border-color: var(--brand-navy) !important;
  text-shadow: none !important;
}

@media (max-width: 640px) {
  .references-page .references-hero {
    isolation: isolate;
  }

  .references-page .references-hero::after {
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: auto;
    width: 72%;
    display: block;
    background: linear-gradient(102deg, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .13) 54%, rgba(255, 255, 255, .035) 100%);
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 70% 100%);
    mix-blend-mode: screen;
    opacity: .4;
    pointer-events: none;
  }

  .references-page .references-hero-copy {
    z-index: 1;
  }
}

/* Highlight the inspection summary with a calm frosted panel */
.about-inspection .about-summary {
  color: var(--brand-navy) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(217, 230, 235, .92)) !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .84) !important;
}

.about-inspection .about-summary p {
  color: rgba(24, 32, 56, .78) !important;
}

/* Keep the contact form card edge clean on dark backgrounds */
.contact-section .contact-form {
  background-clip: padding-box !important;
  background: #fff !important;
  border: 1px solid #fff !important;
  box-shadow:
    0 0 0 7px #fff,
    0 28px 78px rgba(0, 0, 0, .2) !important;
}

/* Make the SzakiEllenor control section a single text flow with a right-floating badge */
.about-control .about-control-layout {
  display: block !important;
  max-width: 1520px;
  margin: 0 auto;
}

.about-control .about-control-head {
  position: relative !important;
  top: auto !important;
  order: initial !important;
  display: block !important;
  max-width: 1120px;
  min-height: 0 !important;
}

.about-control .about-control-copy {
  display: flow-root;
  order: initial !important;
  max-width: none !important;
  padding: 8px 0 0 !important;
}

.about-control .about-control-copy::before {
  display: none !important;
}

.about-control .szaki-stamp {
  float: right;
  width: clamp(190px, 24vw, 330px);
  max-width: 38%;
  margin: 0 0 30px clamp(30px, 5vw, 76px);
  transform: none !important;
  shape-outside: circle(48% at 50% 50%);
  shape-margin: 28px;
}

.about-control .about-control-copy p {
  max-width: none !important;
}

@media (max-width: 760px) {
  .about-control .szaki-stamp {
    float: none;
    width: min(230px, 72%);
    max-width: none;
    margin: 6px auto 28px;
    shape-outside: none;
  }
}

/* Refine the home counters so the band feels quieter and more architectural */
.numbers {
  gap: clamp(18px, 3.2vw, 52px);
  padding-top: clamp(8px, 1.2vw, 18px);
  padding-bottom: clamp(58px, 5.8vw, 88px);
}

.numbers div {
  min-height: 118px;
  gap: 10px;
  padding-top: 22px;
}

.numbers div::before {
  top: -3px;
  width: 7px;
  height: 7px;
  opacity: .64;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .08);
}

.numbers strong {
  min-width: 2.85em;
  font-size: clamp(42px, 5.3vw, 72px);
  font-weight: 400;
  line-height: .96;
}

.numbers span {
  max-width: 240px;
  font-size: clamp(10px, .78vw, 12px);
  font-weight: 760;
  letter-spacing: .075em;
  line-height: 1.45;
  opacity: .82;
}

@media (max-width: 760px) {
  .numbers {
    gap: 10px;
    padding: 18px 18px 48px;
  }

  .numbers div {
    min-height: 92px;
    gap: 7px;
    padding-top: 18px;
  }

  .numbers strong {
    font-size: clamp(36px, 13vw, 54px);
  }

  .numbers span {
    max-width: 210px;
    font-size: 9.5px;
    line-height: 1.35;
  }
}

/* Reference cards: smaller, glass-tinted surfaces with a slower, deeper photo zoom */
.reference-collection {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: clamp(18px, 2vw, 26px);
  max-width: 1540px;
  margin-right: auto;
  margin-left: auto;
}

.reference-card {
  min-height: clamp(300px, 25vw, 360px);
  border-radius: 8px;
  box-shadow:
    0 20px 54px rgba(9, 15, 30, .14),
    inset 0 1px 0 rgba(255, 255, 255, .24);
  transform: translateZ(0);
}

.reference-card img {
  transform: scale(1.01);
  transition:
    transform 1.65s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s ease;
  will-change: transform;
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(103deg, rgba(255, 255, 255, .26) 0%, rgba(255, 255, 255, .14) 48%, rgba(255, 255, 255, .035) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 66% 100%);
  mix-blend-mode: screen;
  opacity: .42;
  transition:
    opacity 1.15s ease,
    transform 1.65s cubic-bezier(.16, 1, .3, 1);
  transform: translateX(0);
}

.reference-card::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 13, 27, .06) 0%, rgba(8, 13, 27, .08) 40%, rgba(8, 13, 27, .64) 100%),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, .18), transparent 38%);
  opacity: .96;
}

.reference-card-copy {
  z-index: 2;
}

.reference-card:hover img,
.reference-card:focus-visible img {
  transform: scale(1.12);
  filter: saturate(1.06) contrast(1.03);
}

.reference-card:hover::before,
.reference-card:focus-visible::before {
  opacity: .62;
  transform: translateX(-5%);
}

@media (max-width: 980px) {
  .reference-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }
}

@media (max-width: 640px) {
  .reference-collection {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .reference-card {
    min-height: 290px;
  }
}

/* Keep the home reference slider controls fluid after the later color overrides */
.portfolio-slider.is-animating .portfolio-track,
.portfolio-slider.is-progress-dragging .portfolio-track {
  transition: none !important;
}

.portfolio-progress-track {
  cursor: grab;
  touch-action: none;
  transition: height .25s ease, background-color .25s ease;
}

.portfolio-progress-track:hover,
.portfolio-progress-track:focus-visible,
.portfolio-slider.is-progress-dragging .portfolio-progress-track {
  height: 4px;
  background: rgba(255, 255, 255, .3);
}

.portfolio-slider.is-progress-dragging .portfolio-progress-track {
  cursor: grabbing;
}

.portfolio-slider.is-progress-dragging .portfolio-progress-track span {
  transition: none !important;
}

/* Subtle entry/exit shading and a small handle for the home reference slider */
.portfolio-window {
  position: relative;
}

.portfolio-window::before,
.portfolio-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(72px, 11vw, 170px);
  pointer-events: none;
}

.portfolio-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(24, 32, 56, .94), rgba(24, 32, 56, .56) 42%, rgba(24, 32, 56, 0));
}

.portfolio-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(24, 32, 56, .94), rgba(24, 32, 56, .56) 42%, rgba(24, 32, 56, 0));
}

.portfolio-progress-track {
  overflow: visible;
  --portfolio-progress: 0;
}

.portfolio-progress-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--portfolio-progress) * 100%);
  z-index: 2;
  width: 10px;
  height: 10px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 1), rgba(255, 255, 255, .74) 58%, rgba(161, 211, 218, .84));
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 999px;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .08),
    0 8px 20px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%);
  transition:
    left .22s ease-out,
    width .22s ease,
    height .22s ease,
    box-shadow .22s ease;
}

.portfolio-progress-track:hover::after,
.portfolio-slider.is-progress-dragging .portfolio-progress-track::after {
  width: 12px;
  height: 12px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .11),
    0 10px 24px rgba(0, 0, 0, .24);
}

.portfolio-slider.is-progress-dragging .portfolio-progress-track::after {
  transition: width .18s ease, height .18s ease, box-shadow .18s ease;
}

@media (max-width: 640px) {
  .portfolio-window::before,
  .portfolio-window::after {
    display: none;
  }
}

/* Make the references overview cards more compact and softer */
.reference-collection {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  max-width: 1320px;
}

.reference-card {
  min-height: clamp(240px, 18.5vw, 300px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 12px;
  clip-path: inset(0 round 12px);
  box-shadow:
    0 18px 46px rgba(9, 15, 30, .12),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.reference-card img,
.reference-card-placeholder,
.reference-card::before,
.reference-card::after {
  border-radius: inherit;
}

.reference-card-copy {
  left: clamp(18px, 1.6vw, 24px);
  right: clamp(18px, 1.6vw, 24px);
  bottom: clamp(18px, 1.6vw, 24px);
}

.reference-card-copy h2 {
  font-size: clamp(29px, 2.5vw, 44px);
}

.reference-card-copy span {
  margin-bottom: 9px;
  font-size: 9.5px;
}

@media (max-width: 980px) {
  .reference-collection {
    max-width: 760px;
  }

  .reference-card {
    min-height: 270px;
  }
}

@media (max-width: 640px) {
  .reference-collection {
    max-width: 390px;
  }

  .reference-card {
    min-height: 250px;
    border-radius: 10px;
    clip-path: inset(0 round 10px);
  }
}

/* Move reference card text below the photo and strengthen the right-side glass layer */
.reference-card {
  --reference-media-height: clamp(188px, 14.8vw, 242px);
  display: block;
  min-height: 0;
  color: var(--brand-navy);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.reference-card img,
.reference-card-placeholder {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: var(--reference-media-height);
  overflow: hidden;
  border-radius: 12px;
  box-shadow:
    0 18px 46px rgba(9, 15, 30, .12),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.reference-card::before,
.reference-card::after {
  top: 0;
  bottom: auto;
  height: var(--reference-media-height);
  overflow: hidden;
  border-radius: 12px;
}

.reference-card::before {
  background:
    linear-gradient(104deg, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, .18) 48%, rgba(255, 255, 255, .05) 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 72% 100%);
  opacity: .72;
}

.reference-card::after {
  background:
    linear-gradient(180deg, rgba(8, 13, 27, .03) 0%, rgba(8, 13, 27, .06) 46%, rgba(8, 13, 27, .24) 100%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, .24), transparent 40%);
  opacity: .72;
}

.reference-card-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 2px 0;
  color: var(--brand-navy);
  background: transparent;
  text-shadow: none;
}

.reference-card-copy h2 {
  order: 1;
  color: inherit;
  font-size: clamp(25px, 2vw, 34px);
  line-height: .98;
  text-shadow: none;
}

.reference-card-copy span {
  order: 2;
  margin: 0;
  color: rgba(24, 32, 56, .58);
  font-size: 9px;
  letter-spacing: .12em;
  text-shadow: none;
}

@media (max-width: 980px) {
  .reference-card {
    --reference-media-height: 220px;
  }
}

@media (max-width: 640px) {
  .reference-card {
    --reference-media-height: 205px;
    border-radius: 0;
    clip-path: none;
  }

  .reference-card img,
  .reference-card-placeholder,
  .reference-card::before,
  .reference-card::after {
    border-radius: 10px;
  }
}

/* Clean rebuild for reference overview: isolated media tile plus readable detached text */
.reference-collection {
  gap: clamp(30px, 3vw, 44px) clamp(18px, 2vw, 28px);
  max-width: 1280px;
}

.reference-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  min-height: 0;
  overflow: visible !important;
  color: var(--brand-navy) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.reference-card::before,
.reference-card::after {
  content: none !important;
}

.reference-card-media {
  position: relative;
  display: block;
  height: clamp(205px, 17vw, 280px);
  overflow: hidden;
  border-radius: 12px;
  background: var(--brand-navy);
  box-shadow:
    0 18px 46px rgba(9, 15, 30, .13),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  isolation: isolate;
}

.reference-card-media::before,
.reference-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.reference-card-media::before {
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 47%, rgba(255, 255, 255, .32) 100%);
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 74% 100%);
  mix-blend-mode: screen;
  opacity: .66;
  transition: opacity 1.1s ease, transform 1.45s cubic-bezier(.16, 1, .3, 1);
}

.reference-card-media::after {
  background:
    linear-gradient(180deg, rgba(8, 13, 27, .02), rgba(8, 13, 27, .16)),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .22), transparent 38%);
  opacity: .66;
}

.reference-card img,
.reference-card-placeholder {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.reference-card img {
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 1.65s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s ease;
}

.reference-card:hover img,
.reference-card:focus-visible img {
  transform: scale(1.1);
  filter: saturate(1.04) contrast(1.02);
}

.reference-card:hover .reference-card-media::before,
.reference-card:focus-visible .reference-card-media::before {
  opacity: .84;
  transform: translateX(-5%);
}

.reference-card-copy {
  position: static !important;
  display: grid;
  gap: 6px;
  padding: 0 2px !important;
  color: var(--brand-navy) !important;
  text-shadow: none !important;
}

.reference-card-copy h2,
.reference-card-copy span,
.reference-card-copy * {
  color: var(--brand-navy) !important;
  text-shadow: none !important;
}

.reference-card-copy h2 {
  order: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 500;
  line-height: .98;
}

.reference-card-copy span {
  order: 2;
  margin: 0;
  color: rgba(24, 32, 56, .58) !important;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .reference-collection {
    gap: 34px 20px;
    max-width: 760px;
  }

  .reference-card-media {
    height: 235px;
  }
}

@media (max-width: 640px) {
  .reference-collection {
    gap: 30px;
    max-width: 390px;
  }

  .reference-card-media {
    height: 215px;
    border-radius: 10px;
  }
}

/* Polished reference tiles: rounded photo with a connected glass label */
.reference-collection {
  gap: clamp(34px, 3.2vw, 48px) clamp(18px, 2vw, 28px);
}

.reference-card {
  gap: 0;
  align-content: start;
  overflow: visible !important;
}

.reference-card-media {
  height: clamp(210px, 17.5vw, 286px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 16px;
  background: var(--brand-navy);
  box-shadow:
    0 24px 58px rgba(9, 15, 30, .16),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.reference-card-media::before {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .06) 46%, rgba(255, 255, 255, .34) 70%, rgba(255, 255, 255, .12) 100%);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 78% 100%);
  mix-blend-mode: screen;
  opacity: .7;
  transform: translateX(8%);
  transition: none !important;
}

.reference-card-media::after {
  background:
    linear-gradient(180deg, rgba(8, 13, 27, 0) 0%, rgba(8, 13, 27, .08) 60%, rgba(8, 13, 27, .2) 100%);
  opacity: .58;
}

.reference-card-copy {
  width: calc(100% - clamp(28px, 3vw, 44px));
  margin: -24px auto 0;
  padding: clamp(13px, 1.2vw, 17px) clamp(15px, 1.5vw, 20px) clamp(14px, 1.3vw, 18px) !important;
  color: var(--brand-navy) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(232, 239, 241, .64));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 13px;
  box-shadow:
    0 18px 44px rgba(9, 15, 30, .12),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  z-index: 3;
}

.reference-card-copy h2,
.reference-card-copy span,
.reference-card-copy * {
  color: var(--brand-navy) !important;
}

.reference-card-copy h2 {
  font-size: clamp(27px, 2vw, 36px);
  line-height: .98;
}

.reference-card-copy span {
  color: rgba(24, 32, 56, .62) !important;
  font-size: 9px;
}

@media (max-width: 640px) {
  .reference-card-media {
    height: 215px;
    border-radius: 14px;
  }

  .reference-card-copy {
    width: calc(100% - 24px);
    margin-top: -20px;
    border-radius: 12px;
  }
}

/* Tighten the photo corners and move the glass label to the left side */
.reference-card-media {
  border-radius: 10px !important;
  clip-path: inset(0 round 10px);
}

.reference-card-media::before,
.reference-card-media::after {
  border-radius: inherit;
}

.reference-card-media::before {
  transition: none !important;
}

.reference-card:hover .reference-card-media::before,
.reference-card:focus-visible .reference-card-media::before {
  opacity: .7 !important;
  transform: translateX(8%) !important;
}

.reference-card-copy {
  justify-self: start;
  width: fit-content;
  min-width: 132px;
  max-width: min(46%, 190px);
  margin: -13px 0 0 clamp(10px, 1vw, 14px);
  padding: 7px 10px 8px !important;
  border-radius: 8px;
  box-shadow:
    0 9px 22px rgba(9, 15, 30, .1),
    inset 0 1px 0 rgba(255, 255, 255, .84);
}

.reference-card-copy h2 {
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.04;
}

.reference-card-copy span {
  font-size: 6.8px;
  letter-spacing: .09em;
}

@media (max-width: 640px) {
  .reference-card-media {
    border-radius: 9px !important;
    clip-path: inset(0 round 9px);
  }

  .reference-card-copy {
    min-width: 126px;
    max-width: min(60%, 190px);
    margin-top: -12px;
    margin-left: 10px;
    padding: 7px 10px 8px !important;
    border-radius: 8px;
  }

  .reference-card-copy h2 {
    font-size: clamp(18px, 5vw, 22px);
  }

  .reference-card-copy span {
    font-size: 6.8px;
  }
}

/* Keep the reference overview grid full-width inside the rounded page band */
.references-page .reference-collection {
  --section-radius: clamp(22px, 3vw, 38px);
  position: relative;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: clamp(36px, 3.4vw, 70px);
  padding-left: clamp(36px, 3.4vw, 70px);
  overflow: hidden;
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  background-clip: padding-box;
  clip-path: inset(0 round var(--section-radius) var(--section-radius) 0 0);
  isolation: isolate;
}

.references-page .reference-collection::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, .62), rgba(255, 255, 255, .7)),
    linear-gradient(90deg, rgba(24, 32, 56, .115) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 32, 56, .115) 1px, transparent 1px),
    #fbfcfc;
  background-size:
    auto,
    48px 48px,
    48px 48px,
    auto;
  background-position:
    0 0,
    center top,
    center top,
    0 0;
}

.references-page .reference-card {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .references-page .reference-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 640px) {
  .references-page .reference-collection {
    --section-radius: 22px;
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: var(--section-radius) var(--section-radius) 0 0;
    clip-path: inset(0 round var(--section-radius) var(--section-radius) 0 0);
  }
}

@media (min-width: 641px) {
  .references-page .references-hero {
    height: clamp(640px, 78svh, 860px);
    height: clamp(640px, 78dvh, 860px);
    min-height: 640px;
    max-height: 860px;
    aspect-ratio: auto;
  }

  .reference-project-page .references-hero {
    height: clamp(640px, 78svh, 820px);
    height: clamp(640px, 78dvh, 820px);
    min-height: 640px;
    max-height: 820px;
    aspect-ratio: auto;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1024px) {
  body.subpage main {
    margin-top: 0;
    min-height: 0;
  }

  body.subpage main > section:first-of-type {
    min-height: 0;
  }

  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    top: 22px;
    right: 86px;
  }

  .topbar.brand-docked .menu-toggle,
  .topbar.compact .menu-toggle,
  .menu-toggle {
    top: 22px;
    right: 22px;
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: 132px;
    height: 44px;
    min-width: 0;
    min-height: 0;
    padding: 6px 10px 7px;
  }

  .topbar .top-nav,
  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    top: 22px;
    left: 16px;
    right: auto;
    width: min(1040px, calc(100vw - 250px));
    height: 46px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding: 5px 8px;
    background: rgba(32, 38, 32, .24);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(18px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    scrollbar-width: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .top-nav .top-nav-logo {
    width: 42px;
    min-height: 32px;
    margin-right: 8px;
  }

  .top-nav .top-nav-logo img {
    width: 34px;
    opacity: .78;
  }

  .top-nav-social {
    flex: 0 0 auto;
    margin-left: 6px;
    padding-left: 4px;
    gap: 6px;
  }

  .top-nav-social a {
    flex: 0 0 36px;
    width: 36px;
    min-height: 36px;
  }

  .top-nav-social a svg {
    width: 22px;
    height: 22px;
  }

  .subpage-home-back {
    top: 82px;
    left: 24px;
    min-height: 32px;
    padding: 0 12px 0 10px;
    font-size: 8px;
  }

  .hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-picture {
    display: none;
  }

  .hero-video {
    display: block;
  }

  .about-hero {
    min-height: 88vh;
    height: auto;
    align-items: end;
    padding: 180px 8vw 92px;
  }

  .about-hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: min(760px, 100%);
    max-width: none;
  }

  .workflow-hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 190px 8vw 86px;
  }

  .flow-hero {
    min-height: 78vh;
    padding: 190px 8vw 92px;
  }

  .references-hero {
    height: clamp(560px, 78dvh, 760px);
    min-height: 560px;
    max-height: 760px;
    aspect-ratio: auto;
    align-items: end;
    padding: 150px 8vw 84px;
  }

  .reference-project-page .references-hero {
    height: clamp(560px, 78dvh, 740px);
    min-height: 560px;
    max-height: 740px;
    padding: 150px 8vw 84px;
  }

  .references-hero-picture img {
    filter: brightness(.42) saturate(.82);
    transform: scale(1.04);
  }

  .references-hero::after {
    opacity: .28;
  }

  .references-hero-copy,
  .references-page:not(.reference-project-page) .references-hero-copy {
    width: min(980px, 100%);
    min-width: 0;
    max-width: 980px;
    text-shadow: none;
  }

  .references-hero h1,
  .references-page:not(.reference-project-page) .references-hero h1,
  .reference-project-page .references-hero h1 {
    max-width: 980px;
    font-size: clamp(62px, 8vw, 132px);
    line-height: .86;
  }

  .reference-project-page .references-hero-copy > p:not(.section-label) {
    display: block;
  }
}

@media (max-width: 760px) and (hover: none), (max-width: 760px) and (pointer: coarse) {
  .numbers {
    gap: 0;
    padding: 8px 24px 34px;
  }

  .numbers div {
    min-height: 58px;
    gap: 3px;
    padding: 9px 0 9px;
    border-top-color: rgba(255, 255, 255, .14);
  }

  .numbers div::before {
    top: -2px;
    width: 5px;
    height: 5px;
    opacity: .42;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .055);
  }

  .numbers strong {
    min-width: 0;
    font-size: clamp(22px, 7.2vw, 29px);
    line-height: 1;
    opacity: .84;
  }

  .numbers span {
    max-width: 170px;
    font-size: 6.9px;
    font-weight: 700;
    letter-spacing: .055em;
    line-height: 1.25;
    opacity: .58;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) and (max-width: 1180px) {
  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    top: 26px;
    right: 98px;
  }

  .topbar.brand-docked .menu-toggle,
  .topbar.compact .menu-toggle,
  .menu-toggle {
    top: 26px;
    right: 42px;
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: 150px;
    height: 44px;
    min-width: 0;
    min-height: 0;
    padding: 6px 11px 7px;
  }

  .topbar.brand-docked .brand-wordmark strong,
  .topbar.compact .brand-wordmark strong {
    font-size: 17px;
  }

  .topbar.brand-docked .brand-wordmark small,
  .topbar.compact .brand-wordmark small {
    font-size: 5.5px;
    letter-spacing: .1em;
  }

  .topbar .top-nav,
  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    top: 26px;
    left: 24px;
    right: auto;
    width: min(1040px, calc(100vw - 300px));
    height: 44px;
    justify-content: flex-start;
    overflow: visible;
    padding: 5px 9px;
    background: rgba(32, 38, 32, .24);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(18px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-nav a {
    flex: 0 1 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: .09em;
  }

  .top-nav .top-nav-logo {
    width: 54px;
    min-height: 34px;
    margin-right: 18px;
  }

  .top-nav .top-nav-logo img {
    width: 44px;
    opacity: .72;
  }

  .top-nav-social {
    flex: 0 0 auto;
    margin-left: auto;
    padding-left: 12px;
    gap: 5px;
  }

  .top-nav-social a {
    flex: 0 0 30px;
    width: 30px;
    min-height: 30px;
  }

  .top-nav-social a svg {
    width: 16px;
    height: 16px;
  }

  .profile-redesign {
    grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
    gap: clamp(34px, 4.2vw, 54px);
  }

  .profile-redesign .split-copy {
    max-width: 700px;
  }

  .profile-redesign .split-copy h2 {
    font-size: clamp(48px, 5vw, 70px);
  }

  .profile-redesign .profile-body p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.68;
  }

  .profile-redesign .image-stack {
    justify-self: stretch;
    width: 100%;
    height: clamp(500px, 52vw, 600px);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) and (max-width: 960px) {
  .topbar.brand-docked .top-logo,
  .topbar.compact .top-logo {
    top: 22px;
    right: 86px;
  }

  .topbar.brand-docked .menu-toggle,
  .topbar.compact .menu-toggle,
  .menu-toggle {
    top: 22px;
    right: 22px;
  }

  .topbar.brand-docked .brand-wordmark,
  .topbar.compact .brand-wordmark {
    width: 132px;
    height: 44px;
    padding: 6px 10px 7px;
  }

  .topbar.brand-docked .brand-wordmark strong,
  .topbar.compact .brand-wordmark strong {
    font-size: 16px;
  }

  .topbar.brand-docked .brand-wordmark small,
  .topbar.compact .brand-wordmark small {
    font-size: 5.5px;
    letter-spacing: .08em;
  }

  .topbar .top-nav,
  .topbar.scrolled .top-nav,
  .subpage .top-nav {
    top: 22px;
    left: 16px;
    width: min(1040px, calc(100vw - 250px));
    height: 46px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding: 5px 8px;
    scrollbar-width: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .top-nav .top-nav-logo {
    width: 42px;
    min-height: 32px;
    margin-right: 8px;
  }

  .top-nav .top-nav-logo img {
    width: 34px;
    opacity: .78;
  }

  .top-nav-social {
    flex: 0 0 auto;
    margin-left: 6px;
    padding-left: 4px;
    gap: 6px;
  }

  .top-nav-social a {
    flex: 0 0 36px;
    width: 36px;
    min-height: 36px;
  }

  .top-nav-social a svg {
    width: 22px;
    height: 22px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px) and (max-width: 900px) {
  .contact-section {
    display: grid;
    grid-template-columns: minmax(260px, .88fr) minmax(390px, 1fr);
    gap: clamp(24px, 3.2vw, 34px);
    align-items: start;
    padding: clamp(84px, 9vw, 104px) clamp(26px, 5vw, 44px);
    scroll-margin-top: 128px;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

  .contact-copy h2 {
    max-width: 360px;
    font-size: clamp(38px, 5vw, 44px);
    line-height: .98;
    text-align: left;
  }

  .contact-copy .contact-lead {
    max-width: 360px;
    margin-top: 22px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .contact-details {
    max-width: 360px;
    margin-top: 28px;
    gap: 13px;
  }

  .contact-details p {
    font-size: 13px;
    line-height: 1.48;
  }

  .contact-details strong {
    font-size: 14.5px;
    line-height: 1.38;
  }

  .contact-form {
    align-self: start;
    min-width: 0;
    gap: 10px;
    padding: 18px;
  }

  .contact-form input {
    height: 42px;
  }

  .contact-form textarea {
    min-height: 116px;
  }

  .contact-radio-group {
    gap: 8px;
  }

  .contact-radio-group label {
    min-height: 40px;
    padding: 0 10px;
  }

  .file-upload-control {
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr);
  }

  .file-upload-button {
    padding: 0 11px;
    font-size: 9px;
    letter-spacing: .1em;
  }
}

@media (max-width: 900px) {
  .home-page .availability-card {
    display: none;
  }

  .intro > .intro-szaki-badge {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: clamp(132px, 38vw, 158px);
    margin: 24px auto 0;
    pointer-events: auto;
  }

  .intro .lead {
    margin-top: 22px;
  }

  .hero-quote-link {
    position: absolute;
    z-index: 5;
    left: 50vw;
    right: auto;
    bottom: calc(86px + var(--safe-bottom));
    min-height: 40px;
    min-width: 154px;
    padding: 0 18px;
    border-radius: 8px;
    box-shadow:
      0 18px 42px rgba(0, 0, 0, .34),
      inset 0 1px 0 rgba(255, 255, 255, .22);
    font-size: 10px;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  body.menu-is-open .hero-quote-link {
    animation: none;
    opacity: 0 !important;
    pointer-events: none;
  }
}

@media (max-width: 380px) {
  .hero-quote-link {
    bottom: calc(76px + var(--safe-bottom));
    min-height: 38px;
    min-width: 144px;
    padding: 0 15px;
    font-size: 9.4px;
  }
}
