:root {
  --ink: #06080d;
  --ink-soft: #182238;
  --muted: #5b6880;
  --accent: #050505;
  --blue: #075dff;
  --blue-strong: #003ec7;
  --bg: #e8efff;
  --surface: #edf3ff;
  --line: rgba(7, 93, 255, 0.16);
  --white-line: rgba(255, 255, 255, 0.72);
  --shadow-raised: 18px 18px 42px rgba(34, 68, 128, 0.28), -18px -18px 42px rgba(255, 255, 255, 0.92);
  --shadow-soft: 10px 10px 24px rgba(34, 68, 128, 0.22), -10px -10px 24px rgba(255, 255, 255, 0.88);
  --shadow-tight: 6px 6px 14px rgba(34, 68, 128, 0.22), -6px -6px 14px rgba(255, 255, 255, 0.86);
  --shadow-inset-tight: inset 4px 4px 10px rgba(34, 68, 128, 0.22), inset -4px -4px 10px rgba(255, 255, 255, 0.84);
  --radius-xl: 44px;
  --radius-lg: 34px;
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 255, 255, 0.82), transparent 31%),
    radial-gradient(circle at 86% 10%, rgba(7, 93, 255, 0.18), transparent 25%),
    radial-gradient(circle at 28% 94%, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, var(--bg) 48%, #d7e4ff 100%);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 36px);
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

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

main,
section,
article,
div,
form,
.hero-copy,
.section-heading > *,
.contact-copy {
  min-width: 0;
}

:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.28);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 160ms var(--ease);
}

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

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 72px)));
  min-height: var(--header-h);
  margin: 18px auto 0;
  padding: 0 clamp(18px, 2.5vw, 30px);
  background: rgba(235, 243, 255, 0.9);
  border: 1px solid var(--white-line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-4px);
  background: rgba(236, 244, 255, 0.94);
  box-shadow: 12px 12px 30px rgba(34, 68, 128, 0.3), -12px -12px 30px rgba(255, 255, 255, 0.9);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand {
  width: clamp(140px, 12vw, 178px);
}

.footer-brand {
  width: clamp(160px, 16vw, 220px);
}

.brand-logo {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  max-height: 56px;
}

.brand-logo-text {
  color: #050505;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  color: #050505;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-strong);
  background: var(--surface);
  box-shadow: var(--shadow-inset-tight);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.header-action,
.button-primary {
  color: #eef6f4;
  background: linear-gradient(145deg, #12151d, #02050b);
  box-shadow: none;
}

.header-action {
  padding: 0 20px;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow-tight);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] {
  box-shadow: var(--shadow-inset-tight);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 92px)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
  justify-items: start;
  align-items: center;
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 72px)));
  min-height: clamp(540px, calc(100svh - 175px), 660px);
  margin: 24px auto 0;
  padding: clamp(34px, 5vw, 64px);
  isolation: isolate;
  overflow: hidden;
  text-align: left;
  color: var(--ink);
  background: linear-gradient(145deg, #f5f9ff, #dce8fb);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: 18px 20px 44px rgba(17, 38, 76, 0.28), -12px -12px 32px rgba(255, 255, 255, 0.74);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background: url("assets/hero-product-hand-transparent.png") right -7vw center / min(50vw, 640px) auto no-repeat;
  opacity: 1;
  filter: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  width: 100%;
  max-width: 650px;
  grid-column: 1;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  width: min(100%, 1080px);
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: none;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 30px;
}

.button {
  min-width: 190px;
  padding: 0 24px;
  cursor: pointer;
}

.button svg,
.header-action svg {
  width: 20px;
  height: 20px;
}

.button path,
.header-action path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.intro-block {
  display: grid;
  margin-top: 46px;
  padding: clamp(30px, 4.8vw, 54px) 0 8px;
}

.flow-step,
.principles-grid,
.service-panel,
.contact-grid,
.site-footer {
  background: linear-gradient(145deg, #f2f7ff, #dbe8ff);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.intro-block h2 {
  margin: 0;
  color: #030712;
  max-width: 780px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.intro-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(26px, 3.4vw, 38px);
  align-items: center;
  min-height: 132px;
  padding: clamp(22px, 2.7vw, 34px) clamp(30px, 4vw, 46px);
  background: linear-gradient(145deg, #f2f7ff, #dbe8ff);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.intro-toggle {
  position: relative;
  width: 88px;
  height: 46px;
  background: linear-gradient(145deg, #151923, #030712);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 6px 6px 14px rgba(3, 7, 18, 0.22), -6px -6px 14px rgba(255, 255, 255, 0.86);
}

.intro-toggle::before {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  content: "";
  background: linear-gradient(145deg, #f8fbff, #d7e7ff);
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 37, 122, 0.18);
}

.intro-card-copy {
  display: grid;
}

.intro-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.intro-card p,
.section-heading p,
.flow-step p,
.service-card p,
.value-item p,
.contact-copy p,
.form-status {
  color: var(--muted);
}

.model,
.principles,
.services,
.contact {
  padding: clamp(48px, 6.4vw, 82px) 0 0;
}

.section-heading {
  display: grid;
  row-gap: 10px;
  max-width: 990px;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.5vw, 58px);
}

.section-heading p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
}

.build-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(26px, 3.6vw, 42px);
}

.flow-step {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(300px, 28vw, 390px);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
}

.service-visual-card {
  color: #fff;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 16px 18px 34px rgba(17, 38, 76, 0.26), -10px -10px 24px rgba(255, 255, 255, 0.7);
}

