:root {
  --ink: #0b1624;
  --ink-2: #132236;
  --steel: #627084;
  --line: #dce1e7;
  --paper: #f4f5f3;
  --white: #fff;
  --orange: #f26622;
  --orange-2: #ff7a32;
  --green: #25d366;
  --radius: 3px;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(10, 24, 40, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--white);
  transition: top .2s;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: #07111d;
  color: #b8c2ce;
  font-size: 12px;
  letter-spacing: .02em;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar p,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.topbar p {
  gap: 8px;
}

.topbar svg {
  width: 15px;
  color: var(--orange);
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(11, 22, 36, .09);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.site-header .brand img {
  mix-blend-mode: multiply;
}

.brand--footer img {
  height: 58px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-item--has-menu > a {
  padding-right: 16px;
}

.nav-item--has-menu > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
}

.main-nav a {
  position: relative;
  padding: 31px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 9px);
  left: 50%;
  z-index: 20;
  width: 270px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 36, .1);
  box-shadow: 0 24px 60px rgba(10, 24, 40, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid rgba(11, 22, 36, .1);
  border-top: 1px solid rgba(11, 22, 36, .1);
  transform: translateX(-50%) rotate(45deg);
}

.nav-submenu a {
  display: block;
  padding: 13px 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 22, 36, .08);
  font-size: 11px;
  line-height: 1.25;
}

.nav-submenu a:last-child {
  border-bottom: 0;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--orange);
  background: rgba(242, 102, 34, .07);
  outline: none;
}

