@font-face {
  font-display: swap;
  font-family: "Fieldwork";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/fieldwork-light.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fieldwork";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fieldwork-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fieldwork";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/fieldwork-bold.woff2") format("woff2");
}

:root {
  --black: #020a0a;
  --primary: #ed7444;
  --gray: #bebdc2;
  --gray-60: #d9d9d9;
  --gray-light: #ebebec;
  --content-max: 1280px;
  --page-pad: clamp(20px, 5vw, 72px);
  --header-height: 90px;
  --slanted-cut: 14px;
  --slanted-motion: 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  --type-display: clamp(38px, 5.9vw, 76px);
  --type-heading: clamp(27px, 3.1vw, 44px);
  --type-subheading: clamp(21px, 2vw, 30px);
  --type-body: clamp(16px, 1.12vw, 18px);
  --type-small: 15px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--black);
  font-family: "Fieldwork", Arial, Helvetica, sans-serif;
  font-size: var(--type-body);
  line-height: 1.35;
  min-height: 100vh;
  padding-top: var(--header-height);
}

body.is-project-modal-open {
  overflow: hidden;
}

body.is-nav-open:not(.is-project-modal-open) {
  overflow: hidden;
}

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

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

.site-shell {
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.site-header {
  background: #ffffff;
  color: var(--black);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 0.28s ease, background-color 0.28s ease;
  z-index: 50;
}

body.is-scrolled .site-header {
  box-shadow: 0 10px 30px rgba(2, 10, 10, 0.08);
}

.header-shell,
.footer-top {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: 204px 1fr;
}

.header-shell {
  min-height: var(--header-height);
  padding: 0;
  position: relative;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  height: 42px;
  transition: transform 0.28s ease;
  width: auto;
}

.brand:hover img {
  transform: translateX(3px);
}

.site-nav-toggle {
  display: none;
}

.header-nav,
.footer-nav {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.nav-group {
  display: contents;
}

.nav-group-label {
  display: none;
}

.nav-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.8vw, 42px);
  justify-content: flex-end;
}

.nav-row a {
  color: var(--black);
  font-size: var(--type-small);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  transition: color 0.22s ease;
  white-space: nowrap;
}

.header-nav .nav-row a::after {
  background: var(--black);
  bottom: -3.2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: background-color 0.22s ease, transform 0.28s ease, width 0.28s ease;
  width: 0;
  z-index: 1;
}

.header-nav .nav-row:first-child a:hover::after,
.header-nav .nav-row:first-child a:focus-visible::after,
.header-nav .nav-row:first-child a.is-active::after,
.header-nav .nav-row:first-child a[aria-current="location"]::after,
.footer-nav .nav-row:first-child a:hover::after,
.footer-nav .nav-row:first-child a:focus-visible::after {
  width: 100%;
}

.nav-row-secondary a {
  color: var(--black);
  text-transform: none;
}

.header-nav .nav-row-secondary a::after,
.footer-nav .nav-row-secondary a::after {
  content: none;
}

.header-nav .nav-row-secondary a:hover,
.header-nav .nav-row-secondary a:focus-visible,
.header-nav .nav-row-secondary a.is-active,
.header-nav .nav-row-secondary a[aria-current="location"] {
  color: var(--primary) !important;
}

.header-nav .nav-row:first-child a:hover,
.header-nav .nav-row:first-child a:focus-visible,
.header-nav .nav-row:first-child a.is-active,
.header-nav .nav-row:first-child a[aria-current="location"],
.footer-nav .nav-row:first-child a:hover,
.footer-nav .nav-row:first-child a:focus-visible {
  color: var(--black) !important;
}

.header-nav .nav-row:first-child a:hover::after,
.header-nav .nav-row:first-child a:focus-visible::after,
.header-nav .nav-row:first-child a.is-active::after,
.header-nav .nav-row:first-child a[aria-current="location"]::after,
.footer-nav .nav-row:first-child a:hover::after,
.footer-nav .nav-row:first-child a:focus-visible::after {
  background: var(--black);
}

.footer-nav .nav-row:first-child a::after {
  background: var(--black);
  bottom: -3.2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: background-color 0.22s ease, width 0.28s ease;
  width: 0;
  z-index: 1;
}

.footer-nav .nav-row-secondary a:hover,
.footer-nav .nav-row-secondary a:focus-visible,
.footer-nav .nav-row-secondary a.is-active,
.footer-nav .nav-row-secondary a[aria-current="location"],
.footer-contact a:hover {
  color: var(--primary) !important;
}

.footer-nav .nav-row {
  gap: clamp(18px, 2.5vw, 38px);
  row-gap: 10px;
}

.footer-nav .nav-row:first-child a {
  line-height: 1;
}

.footer-nav .nav-row-secondary {
  gap: clamp(16px, 2.2vw, 34px);
  row-gap: 13px;
}

.footer-nav .nav-row-secondary a {
  line-height: 1.12;
}

main > section,
footer {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

@media (prefers-reduced-motion: no-preference) {
  body.reveal-ready .reveal-on-scroll {
    opacity: 0.001;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.52s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  body.reveal-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }
}

.hero {
  background: var(--primary);
  color: var(--black);
  overflow: hidden;
}

.hero-shell {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4.5vw, 68px);
  grid-template-columns: minmax(0, 0.93fr) minmax(374px, 0.79fr);
  min-height: clamp(320px, 35.4vw, 460px);
  padding: clamp(42px, 5.2vw, 72px) 0 clamp(38px, 4.8vw, 62px);
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  max-width: 700px;
  text-transform: uppercase;
}

.hero-lead {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: clamp(16px, 1.9vw, 26px) 0 0;
  max-width: 620px;
}

.hero-metrics {
  border-bottom: 1px solid rgba(2, 10, 10, 0.4);
  border-top: 1px solid rgba(2, 10, 10, 0.4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(20px, 2.4vw, 34px);
  max-width: 690px;
}

.hero-metrics div {
  padding: clamp(12px, 1.5vw, 18px) clamp(14px, 1.6vw, 22px);
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(2, 10, 10, 0.32);
}

.hero-metrics strong {
  display: block;
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  font-size: var(--type-small);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 8px;
  text-transform: uppercase;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(24px, 2.4vw, 34px);
  justify-content: space-between;
  row-gap: 14px;
  margin-top: clamp(24px, 2.8vw, 38px);
  max-width: 640px;
}

.hero-actions .huvud-button {
  flex: 0 0 auto;
  min-width: 278px;
}

.slanted-control,
.huvud-button,
.carousel-arrow,
.project-gallery-arrow,
.project-search {
  --control-bg: transparent;
  --control-border: transparent;
  --control-fill: transparent;
  --control-color: var(--black);
  --control-color-hover: var(--black);
  align-items: center;
  appearance: none;
  background-color: var(--control-bg);
  background-image: linear-gradient(60deg, var(--control-fill) 0 50%, var(--control-bg) 50% 100%);
  background-position: 125% 0;
  background-repeat: no-repeat;
  background-size: 260% 100%;
  border: 0;
  box-sizing: border-box;
  clip-path: polygon(var(--slanted-cut) 0, 100% 0, calc(100% - var(--slanted-cut)) 100%, 0 100%);
  color: var(--control-color);
  cursor: pointer;
  display: inline-flex;
  font-size: var(--type-body);
  font-weight: 700;
  isolation: isolate;
  justify-content: center;
  line-height: 1;
  min-height: 54px;
  min-width: 242px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--slanted-motion), background-position 0.5s linear;
}

