:root {
  --ink: #161a1d;
  --ink-soft: #4d5b61;
  --brand-dark: #1b2428;
  --brand-muted: #96dce8;
  --surface: #f4f7f7;
  --paper: #fcfcfa;
  --stone: #dfe8ea;
  --brand: #56d9f1;
  --brand-deep: #00697b;
  --brand-soft: #e2f8fc;
  --brand-bright: #7ae4f6;
  --brand-highlight: #aeebf5;
  --white: #fff;
  --shadow: 0 24px 70px rgba(22, 26, 29, 0.14);
  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 38px;
  --shell: calc(100% - 40px);
  --shell-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(22, 26, 29, 0.055) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 72% 54%, rgba(0, 122, 142, 0.04) 0 0.7px, transparent 0.8px);
  background-position: 0 0, 5px 7px;
  background-size: 12px 12px, 15px 15px;
}

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

img {
  height: auto;
}

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

button,
input {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--brand-soft);
}

:focus-visible {
  outline: 3px solid var(--brand-deep);
  outline-offset: 4px;
}

.hero :focus-visible,
.services :focus-visible,
.atmosphere :focus-visible,
.contact :focus-visible {
  outline-color: var(--white);
}

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

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(252, 252, 250, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(22, 26, 29, 0.09);
  box-shadow: 0 9px 30px rgba(22, 26, 29, 0.07);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.site-header--simple .site-header__inner {
  grid-template-columns: 1fr auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex: 0 0 auto;
  min-height: 44px;
  gap: 0;
  width: max-content;
}

.brand__logo {
  display: block;
  width: 132px;
  height: auto;
  max-width: none;
}

.brand--footer .brand__logo {
  width: 140px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-block: 8px;
}

.site-nav a + a {
  margin-left: 32px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-header .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  gap: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg,
.text-link svg,
.mobile-contact svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button svg {
  margin-left: 11px;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.84rem;
}

.button--ink {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(22, 26, 29, 0.14);
}

.button--ink:hover {
  background: var(--brand-dark);
}

.button--accent {
  color: var(--ink);
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(0, 122, 142, 0.2);
}

.button--accent:hover {
  background: var(--brand-bright);
  box-shadow: 0 16px 32px rgba(0, 122, 142, 0.26);
}

.button--large {
  min-height: 64px;
  padding-right: 28px;
  padding-left: 28px;
  padding-inline: 28px;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 2px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
  gap: 0;
}

.text-link svg {
  width: 17px;
  height: 17px;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateY(3px);
}

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

.text-link--dark:hover svg {
  transform: translate(2px, -2px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  gap: 0;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--brand);
}

.eyebrow--dark {
  color: var(--brand-deep);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-size: 5rem;
  font-size: clamp(3rem, 7vw, 6.65rem);
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 0;
  color: var(--white);
  background: var(--brand-dark);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 9% 20%, rgba(86, 217, 241, 0.16), transparent 25%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.08), transparent 30%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  min-height: 650px;
  padding-bottom: 56px;
  gap: 72px;
  gap: clamp(40px, 7vw, 96px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-block: 30px;
}

.hero h1 {
  max-width: 700px;
  font-size: 5.8rem;
  font-size: clamp(4rem, 6.8vw, 6.55rem);
}

.hero h1 em {
  color: var(--brand-highlight);
}

.hero__intro {
  max-width: 590px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
  margin-right: -22px;
  margin-bottom: -10px;
  gap: 0;
}

.hero__actions > * {
  margin-right: 22px;
  margin-bottom: 10px;
}

.hero .text-link {
  color: rgba(255, 255, 255, 0.84);
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 37px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
  margin-right: -26px;
  margin-bottom: -10px;
  gap: 0;
}

.hero__services li {
  position: relative;
  margin-right: 26px;
  margin-bottom: 10px;
}

.hero__services li + li::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
  transform: translateY(-50%);
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: end;
}

.hero__visual picture {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.9;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 180px 180px 30px 30px;
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 52%;
}

.hero__shape {
  position: absolute;
  top: -38px;
  right: -48px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero__shape::before,
.hero__shape::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero__shape::before {
  inset: 26px;
  border: 1px dashed rgba(86, 217, 241, 0.48);
}

.hero__shape::after {
  inset: 68px;
  background:
    radial-gradient(circle at 25% 25%, var(--brand) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 35%, var(--brand-muted) 0 4px, transparent 5px),
    radial-gradient(circle at 48% 76%, var(--white) 0 6px, transparent 7px);
}

.hero__project-card {
  position: absolute;
  right: -20px;
  bottom: 26px;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 16px);
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(252, 252, 250, 0.95);
  box-shadow: 0 18px 40px rgba(22, 26, 29, 0.24);
  gap: 0;
}

.hero__project-card strong,
.hero__project-card small {
  display: block;
}

.hero__project-card strong {
  font-size: 0.84rem;
}

.hero__project-card small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero__project-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  margin-right: 12px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brand);
  place-items: center;
}

