:root {
  --ink: #101816;
  --ink-2: #25302c;
  --muted: #606a66;
  --line: #d7ddd8;
  --paper: #f5f4f0;
  --paper-2: #ebe8df;
  --white: #ffffff;
  --green: #2f6d3f;
  --green-dark: #1f452d;
  --green-soft: #8fc978;
  --steel: #87938c;
  --yellow: #f2bd27;
  --danger: #9d3c2e;
  --shadow: 0 22px 55px rgba(16, 24, 22, 0.15);
  --header-height: 74px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(212, 169, 40, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(8, 20, 15, 0.7);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 20, 15, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.12rem;
}

.site-header .brand {
  line-height: 0;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(58px, 4.8vw, 64px);
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.26));
}

.brand span {
  font-weight: 700;
}

.brand strong {
  color: #66a95f;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 160ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.header-cta {
  min-height: 42px;
  background: var(--green);
  color: var(--white);
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(47, 109, 63, 0.28);
}

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

.button--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 109, 63, 0.3);
}

.button--primary:hover {
  background: #3c8050;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(8, 20, 15, 0.16), rgba(8, 20, 15, 0.02)),
    url("./assets/images/hero-industrial.jpg") center / cover;
  transform: scale(1.04);
  transform-origin: 64% 50%;
  animation: hero-kenburns 20s cubic-bezier(0.42, 0, 0.2, 1) infinite alternate;
  will-change: transform;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 14, 11, 0.88) 0%, rgba(6, 14, 11, 0.58) 42%, rgba(6, 14, 11, 0.08) 77%),
    linear-gradient(0deg, rgba(6, 14, 11, 0.68) 0%, rgba(6, 14, 11, 0.04) 44%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: clamp(90px, 15vh, 150px);
}

.hero__copy {
  max-width: 790px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.45rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__actions .button {
  min-height: 54px;
  padding-inline: 22px;
}

.quick-actions {
  position: fixed;
  right: 0;
  top: 50%;
  bottom: auto;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-50%);
}

.quick-actions__item {
  min-width: 58px;
  min-height: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 6px 0 0 6px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.quick-actions__item--whatsapp {
  background: var(--green);
  color: var(--white);
}

.quick-actions__item--call {
  margin-top: 10px;
  background: var(--yellow);
  color: var(--ink);
}

.clients {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--white);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.7);
}

.clients .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 30px 0 38px;
}

.clients h2 {
  margin: 0;
  text-align: center;
  color: #2f3633;
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.client-logo {
  min-height: 84px;
  display: grid;
  place-items: center;
  border-right: 1px solid #c9cfca;
  background: var(--white);
  color: var(--ink);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  font-weight: 900;
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo--pepsico {
  color: #174e8c;
}

.client-logo--banorte {
  color: #c01828;
}

.client-logo--banamex {
  color: #1e4e85;
}

.section,
.about,
.contact {
  padding: clamp(78px, 10vw, 128px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.about__copy > p,
.contact__details > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card .icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 0;
  background: transparent;
}

.service-card svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 22px 0 8px;
  font-size: 1.17rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.differentiators {
  padding: clamp(76px, 10vw, 124px) 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(143, 201, 120, 0.1), transparent 32%),
    linear-gradient(90deg, rgba(11, 18, 18, 0.97), rgba(16, 24, 22, 0.92));
  color: var(--white);
}

.video-break {
  position: relative;
  min-height: clamp(420px, 62vw, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(6, 14, 11, 0.24), rgba(6, 14, 11, 0.24)),
    url("./assets/images/video-break-poster.jpg") center / cover;
  color: var(--white);
}

.video-break__media,
.video-break__overlay {
  position: absolute;
  inset: 0;
}

.video-break__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.08) brightness(1.18);
}

.video-break__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 14, 11, 0.62), rgba(6, 14, 11, 0.12), rgba(6, 14, 11, 0.58)),
    linear-gradient(0deg, rgba(6, 14, 11, 0.58), rgba(6, 14, 11, 0.08) 45%, rgba(6, 14, 11, 0.54));
}

.video-break__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.video-break__content p {
  margin: 0 0 18px;
  color: var(--green-soft);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-break__content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.section-heading--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.diff-grid article {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mini-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--green-soft);
}