.slanted-control .button-overlay,
.huvud-button .button-overlay,
.carousel-arrow .button-overlay,
.project-gallery-arrow .button-overlay,
.project-search .button-overlay {
  display: none;
}

.slanted-control::before,
.huvud-button::before,
.carousel-arrow::before,
.project-gallery-arrow::before,
.project-search::before {
  content: none;
}

.slanted-control:hover::before,
.slanted-control:focus-visible::before,
.huvud-button:hover::before,
.huvud-button:focus-visible::before,
.carousel-arrow:hover::before,
.carousel-arrow:focus-visible::before,
.project-gallery-arrow:hover::before,
.project-gallery-arrow:focus-visible::before,
.project-search:hover::before,
.project-search:focus-visible::before {
  content: none;
}

.slanted-control:hover,
.slanted-control:focus-visible,
.huvud-button:hover,
.huvud-button:focus-visible,
.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.project-gallery-arrow:hover,
.project-gallery-arrow:focus-visible,
.project-search:hover,
.project-search:focus-visible {
  background-position: 0 0;
  color: var(--control-color-hover);
}

.slanted-control:focus-visible,
.huvud-button:focus-visible,
.carousel-arrow:focus-visible,
.project-gallery-arrow:focus-visible,
.project-search:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.huvud-button .title {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  mix-blend-mode: difference;
  pointer-events: none;
  position: relative;
  transform: translateY(1px);
  z-index: 2;
}

.slanted-control--black,
.huvud-button,
.carousel-arrow {
  --control-bg: var(--black);
  --control-fill: #ffffff;
  --control-color: #ffffff;
  --control-color-hover: var(--black);
}

.mobile-header-cta {
  display: none;
}

.hero-visual {
  align-self: center;
  aspect-ratio: 1 / 1;
  justify-self: end;
  max-width: clamp(418px, 38.5vw, 594px);
  min-height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-visual video {
  display: block;
  height: calc(100% + 4px);
  inset: -2px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: calc(100% + 4px);
}

.walls-section {
  background: var(--gray);
  color: var(--black);
  overflow: hidden;
}

.walls-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 7.5vw, 96px);
}

.walls-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.walls-title strong {
  font-size: 1.12em;
  font-weight: 700;
  text-transform: none;
}

.walls-layout {
  align-items: start;
  display: grid;
  gap: clamp(32px, 4.8vw, 66px);
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  margin-top: clamp(32px, 4.7vw, 60px);
}

.walls-visual {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 38px);
  min-width: 0;
}

.walls-media {
  aspect-ratio: 4 / 3;
  background: rgba(2, 10, 10, 0.12);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.walls-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.walls-figure {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  width: 100%;
}

.walls-figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.walls-media:hover .walls-figure.is-active img {
  filter: contrast(1.04);
  transform: scale(1.035);
}

.walls-copy {
  display: flex;
  flex-direction: column;
}

.walls-text {
  display: grid;
  gap: clamp(13px, 1.5vw, 20px);
}

.walls-text p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.36;
  margin: 0;
}

.walls-text p:first-child {
  font-size: var(--type-subheading);
  line-height: 1.16;
}

.walls-facts {
  border-bottom: 1px solid rgba(2, 10, 10, 0.32);
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 38px);
}

.walls-facts div {
  padding: clamp(14px, 1.8vw, 22px) clamp(14px, 1.8vw, 22px);
}

.walls-facts div:first-child {
  padding-left: 0;
}

.walls-facts div + div {
  border-left: 1px solid rgba(2, 10, 10, 0.28);
}

.walls-facts span {
  display: block;
  font-size: var(--type-small);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.walls-facts strong {
  display: block;
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 10px;
}

.walls-controls {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  overflow: visible;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.walls-controls .huvud-button {
  min-width: 220px;
}

.walls-arrows {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.production-section .walls-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sustainability-section {
  background: var(--gray-60);
  color: var(--black);
}

.certification-section {
  background: var(--gray-light);
  padding-top: 1px;
}

.sustainability-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 7.5vw, 96px);
}

.sustainability-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.sustainability-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 66px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(32px, 4.7vw, 60px);
}

.sustainability-copy {
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
}

.sustainability-copy h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.sustainability-copy p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.36;
  margin: 0;
}

.sustainability-copy strong {
  font-weight: 700;
}

.sustainability-figure {
  aspect-ratio: 4 / 3;
  background: rgba(2, 10, 10, 0.12);
  margin: 0;
  overflow: hidden;
}

.sustainability-figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.certification-copy {
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
  margin-top: clamp(46px, 6vw, 82px);
  max-width: 1120px;
}

.certification-section .certification-copy {
  margin-top: clamp(32px, 4.7vw, 60px);
}

.certification-copy h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.certification-copy p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.36;
  margin: 0;
}

.certification-copy strong {
  font-weight: 700;
}