.solution-card[id] {
  scroll-margin-top: 110px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.nav-phone svg {
  width: 24px;
  color: var(--orange);
}

.nav-phone span {
  font-size: 14px;
  font-weight: 800;
}

.nav-phone small {
  display: block;
  margin-bottom: 3px;
  color: var(--steel);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__slides,
.hero__slides::before,
.hero__slides::after {
  position: absolute;
  inset: 0;
}

.hero__slides {
  background-image: linear-gradient(90deg, rgba(6, 15, 27, .94) 0%, rgba(6, 15, 27, .75) 48%, rgba(6, 15, 27, .2) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity .45s ease;
}

.hero__slides.is-changing {
  opacity: .35;
}

.hero__slides::before {
  content: "";
  background: linear-gradient(0deg, rgba(7, 17, 29, .68), transparent 55%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 80px;
  padding-block: 80px 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #dce3eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.eyebrow--dark {
  color: var(--steel);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(31px, 3.64vw, 56px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .95;
  text-transform: uppercase;
}

.hero h1 em,
.section-title em,
.impact h2 em,
.contact h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #d1d9e2;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}

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

.button--primary {
  color: var(--white);
  background: var(--orange);
}

.button--primary:hover {
  background: var(--orange-2);
}

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

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

.button--outline {
  border-color: #bbc2ca;
  background: transparent;
}

.button--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button--full {
  width: 100%;
}

.hero__proof {
  display: flex;
  gap: 32px;
  margin-top: 52px;
}

.hero__proof > div {
  min-width: 120px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,.22);
}

.hero__proof strong {
  display: block;
  font-size: 24px;
}

.hero__proof span {
  display: block;
  max-width: 130px;
  margin-top: 4px;
  color: #aeb8c4;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__card {
  align-self: end;
  margin-bottom: 40px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(8, 20, 33, .72);
  backdrop-filter: blur(12px);
}

.hero__card-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero__card > p {
  margin: 30px 0 8px;
  color: #9facba;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero__card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.hero__card > span {
  display: block;
  min-height: 48px;
  margin-top: 10px;
  color: #b8c3cf;
  font-size: 12px;
  line-height: 1.55;
}

.hero__progress {
  height: 2px;
  margin-top: 25px;
  background: rgba(255,255,255,.16);
}

.hero__progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  animation: heroProgress 6s linear infinite;
}

@keyframes heroProgress {
  to { width: 100%; }
}

.hero__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.hero__controls button {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.24);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.hero__controls button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aeb8c4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__scroll span {
  width: 35px;
  height: 1px;
  background: var(--orange);
}

.trust {position: relative; z-index: 5; background: #f8fafc; padding: 60px 0; border-bottom: 1px solid var(--line);}
.trust__grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.trust__item {display: flex; gap: 24px; padding: 38px 32px; background: var(--orange); border: 1px solid var(--orange); border-radius: 16px; box-shadow: 0 8px 24px rgba(242, 102, 34, 0.15); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease;}
.trust__item:hover {background: var(--white); border-color: rgba(8, 17, 29, 0.1); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(8, 17, 29, 0.08);}
.trust__item > span {display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex-shrink: 0; background: rgba(255, 255, 255, 0.2); border-radius: 50%; color: var(--white); font-size: 13px; font-weight: 800; transition: background 0.4s ease, color 0.4s ease;}
.trust__item:hover > span {background: rgba(242, 102, 34, 0.1); color: var(--orange);}
.trust__item h3 {margin: 0 0 10px; font-size: 17px; text-transform: uppercase; color: var(--white); transition: color 0.4s ease;}
.trust__item:hover h3 {color: #03090f;}
.trust__item p {margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 14px; line-height: 1.6; transition: color 0.4s ease;}
.trust__item:hover p {color: var(--steel);}

.section {
  padding: 120px 0;
}

.section-title {
  margin: 0;
  font-size: clamp(29px, 3.5vw, 50px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}

.section-title--light {
  color: var(--white);
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 100px;
}

.about__visual {
  position: relative;
  min-height: 650px;
}

.about__main {
  width: 88%;
  height: 590px;
  object-fit: cover;
}

.about__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  object-fit: cover;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
}

.about__seal {
  position: absolute;
  left: -35px;
  bottom: 65px;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  text-align: center;
  transform: rotate(-8deg);
}

.about__seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,255,255,.65);
  border-radius: inherit;
}

.about__seal strong,
.about__seal span {
  position: relative;
  z-index: 1;
  display: block;
  text-transform: uppercase;
}

.about__seal strong {
  font-size: 20px;
}

.about__seal span {
  font-size: 11px;
  letter-spacing: .1em;
}

.about__intro {
  margin-top: 34px !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.about__copy > p {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
}

.about blockquote {
  margin: 28px 0;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.about__mission {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.about__mission strong {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__mission p {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.6;
}

.solutions {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 55px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 440px;
  gap: 16px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.solution-card--wide {
  grid-column: span 2;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.75,.2,1);
}

.solution-card:hover img {
  transform: scale(1.055);
}

.solution-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,29,.04) 18%, rgba(8,17,29,.94) 100%);
}

.solution-card__number {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 800;
}

.solution-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.solution-card__content > p {
  margin: 0 0 8px;
  color: var(--orange-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.76vw, 27px);
  line-height: 1;
  text-transform: uppercase;
}

.solution-card__content > span {
  display: block;
  max-width: 620px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #d3dbe4;
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transition: max-height .35s, opacity .35s, margin .35s;
}

.solution-card:hover .solution-card__content > span {
  max-height: 90px;
  margin-top: 12px;
  opacity: 1;
}

.solution-card__content a {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.services__intro {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  align-items: end;
  gap: 55px;
  margin-bottom: 55px;
}

.services__intro .eyebrow {
  align-self: start;
}

.services__intro > p:last-child {
  margin: 0;
  color: #aeb8c4;
  font-size: 14px;
  line-height: 1.7;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.13);
}

.service-step {
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.service-step:first-child {
  border-left: 1px solid rgba(255,255,255,.13);
}

.service-step__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-step__top span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.service-step__top b {
  font-size: 20px;
  font-weight: 400;
}

.service-step img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(.75);
}

.service-step h3 {
  margin: 28px 0 13px;
  font-size: 21px;
  text-transform: uppercase;
}

.service-step p {
  margin: 0;
  color: #aeb8c4;
  font-size: 13px;
  line-height: 1.65;
}

.projects {
  background: var(--white);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
}

.project-filters button {
  padding: 11px 17px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.project-filters button:hover,
.project-filters button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #dde1e5;
  cursor: zoom-in;
}

.gallery-card:nth-child(7n + 1),
.gallery-card:nth-child(7n + 5) {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.gallery-card::after {
  content: "AMPLIAR  +";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(8,17,29,.82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: brightness(.82);
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.projects__more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.impact {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.impact__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,29,.94), rgba(7,17,29,.68) 50%, rgba(7,17,29,.2)), url("assets/home/a09292f9e94e31a0.jpg") center/cover;
}

.impact__content {
  position: relative;
  z-index: 1;
}

.impact h2 {max-width: 800px; margin: 0; font-size: clamp(37px, 4.8vw, 66px); letter-spacing: -.06em; line-height: .92; text-transform: uppercase;}
.contact h2 {max-width: 800px; margin: 0; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -.06em; line-height: .92; text-transform: uppercase;}

.impact__content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0;
  color: #c7d0da;
  font-size: 17px;
  line-height: 1.65;
}

.testimonials {
  background: var(--paper);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.testimonials__heading {
  padding-right: 40px;
}

.quote-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 0 0 rgba(8, 17, 29, 0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.quote-card--accent {
  background: var(--orange);
}

.quote-card:hover,
.quote-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 22px 45px rgba(8,17,29,.18);
}

.quote-card:not(.quote-card--accent):hover,
.quote-card:not(.quote-card--accent):focus-within {
  background: #0d1a2a;
}

.quote-card--accent:hover,
.quote-card--accent:focus-within {
  background: #ff6b28;
}

.quote-card__mark {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: .7;
  transition: transform .28s ease, opacity .28s ease;
}

.quote-card:hover .quote-card__mark,
.quote-card:focus-within .quote-card__mark {
  transform: translateX(6px) scale(1.08);
  opacity: .92;
}

.quote-card--accent .quote-card__mark {
  color: var(--white);
}

.quote-card > p {
  margin: 35px 0;
  font-size: 16px;
  line-height: 1.7;
}

.quote-card > div:last-child {
  margin-top: auto;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  font-size: 13px;
  text-transform: uppercase;
}

.quote-card span {
  margin-top: 4px;
  color: #aeb8c4;
  font-size: 11px;
}

.quote-card--accent span {
  color: rgba(255,255,255,.72);
}

.contact {
  padding: 120px 0;
  color: var(--white);
  background: #07111d;
}

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

.page-hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,29,.94), rgba(7,17,29,.7) 52%, rgba(7,17,29,.25)), url("assets/home/a09292f9e94e31a0.jpg") center/cover;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 115px 0 90px;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: -.06em;
  line-height: .9;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7d0da;
  font-size: 17px;
  line-height: 1.7;
}

.contact--page {
  padding-top: 100px;
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact__grid--page {
  grid-template-columns: .82fr 1.18fr;
}

.contact__copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 40px;
  color: #aeb8c4;
  line-height: 1.7;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.contact__details a,
.contact__details p {
  margin: 0;
}

.contact__details span,
.contact__details strong {
  display: block;
}

.contact__details span {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 13px;
  line-height: 1.55;
}

.contact__details--stacked {
  grid-template-columns: 1fr;
}

.contact-sidebar {
  position: sticky;
  top: 118px;
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}

.contact-form--page {
  padding: 48px;
}

.contact-form__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form__heading b {
  color: var(--orange);
  font-weight: 400;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  color: #5b6774;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #cdd3da;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  text-transform: none;
  transition: border-color .2s;
}

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

.contact-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form small {
  display: block;
  margin-top: 12px;
  color: #7a8591;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.contact-info-band {
  background: var(--paper);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-method {
  min-height: 240px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.42);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-method:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 24px 55px rgba(10, 24, 40, .09);
}

.contact-method__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--orange);
  background: rgba(242, 102, 34, .08);
  border: 1px solid rgba(242, 102, 34, .2);
}

.contact-method__icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.45;
}

