:root {
  --bg: #f8f6f1;
  --bg-soft: #faf8f3;
  --surface: #ffffff;
  --surface-alt: #f1eee7;
  --ink: #171a1d;
  --ink-soft: #3c4248;
  --muted: #5e646a;
  --line: #ddd8cf;
  --line-soft: rgba(23, 26, 29, 0.1);
  --blue: #0e6f8f;
  --blue-dark: #0a5872;
  --blue-soft: #d8eef4;
  --shadow: 0 18px 48px rgba(23, 26, 29, 0.08);
  --shadow-strong: 0 24px 70px rgba(23, 26, 29, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Geist, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.88);
  border-bottom: 1px solid rgba(221, 216, 207, 0.72);
  backdrop-filter: blur(18px);
  transition: background-color 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 246, 241, 0.94);
  border-bottom-color: rgba(221, 216, 207, 0.95);
  box-shadow: 0 12px 34px rgba(23, 26, 29, 0.055);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 14px rgba(14, 111, 143, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 520;
}

.site-nav a,
.footer-links a,
.footer-legal a {
  position: relative;
  transition: color 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--blue);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 6px;
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--blue);
}

.language-switch a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 26, 29, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

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

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

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

.section {
  position: relative;
  padding: 104px 0;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.hero {
  min-height: min(820px, calc(100svh - 20px));
  display: flex;
  align-items: center;
  padding: 98px 0 86px;
  overflow: hidden;
  border-bottom: 1px solid rgba(221, 216, 207, 0.6);
  --hero-shift: 0px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.94) 29%, rgba(248, 246, 241, 0.42) 58%, rgba(248, 246, 241, 0.16) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
  transform: translate3d(var(--hero-shift), 0, 0) scale(1.01);
  transition: transform 400ms var(--ease);
}

.hero-flow {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-flow-base path,
.hero-flow-active path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-flow-base path {
  stroke: rgba(14, 111, 143, 0.13);
  stroke-width: 1.1;
}

.hero-flow-active path {
  stroke: rgba(14, 111, 143, 0.64);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 48 740;
  stroke-dashoffset: 740;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(14, 111, 143, 0.28));
  animation: circuit-trace 7.2s var(--ease) infinite;
  animation-delay: var(--flow-delay, 0ms);
}

.hero-flow-nodes circle {
  fill: var(--blue);
  opacity: 0.28;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(14, 111, 143, 0.22));
  animation: node-glow 5.6s ease-in-out infinite;
  animation-delay: var(--node-delay, 0ms);
}