.certification-stage {
  background:
    linear-gradient(180deg, rgba(2, 10, 10, 0.32), rgba(2, 10, 10, 0.42)),
    image-set(
      url("../img/sustainability/certification-bg.webp") type("image/webp"),
      url("../img/sustainability/certification-bg.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  margin-top: clamp(30px, 4.4vw, 56px);
  margin-left: 50%;
  padding: clamp(42px, 5.8vw, 78px) 0;
  transform: translateX(-50%);
  width: 100vw;
}

.certification-stage-inner {
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.certification-logo-grid {
  background: rgba(2, 10, 10, 0.2);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  outline: 1px solid rgba(2, 10, 10, 0.22);
  overflow: hidden;
}

.certification-logo-cell {
  align-items: center;
  background: #fff;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(122px, 9.5vw, 150px);
  padding: clamp(16px, 1.7vw, 24px);
  text-decoration: none;
}

.certification-logo-cell-empty {
  pointer-events: none;
}

.certification-logo-cell img {
  display: block;
  height: auto;
  max-height: 72px;
  max-width: 82%;
  object-fit: contain;
}

.certification-logo-cell-wide img {
  max-height: 64px;
  max-width: 92%;
}

.certification-logo-cell-tall img {
  max-height: 116px;
  max-width: 88%;
}

.certification-logo-cell-badge img,
.certification-logo-cell-certified img {
  max-height: 102px;
}

.technical-section {
  background: var(--gray-60);
  color: var(--black);
}

.technical-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 7.5vw, 96px);
}

.technical-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.technical-layout {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  margin-top: clamp(34px, 5vw, 66px);
}

.technical-grid {
  aspect-ratio: 4 / 3;
  display: grid;
  gap: 1.5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.technical-card {
  background: var(--primary);
  display: grid;
  align-content: start;
  grid-template-rows: calc(61.5% - 5px) auto;
  min-width: 0;
  padding: clamp(9px, 1vw, 13px);
  position: relative;
}

.technical-number {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1;
  position: absolute;
  right: clamp(9px, 1vw, 13px);
  top: clamp(9px, 1vw, 13px);
}

.technical-icon {
  align-self: start;
  display: block;
  height: clamp(74px, 7.56vw, 99px);
  width: clamp(74px, 7.56vw, 99px);
}

.technical-icon svg,
.technical-icon canvas {
  display: block;
  height: 100% !important;
  width: 100% !important;
}

.technical-card h3 {
  border-top: 1px solid rgba(2, 10, 10, 0.42);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  padding-top: clamp(10px, 1.2vw, 15px);
  text-transform: uppercase;
  white-space: nowrap;
}

.technical-card p {
  align-self: start;
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.28;
  margin: clamp(12px, 1.3vw, 18px) 0 0;
  white-space: nowrap;
}

.technical-card p + p {
  margin-top: 6px;
}

.technical-card strong {
  font-weight: 700;
  white-space: nowrap;
}

.technical-copy {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  padding-left: clamp(36px, 4.8vw, 62px);
}

.technical-copy p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.36;
  margin: 0;
}

.technical-copy strong {
  font-weight: 700;
}

.technical-wall-stage {
  background:
    linear-gradient(180deg, rgba(2, 10, 10, 0.2), rgba(2, 10, 10, 0.34)),
    image-set(
      url("../img/technical/paslaugos-constructions-bg.webp") type("image/webp"),
      url("../img/technical/paslaugos-constructions-bg.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  margin-top: clamp(44px, 6.5vw, 84px);
  padding: clamp(44px, 6vw, 82px) 0;
}

.technical-wall-panel {
  background: rgba(217, 217, 217, 0.92);
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(28px, 4vw, 52px) clamp(18px, 2vw, 28px);
}

.technical-wall-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.technical-wall-card h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.technical-wall-card figure {
  background: #ffffff;
  border: 1px solid rgba(2, 10, 10, 0.42);
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  overflow: hidden;
  position: relative;
}

.technical-wall-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  transition: filter 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.technical-wall-card figure:hover img {
  filter: contrast(1.03);
  transform: scale(1.018);
}

.technical-wall-search {
  background: var(--primary);
  border: 0;
  bottom: 10px;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  transform: skewX(-10deg);
  transition: background-color 0.3s linear;
  width: 64px;
  z-index: 2;
}

.technical-wall-search:hover,
.technical-wall-search:focus-visible {
  background: #ffffff;
}

.technical-wall-search::before {
  border: 3px solid var(--black);
  border-radius: 50%;
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-55%, -55%) skewX(10deg);
  width: 15px;
}

.technical-wall-search::after {
  background: var(--black);
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 55%;
  transform: translate(4px, 5px) skewX(10deg) rotate(45deg);
  width: 12px;
}

.technical-wall-copy {
  display: grid;
  gap: clamp(13px, 1.5vw, 20px);
  margin-top: clamp(18px, 2.4vw, 30px);
}

.technical-wall-copy p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.42;
  margin: 0;
}

.technical-wall-copy strong {
  font-weight: 700;
}

.ansatz-section {
  background: var(--gray);
  color: var(--black);
}

.ansatz-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(48px, 7vw, 86px);
}

.ansatz-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.process-loop {
  background: transparent;
  margin-top: clamp(30px, 4.4vw, 56px);
  overflow: hidden;
  position: relative;
}

.process-loop::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.process-loop video {
  display: block;
  height: calc(100% + 4px);
  inset: -2px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: calc(100% + 4px);
}

.process-steps {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(32px, 4.6vw, 58px);
}

.process-step {
  align-items: center;
  border-top: 1px solid rgba(2, 10, 10, 0.28);
  display: grid;
  gap: clamp(65px, 10.8vw, 122px);
  grid-template-columns: clamp(177px, 20.6vw, 273px) minmax(0, 1fr);
  padding-top: clamp(20px, 2.4vw, 30px);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(2, 10, 10, 0.28);
  padding-bottom: clamp(20px, 2.4vw, 30px);
}

.step-animation {
  aspect-ratio: 1;
  background: transparent;
  width: clamp(177px, 20.6vw, 273px);
}

.step-lottie,
.step-lottie svg {
  display: block;
  height: 100%;
  width: 100%;
}

.step-copy {
  max-width: 820px;
}

.step-heading {
  align-items: center;
  display: flex;
  gap: 14px;
}

.step-heading span {
  align-items: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--black);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: var(--type-small);
  font-weight: 700;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding-top: 3px;
  width: 44px;
}

.step-heading h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.step-copy p {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: clamp(8px, 1vw, 13px) 0 0;
  max-width: 880px;
}

.technology-section {
  background: var(--gray-60);
  color: var(--black);
  overflow: hidden;
}

.technology-shell {
  padding: clamp(48px, 7vw, 86px) 0 clamp(54px, 7.5vw, 94px);
}

.technology-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.technology-intro {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: clamp(26px, 4vw, 50px) 0 0;
  max-width: 1140px;
}

.technology-intro strong {
  font-size: var(--type-subheading);
  font-weight: 700;
  line-height: 1;
}

.technology-carousel {
  margin-top: clamp(34px, 4.8vw, 62px);
  position: relative;
}

.technology-card-stage {
  padding: clamp(36px, 4.8vw, 64px) 0 clamp(34px, 4.5vw, 58px);
  position: relative;
}

.technology-card-stage::before {
  background:
    linear-gradient(180deg, rgba(2, 10, 10, 0.24), rgba(2, 10, 10, 0.38)),
    url("../img/gamybos-linija.jpg") center / cover no-repeat;
  content: "";
  inset: 0 auto 0 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}

.technology-track {
  position: relative;
  z-index: 1;
}