.hero__project-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  gap: 0;
}

.trust-strip > * {
  margin-right: 14px;
  margin-left: 14px;
}

.trust-strip p {
  margin: 0;
}

.trust-strip > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  padding-block: clamp(84px, 9vw, 128px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  margin-bottom: 55px;
  gap: 50px;
}

.section-heading h2,
.services h2,
.process h2,
.atmosphere h2,
.contact h2 {
  font-size: 4.3rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.section-heading h2 em,
.process h2 em,
.atmosphere h2 em {
  color: var(--brand-deep);
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.work {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.work::before {
  position: absolute;
  top: 3%;
  right: -180px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(0, 105, 123, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 44%, rgba(86, 217, 241, 0.13) 0 2px, transparent 2.5px),
    radial-gradient(circle at 68% 62%, rgba(22, 26, 29, 0.08) 0 1.3px, transparent 1.8px);
  background-size: 17px 17px, 13px 13px;
  content: "";
  pointer-events: none;
}

.work > .shell {
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  height: 580px;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius-medium);
  background: #cbd4d5;
  isolation: isolate;
}

.showcase-card picture {
  display: block;
  height: 100%;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
  object-fit: cover;
}

.showcase-card--van img {
  object-position: 43% 52%;
}

.showcase-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 20, 23, 0.82), transparent);
  content: "";
}

.showcase-card figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  left: 25px;
  color: var(--white);
}

.showcase-card figcaption span,
.showcase-card figcaption strong {
  display: block;
}

.showcase-card figcaption span {
  margin-bottom: 3px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card figcaption strong {
  font-size: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  margin-top: clamp(72px, 9vw, 118px);
  margin-bottom: clamp(32px, 4vw, 50px);
  gap: 50px;
}

.story-heading h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

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

.story-card {
  overflow: hidden;
  border: 1px solid rgba(22, 26, 29, 0.08);
  border-radius: var(--radius-large);
  background: #f5f5f1;
  box-shadow: 0 22px 60px rgba(22, 26, 29, 0.08);
}

.story-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
}

.story-card__after {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.story-card__after::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 26, 29, 0.05), transparent 48%, rgba(22, 26, 29, 0.2));
  content: "";
  pointer-events: none;
}

.story-card__after img {
  width: 100%;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
  object-fit: cover;
}

.story-card:nth-child(2) .story-card__after img {
  object-position: 50% 48%;
}