.contact-method h2 {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.contact-method p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.7;
}

.service-hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,29,.96), rgba(7,17,29,.78) 48%, rgba(7,17,29,.32)), url("assets/servicios/estructuras-metalicas/01-instalacion-de-estructuras.jpg") center/cover;
}

.service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 88px 88px;
}

.service-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 80px;
  padding-block: 110px;
}

.service-hero__copy h1 {max-width: 930px; margin: 0; font-size: clamp(31px, 4.2vw, 64px); font-weight: 700; letter-spacing: -.06em; line-height: .9; text-transform: uppercase;}

.service-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: #d1d9e2;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

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

.service-hero__panel {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7,17,29,.72);
  backdrop-filter: blur(12px);
}

.service-hero__panel span, .service-process__steps span {color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;}
.service-process__steps span {font-size: 28px; display: inline-block; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;}

.service-hero__panel strong {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.15;
}

.service-hero__panel p {
  margin: 18px 0 0;
  color: #b8c2ce;
  font-size: 14px;
  line-height: 1.7;
}

.service-summary {position: relative; z-index: 5; background: #f8fafc; padding: 60px 0; border-bottom: 1px solid var(--line);}
.service-summary__grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.service-summary__item {display: flex; gap: 24px; padding: 38px 32px; background: var(--orange); border: 1px solid var(--orange); border-radius: 16px; box-shadow: 0 8px 24px rgba(242, 102, 34, 0.15); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease, border-color 0.4s ease;}
.service-summary__item:hover {background: var(--white); border-color: rgba(8, 17, 29, 0.1); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(8, 17, 29, 0.08);}
.service-summary__item > span {display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex-shrink: 0; background: rgba(255, 255, 255, 0.2); border-radius: 50%; color: var(--white); font-size: 13px; font-weight: 800; transition: background 0.4s ease, color 0.4s ease;}
.service-summary__item:hover > span {background: rgba(242, 102, 34, 0.1); color: var(--orange);}
.service-summary__item h3 {margin: 0 0 10px; font-size: 17px; text-transform: uppercase; color: var(--white); transition: color 0.4s ease;}
.service-summary__item:hover h3 {color: #03090f;}
.service-summary__item p {margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 14px; line-height: 1.6; transition: color 0.4s ease;}
.service-summary__item:hover p {color: var(--steel);}

.service-detail__grid,
.service-materials__grid,
.service-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #4e5b69;
  line-height: 1.8;
}

.service-detail__visual,
.service-materials__image {
  min-height: 560px;
}

.service-detail__visual img,
.service-materials__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-specs {
  padding: 110px 0;
  background: var(--white);
}

.service-specs__grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}