.technology-track {
  --technology-gap: clamp(32px, 4vw, 56px);
  display: flex;
  gap: var(--technology-gap);
  overflow-x: hidden;
  padding: 0 0 8px;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.technology-track::-webkit-scrollbar {
  display: none;
}

.technology-card {
  background: #d9d9d9;
  color: var(--black);
  display: grid;
  flex: 0 0 calc((100% - var(--technology-gap)) / 2);
  grid-template-rows: 122px 1fr;
  height: clamp(370px, 30vw, 393px);
  padding: 32px 26px 23px;
  position: relative;
  scroll-snap-align: start;
  transition: background-color 0.25s linear;
}

.technology-card.is-active {
  background: var(--primary);
}

.technology-card:not(.is-active) {
  cursor: pointer;
}

.technology-number {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1;
  position: absolute;
  right: 28px;
  top: 24px;
}

.technology-icon {
  align-items: center;
  display: flex;
  height: 96px;
  justify-content: center;
  width: 96px;
}

.technology-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.technology-card-copy {
  display: grid;
  grid-template-rows: 112px 1fr;
  min-height: 0;
}

.technology-card h3 {
  align-self: start;
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  max-width: 100%;
  text-transform: uppercase;
}

.technology-card p {
  align-self: start;
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.34;
  margin: 0;
}

.technology-controls {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: clamp(24px, 3.2vw, 40px);
  overflow: visible;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.technology-controls .huvud-button {
  min-width: 220px;
}

.technology-arrows {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.carousel-arrow {
  --control-bg: var(--black);
  --control-fill: #ffffff;
  --control-color: #ffffff;
  --control-color-hover: var(--black);
  height: 58px;
  min-width: 0;
  padding: 0;
  width: 78px;
}

.carousel-arrow::after {
  border-right: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  content: "";
  color: #ffffff;
  height: 14px;
  left: 50%;
  mix-blend-mode: difference;
  position: absolute;
  top: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 14px;
  z-index: 2;
}

.carousel-arrow-prev::after {
  transform: translate(-45%, -50%) rotate(-135deg);
}

.about-section {
  background: var(--gray);
  color: var(--black);
  overflow: hidden;
}

.about-shell {
  padding: clamp(54px, 7vw, 92px) 0 0;
}

.about-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.about-title strong {
  font-size: inherit;
  font-weight: 700;
  text-transform: none;
}

.about-intro {
  padding: clamp(28px, 4.6vw, 58px) 0 0;
}

.about-system h3,
.about-system-mobile h3,
.about-team h3,
.about-sustainability h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.about-intro-lead {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  max-width: 1040px;
}

.about-intro-lead strong {
  font-size: var(--type-subheading);
  font-weight: 700;
  line-height: 1;
}

.about-roof-stage {
  background:
    linear-gradient(180deg, rgba(2, 10, 10, 0.24), rgba(2, 10, 10, 0.48)),
    url("../img/about/about-cranes.jpg") center 45% / cover no-repeat;
  margin-top: clamp(34px, 5.8vw, 78px);
  position: relative;
  width: 100%;
}

.about-roof-stage-mobile {
  display: none;
}

.about-roof-shell {
  padding: clamp(52px, 8vw, 108px) 0 clamp(54px, 7.4vw, 92px);
  position: relative;
  z-index: 1;
}

.about-roof-shell-mobile {
  padding: clamp(42px, 11vw, 68px) 0;
  position: relative;
  z-index: 1;
}

.about-content {
  padding-bottom: clamp(58px, 7vw, 96px);
  padding-top: clamp(52px, 6.8vw, 88px);
}

.about-system {
  background: rgba(190, 189, 194, 0.94);
  color: var(--black);
  display: grid;
  gap: clamp(22px, 3.4vw, 44px);
  padding: clamp(28px, 4.1vw, 52px);
}

.about-system > p {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  max-width: 900px;
}

.about-system-mobile {
  background: rgba(190, 189, 194, 0.94);
  color: var(--black);
}

.about-system-mobile-inner {
  box-sizing: border-box;
  display: grid;
  gap: clamp(22px, 3.4vw, 44px);
  padding: clamp(28px, 4.1vw, 52px) 0;
}

.about-system-mobile-inner > p {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  max-width: 900px;
}

.about-units {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-unit {
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  padding: clamp(20px, 2.8vw, 34px);
  padding-left: 0;
  padding-right: 0;
}

.about-unit img {
  height: 54px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 245px);
}

.about-unit p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.42;
  margin: clamp(18px, 2vw, 26px) 0 0;
}

.about-team {
  padding-top: clamp(42px, 5.8vw, 74px);
}

.team-grid {
  display: grid;
  gap: clamp(24px, 3.7vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 4vw, 52px);
}

.team-member {
  display: grid;
  gap: 18px;
}

.team-photo {
  aspect-ratio: 1;
  background: rgba(2, 10, 10, 0.12);
  height: auto;
  overflow: hidden;
  transform: skewX(-6deg);
  width: 100%;
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: skewX(6deg) scale(1.12);
  transition: filter 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

@media (min-width: 1025px) {
  .team-member:hover .team-photo img {
    filter: contrast(1.04);
    transform: skewX(6deg) scale(1.18);
  }
}

.team-caption {
  padding-top: 2px;
}

.team-member h4 {
  font-size: var(--type-subheading);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

.team-member p {
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.35;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.about-facts {
  border-bottom: 1px solid rgba(2, 10, 10, 0.32);
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 78px);
}

.about-facts div {
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3vw, 36px);
}

.about-facts div:first-child {
  padding-left: 0;
}

.about-facts div + div {
  border-left: 1px solid rgba(2, 10, 10, 0.28);
}

.about-facts strong {
  display: block;
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
}

.about-facts span {
  display: block;
  font-size: var(--type-small);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 12px;
  text-transform: uppercase;
}

.about-sustainability {
  display: grid;
  gap: clamp(24px, 3.6vw, 46px);
  padding-top: clamp(42px, 5.8vw, 74px);
}

.about-sustainability div {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-sustainability p {
  break-inside: avoid;
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.46;
  margin: 0;
}

.about-sustainability p + p {
  margin-top: 0;
}

.experience-section {
  background: var(--gray-60);
  color: var(--black);
}

.experience-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(34px, 5vw, 58px);
}

.experience-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.experience-intro {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: clamp(26px, 4vw, 50px) 0 0;
  max-width: 1120px;
}

.experience-intro strong {
  font-size: var(--type-subheading);
  font-weight: 700;
  line-height: 1;
}

.experience-intro span {
  color: var(--black);
  font-weight: 600;
}

.experience-growth-stage {
  background:
    linear-gradient(90deg, rgba(2, 10, 10, 0.12), rgba(2, 10, 10, 0.06)),
    url("../img/experience/decor1.jpg") center / cover no-repeat;
  color: var(--black);
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px) 0;
}

.experience-growth-stage-mobile {
  display: none;
}

.experience-growth {
  align-items: start;
  background: rgba(217, 217, 217, 0.9);
  display: grid;
  gap: clamp(28px, 4.6vw, 64px);
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  padding: clamp(28px, 4.2vw, 54px);
}

.experience-growth p {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: 0;
  padding: 0;
}

.experience-growth p strong {
  font-weight: 700;
}

.experience-figure {
  background: #ffffff;
  margin: 0;
}

.experience-figure img {
  height: auto;
  width: 100%;
}

.experience-growth-mobile-panel {
  background: rgba(217, 217, 217, 0.9);
}

.experience-growth-mobile-inner {
  padding: clamp(28px, 4.2vw, 54px) 0;
}

.experience-growth-mobile-inner p {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: 0;
  padding: 0;
}

.experience-growth-mobile-inner p strong {
  font-weight: 700;
}

.experience-figure-mobile {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.experience-projects-shell {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(58px, 7.5vw, 96px);
}

.projects-section {
  margin-top: 0;
}

.projects-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.projects-carousel {
  margin-top: clamp(28px, 4.6vw, 58px);
}

.projects-track {
  --projects-gap: clamp(28px, 3.6vw, 46px);
  display: flex;
  gap: var(--projects-gap);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - var(--projects-gap)) / 2);
  min-width: 0;
  scroll-snap-align: start;
}

.project-gallery {
  aspect-ratio: 16 / 9;
  background: rgba(2, 10, 10, 0.12);
  height: clamp(235px, 25.5vw, 328px);
  overflow: hidden;
  position: relative;
}

.project-image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s linear, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.project-image.is-active {
  opacity: 1;
}

.project-card:hover .project-image.is-active {
  transform: scale(1.035);
}

.project-gallery-nav {
  bottom: 10px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: 10px;
  z-index: 2;
}

.slanted-control--orange,
.project-gallery-arrow {
  --control-bg: var(--primary);
  --control-fill: #ffffff;
  --control-color: var(--black);
  --control-color-hover: var(--black);
}

.project-gallery-arrow {
  appearance: none;
  height: 50px;
  min-width: 0;
  padding: 0;
  width: 74px;
}

.project-gallery-arrow::after {
  border-right: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  content: "";
  height: 13px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 13px;
  z-index: 2;
}

.project-gallery-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.slanted-control--white,
.project-search {
  --control-bg: #ffffff;
  --control-border: rgba(2, 10, 10, 0.2);
  --control-fill: var(--primary);
  --control-color: var(--black);
  --control-color-hover: #ffffff;
}

.slanted-control--ghost {
  --control-bg: transparent;
  --control-border: rgba(2, 10, 10, 0.28);
  --control-fill: var(--primary);
  --control-color: var(--black);
  --control-color-hover: #ffffff;
}

.project-search {
  appearance: none;
  bottom: 10px;
  height: 50px;
  left: 10px;
  min-width: 0;
  padding: 0;
  position: absolute;
  width: 74px;
  z-index: 2;
}

.project-search::after {
  background:
    radial-gradient(circle at 8px 8px, transparent 0 5px, currentColor 5.5px 7px, transparent 7.5px),
    linear-gradient(45deg, transparent 39%, currentColor 40% 60%, transparent 61%);
  background-position: 0 0, 14px 14px;
  background-repeat: no-repeat;
  background-size: 16px 16px, 9px 9px;
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  z-index: 2;
}

.project-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: clamp(214px, 17vw, 250px);
  padding-top: clamp(18px, 2.2vw, 26px);
}