.story-card__status {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.story-card__before {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: -42px;
  overflow: hidden;
  margin: 0;
  border: 5px solid var(--white);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(22, 26, 29, 0.3);
}

.story-card__before--wide {
  width: 52%;
  aspect-ratio: 16 / 9;
}

.story-card__before--portrait {
  width: 34%;
  aspect-ratio: 3 / 4;
}

.story-card__before picture,
.story-card__before img {
  display: block;
  width: 100%;
  height: 100%;
}

.story-card__before img {
  object-fit: cover;
}

.story-card__before figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(22, 26, 29, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card__copy {
  min-height: 245px;
  padding: 68px 28px 30px;
}

.story-card__copy > span {
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card__copy h3 {
  margin: 8px 0 11px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.story-card__copy p {
  margin: 0;
  color: var(--ink-soft);
}

@media (hover: hover) and (pointer: fine) {
  .showcase-card:hover img,
  .story-card:hover .story-card__after img {
    transform: scale(1.025);
  }
}

.services {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--paper);
}

.services__inner {
  position: relative;
  overflow: hidden;
  padding: 90px 60px;
  padding: clamp(70px, 8vw, 105px) clamp(28px, 6vw, 74px);
  border-radius: var(--radius-large);
  background: var(--brand-dark);
}

.services__inner::before {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.services__inner::after {
  position: absolute;
  top: -34px;
  right: 20px;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(86, 217, 241, 0.26);
  border-radius: 50%;
  content: "";
}

.services__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
}

.services__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.services h2 em {
  color: var(--brand-highlight);
}

.services__intro > p:last-child {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
}

.service-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.055);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card__number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 800;
}

.service-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--brand-soft);
  place-items: center;
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
}

.experience {
  background: var(--paper);
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid rgba(22, 26, 29, 0.1);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(22, 26, 29, 0.08);
}

.experience-card__label {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.experience-card .text-link {
  color: var(--brand-deep);
}

.sister-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(22, 26, 29, 0.1);
  background: #050705;
  box-shadow: inset 0 0 0 1px rgba(42, 170, 70, 0.12);
}

.sister-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sister-card__copy {
  padding: 30px 32px 28px;
}

.sister-card__copy > p:not(.experience-card__label) {
  margin: 16px 0 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.training-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
  align-items: center;
  padding: 30px 28px 28px 32px;
  gap: 26px;
}

.training-card__copy > p:not(.experience-card__label):not(.training-card__status) {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.training-facts {
  margin: 22px 0 18px;
}

.training-facts div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 0;
  border-top: 1px solid rgba(22, 26, 29, 0.11);
  gap: 16px;
}

.training-facts div:last-child {
  border-bottom: 1px solid rgba(22, 26, 29, 0.11);
}

.training-facts dt,
.training-facts dd {
  margin: 0;
  font-size: 0.76rem;
}

.training-facts dt {
  color: var(--ink-soft);
}

.training-facts dd {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.training-card__status {
  padding: 12px 14px;
  margin: 0;
  border-left: 3px solid var(--brand-deep);
  border-radius: 0 10px 10px 0;
  color: var(--ink-soft);
  background: rgba(0, 105, 123, 0.065);
  font-size: 0.76rem;
  line-height: 1.5;
}

.training-card__copy .text-link {
  margin-top: 8px;
}

.training-card__document {
  display: block;
  align-self: center;
  padding: 8px;
  border: 1px solid rgba(22, 26, 29, 0.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(22, 26, 29, 0.12);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.training-card__document picture {
  display: block;
}

.training-card__document img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  background: var(--white);
}

.training-card__document span {
  display: block;
  padding: 8px 4px 2px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .training-card__document:hover {
    box-shadow: 0 17px 40px rgba(22, 26, 29, 0.16);
    transform: translateY(-3px);
  }
}

.process {
  padding-bottom: 130px;
  padding-bottom: clamp(100px, 12vw, 165px);
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 85px;
  gap: clamp(50px, 9vw, 120px);
}

.process__visual {
  position: relative;
}

.process__visual picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 0.82;
  border-radius: 190px 190px var(--radius-medium) var(--radius-medium);
  background: var(--stone);
}

.process__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.process__note {
  position: absolute;
  right: -30px;
  bottom: 30px;
  width: 70%;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 18px;
  border-left: 3px solid var(--brand);
  color: var(--white);
  background: var(--brand-dark);
  box-shadow: var(--shadow);
}

.process__note strong,
.process__note span {
  display: block;
}

.process__note strong {
  font-size: 0.88rem;
}

.process__note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
}

.process__intro {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.process-list {
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 22px 0;
  border-top: 1px solid rgba(22, 26, 29, 0.12);
  gap: 18px;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(22, 26, 29, 0.12);
}

.process-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 800;
  place-items: center;
}

.process-list h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.atmosphere {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--surface);
}