.service-visual-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 9, 18, 0.12) 0%, rgba(4, 9, 18, 0.36) 46%, rgba(4, 9, 18, 0.78) 100%),
    radial-gradient(circle at 18% 12%, rgba(7, 93, 255, 0.28), transparent 34%);
}

.service-visual-card-distribution {
  background-image: url("assets/global-services-distribution.jpg");
}

.service-visual-card-logistics {
  background-image: url("assets/global-services-logistics.jpg");
  background-position: 58% center;
}

.service-visual-card-consolidation {
  background-image: url("assets/global-services-consolidation.webp");
  background-position: center bottom;
}

.flow-step h3,
.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.flow-step p {
  margin-bottom: 0;
  font-size: 15px;
}

.service-visual-card h3 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.service-visual-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.52;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.service-panel,
.contact-grid {
  display: grid;
  gap: clamp(20px, 3.6vw, 42px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-raised);
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(26px, 3.6vw, 42px);
}

.brand-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  text-align: center;
  background: linear-gradient(145deg, #f8fbff, #e1ecff);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  box-shadow: 11px 12px 24px rgba(34, 68, 128, 0.2), -9px -9px 22px rgba(255, 255, 255, 0.9);
}

.brand-card-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 118px;
  margin-bottom: 28px;
}

.brand-card-logo img {
  width: min(100%, 220px);
  max-height: 118px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-card p {
  max-width: 240px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.22vw, 20px);
  font-weight: 600;
  line-height: 1.48;
}

.service-card {
  min-height: 176px;
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(145deg, #f8fbff, #deebff);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 40px;
  box-shadow: 9px 10px 18px rgba(34, 68, 128, 0.22), -8px -8px 18px rgba(255, 255, 255, 0.88);
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles-grid {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 940px;
  margin-top: 30px;
  padding: 30px clamp(22px, 3vw, 36px) 30px 76px;
  border-radius: var(--radius-lg);
}

.principles-grid::before {
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 38px;
  width: 2px;
  content: "";
  background: rgba(7, 93, 255, 0.32);
  border-radius: 999px;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.72);
}

.value-item {
  position: relative;
  display: block;
  padding: 0 0 26px;
}

.value-item:last-child {
  padding-bottom: 0;
}

.value-item::before {
  position: absolute;
  top: 5px;
  left: -45px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--surface), var(--shadow-tight);
}

.value-item span {
  display: block;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.14;
}

.value-item p {
  max-width: 660px;
  margin: 8px 0 0;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
}

.contact {
  padding-bottom: 38px;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 56px);
  text-align: left;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-details a,
.contact-details span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: linear-gradient(145deg, #f3f8ff, #dce9ff);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-inset-tight);
  outline: 0;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 92px)));
  margin: 0 auto 28px;
  padding: 24px 28px;
  color: var(--muted);
  border-radius: var(--radius-lg);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 26px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    max-width: 520px;
    padding: 14px;
    margin-inline: auto;
    background: rgba(235, 243, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    box-shadow: var(--shadow-raised);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .build-flow,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
    --radius-xl: 32px;
    --radius-lg: 26px;
    --radius: 20px;
  }

  .site-header {
    top: 12px;
    width: min(362px, calc(100% - 28px));
    margin-right: auto;
    margin-left: 14px;
    min-height: var(--header-h);
    margin-top: 12px;
    padding-inline: 14px;
  }

  .brand {
    width: 138px;
  }

  .brand-logo {
    max-height: 40px;
  }

  .hero,
  .section-shell,
  .site-footer {
    width: min(362px, calc(100% - 28px));
    margin-right: auto;
    margin-left: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: clamp(460px, calc(100svh - 160px), 540px);
    margin-top: 18px;
    padding: 28px 18px 210px;
  }

  .hero::before {
    background-position: right -108px bottom 0;
    background-size: auto 58%;
    opacity: 1;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.2vw, 35px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero .hero-actions,
  .hero .button {
    width: auto;
  }

  .hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
  }

  .button {
    min-width: 0;
  }

  .intro-block,
  .build-flow,
  .service-grid,
  .brand-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 300px;
  }

  .brand-card-logo {
    min-height: 96px;
    margin-bottom: 24px;
  }

  .brand-card-logo img {
    max-height: 96px;
  }

  .intro-block {
    gap: 26px;
    margin-top: 28px;
    padding: 32px 0 24px;
  }

  .intro-block h2 {
    font-size: clamp(35px, 10vw, 48px);
    line-height: 1.1;
  }

  .intro-cards {
    gap: 14px;
  }

  .intro-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
    border-radius: 32px;
  }

  .intro-toggle {
    width: 58px;
    height: 32px;
  }

  .intro-toggle::before {
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
  }

  .flow-step {
    min-height: 280px;
  }

  .service-visual-card h3 {
    font-size: 26px;
  }

  .service-visual-card p {
    max-width: 100%;
  }

  .model,
  .principles,
  .services,
  .contact {
    padding-top: 44px;
  }

  .market-info-card,
  .moat-card {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: flex-start;
    min-height: 0;
    padding: 18px;
    border-radius: var(--radius-lg);
  }

  .market-toggle {
    width: 48px;
    height: 28px;
  }

  .market-toggle::before {
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
  }

  .moat-card::before {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .principles-grid {
    padding: 24px 18px 24px 58px;
  }

  .principles-grid::before {
    top: 39px;
    bottom: 39px;
    left: 28px;
  }

  .value-item::before {
    left: -36px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 7px var(--surface), var(--shadow-tight);
  }

  .contact-form {
    gap: 12px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    margin-bottom: 16px;
    padding: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