.project-copy h4 {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.18;
  margin: 0;
}

.project-copy dl {
  border-bottom: 1px solid rgba(2, 10, 10, 0.32);
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  display: grid;
  flex: 1;
  gap: 10px;
  margin: clamp(14px, 1.7vw, 20px) 0 0;
  align-content: start;
  padding-bottom: clamp(12px, 1.5vw, 18px);
  padding-top: clamp(12px, 1.5vw, 18px);
}

.project-copy dl div {
  display: grid;
  gap: 12px;
  grid-template-columns: 74px minmax(0, 1fr);
}

.project-copy dt,
.project-copy dd {
  font-size: var(--type-body);
  line-height: 1.32;
  margin: 0;
}

.project-copy dt {
  color: rgba(2, 10, 10, 0.58);
  font-weight: 300;
}

.project-copy dd {
  font-weight: 400;
}

.projects-controls {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: clamp(24px, 3.2vw, 40px);
  overflow: visible;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.projects-controls .huvud-button {
  min-width: 220px;
}

.projects-arrows {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: var(--page-pad);
  position: fixed;
  z-index: 100;
}

.project-modal-backdrop {
  background: rgba(2, 10, 10, 0.72);
  inset: 0;
  position: absolute;
}

.project-modal-panel {
  background: var(--gray-60);
  max-width: min(1120px, 100%);
  position: relative;
  width: 100%;
  z-index: 1;
}

.project-modal-image {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  width: 100%;
}

.project-modal.is-image-modal .project-modal-panel {
  background: #ffffff;
  max-width: min(1180px, 100%);
}

.project-modal.is-image-modal .project-modal-image {
  aspect-ratio: auto;
  background: #ffffff;
  max-height: 78vh;
  object-fit: contain;
}

.project-modal-footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(18px, 2.4vw, 30px);
}

.project-modal-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.project-modal-footer h3 {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.12;
  margin: 0;
  text-transform: none;
}

.project-modal-footer p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.34;
  margin: 0;
  opacity: 0.88;
}

.project-modal-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.project-modal-arrows .carousel-arrow[hidden],
.project-modal.is-image-modal .project-modal-arrows {
  display: none;
}

.project-modal-close {
  background: var(--primary);
  border: 0;
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  transform: skewX(-10deg);
  width: 64px;
  z-index: 2;
}

.project-modal-close::before,
.project-modal-close::after {
  background: var(--black);
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 20px;
}

.project-modal-close::before {
  transform: translate(-50%, -50%) skewX(10deg) rotate(45deg);
}

.project-modal-close::after {
  transform: translate(-50%, -50%) skewX(10deg) rotate(-45deg);
}

.contact-section {
  background: var(--gray-60);
  color: var(--black);
}

.contact-shell {
  padding: clamp(54px, 7vw, 92px) 0 clamp(58px, 7.5vw, 96px);
}

.contact-title {
  border-bottom: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.contact-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  margin-top: clamp(32px, 4.7vw, 60px);
}