.atmosphere__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-large);
  color: var(--white);
  background: var(--brand-dark);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.atmosphere__panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 22, 25, 0.92) 0%, rgba(17, 22, 25, 0.76) 42%, rgba(17, 22, 25, 0.12) 78%),
    linear-gradient(0deg, rgba(17, 22, 25, 0.64), transparent 55%);
  content: "";
  pointer-events: none;
}

.atmosphere__panel picture {
  position: absolute;
  inset: 0;
  display: block;
}

.atmosphere__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.atmosphere__copy {
  position: relative;
  z-index: 2;
  width: min(670px, 76%);
  padding: clamp(42px, 7vw, 84px);
}

.atmosphere__copy h2 {
  max-width: 650px;
}

.atmosphere__copy h2 em {
  color: var(--brand-highlight);
}

.atmosphere__copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  padding: 90px 0;
  padding: clamp(70px, 8vw, 110px) 0;
  color: var(--white);
  background: var(--paper);
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  overflow: hidden;
  padding: 60px;
  padding: clamp(48px, 7vw, 84px);
  border-radius: var(--radius-large);
  background: var(--brand-dark);
  gap: 55px;
}

.contact__inner > div:not(.contact__texture) {
  position: relative;
  z-index: 2;
}

.contact__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-self: start;
  gap: 8px;
}