.service-spec {position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 12px; transition: box-shadow 0.3s ease, transform 0.3s ease;}
.service-spec:hover {z-index: 2; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); transform: translateY(-4px);}
.service-spec__image-wrap {position: relative; width: 100%; height: 210px; overflow: hidden;}
.service-spec img {width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease;}
.service-spec:hover img {transform: scale(1.06);}
.service-spec__content {padding: 30px;}
.service-spec h3 {margin: 0 0 14px; font-size: 18px; text-transform: uppercase; color: var(--ink);}
.service-spec p {margin: 0; color: var(--steel); font-size: 14px; line-height: 1.7;}
.service-process__steps h3 {margin: 0 0 16px; font-size: 18px; text-transform: uppercase;}
.service-process__steps p {margin: 0; color: var(--steel); font-size: 14px; line-height: 1.75;}

.service-process {
  color: var(--white);
  background: #07111d;
}

.service-process__grid {
  align-items: start;
}

.service-process__heading {
  position: sticky;
  top: 130px;
}

.service-process__heading h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.service-process__heading > p:not(.eyebrow) {
  max-width: 500px;
  color: #aeb8c4;
  line-height: 1.75;
}

.service-process__steps {display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;}

.service-process__steps article {padding: 30px; border: 1px solid rgba(255,255,255,.12); border-left: 3px solid transparent; background: rgba(255,255,255,.035); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;}
.service-process__steps article:hover {background: rgba(242, 102, 34, 0.08); border-color: rgba(255,255,255,.12); border-left-color: var(--orange); box-shadow: 0 0 40px rgba(242, 102, 34, 0.15), inset 0 0 30px rgba(242, 102, 34, 0.04); transform: translateX(6px);}
.service-process__steps article:hover span {transform: scale(1.25); color: #ff8040;}
.service-process__steps h3 {margin-top: 24px; color: var(--white);}

.service-materials {
  background: var(--paper);
}

.service-materials__content {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #4e5b69;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--orange);
}

.service-gallery {
  background: var(--white);
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-gallery__grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: var(--line);
}

.service-gallery__grid img:nth-child(1),
.service-gallery__grid img:nth-child(6) {
  grid-column: span 2;
}

.service-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--orange);
}