@keyframes circuit-trace {
  0% {
    opacity: 0;
    stroke-dashoffset: 740;
  }

  12% {
    opacity: 0.72;
  }

  48% {
    opacity: 0.42;
  }

  72% {
    opacity: 0;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes node-glow {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }

  28% {
    opacity: 0.92;
    transform: scale(1.42);
  }

  46% {
    opacity: 0.34;
    transform: scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px rgba(14, 111, 143, 0.08);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 680;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(23, 26, 29, 0);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(14, 111, 143, 0.2);
}

.button-secondary {
  background: rgba(248, 246, 241, 0.5);
  border-color: rgba(23, 26, 29, 0.22);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(23, 26, 29, 0.08);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 62px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.section-copy {
  max-width: 640px;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.section-copy .lead-line {
  margin-top: 30px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 610;
  line-height: 1.34;
}

.image-panel {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.image-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 111, 143, 0.18);
  box-shadow: var(--shadow-strong);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.image-panel:hover img {
  transform: scale(1.018);
}

.areas-section,
.contact-section {
  background: var(--surface-alt);
  border-top: 1px solid rgba(221, 216, 207, 0.72);
  border-bottom: 1px solid rgba(221, 216, 207, 0.72);
}

.section-heading {
  margin-bottom: 40px;
}

.narrow-heading {
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.area-card {
  grid-column: span 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  transform: translateZ(0);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}

.area-card:nth-child(4),
.area-card:nth-child(5) {
  grid-column: span 3;
}

.area-card:hover,
.area-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(14, 111, 143, 0.32);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(23, 26, 29, 0.1);
}

.area-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(221, 216, 207, 0.66);
  transition: transform 480ms var(--ease), filter 220ms var(--ease);
}

.area-card:hover img,
.area-card:focus-within img {
  transform: scale(1.025);
  filter: saturate(1.03);
}

.area-card-copy {
  padding: 24px;
}

.area-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 62px;
  align-items: start;
}

.principles {
  display: grid;
  gap: 16px;
}

.principle {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 22px 0 6px;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}

.principle::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 240ms var(--ease);
}

.principle:hover {
  border-top-color: rgba(14, 111, 143, 0.18);
  transform: translateX(4px);
}

.principle:hover::before {
  width: 74px;
}

.principle-index {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
}

.origin-section {
  background: var(--bg);
}

.origin-image img {
  aspect-ratio: 16 / 9;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
  gap: 62px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.direct-email {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 680;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.contact-form:focus-within {
  transform: translateY(-3px);
  border-color: rgba(14, 111, 143, 0.22);
  box-shadow: var(--shadow-strong);
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

textarea {
  resize: vertical;
  min-height: 142px;
}

input:focus,
textarea:focus {
  border-color: rgba(14, 111, 143, 0.66);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 111, 143, 0.12);
  transform: translateY(-1px);
}

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

.form-submit {
  width: fit-content;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

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

.form-status.is-success {
  color: #146c43;
}

.form-status.is-error {
  color: #8a2b2b;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto;
  gap: 42px;
  align-items: start;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.legal-page {
  min-height: 100svh;
  padding: 52px 0 84px;
  background: var(--bg);
}

.legal-container {
  max-width: 840px;
}

.legal-brand {
  margin-bottom: 24px;
}

.legal-language-switch {
  margin-bottom: 56px;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-page p a:not(.button) {
  color: var(--blue);
  font-weight: 650;
}

.legal-data {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.legal-data div:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-data dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.legal-data dd {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.legal-data a {
  color: var(--blue);
  font-weight: 650;
}

.effects-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.effects-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.effects-ready .reveal-item.reveal-from-left {
  transform: translateX(-18px);
}

.effects-ready .reveal-item.reveal-from-right {
  transform: translateX(18px);
}

.effects-ready .reveal-item.reveal-from-left.is-visible,
.effects-ready .reveal-item.reveal-from-right.is-visible {
  transform: translateX(0);
}

.site-footer .reveal-item,
.effects-ready .site-footer .reveal-item {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
.header-inner {
    gap: 16px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 42px;
    order: 4;
    margin-left: 0;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    margin: 0;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 246, 241, 0.98);
    box-shadow: 0 22px 46px rgba(23, 26, 29, 0.08);
  }

  .site-nav.is-open {
    display: grid;
    gap: 18px;
    justify-content: stretch;
  }

  .language-switch {
    order: 3;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 780px;
    align-items: flex-start;
    padding-top: 106px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.96) 42%, rgba(248, 246, 241, 0.34) 100%);
  }

  .hero-visual img {
    object-position: 58% bottom;
  }

  .hero-flow {
    opacity: 0.46;
    transform: translateX(-16%) scale(1.18);
    transform-origin: center;
  }

  .split-layout,
  .split-layout-reverse,
  .method-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-layout-reverse .section-copy {
    order: -1;
  }

  .contact-copy {
    position: static;
  }

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

  .area-card,
  .area-card:nth-child(4),
  .area-card:nth-child(5) {
    grid-column: span 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    font-size: 11px;
  }

  .language-switch a {
    min-width: 30px;
    min-height: 28px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: 810px;
    padding: 96px 0 70px;
  }

  .hero-visual img {
    opacity: 0.78;
  }

  .hero-flow {
    opacity: 0.36;
    transform: translateX(-28%) scale(1.28);
  }

  .hero-inner {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 43px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-copy,
  .section-copy p,
  .section-heading p {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .area-card-copy {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .legal-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .container {
    width: 362px;
    max-width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: auto;
  }
}

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

  .hero-visual img,
  .hero-flow,
  .image-panel:hover,
  .image-panel:hover img,
  .area-card:hover,
  .area-card:hover img,
  .principle:hover,
  .contact-form:focus-within,
  input:focus,
  textarea:focus,
  .effects-ready .reveal-item,
  .effects-ready .reveal-item.reveal-from-left,
  .effects-ready .reveal-item.reveal-from-right {
    transform: none !important;
  }

  .effects-ready .reveal-item {
    opacity: 1 !important;
  }

  .hero-flow-active path,
  .hero-flow-nodes circle {
    animation: none !important;
  }

  .hero-flow-active path {
    opacity: 0.22 !important;
    stroke-dasharray: none !important;
  }

  .hero-flow-nodes circle {
    opacity: 0.35 !important;
  }
}