.contact__actions .text-link {
  padding-right: 14px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.contact__actions .contact__email {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.contact__email span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact h2 {
  max-width: 800px;
}

.contact h2 em {
  color: var(--brand-highlight);
}

.contact__inner > div > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact__texture {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact__texture::before,
.contact__texture::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact__texture::before {
  inset: 70px;
  border: 1px dashed rgba(86, 217, 241, 0.26);
}

.contact__texture::after {
  inset: 155px;
  background:
    radial-gradient(circle at 20% 30%, var(--brand) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 28%, var(--brand-muted) 0 5px, transparent 6px),
    radial-gradient(circle at 65% 72%, var(--white) 0 8px, transparent 9px),
    radial-gradient(circle at 27% 75%, var(--brand-deep) 0 4px, transparent 5px);
}

.site-footer {
  padding: 10px 0 45px;
  background: var(--paper);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid rgba(22, 26, 29, 0.12);
  border-bottom: 1px solid rgba(22, 26, 29, 0.12);
  gap: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0;
}

.site-footer nav a {
  margin-right: 28px;
  margin-bottom: 16px;
}

.site-footer nav a:hover {
  color: var(--ink);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.6;
  gap: 0;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-3px);
  }
}

.site-footer__legal p + p {
  margin-left: 36px;
}

.site-footer__legal p {
  max-width: 760px;
  margin: 0;
}

.site-footer__contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.site-footer__contact a {
  overflow-wrap: anywhere;
}

.site-footer__contact a + a {
  margin-top: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1),
      transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .js .reveal--later {
    transition-delay: 90ms;
  }

  .js .reveal--latest {
    transition-delay: 180ms;
  }

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

@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: 4.8rem;
    font-size: clamp(3.8rem, 8vw, 5.5rem);
  }

  .showcase-card {
    height: 480px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card__icon {
    margin-bottom: 32px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact__inner .button {
    justify-self: start;
  }

  .hero__project-card {
    right: 12px;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
    --shell-max: 680px;
    --radius-large: 28px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header__inner {
    min-height: 66px;
    gap: 16px;
  }

  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header .button {
    min-height: 44px;
    padding-right: 14px;
    padding-left: 14px;
    padding-inline: 14px;
  }

  .brand__logo {
    width: 104px;
  }

  .brand--footer .brand__logo {
    width: 124px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 46px;
    gap: 25px;
  }

  .hero__copy {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-block: 10px;
  }

  .hero__actions {
    margin-right: 0;
    margin-bottom: 0;
    gap: 10px 22px;
  }

  .hero__actions > * {
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero__services {
    margin-right: 0;
    margin-bottom: 0;
    gap: 10px 26px;
  }

  .hero__services li {
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: 4rem;
    font-size: clamp(3.45rem, 15.8vw, 5.25rem);
  }

  .hero__intro {
    margin-top: 24px;
  }

  .hero__actions {
    align-items: stretch;
    margin-top: 27px;
  }

  .hero__services {
    margin-top: 29px;
  }

  .hero__visual {
    width: 100%;
    max-width: 610px;
    justify-self: center;
  }

  .hero__visual picture {
    aspect-ratio: 1 / 1;
    border-width: 6px;
    border-radius: 130px 130px 24px 24px;
  }

  .hero__shape {
    top: -25px;
    right: -20px;
    width: 150px;
    height: 150px;
  }

  .hero__project-card {
    right: 12px;
    bottom: 15px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding: 16px 0;
    overflow: visible;
    text-align: center;
    white-space: normal;
    column-gap: 14px;
    row-gap: 7px;
  }

  .trust-strip > * {
    margin: 0;
  }

  .trust-strip > span {
    display: none;
  }

  .trust-strip p:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .services {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-heading,
  .services__intro,
  .story-heading,
  .process__grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 35px;
    gap: 25px;
  }

  .section-heading h2,
  .services h2,
  .process h2,
  .atmosphere h2,
  .contact h2 {
    font-size: 3.2rem;
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

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

  .showcase-card {
    height: 420px;
  }

  .showcase-card--van {
    min-height: 0;
  }

  .showcase-card--van img {
    object-position: 38% 52%;
  }

  .story-heading {
    align-items: start;
    margin-top: 72px;
    gap: 22px;
  }

  .story-heading h3 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .story-grid {
    gap: 26px;
  }

  .story-card__copy {
    min-height: 0;
  }

  .services__inner {
    width: 100%;
    border-radius: 0;
  }

  .services__intro {
    align-items: start;
    gap: 24px;
  }

  .services__intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .service-cards {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

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

  .service-card {
    min-height: auto;
    padding: 25px;
  }

  .service-card__icon {
    margin-bottom: 30px;
  }

  .process__grid {
    gap: 65px;
  }

  .process__visual {
    width: 92%;
    max-width: 520px;
  }

  .process__visual picture {
    aspect-ratio: 0.88;
    border-radius: 130px 130px 24px 24px;
  }

  .process__note {
    right: -8%;
  }

  .atmosphere {
    padding: 70px 0;
  }

  .atmosphere__panel {
    min-height: 620px;
  }

  .atmosphere__panel::after {
    background:
      linear-gradient(0deg, rgba(17, 22, 25, 0.96) 0%, rgba(17, 22, 25, 0.78) 45%, rgba(17, 22, 25, 0.12) 84%);
  }

  .atmosphere__panel img {
    object-position: 62% 50%;
  }

  .atmosphere__copy {
    width: 100%;
    padding: 38px 28px;
  }

  .contact {
    padding-bottom: 70px;
  }

  .contact__inner {
    padding: 42px 26px;
    gap: 35px;
  }

  .contact__inner .button {
    width: 100%;
  }

  .contact__actions {
    width: 100%;
  }

  .contact__actions .text-link {
    align-self: center;
  }

  .site-footer__top,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top nav {
    margin-top: 30px;
  }

  .site-footer nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 2px;
  }

  .site-footer__legal {
    gap: 0;
  }

  .site-footer__contact {
    align-items: flex-start;
  }

  .site-footer__legal p + p {
    margin-top: 14px;
    margin-left: 0;
  }

  body::before {
    display: none;
  }

}

@media (max-width: 600px) {
  .training-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .training-card__document {
    width: min(100%, 320px);
    justify-self: center;
  }
}

@media (min-width: 700px) and (max-width: 780px) {
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process__grid {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    gap: 42px;
  }

  .process__visual {
    width: 100%;
  }

  .process__note {
    right: -12px;
  }

  .atmosphere__copy {
    width: 78%;
    padding: 54px;
  }
}

@media (max-width: 460px) {
  .site-header .button svg {
    display: none;
  }

  .site-header .button {
    padding-right: 12px;
    padding-left: 12px;
    padding-inline: 12px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    min-height: 44px;
  }

  .hero__project-card {
    right: 8px;
    bottom: 9px;
    padding: 10px 13px 10px 10px;
  }

  .hero__project-icon {
    width: 32px;
    height: 32px;
  }

  .hero__project-card small {
    display: none;
  }

  .showcase-card {
    height: 360px;
  }

  .showcase-card--van {
    min-height: 0;
  }

  .story-card__before {
    right: 13px;
    bottom: -30px;
    border-width: 4px;
    border-radius: 14px;
  }

  .story-card__before--wide {
    width: 56%;
  }

  .story-card__before--portrait {
    width: 38%;
  }

  .story-card__copy {
    padding: 52px 21px 25px;
  }

  .sister-card__copy,
  .training-card {
    padding: 24px 22px;
  }

  .training-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .training-facts dd {
    text-align: left;
  }

  .atmosphere__panel {
    min-height: 570px;
  }

  .atmosphere__copy {
    padding: 32px 22px;
  }

  .contact__texture {
    top: -210px;
    right: -210px;
  }

  .contact__texture::after {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand__logo {
    width: 98px;
  }

  .button--large {
    padding-right: 18px;
    padding-left: 18px;
    padding-inline: 18px;
    font-size: 0.92rem;
  }

  .contact__email svg {
    display: none;
  }
}

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

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

/* Standalone legal and record pages */
.legal-page {
  min-height: 70vh;
  padding: 100px 0;
  padding: clamp(70px, 10vw, 130px) 0;
}

.legal-page__inner {
  max-width: 790px;
}

.legal-page h1 {
  margin-bottom: 32px;
  overflow-wrap: normal;
  font-size: 4.5rem;
  font-size: clamp(2.45rem, 8vw, 5.7rem);
  word-break: normal;
}

.legal-page h1 em {
  color: #00697b;
}

.legal-page h2 {
  margin: 42px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: #4d5b61;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-page__notice {
  padding: 18px 20px;
  margin: 0 0 35px;
  border-left: 4px solid #56d9f1;
  border-radius: 0 12px 12px 0;
  background: #f4f7f7;
}

.legal-page__back {
  margin-top: 45px;
}

.record-page {
  min-height: 70vh;
  padding: 100px 0;
  padding: clamp(70px, 9vw, 120px) 0;
}

.record-page__inner {
  max-width: 920px;
}

.record-page h1 {
  margin-bottom: 28px;
  font-size: 4.6rem;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.record-page h1 em {
  color: var(--brand-deep);
}

.record-page__intro {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.record-page__notice {
  padding: 20px 22px;
  margin: 0 0 42px;
  border-left: 4px solid var(--brand-deep);
  border-radius: 0 14px 14px 0;
  color: var(--ink-soft);
  background: var(--surface);
}

.record-page__notice strong {
  color: var(--ink);
}

.record-document {
  padding: clamp(12px, 3vw, 28px);
  margin: 0;
  border: 1px solid rgba(22, 26, 29, 0.12);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow);
}

.record-document img {
  width: 100%;
  height: auto;
  background: var(--white);
}

.record-document picture {
  display: block;
}

.record-document figcaption {
  padding: 18px 4px 2px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-align: center;
}

.record-document__download {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 2px;
  margin: 8px auto 0;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.record-page__back {
  margin-top: 38px;
}

/* Standalone 404 page */
.not-found-page {
  display: grid;
  min-height: 100vh;
  color: #fff;
  background: #161a1d;
  place-items: center;
}

.not-found {
  width: calc(100% - 32px);
  max-width: 680px;
  text-align: center;
}

.not-found .brand {
  margin: 0 auto 50px;
  color: #fff;
}

.not-found .brand__logo {
  width: min(220px, 70vw);
  height: auto;
  max-width: none;
}

.not-found h1 {
  font-size: 6rem;
  font-size: clamp(4rem, 15vw, 8rem);
}

.not-found h1 em {
  color: #56d9f1;
}

.not-found p {
  margin: 26px auto 32px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 460px) {
  .record-page__notice {
    padding: 17px 16px;
  }
}