.service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.service-cta .eyebrow span {
  background: var(--white);
}

.service-cta h2 {max-width: 850px; font-size: clamp(19px, 2.6vw, 37px); line-height: 1.2;}

.service-cta .button--primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.footer {
  color: #b8c2ce;
  background: #040b13;
}

.footer__top {
  min-height: 180px;
  display: grid;
  grid-template-columns: .8fr 1.2fr .9fr;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__top > p {
  max-width: 450px;
  font-size: 13px;
  line-height: 1.7;
}

.footer__cta {
  justify-self: end;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
}

.footer__bottom {
  min-height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer__bottom nav {
  display: flex;
  gap: 25px;
}

.footer__bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .2s;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

.lightbox {width: min(1000px, calc(100% - 40px)); max-width: none; padding: 0; border: 0; overflow: visible; color: var(--white); background: transparent; transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), overlay 0.5s allow-discrete, display 0.5s allow-discrete; opacity: 0; transform: scale(0.96) translateY(12px);}
.lightbox[open] {opacity: 1; transform: scale(1) translateY(0);}
@starting-style { .lightbox[open] {opacity: 0; transform: scale(0.96) translateY(12px);} .lightbox[open]::backdrop {opacity: 0;} }
.lightbox::backdrop {background: rgba(3, 9, 15, .94); backdrop-filter: blur(5px); transition: opacity 0.5s ease, overlay 0.5s allow-discrete, display 0.5s allow-discrete; opacity: 0;}
.lightbox[open]::backdrop {opacity: 1;}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050b11;
}

.lightbox figcaption {
  padding: 16px 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  background: rgba(7,17,29,.72);
  cursor: pointer;
}

.lightbox__close {
  top: -52px;
  right: 0;
  font-size: 24px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
}

.lightbox__prev {
  left: -58px;
}