.contact-details {
  display: grid;
  column-gap: 1px;
  row-gap: 4px;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.contact-main-card,
.contact-unit,
.contact-form {
  border: 1px solid rgba(2, 10, 10, 0.34);
  background: rgba(235, 235, 236, 0.72);
}

.contact-main-card {
  display: grid;
  gap: clamp(14px, 1.55vw, 21px);
  grid-template-columns: 1fr;
  padding: clamp(22px, 2.55vw, 34px);
}

.contact-main-card img {
  align-self: start;
  height: 42px;
  width: auto;
}

.contact-main-card p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.34;
  margin: 0;
}

.contact-line span {
  color: rgba(2, 10, 10, 0.62);
  display: block;
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.14;
  margin-bottom: 6px;
}

.contact-line a {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.18;
}

.contact-line a:hover,
.contact-unit a:hover {
  color: var(--primary);
}

.contact-unit-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
}

.contact-unit {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(11px, 1vw, 15px);
}

.contact-unit img {
  height: auto;
  margin-bottom: clamp(13px, 1.45vw, 19px);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.contact-unit h3 {
  border-top: 1px solid rgba(2, 10, 10, 0.36);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  padding-top: clamp(11px, 1.2vw, 16px);
  text-transform: uppercase;
}

.contact-unit p {
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.3;
  margin: clamp(12px, 1.35vw, 18px) 0 clamp(16px, 1.75vw, 23px);
}

.contact-unit strong {
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.2;
  margin-top: auto;
}

.contact-unit a {
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.22;
  margin-top: 6px;
}

.contact-side {
  display: grid;
  column-gap: 1px;
  row-gap: 4px;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.contact-map {
  background: #343434;
  min-height: clamp(260px, 20.8vw, 300px);
  overflow: hidden;
  position: relative;
}

.contact-map iframe {
  border: 0;
  display: block;
  filter: grayscale(1) brightness(0.48) contrast(1.28);
  height: clamp(260px, 20.8vw, 300px);
  opacity: 0.98;
  width: 100%;
}

.contact-map-consent {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 84px;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.contact-map-consent p {
  font-size: var(--type-small);
  margin: 0;
}

.contact-map-consent-copy {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.contact-map-consent-copy strong {
  font-size: var(--type-body);
  font-weight: 400;
}

.contact-map-consent-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.contact-map-consent button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--primary);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: var(--type-small);
  padding: 0 0 4px;
  text-transform: uppercase;
}

.contact-map::after {
  border-left: clamp(17px, 1.8vw, 25px) solid transparent;
  border-right: clamp(17px, 1.8vw, 25px) solid transparent;
  border-top: clamp(34px, 3.7vw, 50px) solid var(--primary);
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -10%);
  z-index: 2;
}

.contact-form {
  align-content: start;
  display: grid;
  padding: clamp(22px, 2.6vw, 34px);
}

.contact-form h3 {
  font-size: var(--type-heading);
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.contact-form p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.32;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
}

.contact-form-grid {
  display: grid;
  gap: clamp(12px, 1.45vw, 18px);
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(2, 10, 10, 0.36);
  border-radius: 0;
  color: var(--black);
  font: inherit;
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.2;
  outline: 0;
  padding: 13px 15px;
  width: 100%;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.upload-field {
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed var(--black);
  border-radius: 0;
  color: var(--black);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 98px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.upload-field:hover,
.upload-field:focus-within {
  border-color: var(--primary);
  background: rgba(237, 116, 68, 0.08);
}

.upload-field input {
  cursor: pointer;
  inset: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.upload-icon {
  background: var(--black);
  display: block;
  height: 24px;
  margin-bottom: 9px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-5h-2v3H7v-3H5v5Zm6-5h2V7.8l2.6 2.6L17 9 12 4 7 9l1.4 1.4L11 7.8V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-5h-2v3H7v-3H5v5Zm6-5h2V7.8l2.6 2.6L17 9 12 4 7 9l1.4 1.4L11 7.8V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 24px;
}

.upload-label {
  color: rgba(2, 10, 10, 0.72);
  display: block;
  font-size: var(--type-small);
  line-height: 20.64px;
  text-align: center;
}

.upload-files {
  color: var(--black);
  display: block;
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 18px;
  margin-top: 8px;
  max-width: calc(100% - 24px);
  overflow-wrap: anywhere;
  text-align: center;
  width: 100%;
}

.contact-submit {
  box-sizing: border-box;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  margin-top: clamp(22px, 3vw, 34px);
  min-width: 0;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.legal-main {
  background: var(--gray-light);
}

.legal-back-link {
  display: none;
}

.legal-hero {
  background: var(--primary);
  color: var(--black);
}

.legal-hero-shell {
  padding: clamp(48px, 7vw, 88px) 0 clamp(44px, 6vw, 76px);
}

.legal-hero p {
  font-size: var(--type-small);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  text-transform: uppercase;
}

.legal-hero h1 {
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 0.98;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.legal-document {
  background: var(--gray-light);
}

.legal-document-shell {
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 112px);
  width: min(calc(100% - (var(--page-pad) * 2)), 960px);
}

.legal-intro {
  font-size: var(--type-subheading);
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 clamp(42px, 6vw, 72px);
  max-width: 850px;
}

.legal-section {
  border-top: 1px solid rgba(2, 10, 10, 0.34);
  display: grid;
  grid-template-columns: clamp(40px, 5vw, 64px) minmax(0, 1fr);
  padding: clamp(28px, 4vw, 46px) 0;
}

.legal-section-number {
  color: var(--primary);
  font-size: var(--type-small);
  font-weight: 700;
  grid-column: 1;
  grid-row: 1;
  line-height: 1.15;
  padding-top: 5px;
}

.legal-section h2,
.legal-section h3,
.legal-section p,
.legal-section ul,
.legal-section address {
  grid-column: 2;
}

.legal-section h2 {
  font-size: var(--type-subheading);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 clamp(20px, 2.8vw, 30px);
}

.legal-section h3 {
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1.35;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
}

.legal-section p,
.legal-section address,
.legal-section li {
  font-size: var(--type-body);
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
}

.legal-section p,
.legal-section address {
  margin: 0;
}

.legal-section p + p,
.legal-section p + address,
.legal-section address + p,
.legal-section address + address,
.legal-section ul + p {
  margin-top: clamp(16px, 2vw, 22px);
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section strong {
  font-weight: 700;
}

.legal-section a {
  text-decoration-color: var(--primary);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--primary);
}

.legal-section code {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
}

.cookie-settings-legal {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--primary);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  padding: 0 0 3px;
}

.legal-section-emphasis {
  background: var(--primary);
  border-top: 0;
  margin: clamp(10px, 2vw, 20px) 0;
  padding-left: clamp(20px, 3vw, 36px);
  padding-right: clamp(20px, 3vw, 36px);
}

.legal-section-emphasis .legal-section-number {
  color: var(--black);
}

.legal-meta {
  border-top: 1px solid rgba(2, 10, 10, 0.34);
  color: rgba(2, 10, 10, 0.68);
  font-size: var(--type-small);
  font-weight: 300;
  margin: 0;
  padding-top: clamp(20px, 3vw, 30px);
}

.footer-contact a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  background: var(--gray);
  color: var(--black);
}

.footer-shell {
  padding: clamp(38px, 5.6vw, 68px) 0 clamp(32px, 4.6vw, 54px);
}

.footer-contact {
  align-items: start;
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(24px, 3.2vw, 38px);
}

.footer-contact a {
  display: inline-block;
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.28;
  white-space: nowrap;
}

.footer-contact div:last-child {
  display: grid;
  gap: 6px;
}

.footer-contact-stack {
  display: grid;
  gap: 6px;
}

.footer-copyright {
  border-top: 1px solid rgba(2, 10, 10, 0.32);
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: clamp(18px, 2.4vw, 28px);
  color: rgba(2, 10, 10, 0.68);
  font-size: var(--type-small);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .header-shell,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .legal-body {
    padding-top: 76px;
  }

  .legal-body .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .legal-body .header-nav {
    display: none;
  }

  .legal-body .legal-back-link {
    display: inline-block;
    font-size: var(--type-small);
    font-weight: 400;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
  }

  .legal-body .legal-back-link::after {
    background: var(--primary);
    bottom: -6px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .header-nav,
  .footer-nav {
    justify-items: start;
  }

  .nav-row {
    justify-content: flex-start;
  }

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

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-contact div:last-child {
    flex-wrap: wrap;
  }

  .hero-shell,
  .walls-layout,
  .technical-layout,
  .sustainability-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details,
  .contact-side,
  .contact-unit-grid {
    height: auto;
  }

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

  .technical-grid {
    max-width: 620px;
  }

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

  .certification-logo-cell-empty-desktop {
    display: none;
  }

  .technical-copy {
    padding-left: 0;
  }

  .technology-card {
    flex-basis: 100%;
    height: auto;
    min-height: 393px;
  }

  .project-card {
    flex-basis: 100%;
  }

  .technology-controls,
  .projects-controls,
  .walls-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .technology-arrows,
  .projects-arrows,
  .walls-arrows {
    justify-content: flex-end;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-system,
  .about-sustainability,
  .experience-growth,
  .technical-wall-panel {
    grid-template-columns: 1fr;
  }

  .about-system > p {
    grid-column: auto;
  }

  .about-units,
  .team-grid,
  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div,
  .about-facts div:first-child {
    padding-left: 0;
  }

  .about-facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(2, 10, 10, 0.28);
  }

  .about-sustainability div {
    grid-template-columns: 1fr;
  }

  .about-sustainability p + p {
    margin-top: 18px;
  }

  .team-photo {
    transform: none;
  }

  .team-photo img {
    transform: none;
  }

  .hero-visual {
    aspect-ratio: 1 / 1;
    justify-self: stretch;
    max-width: none;
    min-height: 0;
  }

  .step-animation {
    width: clamp(184px, 66vw, 265px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .hero-metrics div:first-child {
    padding-left: 0;
  }

  .hero-metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(2, 10, 10, 0.32);
  }

  .walls-facts {
    grid-template-columns: 1fr;
  }

  .walls-facts div,
  .walls-facts div:first-child {
    padding-left: 0;
  }

  .walls-facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(2, 10, 10, 0.28);
  }

  .about-roof-shell {
    padding: clamp(42px, 11vw, 68px) 0 clamp(42px, 11vw, 68px);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 82px;
    --page-pad: clamp(18px, 3.6vw, 36px);
  }

  body:not(.legal-body) .header-shell {
    align-items: center;
    gap: 18px;
    grid-template-columns: 1fr auto;
  }

  .site-nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(2, 10, 10, 0.24);
    color: var(--black);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 52px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 52px;
    z-index: 3;
  }

  .site-nav-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    transition: transform 0.24s ease, opacity 0.24s ease;
    width: 22px;
  }

  body.is-nav-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.is-nav-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body:not(.legal-body) .header-nav {
    background: #ffffff;
    border: 1px solid rgba(2, 10, 10, 0.14);
    border-top: 1px solid rgba(2, 10, 10, 0.12);
    box-shadow: 0 18px 42px rgba(2, 10, 10, 0.1);
    gap: 0;
    justify-items: stretch;
    left: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% - 1px);
    transform: translateY(-12px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    visibility: hidden;
    z-index: 2;
  }

  body.is-nav-open .header-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  body:not(.legal-body) .header-nav .nav-group {
    display: grid;
    gap: 0;
    padding: 18px 20px;
  }

  body:not(.legal-body) .header-nav .nav-group + .nav-group {
    border-top: 1px solid rgba(2, 10, 10, 0.12);
  }

  body:not(.legal-body) .header-nav .nav-group-label {
    display: none;
  }

  body:not(.legal-body) .header-nav .nav-row {
    display: grid;
    gap: 10px 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    padding: 0;
  }

  body:not(.legal-body) .header-nav .nav-row a {
    color: var(--black);
    font-size: 14px;
    line-height: 1.12;
    padding: 4px 0;
    white-space: normal;
  }

  body:not(.legal-body) .header-nav .nav-row a::after {
    content: none;
  }

  body:not(.legal-body) .header-nav .nav-row a.is-active,
  body:not(.legal-body) .header-nav .nav-row a:hover {
    color: var(--primary);
  }

  body:not(.legal-body) .header-nav .nav-row-secondary a {
    color: var(--black);
    text-transform: none;
  }

  .hero-shell {
    gap: 32px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 46px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    column-gap: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    max-width: none;
    row-gap: 14px;
  }

  .hero-actions .huvud-button {
    min-width: 0;
    width: 100%;
  }

  .experience-growth {
    padding: clamp(24px, 4vw, 34px);
  }

  .contact-layout {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .contact-side,
  .contact-details {
    height: auto;
  }

  .contact-map,
  .contact-map iframe {
    height: 280px;
    min-height: 280px;
  }

  .contact-unit img {
    width: min(100%, 280px);
  }

  .projects-controls,
  .technology-controls,
  .walls-controls {
    gap: 18px;
  }

  .projects-controls .huvud-button,
  .technology-controls .huvud-button,
  .walls-controls .huvud-button {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 74px;
    --page-pad: 8px;
    --type-display: clamp(26px, 9vw, 40px);
    --type-heading: clamp(24px, 7.6vw, 34px);
    --type-subheading: clamp(18px, 5.4vw, 24px);
    --type-body: 16px;
  }

  .brand img {
    height: 34px;
    width: auto;
  }

  body:not(.legal-body) .header-shell {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-nav-toggle {
    height: 44px;
    width: 44px;
  }

  .mobile-header-cta {
    align-self: center;
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1;
    min-height: 31px;
    min-width: 0;
    padding: 0 13px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body:not(.legal-body) .header-nav {
    gap: 0;
    padding: 0;
  }

  .huvud-button {
    min-width: 0;
    width: 100%;
  }

  body:not(.legal-body) .header-nav .nav-row {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  body:not(.legal-body) .header-nav .nav-group {
    gap: 0;
    padding: 14px 16px;
  }

  .header-nav,
  .footer-nav {
    gap: 18px;
  }

  .footer-nav {
    gap: 20px;
  }

  .hero-shell {
    gap: 26px;
    padding-bottom: 34px;
    padding-top: 30px;
  }

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

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: none;
  }

  .technology-controls .huvud-button,
  .projects-controls .huvud-button,
  .walls-controls .huvud-button {
    display: none;
  }

  .about-roof-stage-desktop {
    display: none;
  }

  .about-roof-stage-mobile {
    display: block;
  }

  .about-roof-shell-mobile {
    padding: 24px 0;
  }

  .experience-growth-stage-desktop {
    display: none;
  }

  .experience-shell-intro {
    padding-left: calc(var(--page-pad) * 2);
    padding-right: calc(var(--page-pad) * 2);
  }

  .experience-growth-stage-mobile {
    display: block;
    padding: 24px 0 0;
  }

  .experience-growth-mobile-panel {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }

  .experience-growth-mobile-inner {
    padding: 24px calc(var(--page-pad) * 2);
  }

  .experience-figure-mobile {
    background: #ffffff;
    margin: 0;
    width: 100vw;
  }

  .technical-wall-stage {
    padding: 24px 0;
  }

  .technical-wall-panel {
    background: transparent;
    gap: 24px;
    padding: 0;
  }

  .technical-wall-card {
    background: rgba(217, 217, 217, 0.92);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 0 0;
    width: 100vw;
  }

  .technical-wall-card h3,
  .technical-wall-card .technical-wall-copy {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - (var(--page-pad) * 4));
  }

  .technical-wall-card figure {
    border-left: 0;
    border-right: 0;
    margin: 20px 0 0;
  }

  .technical-wall-card img {
    aspect-ratio: auto;
  }

  .technical-wall-copy {
    gap: 14px;
    margin-top: 22px;
    padding-bottom: 24px;
  }

  .about-system-mobile {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }

  .about-system-mobile-inner {
    gap: 18px;
    margin: 0 auto;
    max-width: none;
    padding: 24px calc(var(--page-pad) * 2);
    width: 100%;
  }

  .about-system-mobile-inner > p {
    font-size: var(--type-body);
    line-height: 1.34;
  }

  .hero-lead,
  .technology-intro,
  .about-intro-lead,
  .experience-intro,
  .experience-growth p,
  .experience-growth-mobile-inner p,
  .step-copy p,
  .walls-text p:first-child,
  .technical-copy p {
    font-size: var(--type-body);
    line-height: 1.34;
  }

  .hero-metrics span,
  .about-facts span {
    font-size: 13px;
  }

  .process-loop::before {
    padding-top: 72%;
  }

  .process-loop {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
    width: 100vw;
  }

  .process-loop::before {
    display: none;
  }

  .process-loop video {
    height: auto;
    inset: auto;
    object-fit: contain;
    position: static;
    width: 100%;
  }

  .process-steps {
    gap: 14px;
    margin-top: 26px;
  }

  .process-step {
    gap: 10px;
    padding-top: 16px;
  }

  .step-animation {
    display: none;
  }

  .legal-section {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .legal-section-emphasis {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .technology-card {
    flex: 0 0 100%;
    grid-template-rows: 88px 1fr;
    height: auto;
    min-height: 0;
    padding: 16px 14px 18px;
    width: 100%;
  }

  .technology-card-stage::before {
    display: none;
  }

  .technology-card-stage {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 14px 0 0;
    width: 100vw;
  }

  .technology-track {
    --technology-gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .technical-grid {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: auto;
    max-width: none;
    width: 100vw;
    grid-template-columns: 1fr;
  }

  .technical-card {
    min-height: 220px;
    padding-left: calc(var(--page-pad) * 2);
    padding-right: calc(var(--page-pad) * 2);
  }

  .technical-layout {
    gap: 24px;
  }

  .technology-card-copy {
    border-top: 0;
    grid-template-rows: 88px 1fr;
    padding-top: 18px;
  }

  .technology-number {
    font-size: 14px;
    right: 14px;
    top: 14px;
  }

  .technology-icon {
    height: 64px;
    width: 64px;
  }

  .technology-card h3 {
    font-size: 20px;
    line-height: 1.02;
    min-height: 88px;
  }

  .technology-card p {
    font-size: 15px;
    line-height: 1.28;
  }

  .step-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .step-heading span {
    height: 44px;
    width: 44px;
  }

  .experience-growth-stage {
    padding: 24px 0;
  }

  .project-gallery {
    height: auto;
  }

  .project-gallery-nav {
    bottom: 8px;
    gap: 6px;
    right: 8px;
  }

  .project-search {
    bottom: 8px;
    height: 42px;
    left: 8px;
    width: 58px;
  }

  .project-gallery-arrow,
  .carousel-arrow {
    height: 42px;
    width: 58px;
  }

  .projects-controls,
  .technology-controls,
  .walls-controls {
    gap: 14px;
    padding: 0;
  }

  .technology-controls .huvud-button {
    display: none;
  }

  .technology-controls {
    margin-top: 12px;
  }

  .projects-arrows,
  .technology-arrows,
  .walls-arrows {
    gap: 8px;
    padding-right: 0;
  }

  .project-copy {
    min-height: 0;
  }

  .project-copy dl div {
    gap: 10px;
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .contact-main-card,
  .contact-form {
    padding: 18px;
  }

  .contact-map,
  .contact-map iframe {
    height: 220px;
    min-height: 220px;
  }

  .contact-map-consent {
    gap: 28px;
    padding: 16px;
  }

  .contact-unit {
    padding: 14px;
  }

  .contact-unit img {
    width: min(100%, 210px);
  }

  .footer-shell {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .footer-contact {
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (max-width: 420px) {
  .hero-metrics strong,
  .about-facts strong {
    font-size: clamp(24px, 9vw, 32px);
  }

  .project-modal {
    padding: 10px;
  }

  .project-modal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .project-modal-arrows {
    width: 100%;
  }

  .project-modal-arrows .carousel-arrow {
    flex: 1 1 0;
    width: auto;
  }
}