.mini-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.diff-grid h3 {
  margin: 26px 0 0;
  font-size: 1.1rem;
  line-height: 1.18;
}

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

.project-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(16, 24, 22, 0.08);
  box-shadow: 0 20px 46px rgba(16, 24, 22, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(16, 24, 22, 0.13);
}

.project-gallery {
  position: relative;
  height: clamp(265px, 24vw, 340px);
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--steel);
  isolation: isolate;
}

.project-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 48%;
  background: linear-gradient(0deg, rgba(16, 24, 22, 0.52), rgba(16, 24, 22, 0));
  pointer-events: none;
}

.project-gallery__stage,
.project-gallery__image {
  position: absolute;
  inset: 0;
}

.project-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease;
}

.project-gallery__image.is-active {
  opacity: 1;
  animation: gallery-kenburns 9s cubic-bezier(0.42, 0, 0.2, 1) both;
}

.project-gallery__controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.project-gallery__arrow,
.project-gallery__dots button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(16, 24, 22, 0.52);
  backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.project-gallery__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.project-gallery__arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.project-gallery__arrow:hover,
.project-gallery__dots button:hover,
.project-gallery__dots button.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(47, 109, 63, 0.86);
}

.project-gallery__dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 22, 0.38);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.project-gallery__dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  padding: 0;
  border-radius: 50%;
}

.project-card__body {
  flex: 1;
  padding: 20px;
}

.project-type {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.project-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about {
  background: var(--paper-2);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.about__image {
  min-height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(16, 24, 22, 0.12), rgba(16, 24, 22, 0.02)),
    url("./assets/images/about-hardhat.jpg") center / cover;
  box-shadow: var(--shadow);
}

.about__copy {
  display: grid;
  gap: 20px;
}

.about__facts {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.about__facts strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  color: var(--green-dark);
}

.about__facts span {
  width: fit-content;
  padding: 9px 12px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.contact__details {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.contact__details p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.contact-list strong {
  line-height: 1.1;
}

.contact-list em {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field--wide,
.privacy,
.lead-form .button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fbfaf6;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(71, 111, 78, 0.14);
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.lead-form .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  padding: 46px 0 26px;
  background: #0c1510;
  color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.7fr));
  gap: 30px;
}

.brand--footer {
  color: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

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

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 120;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(19, 32, 25, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] + .main-nav,
  .main-nav.is-open,
  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    height: clamp(250px, 62vw, 390px);
  }

  .service-card {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

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

  .diff-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .clients .container,
  .section-heading,
  .about__grid,
  .contact__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact__details {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 66px;
  }

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

  .site-header {
    padding-inline: 14px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .brand img {
    height: 56px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(6, 14, 11, 0.9), rgba(6, 14, 11, 0.64)),
      linear-gradient(0deg, rgba(6, 14, 11, 0.86), rgba(6, 14, 11, 0.08));
  }

  .hero__media {
    background-position: 62% center;
  }

  .video-break {
    min-height: 520px;
  }

  .video-break__overlay {
    background:
      linear-gradient(90deg, rgba(6, 14, 11, 0.7), rgba(6, 14, 11, 0.2)),
      linear-gradient(0deg, rgba(6, 14, 11, 0.68), rgba(6, 14, 11, 0.12) 45%, rgba(6, 14, 11, 0.62));
  }

  .video-break__content p {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero p {
    margin-top: 20px;
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .quick-actions {
    right: 12px;
    left: 12px;
    bottom: 12px;
    top: auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 0;
    transform: none;
  }

  .quick-actions__item {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border-radius: 6px;
    writing-mode: horizontal-tb;
  }

  .quick-actions__item--call {
    margin-top: 0;
  }

  .clients {
    margin-top: 0;
  }

  .clients .container {
    padding: 16px;
  }

  .client-strip {
    grid-template-columns: 1fr;
  }

  .client-logo {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid #c9cfca;
  }

  .client-logo:last-child {
    border-bottom: 0;
  }

  .section,
  .about,
  .contact {
    padding: 72px 0;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

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

  .diff-grid article {
    min-height: 136px;
  }

  .about__image {
    min-height: 340px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(-2.2%, -1.2%, 0);
  }
}

@keyframes gallery-kenburns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}