.lightbox__next {
  right: -58px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-phone {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr 240px;
    gap: 35px;
  }

  .about__grid {
    gap: 55px;
  }

  .about__seal {
    left: -10px;
  }

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

  .solution-card--wide {
    grid-column: span 1;
  }

  .services__intro {
    grid-template-columns: 1fr 2fr;
  }

  .services__intro > p:last-child {
    grid-column: 2;
  }

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

  .testimonials__heading {
    grid-column: span 2;
    margin-bottom: 25px;
  }

  .contact__grid {
    gap: 55px;
  }

  .contact-method {
    padding: 30px;
  }

  .contact-method__icon {
    width: 74px;
    height: 74px;
  }

  .contact-method__icon svg {
    width: 40px;
    height: 40px;
  }

  .service-hero__content {
    grid-template-columns: 1fr 300px;
    gap: 45px;
  }

  .service-detail__grid,
  .service-materials__grid,
  .service-process__grid {
    gap: 55px;
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 34px), 720px);
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 45px 28px;
    background: rgba(7,17,29,.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility 0s linear .25s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    padding: 19px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 17px;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .25s ease, opacity .2s ease, visibility 0s linear .25s, padding .2s ease;
  }

  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu {
    max-height: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-item.is-open .nav-submenu {
    max-height: 360px;
    padding-bottom: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu a {
    padding: 11px 0;
    color: #c7d0da;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    color: var(--white);
    background: transparent;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero__content {
    min-height: calc(100vh - 72px);
    grid-template-columns: 1fr;
    padding-block: 80px 85px;
  }

  .hero__card {
    display: none;
  }

  .hero h1 {
    font-size: clamp(31px, 7.54vw, 47px);
  }

  .hero__proof {
    gap: 15px;
  }

  .hero__proof > div {
    min-width: 0;
  }

  .trust__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-step, .service-step:first-child {border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);}

  .services__grid {
    border-top: 0;
  }

  .service-step,
  .service-step:first-child {
    border-color: rgba(255,255,255,.13);
  }

  .section {
    padding: 80px 0;
  }

  .about__grid,
  .section-heading,
  .services__intro,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about__visual {
    min-height: 540px;
  }

  .about__main {
    height: 490px;
  }

  .about__small {
    height: 210px;
  }

  .about__seal {
    left: 5px;
    bottom: 20px;
  }

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

  .services__intro > p:last-child {
    grid-column: auto;
  }

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

  .gallery-card:nth-child(7n + 1),
  .gallery-card:nth-child(7n + 5) {
    grid-column: span 1;
  }

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

  .testimonials__heading {
    grid-column: auto;
  }

  .contact__grid {
    gap: 60px;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero__content {
    padding: 90px 0 70px;
  }

  .contact-sidebar {
    position: static;
  }

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

  .service-hero {
    min-height: calc(100vh - 72px);
  }

  .service-hero__content {
    min-height: calc(100vh - 72px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 80px;
  }

  .service-hero__copy h1 {font-size: clamp(27px, 6vw, 45px);}

  .service-hero__panel {
    max-width: 520px;
  }

  .service-summary__grid,
  .service-detail__grid,
  .service-materials__grid,
  .service-process__grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail__visual,
  .service-materials__image {
    min-height: 420px;
  }

  .service-specs {
    padding: 80px 0;
  }

  .service-process__heading {
    position: static;
  }

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

  .service-gallery__grid img,
  .service-gallery__grid img:nth-child(1),
  .service-gallery__grid img:nth-child(6) {
    grid-column: span 1;
  }

  .service-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 55px;
  }

  .footer__cta {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 42px;
  }

  .brand--footer img {
    height: 48px;
  }

  .hero h1 {
    font-size: 9.1vw;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__proof {
    flex-direction: column;
    margin-top: 35px;
  }

  .hero__proof > div {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero__proof span {
    max-width: none;
    margin: 0;
  }

  .hero__scroll {
    display: none;
  }

  .section-title {
    font-size: 27px;
  }

  .about__visual {
    min-height: 420px;
  }

  .about__main {
    width: 100%;
    height: 370px;
  }

  .about__small {
    display: none;
  }

  .about__seal {
    width: 108px;
    height: 108px;
  }

  .about__mission,
  .contact__details,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

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

  .gallery-card {
    min-height: 260px;
  }

  .impact {
    min-height: 650px;
  }

  .impact h2 {font-size: 34px;}
  .contact h2 {font-size: 26px;}

  .contact-form {
    padding: 28px 22px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact--page {
    padding-top: 80px;
  }

  .contact-method {
    min-height: auto;
  }

  .contact-method__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
  }

  .service-hero__copy h1 {font-size: 7.7vw;}

  .service-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-hero__panel,
  .service-summary__item,
  .service-spec__content,
  .service-process__steps article {
    padding: 24px;
  }

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

  .service-detail__visual,
  .service-materials__image {
    min-height: 330px;
  }

  .service-gallery__grid img {
    height: 270px;
  }

  .service-process__heading h2 {font-size: 34px;}
  .service-cta h2 {font-size: 23px; line-height: 1.2;}

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 25px;
  }

  .footer__bottom nav {
    flex-wrap: wrap;
  }

  .lightbox__prev {
    left: 8px;
  }

  .lightbox__next {
    right: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
