@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Thin.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "StageGrotesk";
  src: url("../fonts/StageGrotesk-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --blue: #0095d9;
  --blue-dark: #003e5e;
  --text: #55595c;
  --muted: #7d858a;
  --white: #ffffff;
  --soft: #f5f5f5;
  --shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  --container: 1296px;
}

@keyframes heroDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-24px, 18px, 0) scale(1.06);
  }
}

@keyframes orbFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -16px, 0);
  }
  100% {
    transform: translate3d(14px, 10px, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "StageGrotesk", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 18px;
  line-height: 1.65;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 8px 12px;
  background: #fff;
  color: #111;
}

.skip-link:focus {
  left: 0;
}

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

.section {
  margin-top: 80px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

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

.button-light {
  color: #2196f3;
  background: #f5f5f5;
  box-shadow: 0 3px 20px rgba(224, 224, 224, 0.18);
}

.button-small {
  min-height: 53px;
  padding-inline: 26px;
  font-size: 16px;
  font-weight: 700;
}

.button-hero {
  width: 464px;
  max-width: 100%;
  background: #f5f5f5;
  color: #2196f3;
  font-weight: 500;
}

.centered-button {
  display: flex;
  width: min(430px, 100%);
  margin: 32px auto 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 677px;
  padding: 20px 0 56px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 38, 57, 0.82), rgba(0, 83, 116, 0.48)),
    url("../img/new-block-flats-buildings-blue-sky-newly-built-modern-apartments-1-1-1024x525.webp") center/cover no-repeat;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -160px;
  bottom: -190px;
  width: clamp(320px, 44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: translate3d(0, 0, 0);
  animation: heroDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(-140px, -5vw, -30px);
  bottom: -180px;
  width: clamp(300px, 40vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  transform: translate3d(0, 0, 0);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

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

.simple-header {
  padding: 20px 0;
  background:
    linear-gradient(90deg, rgba(0, 38, 57, 0.85), rgba(0, 95, 130, 0.52)),
    url("../img/new-block-flats-buildings-blue-sky-newly-built-modern-apartments-1-1-1024x525.webp") center/cover no-repeat;
}

.topbar {
  width: min(var(--container), 90%);
  min-height: 92px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 8px;
  background: rgba(0, 62, 94, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.53);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

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

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

.nav-links {
  display: flex;
  gap: 31px;
  align-items: center;
  flex: 1;
  font-size: 16px;
  font-weight: 100;
  color: #fff;
}

.nav-links a {
  position: relative;
  padding: 10px 1px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.hero-content h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.35;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 100;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 100;
  line-height: 1;
}

.eyebrow-light {
  color: #fff;
}

.copy h2,
.centered h2,
.result-intro h2,
.partners h2,
.process h2,
.contact h2 {
  color: var(--blue);
  font-size: 54px;
  font-weight: 500;
}

.copy > p:not(.eyebrow),
.centered p,
.lead,
.partners p,
.contact p {
  font-weight: 300;
}

.service-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.service-list li {
  margin: 17px 0;
  font-weight: 300;
}

.service-list strong {
  color: #0078b6;
  font-weight: 500;
}

.services .button {
  width: min(430px, 100%);
  margin-top: 13px;
}

.service-collage {
  display: block;
}

.service-collage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.centered {
  text-align: center;
}

.about .container {
  max-width: var(--container);
}

.about h2 {
  margin-bottom: 25px;
}

.about p {
  max-width: 1280px;
  margin: 0 auto 24px;
}

.wide-photo {
  width: 100%;
  height: 444px;
  margin: 34px auto 0;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about .button {
  width: min(430px, 100%);
  margin-top: 30px;
}

.blue-panel {
  padding: 100px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 149, 217, 0.92), rgba(0, 149, 217, 0.92)),
    url("../img/back-pintura.webp") center/cover no-repeat;
  border-radius: 20px;
}

.result-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.result-intro h2 {
  color: #fff;
}

.lead {
  max-width: 560px;
  margin-left: auto;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.benefit-card {
  min-height: 302px;
  padding: 186px 20px 20px;
  color: var(--blue-dark);
  background:
    linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.92)),
    var(--bg) center/cover no-repeat;
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card p {
  margin: 0;
  font-weight: 500;
}

.project-slider {
  margin-top: 12px;
}

.slider-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.project-track {
  display: flex;
  gap: 10px;
  transition: transform 0.45s ease;
}

.project-track img {
  flex: 0 0 calc((100% - 20px) / 3);
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.dots,
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.dots button,
.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.dots button.is-active,
.testimonial-dots button.is-active {
  background: #fff;
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 54px;
}

.video-row video {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: #222;
  border-radius: 8px;
}

.testimonials {
  margin-top: 70px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 34px;
  color: #fff;
  font-size: 54px;
  font-weight: 400;
}

.testimonial-window {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  min-height: 315px;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.testimonial-card.is-active,
.testimonial-card.is-next {
  display: grid;
}

.testimonial-card p {
  max-width: 610px;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  border-radius: 50%;
}

.testimonial-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-card span {
  font-size: 16px;
}

.materials-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.materials-art > div {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.counter {
  color: var(--blue);
  font-size: 80px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.counter strong {
  display: inline-block;
  min-width: 2.3ch;
  text-align: center;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

.counter span {
  margin-right: 6px;
}

.counter em {
  font-size: 40px;
  font-style: italic;
}

.materials-art p {
  margin-top: -20px;
}

.materials-art img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.materials-art div img {
  height: 250px;
}

.painter {
  height: 480px;
}

.process .centered h2 {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.process-grid article {
  min-height: 150px;
  padding: 30px;
  display: grid;
  align-content: center;
  text-align: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-grid article:nth-child(1),
.process-grid article:nth-child(2),
.process-grid article:nth-child(3) {
  grid-column: span 2;
}

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

.process-grid h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  font-weight: 300;
  line-height: 1.15;
}

.contact {
  margin: 80px 0;
}

.contact-card {
  min-height: 455px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  padding: 120px 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 112, 170, 0.82), rgba(0, 149, 217, 0.22)),
    url("../img/contato-background.webp") center/cover no-repeat;
  border-radius: 20px;
}

.contact h2 {
  color: #fff;
}

.contact-actions {
  display: grid;
  gap: 28px;
}

.contact-actions .button {
  width: 100%;
}

.footer {
  padding-bottom: 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 100px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  font-size: 16px;
  font-weight: 300;
}

.footer h3 {
  margin: 20px 0 10px;
  color: #0078b6;
  font-size: 16px;
  font-weight: 700;
}

.footer-grid > div:nth-child(2) a {
  display: block;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: #999;
}

.social-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.footer-button {
  width: 190px;
  margin-top: 24px;
  font-size: 20px;
}

.footer-map {
  min-width: 0;
}

.footer-map h3 {
  margin-top: 0;
}

.footer-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.credits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 44px;
  padding: 22px 80px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  text-align: center;
}

.credits a,
.credits div {
  display: grid;
  justify-items: center;
  align-items: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.credits a:first-child {
  grid-template-columns: 1fr;
  gap: 8px;
}

.credits a:first-child span {
  grid-column: auto;
}

.credits img:first-of-type {
  width: min(220px, 100%);
}

.shield,
.doc-icon {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 56px;
  line-height: 1;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1200;
  color: #fff;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(0, 62, 94, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.cookie-banner__text h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.cookie-banner__text a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.cookie-banner__button-primary {
  border-color: #fff;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 700;
}

.privacy-content {
  padding: 60px 0 70px;
}

.privacy-content h1 {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 54px;
  font-weight: 500;
}

.privacy-content h2 {
  margin-top: 30px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 500;
}

.privacy-content p,
.privacy-content li {
  font-weight: 300;
}

.privacy-content h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 500;
}

.policy-note {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #f4fafe;
}

.policy-note p {
  margin: 0;
}

.cookie-types {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.cookie-type {
  padding: 14px 16px;
  border: 1px solid #d6e8f6;
  border-radius: 8px;
  background: #f8fcff;
}

.cookie-type h3 {
  margin-top: 0;
}

.cookie-table-wrap {
  margin: 18px 0 14px;
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 10px;
  border: 1px solid #d8e7f3;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  font-weight: 300;
}

.cookie-table th {
  color: var(--blue-dark);
  background: #edf7fe;
  font-weight: 700;
}

.js-enabled .reveal {
  --reveal-delay: 0ms;
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.18, 0.71, 0.25, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay);
}

.js-enabled .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(2px);
}

.js-enabled .reveal.reveal-left:not(.is-visible) {
  transform: translate3d(-42px, 20px, 0) scale(0.985);
}

.js-enabled .reveal.reveal-right:not(.is-visible) {
  transform: translate3d(42px, 20px, 0) scale(0.985);
}

.js-enabled .reveal.reveal-zoom:not(.is-visible) {
  transform: scale(0.93);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
  }

  .process-grid article:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 26px rgba(0, 62, 94, 0.35);
  }

  .service-collage img:hover,
  .wide-photo:hover,
  .materials-art img:hover,
  .project-track img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  }

}

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

  .hero::before,
  .hero::after {
    animation: none;
  }

  .js-enabled .reveal,
  .js-enabled .reveal:not(.is-visible),
  .js-enabled .reveal.reveal-left:not(.is-visible),
  .js-enabled .reveal.reveal-right:not(.is-visible),
  .js-enabled .reveal.reveal-zoom:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  .container,
  .hero-content {
    width: min(var(--container), calc(100% - 76px));
  }

  .topbar {
    gap: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .split,
  .result-intro,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-collage,
  .materials-art {
    max-width: 650px;
    margin: 0 auto;
  }

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

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .container,
  .hero-content {
    width: calc(100% - 40px);
  }

  .section {
    margin-top: 60px;
  }

  .hero {
    min-height: 633px;
    padding-top: 20px;
    background:
      linear-gradient(90deg, rgba(0, 38, 57, 0.82), rgba(0, 83, 116, 0.46)),
      url("../img/new-block-flats-buildings-blue-sky-newly-built-modern-apartments-1-1-768x394.webp") center/cover no-repeat;
  }

  .topbar {
    width: 90%;
    min-height: 66px;
    padding: 16px 20px;
    gap: 12px;
  }

  .brand img {
    width: 93px;
  }

  .nav-links {
    display: none;
  }

  .button-small {
    margin-left: auto;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 34px;
  }

  .hero-content h1 {
    max-width: 351px;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.42;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.25;
  }

  .button {
    min-height: 43px;
    font-size: 18px;
  }

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

  .copy h2,
  .centered h2,
  .result-intro h2,
  .partners h2,
  .process h2,
  .contact h2,
  .testimonials h2,
  .privacy-content h1 {
    font-size: 32px;
    text-align: center;
  }

  .services h2,
  .about h2,
  .results h2 {
    font-size: 42px;
  }

  .services .copy h2,
  .services .copy > p:not(.eyebrow) {
    text-align: left;
  }

  .eyebrow {
    font-size: 24px;
  }

  .services .split {
    gap: 30px;
  }

  .service-list li {
    margin: 18px 0;
  }

  .about p,
  .copy > p:not(.eyebrow),
  .partners p,
  .contact p {
    text-align: center;
  }

  .wide-photo {
    height: 400px;
  }

  .blue-panel {
    padding: 80px 0;
    background:
      linear-gradient(rgba(0, 149, 217, 0.92), rgba(0, 149, 217, 0.92)),
      url("../img/back-pintura-728x1024.webp") center/cover no-repeat;
  }

  .result-intro {
    gap: 20px;
    text-align: center;
  }

  .lead {
    margin: 0 auto;
  }

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

  .benefit-card {
    min-height: 250px;
    padding-top: 148px;
  }

  .project-track img {
    flex-basis: 100%;
    height: 400px;
  }

  .video-row {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .video-row video {
    height: 190px;
  }

  .testimonial-window {
    grid-template-columns: 1fr;
  }

  .testimonial-card.is-next {
    display: none;
  }

  .testimonial-card p {
    font-size: 20px;
  }

  .materials-art {
    grid-template-columns: 1fr;
  }

  .painter {
    display: none;
  }

  .counter {
    font-size: 64px;
  }

  .counter em {
    font-size: 28px;
  }

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

  .process-grid article:nth-child(n) {
    grid-column: span 1;
  }

  .process-grid h3 {
    font-size: 32px;
  }

  .contact-card {
    min-height: auto;
    padding: 80px 20px;
    gap: 25px;
    text-align: center;
    background-position: top center;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-grid > div:nth-child(2) {
    margin-top: 8px;
  }

  .footer-map iframe {
    height: 200px;
  }

  .footer-button {
    width: 100%;
  }

  .credits {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 40px);
    padding: 24px 20px;
  }

  .simple-header {
    padding-bottom: 20px;
  }

  .privacy-content {
    padding-top: 46px;
  }

  .privacy-content h2 {
    font-size: 28px;
  }

  .privacy-content h3 {
    font-size: 22px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .cookie-table {
    min-width: 560px;
  }
}
