:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --paper: #f7f7f5;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(0, 0, 0, 0.13);
  --red: #e50914;
  --red-dark: #a50008;
  --serif: "Libre Bodoni", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Montserrat", "Gotham", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-loading {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  grid-template-areas:
    "copy options"
    "copy actions";
  align-items: center;
  gap: 12px 24px;
  width: 100%;
  padding: 16px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.94);
  color: var(--white);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(16px);
}

.cookie-copy span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-copy {
  grid-area: copy;
  max-width: 720px;
}

.cookie-copy h2 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.cookie-copy p {
  margin: 0;
  color: #d8d8d8;
  font-size: 12px;
  line-height: 1.55;
}

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

.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f1f1f1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-options input {
  accent-color: var(--red);
}

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

.cookie-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-link {
  padding: 0;
  color: #f2f2f2;
  background: transparent;
}

.cookie-secondary {
  padding: 0 14px;
  color: var(--white);
  background: #242424;
}

.cookie-primary {
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
}

@media (min-width: 641px) {
  .whatsapp-float {
    bottom: 148px;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 16px;
    left: auto;
    bottom: 82px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "options"
      "actions";
    gap: 16px;
    width: min(520px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }

  .cookie-options {
    justify-content: flex-start;
  }

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

  .cookie-actions button {
    flex: 1 1 100%;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr 154px;
  align-items: center;
  width: 100%;
  padding: 20px 45px 12px;
  transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 10px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 138px;
  height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 43px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  opacity: 0.95;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.is-active::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: none;
  min-width: 220px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  line-height: 1.35;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--red);
}

.nav-dropdown-menu a::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn span {
  margin-left: 18px;
  font-size: 20px;
  line-height: 1;
}

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

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(229, 9, 20, 0.24);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  min-width: 300px;
  min-height: 46px;
  padding: 0 22px;
}

.btn-light {
  border-color: rgba(0, 0, 0, 0.22);
  color: #111;
  min-height: 42px;
  padding: 0 20px;
  font-size: 10px;
}

.nav-toggle {
  display: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background: #050505;
  color: var(--white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader span {
  color: var(--red);
  font-size: clamp(38px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.8;
}

.preloader small {
  color: var(--white);
  font-size: clamp(12px, 2vw, 19px);
  font-weight: 900;
  letter-spacing: 10px;
  margin-left: 10px;
}

.preloader::after {
  width: 120px;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
  animation: preload-line 1s ease-in-out infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preload-line {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.45;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: 640px;
  height: 100svh;
  overflow: hidden;
  background: #050505;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background-image:
    radial-gradient(circle, rgba(229, 9, 20, 0.56) 0 1.4px, transparent 1.8px),
    radial-gradient(circle, rgba(229, 9, 20, 0.32) 0 1px, transparent 1.5px);
  background-position: 12% 18%, 74% 24%;
  background-size: 150px 150px, 210px 210px;
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: hero-particles-drift 16s ease-in-out infinite alternate;
}

.hero::after {
  background:
    radial-gradient(circle at 18% 28%, rgba(229, 9, 20, 0.2), transparent 2px),
    radial-gradient(circle at 42% 18%, rgba(229, 9, 20, 0.18), transparent 2px),
    radial-gradient(circle at 67% 36%, rgba(229, 9, 20, 0.2), transparent 2px),
    radial-gradient(circle at 86% 22%, rgba(229, 9, 20, 0.24), transparent 2px),
    radial-gradient(circle at 58% 72%, rgba(229, 9, 20, 0.15), transparent 2px);
  opacity: 0.45;
  filter: blur(0.2px);
  animation: hero-particles-glow 5.5s ease-in-out infinite;
}

.hero-bg,
.cta-photo,
.project-media {
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/slider.jpeg");
  background-size: 100% auto;
  background-position: 70% 25%;
  filter: none;
  animation: hero-bg-zoom 24s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.62) 32%, rgba(3, 3, 3, 0.28) 55%, rgba(3, 3, 3, 0.55) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.75) 0%, rgba(3, 3, 3, 0.15) 35%, rgba(3, 3, 3, 0.05) 55%, rgba(3, 3, 3, 0.5) 100%);
  pointer-events: none;
}

@keyframes hero-bg-zoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes hero-particles-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes hero-particles-glow {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero::before,
  .hero::after {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, calc(100% - 72px));
  min-height: 100%;
  padding: 80px 0 70px 65px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 75px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 > span {
  color: var(--red);
  display: block;
}

.hero-word-rotator {
  display: block;
  min-height: 0.96em;
  color: var(--red);
  opacity: 1;
  transform: perspective(520px) rotateX(0deg) translateY(0);
  transform-origin: 50% 58%;
  transition:
    opacity 0.14s ease,
    transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.hero-word-rotator.is-changing {
  opacity: 0.72;
  transform: perspective(520px) rotateX(-58deg) translateY(-0.1em);
}

.hero-word-rotator.is-entering {
  animation: hero-word-rotate-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-word-rotate-in {
  0% {
    opacity: 0.72;
    transform: perspective(520px) rotateX(58deg) translateY(0.1em);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: perspective(520px) rotateX(0deg) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word-rotator {
    animation: none;
    transition: none;
    transform: none;
  }
}

.hero p {
  width: min(390px, 100%);
  margin: 24px 0 30px;
  color: #e6e6e6;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.showreel {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.play {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}

.play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  content: "";
  transform: translate(-33.333%, -50%);
}

.hero-social {
  position: absolute;
  right: 42px;
  bottom: 86px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 21px;
  line-height: 1;
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.hero-social svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-social a:nth-child(2) svg,
.hero-social a:nth-child(3) svg {
  fill: var(--white);
  stroke: none;
}

.logos,
.stats,
.projects,
.about {
  color: #050505;
  background: var(--paper);
}

.logos {
  overflow: hidden;
  padding: 44px 0;
}

.logo-marquee {
  position: relative;
  width: 100%;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(247, 247, 245, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(247, 247, 245, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: logo-marquee 20s linear infinite;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track figure {
  display: grid;
  place-items: center;
  flex: 0 0 180px;
  width: 180px;
  height: 96px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.logo-track img {
  display: block;
  width: 82%;
  height: 72%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--logo-marquee-distance, 1020px) * -1));
  }
}

.stats {
  display: grid;
  grid-template-columns: 1.18fr 4fr;
  gap: 0;
  align-items: center;
  padding: 36px 64px 34px;
}

.stats-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-title,
.stats article {
  min-height: 96px;
  border-right: 1px solid rgba(0, 0, 0, 0.11);
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-title {
  padding-left: 0;
}

.stats-items article:last-child {
  border-right: 0;
}

.stats h2,
.projects h2,
.about h2,
.services h2,
.cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stats h2 {
  font-size: 27px;
  line-height: 1.06;
}

.stats h2 span,
.projects h2 span,
.about h2 span,
.services h2 span,
.cta h2 span {
  color: var(--red);
}

.stats article strong {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}

.stats article span {
  color: #080808;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.55;
  text-transform: uppercase;
}

.section-dark {
  background: var(--black-soft);
}

.services {
  padding: 42px 58px 48px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto 22px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.services h2 {
  color: var(--white);
  font-size: 28px;
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1150px;
  margin: 0 auto;
}

.service-card {
  min-height: 255px;
  padding: 28px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.68);
}

.service-card .icon {
  display: grid;
  place-items: center;
  height: 38px;
  margin-bottom: 18px;
  color: var(--red);
  line-height: 1;
}

.service-card .icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  min-height: 38px;
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 auto 22px;
  color: #cfcfcf;
  font-size: 9px;
  line-height: 1.65;
}

.service-card a {
  color: var(--red);
  font-size: 19px;
}

.projects {
  position: relative;
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 42px 47px 56px;
  overflow: hidden;
}

.projects-copy {
  padding-top: 34px;
}

.projects h2 {
  margin-bottom: 43px;
  font-size: 31px;
  line-height: 1.14;
}

.projects-copy a {
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.projects-copy a span {
  margin-left: 14px;
  font-size: 20px;
}

.project-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.project-card {
  flex: 0 0 230px;
  position: relative;
  height: 320px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  scroll-snap-align: start;
}

.project-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.project-media {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
  filter: saturate(1.28) contrast(1.08);
}

.project-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.78));
  content: "";
  pointer-events: none;
}

.project-media video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

.project-media iframe {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 130%;
  border: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.project-card h3,
.project-card p {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
  margin: 0;
}

.project-card h3 {
  bottom: 32px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card p {
  bottom: 14px;
  color: #d6d6d6;
  font-size: 12px;
}

.slider-next {
  position: absolute;
  right: 18px;
  top: 136px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.17);
  cursor: pointer;
  font-size: 42px;
}

.dots {
  position: absolute;
  bottom: 21px;
  left: 50%;
  display: flex;
  gap: 9px;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d1d1;
}

.dots span:first-child {
  background: var(--red);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  gap: 34px;
  min-height: 410px;
  padding: 54px 56px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.055), rgba(247, 247, 245, 0) 32%),
    linear-gradient(180deg, #fbfbf9, var(--paper));
}

.about::before {
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: calc(38% + 34px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.14), transparent);
  content: "";
}

.about::after {
  position: absolute;
  right: 48px;
  bottom: 38px;
  width: 140px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0.26;
  transform-origin: right;
  animation: about-line-in 0.9s ease both;
}

.about-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0 34px 0 0;
  text-align: center;
  animation: about-copy-in 0.75s ease both;
}

.about h2 {
  margin: 12px 0 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-copy > p {
  max-width: 360px;
  margin: 28px 0 0;
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.about-mission {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 0;
}

.about-mission article {
  position: relative;
  padding: 22px 26px 24px 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.055);
  transform: translateY(14px);
  opacity: 0;
  animation: about-card-in 0.7s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-mission article:nth-child(2) {
  animation-delay: 0.14s;
}

.about-mission article:hover {
  border-color: rgba(229, 9, 20, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.085);
  transform: translateY(-3px);
}

.about-mission h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.about-mission h3::before {
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.about-mission p {
  max-width: none;
  margin: 0;
  color: #1d1d1d;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.75;
}

@keyframes about-copy-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-card-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-line-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-copy,
  .about-mission article,
  .about::after {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.contact-form-section {
  display: grid;
  grid-template-columns: 38% minmax(0, 1fr);
  gap: 54px;
  padding: 58px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 20%, rgba(229, 9, 20, 0.12), transparent 28%),
    #070707;
  color: var(--white);
}

.contact-form-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-form-copy h2 span {
  color: var(--red);
}

.contact-form-copy p {
  max-width: 370px;
  margin: 24px 0 0;
  color: #d6d6d6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #f4f4f4;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font: 600 12px/1.4 var(--sans);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 14px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(229, 9, 20, 0.85);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form select option {
  background: #080808;
  color: var(--white);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.cta {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 165px;
  background: #050505;
}

.cta-copy {
  position: relative;
  z-index: 1;
  padding: 28px 0 24px 56px;
  background: linear-gradient(90deg, #050505 0%, #050505 78%, rgba(5, 5, 5, 0.28) 100%);
}

.cta h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.02;
}

.cta p {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta .btn {
  min-height: 38px;
  padding: 0 22px;
  font-size: 9px;
}

.cta-photo {
  min-height: 165px;
  background-image: url("../img/contacto.jpeg");
  background-size: 760px auto;
  background-position: center;
  filter: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 108px 160px 180px 190px 160px 210px 1fr 38px;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  color: #efefef;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer .brand img {
  width: 88px;
}

.site-footer span {
  text-transform: none;
}

.site-footer a,
.site-footer span {
  line-height: 1.35;
}

.claims-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.claims-book svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.claims-book span {
  color: inherit;
  text-transform: uppercase;
}

.to-top {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(229, 9, 20, 0.7);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  display: grid;
  place-items: center;
  align-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(229, 9, 20, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: whatsapp-pulse 1.9s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.04);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(229, 9, 20, 0.34), 0 0 0 0 rgba(229, 9, 20, 0.45);
  }

  50% {
    box-shadow: 0 18px 38px rgba(229, 9, 20, 0.34), 0 0 0 12px rgba(229, 9, 20, 0);
  }
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(300px, 360px);
  width: min(820px, 100%);
  max-height: min(90svh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080808;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.is-open .project-modal-card {
  transform: translateY(0) scale(1);
}

.project-modal-card video,
.project-modal-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  background: #000;
  object-fit: contain;
}

.project-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: min(90svh, 760px);
  overflow-y: auto;
  padding: 74px 38px 44px;
  background: linear-gradient(180deg, #101010, #070707);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.project-modal-copy span {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-modal-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.project-modal-copy p {
  margin: 0;
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
}

.project-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal-card {
  position: relative;
  width: min(780px, 100%);
  max-height: 86svh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f7f7f5;
  color: #090909;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal.is-open .legal-modal-card {
  transform: translateY(0) scale(1);
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #050505;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.legal-content {
  display: none;
  max-height: 86svh;
  overflow-y: auto;
  padding: 48px 54px 52px;
}

.legal-content.is-active {
  display: block;
}

.legal-content > span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 0 48px 24px 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #222;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0;
  padding-left: 19px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: grid;
}

.video-modal > button {
  position: absolute;
  top: 24px;
  right: 28px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 46px;
}

.video-frame {
  display: grid;
  place-items: center;
  width: min(420px, calc((100vh - 72px) * 9 / 16), calc(100% - 32px));
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.video-frame video,
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px 1fr 135px;
    padding-inline: 28px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-content {
    padding-left: 38px;
  }

  .stats {
    grid-template-columns: 1.12fr 4fr;
    padding: 30px 34px 29px;
  }

  .stats-title,
  .stats article {
    min-height: 86px;
    padding: 0 24px;
  }

  .stats h2 {
    font-size: 23px;
  }

  .stats article strong {
    font-size: 34px;
  }

  .stats article span {
    font-size: 9px;
  }

  .stats-items {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .services {
    padding: 38px 36px 42px;
  }

  .service-card {
    min-height: 238px;
    padding: 24px 14px 20px;
  }

  .service-card .icon {
    height: 34px;
    margin-bottom: 16px;
    font-size: 30px;
  }

  .service-card .icon svg {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    min-height: 34px;
    font-size: 9px;
  }

  .service-card p {
    font-size: 8px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .projects {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 34px 40px;
  }

  .projects-copy {
    padding-top: 20px;
  }

  .projects h2 {
    margin-bottom: 32px;
    font-size: 25px;
  }

  .project-row {
    grid-template-columns: repeat(5, 135px);
  }

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

  .project-media {
    height: auto;
  }

  .project-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .about {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 24px;
    min-height: 380px;
    padding: 44px 34px;
  }

  .about-copy {
    padding: 0 18px 0 0;
  }

  .about h2 {
    font-size: 28px;
  }

  .about-mission {
    gap: 16px;
    padding: 0;
  }

  .about-mission article {
    padding: 19px 22px 21px 24px;
  }

  .about-mission p {
    font-size: 11px;
    line-height: 1.68;
  }

  .site-footer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 18px 26px;
    font-size: 9px;
  }

  .contact-form-section {
    grid-template-columns: 34% minmax(0, 1fr);
    gap: 30px;
    padding: 46px 34px;
  }

  .contact-form-copy h2 {
    font-size: 28px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.3vw, 62px);
  }

  .hero p {
    margin: 18px 0 22px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions .btn {
    min-height: 42px;
  }

  .play {
    width: 42px;
    height: 42px;
  }

  .play::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }
}

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

  .header-btn {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .main-nav {
    position: fixed;
    top: 75px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 4, 4, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    transform: none;
    border: 0;
    border-left: 2px solid var(--red);
    margin: 0 0 8px 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 12px 0 12px 16px;
    white-space: normal;
  }

  .main-nav a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .brand img {
    width: 124px;
  }

  .projects {
    grid-template-columns: 210px minmax(0, 1fr);
    padding-inline: 24px;
  }

  .projects h2 {
    font-size: 22px;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 42px 28px;
  }

  .about::before {
    display: none;
  }

  .about-copy {
    padding: 0;
  }

  .about-mission {
    padding: 0;
  }

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

  .service-card {
    min-height: 230px;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 22px 26px;
    font-size: 10px;
  }

  .site-footer .to-top {
    justify-self: start;
  }

  .contact-form-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 22px;
  }

  .contact-form-copy h2 {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero {
    min-height: 620px;
    height: 100svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0.1)),
      url("../img/slider.jpeg");
    background-size: cover;
    background-position: 80% 20%;
    opacity: 0.3;
  }

  .hero-content {
    width: min(100% - 74px, 380px);
    padding: 76px 0 58px 20px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.8vw, 38px);
    line-height: 0.98;
  }

  .hero p {
    max-width: 290px;
    margin: 20px 0 24px;
    font-size: 11px;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 9px;
  }

  .hero-actions .btn span {
    margin-left: 16px;
    font-size: 17px;
  }

  .showreel {
    gap: 13px;
    min-height: 42px;
    font-size: 9px;
  }

  .play {
    width: 38px;
    height: 38px;
    border-width: 2px;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }

  .play::before {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .hero-social {
    right: 18px;
    bottom: 84px;
    gap: 18px;
  }

  .hero-social a {
    width: 25px;
    height: 25px;
  }

  .logos {
    padding: 42px 22px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 54px;
  }

  .logo-track {
    gap: 16px;
    animation-duration: 18s;
  }

  .logo-track figure {
    flex-basis: 136px;
    width: 136px;
    height: 76px;
  }

  .stats,
  .services,
  .projects {
    padding-inline: 22px;
  }

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

  .stats-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .stats-title,
  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
    padding: 0 0 26px;
  }

  .stats-title {
    align-items: center;
    border-bottom: 0;
    padding-bottom: 22px;
    text-align: center;
    width: 100%;
  }

  .stats h2 {
    width: 100%;
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.04;
  }

  .stats h2 br {
    display: none;
  }

  .stats h2 span {
    display: block;
  }

  .stats article {
    min-width: 0;
    min-height: 92px;
    padding: 0 8px 14px;
    border-bottom: 0;
    border-right: 1px solid var(--dark-line);
  }

  .stats article:last-child {
    border-right: 0;
  }

  .stats article strong {
    margin-bottom: 10px;
    font-size: clamp(24px, 8vw, 33px);
  }

  .stats article span {
    font-size: clamp(6px, 1.9vw, 8px);
    line-height: 1.45;
  }

  .section-head {
    flex-direction: column;
    gap: 24px;
  }

  .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding-bottom: 0;
  }

  .service-card {
    min-width: 0;
    min-height: 178px;
    padding: 16px 4px 13px;
  }

  .service-card .icon {
    height: 22px;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .service-card .icon svg {
    width: 21px;
    height: 21px;
  }

  .service-card h3 {
    min-height: auto;
    margin-bottom: 9px;
    font-size: 8px;
    line-height: 1.2;
  }

  .service-card p {
    max-width: none;
    margin-bottom: 0;
    color: #f2f2f2;
    font-size: 7px;
    font-weight: 600;
    line-height: 1.48;
  }

  .service-card a {
    display: none;
  }

  .projects {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .slider-next {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
    padding: 38px 22px;
  }

  .about-copy {
    padding: 0;
  }

  .about h2 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.08;
  }

  .about-copy > p {
    margin: 16px 0 0;
    font-size: 9px;
    line-height: 1.65;
  }

  .about-mission {
    gap: 18px;
    padding: 0;
  }

  .about-mission article {
    padding: 18px 18px 20px 20px;
  }

  .about-mission p {
    font-size: 10px;
    line-height: 1.65;
  }

  .about .btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 7.5px;
  }

  .about .btn span {
    margin-left: 10px;
  }

  .cta {
    grid-template-columns: 48% 52%;
    min-height: 215px;
  }

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

  .contact-form input,
  .contact-form select {
    min-height: 46px;
  }

  .cta-copy {
    padding: 34px 10px 30px 22px;
  }

  .cta h2 {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.04;
  }

  .cta p {
    font-size: 9px;
    line-height: 1.45;
  }

  .cta .btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 9px;
  }

  .cta-photo {
    min-height: 215px;
    background-size: cover;
    background-position: center;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 28px 22px;
    font-size: 9px;
  }

  .site-footer .to-top {
    justify-self: start;
  }

  .project-modal {
    padding: 18px;
  }

  .project-modal-card {
    grid-template-columns: 1fr;
    max-height: 90svh;
    overflow-y: auto;
  }

  .project-modal-card video,
  .project-modal-card iframe {
    min-height: 260px;
    height: min(46svh, 360px);
  }

  .project-modal-copy {
    max-height: none;
    padding: 28px 22px 30px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .project-modal-copy h2 {
    font-size: 27px;
  }

  .legal-modal {
    padding: 18px;
  }

  .legal-content {
    padding: 38px 24px 36px;
  }

  .legal-content h2 {
    margin-right: 42px;
    font-size: 27px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .stats,
  .services,
  .projects {
    padding-inline: 16px;
  }

  .stats article {
    padding-inline: 5px;
  }

  .stats-title {
    padding-bottom: 20px;
  }

  .stats h2 {
    font-size: clamp(18px, 5.8vw, 25px);
  }

  .stats article strong {
    font-size: clamp(22px, 7.6vw, 30px);
  }

  .stats article span {
    font-size: 6px;
  }

  .service-card {
    min-height: 164px;
    padding: 14px 3px 12px;
  }

  .service-card h3 {
    font-size: 7px;
    line-height: 1.18;
  }

  .service-card p {
    font-size: 6.2px;
    line-height: 1.42;
  }

  .service-card .icon {
    height: 20px;
    margin-bottom: 7px;
    font-size: 18px;
  }

  .service-card .icon svg {
    width: 19px;
    height: 19px;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding: 32px 16px;
  }

  .about-copy {
    padding: 0;
  }

  .about h2 {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .about-copy > p {
    margin: 13px 0 0;
    font-size: 8px;
    line-height: 1.55;
  }

  .about-mission {
    gap: 16px;
    padding: 0;
  }

  .about-mission article {
    padding: 16px 16px 18px 18px;
  }

  .about-mission h3 {
    font-size: 11px;
  }

  .about-mission p {
    font-size: 9px;
    line-height: 1.58;
  }

  .about .btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 6.5px;
  }

  .cta {
    grid-template-columns: 49% 51%;
    min-height: 205px;
  }

  .contact-form-section {
    padding: 36px 16px;
  }

  .contact-form-copy h2 {
    font-size: 25px;
  }

  .contact-form-copy p {
    font-size: 11px;
  }

  .cta-copy {
    padding: 28px 8px 24px 20px;
  }

  .cta h2 {
    font-size: clamp(20px, 6vw, 24px);
  }

  .cta p {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .cta .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 8px;
  }

  .cta .btn span {
    margin-left: 12px;
  }

  .cta-photo {
    min-height: 205px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    font-size: 8px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 9px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .hero-content {
    width: min(100% - 82px, 330px);
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(26px, 8.2vw, 33px);
  }

  .hero p {
    max-width: 270px;
    font-size: 10px;
    line-height: 1.58;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 8px;
  }

  .showreel {
    gap: 11px;
    font-size: 8px;
  }

  .play {
    width: 34px;
    height: 34px;
  }

  .play::before {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }
}
/*CENTRO EL COPY*/
.footer-copy{
    grid-column: 1 / -1;
    text-align: center;
    padding: 18px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #aaa;
    font-size: 11px;
}