:root {
  --ink: #071116;
  --ink-2: #0d1a20;
  --ink-3: #14232a;
  --cream: #f4efe6;
  --cream-2: #ebe4d8;
  --paper: #fffaf0;
  --line: #d7cdbd;
  --line-dark: rgba(255, 255, 255, 0.16);
  --text: #0b151a;
  --muted: #5c625e;
  --white: #fff8ee;
  --yellow: #ff7800;
  --yellow-2: #e16400;
  --shadow: 0 18px 42px rgba(3, 11, 14, 0.18);
  --site-max: 1360px;
  --site-gutter: 88px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.static-fallback {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: var(--cream);
  color: var(--text);
}

.static-fallback__inner {
  width: min(760px, 100%);
}

.static-fallback__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.static-fallback h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 0.96;
}

.static-fallback p:not(.static-fallback__eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.static-fallback__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.static-fallback__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--text);
  font-weight: 800;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(var(--site-max), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 26px;
  left: 0;
  right: 0;
  z-index: 80;
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 36px));
  opacity: 0;
}

.header-inner {
  position: relative;
  width: min(var(--site-max), calc(100% - var(--site-gutter)));
  min-height: 98px;
  margin: 0 auto;
  padding: 0 18px 0 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(12, 20, 25, 0.92);
  box-shadow: 0 18px 45px rgba(3, 11, 14, 0.28);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 94px;
  max-width: 112px;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  border-color: var(--yellow);
}

.nav-cta {
  flex: 0 0 auto;
}

.nav-cta .btn {
  padding: 0 20px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #fff;
  background: transparent;
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .brand {
    width: 128px;
  }

  .brand img {
    height: 86px;
    max-width: 104px;
  }

  .nav-list {
    gap: 2px;
  }

  .nav-link {
    padding: 0 7px;
    font-size: 12px;
  }

  .nav-cta .btn {
    padding: 0 16px;
    font-size: 14px;
  }
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--yellow);
  color: #061014;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(255, 120, 0, 0.16);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #ff8a1f;
  box-shadow: 0 16px 30px rgba(255, 120, 0, 0.24);
}

.btn .icon {
  transition: transform 180ms ease;
}

.btn:hover .icon {
  transform: translateX(4px);
}

.btn--ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.28);
  color: inherit;
  border-color: currentColor;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -16px 28px rgba(7, 17, 22, 0.12),
    0 10px 22px rgba(7, 17, 22, 0.1);
}

.btn--ghost:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -18px 30px rgba(7, 17, 22, 0.16),
    0 14px 28px rgba(7, 17, 22, 0.14);
}

.btn--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.34), rgba(7, 17, 22, 0.48)),
    rgba(7, 17, 22, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 28px rgba(0, 0, 0, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.14);
}

.btn--dark:hover {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.42), rgba(7, 17, 22, 0.56)),
    rgba(7, 17, 22, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -20px 30px rgba(0, 0, 0, 0.24),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.btn--block {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-2);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.display,
.section-title,
.card-title,
.footer-title,
.mini-title {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-size: 74px;
  line-height: 0.96;
}

.display .accent,
.section-title .accent,
.cta-title .accent {
  color: var(--yellow);
}

.display .accent {
  display: block;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: inherit;
  font-size: 18px;
  overflow-wrap: break-word;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 642px;
  background: var(--ink);
  color: #fff;
}

.hero--light {
  min-height: 560px;
  background: var(--cream);
  color: var(--text);
}

.hero--solutions {
  min-height: 570px;
  background:
    linear-gradient(90deg, var(--paper), rgba(244, 239, 230, 0.8)),
    var(--cream);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  z-index: -2;
}

.hero--dark .hero__image::after,
.hero--light .hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero--dark .hero__image::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 22, 0.9) 0%, rgba(7, 17, 22, 0.54) 35%, rgba(7, 17, 22, 0.02) 74%),
    linear-gradient(0deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.12));
}

.hero--light .hero__image::after {
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244, 239, 230, 0.74) 18%, rgba(244, 239, 230, 0.02) 72%);
}

.hero--solutions .hero__image {
  background-position: center right;
}

.hero--solutions .hero__image::after {
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(244, 239, 230, 0.74) 29%, rgba(244, 239, 230, 0.01) 72%),
    linear-gradient(0deg, rgba(244, 239, 230, 0.02), rgba(244, 239, 230, 0.05)) !important;
}

.hero__ghost {
  position: absolute;
  top: 40px;
  right: 28px;
  z-index: -1;
  color: currentColor;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 150px;
  line-height: 1;
  opacity: 0.065;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__content {
  width: min(var(--site-max), calc(100% - var(--site-gutter)));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 86px 0 126px;
}

.hero__copy {
  width: 42%;
  min-width: 468px;
}

.hero--light .hero__copy {
  width: 54%;
  min-width: 560px;
}

.hero--solutions .hero__content {
  position: relative;
  padding: 148px 0 104px;
}

.hero--solutions .hero__copy {
  width: 43%;
  min-width: 500px;
}

.hero--solutions .display {
  font-size: 66px;
}

.hero--solutions .hero__ghost {
  opacity: 0.055;
  top: 28px;
  right: 54px;
}

body[data-page="home"] .hero--light {
  min-height: 760px;
  background:
    linear-gradient(90deg, #f6efe4 0%, #f6efe4 34%, rgba(246, 239, 228, 0.28) 68%),
    var(--cream);
  color: var(--text);
}

body[data-page="home"] .hero--light .hero__image {
  background-position: center right;
  background-size: cover;
  filter: brightness(1.08) contrast(0.98) saturate(1.02);
}

body[data-page="home"] .hero--light .hero__image::after {
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.86) 0%, rgba(246, 239, 228, 0.48) 30%, rgba(246, 239, 228, 0.04) 56%, rgba(246, 239, 228, 0) 72%),
    linear-gradient(0deg, rgba(246, 239, 228, 0.02), rgba(255, 255, 255, 0.02));
}

body[data-page="home"] .hero--light .hero__content {
  padding: 150px 0 138px;
}

body[data-page="home"] .hero--light .hero__copy {
  width: 38%;
  min-width: 440px;
}

body[data-page="home"] .hero--light .eyebrow {
  margin-bottom: 16px;
  color: var(--yellow-2);
}

body[data-page="home"] .hero--light .display {
  color: #111d23;
  font-size: 78px;
  line-height: 0.95;
}

body[data-page="home"] .hero--light .lead {
  max-width: 520px;
  color: #223039;
}

body[data-page="home"] .hero--light .hero__ghost {
  top: 104px;
  right: 132px;
  color: #fff8ee;
  font-size: clamp(154px, 23vw, 320px);
  opacity: 0.052;
  z-index: -1;
  text-shadow: 0 1px 18px rgba(7, 17, 22, 0.08);
}

.solutions-hero-markers {
  position: absolute;
  left: 48%;
  right: 4%;
  bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(7, 17, 22, 0.55);
}

.solutions-hero-markers span {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 0 18px;
  border-top: 2px solid rgba(255, 120, 0, 0.78);
  align-content: start;
  font-size: 19px;
  line-height: 1.02;
}

.solutions-hero-markers strong {
  color: #fff;
  font-size: 25px;
}

.hero__actions,
.cta-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero__copy > *,
.hero__image,
.hero__ghost {
  opacity: 0;
}

.is-ready .hero__copy > * {
  animation: heroCopyIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--hero-delay, 0ms);
}

.is-ready .hero__image {
  animation: heroImageIn 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.is-ready .hero__ghost {
  animation: ghostIn 900ms ease forwards;
  animation-delay: 220ms;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--lift {
  transform: translateY(20px);
}

.reveal--stagger {
  transform: translateY(24px) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.media-reveal {
  position: relative;
}

.media-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(244, 239, 230, 0.5));
  transform: translateY(0);
  transition: transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.dark-card .media-reveal::after,
.section--dark .media-reveal::after,
.project-card .media-reveal::after,
.contact-page .media-reveal::after {
  background: linear-gradient(180deg, rgba(7, 17, 22, 0.84), rgba(7, 17, 22, 0.4));
}

.media-reveal img {
  transform: scale(1.035);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-reveal.is-visible::after {
  transform: translateY(101%);
}

.media-reveal.is-visible img {
  transform: scale(1);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ghostIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 0.08;
    transform: translateY(0);
  }
}

.section {
  padding: 68px 0;
}

.section--tight {
  padding: 46px 0;
}

.section--dark {
  background: radial-gradient(circle at top left, rgba(44, 61, 68, 0.28), transparent 42%), var(--ink);
  color: #fff;
}

.section--cream {
  background: var(--cream);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--yellow-2);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms ease 180ms;
}

.is-visible .section-kicker::after,
.hero .section-kicker::after,
.is-ready .hero .eyebrow::after {
  transform: scaleX(1);
}

.section-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.section-copy {
  max-width: 400px;
  margin: 12px 0 0;
}

.floating-strip {
  position: relative;
  z-index: 5;
  margin-top: -76px;
  margin-bottom: -24px;
}

.feature-strip,
.usage-strip,
.approach-strip {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(3, 11, 14, 0.2);
  overflow: hidden;
}

.feature-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-strip--dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: #fff;
}

.feature-item,
.usage-item,
.approach-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.feature-strip--dark .feature-item {
  border-right-color: var(--line-dark);
}

.feature-item:last-child,
.usage-item:last-child,
.approach-item:last-child {
  border-right: 0;
}

.feature-item .icon,
.approach-item .icon,
.usage-item .icon,
.accent-icon {
  width: 50px;
  height: 50px;
  color: var(--yellow-2);
  border-radius: 7px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.feature-item .icon {
  width: 58px;
  height: 58px;
  background: transparent;
}

.feature-item .icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.55;
}

.approach-item .icon {
  background: rgba(255, 120, 0, 0.14);
}

.feature-item h3,
.approach-item h3,
.usage-item h3 {
  margin: 0 0 4px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-item p,
.approach-item p,
.usage-item p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

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

.split--wide {
  grid-template-columns: 1.05fr 0.95fr;
}

.solutions-overview,
.about-overview {
  display: grid;
  grid-template-columns: 292px repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.solutions-overview {
  grid-template-columns: 330px repeat(3, minmax(0, 1fr));
}

.solutions-intro,
.about-intro {
  min-width: 0;
  align-self: center;
}

.solutions-intro .section-title {
  font-size: 40px;
  overflow-wrap: normal;
}

.image-frame {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #d9d0c4;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.fabrication-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0) 0, rgba(255, 250, 240, 0.88) 46%, var(--paper) 100%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.fabrication-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 100, 0, 0), rgba(225, 100, 0, 0.45), rgba(225, 100, 0, 0));
  pointer-events: none;
}

.fabrication-band {
  width: 100%;
  max-width: none;
  min-height: 344px;
  padding-right: max(44px, calc((100vw - var(--site-max)) / 2));
  display: grid;
  grid-template-columns: minmax(470px, 1fr) minmax(315px, 380px) minmax(240px, 276px);
  gap: 42px;
  align-items: stretch;
}

.fabrication-image {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.fabrication-image img {
  width: 100%;
  height: 100%;
  min-height: 344px;
  object-fit: cover;
  object-position: 42% 50%;
}

.fabrication-copy {
  min-width: 0;
  align-self: center;
  padding: 34px 0;
}

.fabrication-copy .section-title {
  max-width: 360px;
  font-size: 35px;
}

.fabrication-copy .muted {
  max-width: 390px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.fabrication-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 22px;
}

.fabrication-points .mini-item {
  min-width: 0;
  align-items: flex-start;
}

.fabrication-points .mini-item .icon {
  width: 34px;
  height: 34px;
}

.fabrication-points .mini-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.28;
  text-transform: none;
}

.fabrication-copy .inline-actions {
  margin-top: 20px;
}

.quality-panel {
  align-self: center;
  min-height: 286px;
  display: grid;
  align-content: center;
  padding: 28px 26px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 120, 0, 0.14), rgba(255, 120, 0, 0) 32%),
    linear-gradient(145deg, #14232a, #071116 78%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 38px rgba(7, 17, 22, 0.18);
}

.quality-panel__icon {
  width: 86px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  color: var(--yellow);
}

.quality-panel__icon .icon,
.quality-panel__icon .icon svg {
  width: 76px;
  height: 44px;
  stroke-width: 1.45;
}

.quality-panel h3 {
  max-width: 214px;
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: 1.04;
  text-transform: uppercase;
}

.quality-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.38;
}

.quality-panel p::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 22px;
  background: var(--yellow);
}

.workshop-panel {
  min-height: 302px;
  padding: 30px 28px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 120, 0, 0.05), rgba(255, 120, 0, 0) 44%),
    #f4ecdf;
  border-color: rgba(225, 100, 0, 0.22);
  box-shadow: 0 16px 34px rgba(3, 11, 14, 0.1);
}

.workshop-panel .quality-panel__icon {
  color: var(--yellow-2);
}

.workshop-panel h3 {
  max-width: 216px;
  color: #142027;
}

.workshop-panel p {
  max-width: 220px;
  color: #485157;
}

.workshop-panel p::after {
  display: none;
}

.workshop-panel .inline-actions {
  margin-top: 20px;
}

.workshop-panel__btn {
  min-height: 42px;
  padding: 0 18px;
  color: var(--yellow-2);
  border-color: rgba(225, 100, 0, 0.42);
  background: transparent;
  box-shadow: none;
}

.projects-home-section {
  border-top: 1px solid rgba(215, 205, 189, 0.82);
  padding-top: 38px;
  padding-bottom: 18px;
}

.projects-home-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.projects-home-intro .section-title {
  font-size: 36px;
}

.projects-home-grid {
  gap: 18px;
}

.projects-home-grid .project-card {
  min-height: 190px;
}

.projects-home-grid .project-card__media {
  height: 132px;
}

.projects-home-grid .project-card__body {
  padding: 12px 14px 14px;
}

.projects-home-grid .project-card h3 {
  font-size: 18px;
}

.projects-home-grid .project-card p {
  font-size: 13px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

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

.image-card,
.dark-card,
.plain-card,
.project-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.82);
}

.image-card {
  box-shadow: 0 14px 28px rgba(8, 15, 18, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.image-card > a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.image-card:hover,
.project-card:hover,
.plain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 100, 0, 0.48);
  box-shadow: 0 20px 38px rgba(8, 15, 18, 0.16);
}

.image-card__media,
.project-card__media {
  position: relative;
  height: 214px;
  background: #cfc4b5;
  overflow: hidden;
}

.cards-grid--4 .image-card__media {
  height: 182px;
}

.solutions-overview .image-card__media,
.about-overview .image-card__media {
  height: 216px;
}

.image-card__media img,
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card-badge .icon {
  width: 28px;
  height: 28px;
}

.image-card:hover .card-badge,
.project-card:hover .plus {
  transform: translateY(-2px) scale(1.04);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 24px;
}

.card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.03;
  overflow-wrap: normal;
}

.card-body p {
  margin: 14px 0 0;
  color: var(--muted);
  min-height: 78px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
  color: var(--yellow-2);
  font-weight: 800;
}

.dark-card {
  background: linear-gradient(140deg, rgba(23, 38, 45, 0.98), rgba(7, 17, 22, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dark-card .card-body p,
.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.solutions-showcase-section {
  padding: 60px 0 70px;
}

.solutions-showcase-section .section-head,
.solutions-applications .section-head,
.solutions-focus .section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 34px;
}

.solutions-showcase-section .section-title,
.solutions-applications .section-title,
.solutions-focus .section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.solutions-showcase-section .section-title::before,
.solutions-showcase-section .section-title::after,
.solutions-applications .section-title::before,
.solutions-applications .section-title::after,
.solutions-focus .section-title::before,
.solutions-focus .section-title::after {
  content: "";
  width: 140px;
  height: 1px;
  background: rgba(225, 100, 0, 0.58);
}

.solution-showcase-card {
  position: relative;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(20, 35, 42, 0.98), rgba(7, 17, 22, 0.98));
}

.solution-showcase-card:first-child {
  border-color: rgba(255, 120, 0, 0.8);
}

.solution-showcase-card .image-card__media {
  height: 260px;
}

.solution-showcase-card .card-body {
  padding: 30px 26px 28px;
}

.solution-showcase-card .card-title {
  font-size: 28px;
}

.solution-showcase-card .card-body p {
  min-height: 74px;
}

.solution-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
}

.plain-card {
  padding: 26px;
  box-shadow: 0 10px 24px rgba(8, 15, 18, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.plain-card h3 {
  margin: 0 0 10px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.sectors-band {
  background: var(--ink);
  color: #fff;
  padding: 30px 0;
}

.sectors-band--center {
  padding: 38px 0 34px;
  background: radial-gradient(circle at center top, rgba(44, 61, 68, 0.32), transparent 44%), var(--ink);
}

.sectors {
  display: grid;
  grid-template-columns: 1.35fr repeat(7, 1fr);
  align-items: center;
  gap: 0;
}

.sectors h2 {
  margin: 0;
  max-width: 210px;
  padding-right: 28px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sector {
  min-height: 108px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  transition: background 200ms ease, transform 200ms ease;
}

.sector .icon {
  width: 42px;
  height: 42px;
}

.sector .icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.55;
}

.sectors-band--center .sectors {
  grid-template-columns: repeat(6, 1fr);
  row-gap: 24px;
}

.sectors-band--center .sectors h2 {
  grid-column: 1 / -1;
  max-width: none;
  padding: 0;
  text-align: center;
  color: var(--yellow);
  font-size: 30px;
}

.sectors-band--center .sector {
  min-height: 108px;
}

.sectors-band--center .sector:first-of-type {
  border-left: 0;
}

.sector:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-2px);
}

.sector span:last-child {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.mini-item {
  display: flex;
  gap: 12px;
}

.mini-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  transition: transform 200ms ease;
}

.mini-item:hover .icon,
.feature-item:hover .icon,
.usage-item:hover .icon,
.approach-item:hover .icon,
.plain-card:hover .accent-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.mini-title {
  margin: 0 0 4px;
  font-size: 16px;
}

.mini-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.quote-card h3 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.74);
}

.process--dark {
  background: var(--ink);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.process-step {
  min-width: 0;
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}

.process--dark .process-step {
  border-right-color: rgba(255, 255, 255, 0.13);
}

.process-step:last-child {
  border-right: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-step:hover .step-num,
.numbered-card:hover .step-num {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 120, 0, 0.24);
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 21px;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process--dark .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.home-flow-section {
  padding-top: 18px;
}

.home-flow {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.82);
}

.home-flow__cta {
  min-width: 0;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.home-flow__cta > .icon {
  width: 62px;
  height: 62px;
  color: var(--ink);
}

.home-flow__cta > .icon svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.4;
}

.home-flow__cta h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: 1.04;
  text-transform: uppercase;
  max-width: 320px;
}

.home-flow__cta p {
  margin: 6px 0 0;
  color: var(--muted);
}

.home-flow__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  max-width: 420px;
}

.home-flow__actions .btn {
  min-height: 42px;
  justify-content: center;
  padding: 0 12px;
  font-size: 12px;
  white-space: nowrap;
}

.home-flow > .process {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-flow .process-step {
  padding: 24px 16px;
}

.home-flow .step-num {
  width: auto;
  height: auto;
  margin: 0 0 10px;
  border-radius: 0;
  background: transparent;
  color: var(--yellow-2);
  font-size: 27px;
}

.home-flow .process-step h3 {
  font-size: 18px;
}

.home-flow .process-step p {
  font-size: 13px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  background-image: var(--cta-image);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 22, 0.94) 42%, rgba(7, 17, 22, 0.46) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.cta-title {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 38px;
  line-height: 1.04;
  text-transform: uppercase;
}

.cta-content p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.apps-list,
.check-list,
.side-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.side-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 5px var(--yellow);
}

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

.app-column {
  position: relative;
  padding: 34px 34px;
  border-right: 1px solid var(--line);
}

.app-column::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 150px;
  height: 110px;
  border: 2px solid rgba(7, 17, 22, 0.05);
  transform: skewY(-8deg);
  pointer-events: none;
}

.app-column:last-child {
  border-right: 0;
}

.app-column h3 {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 0 0 12px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.app-column h3 .icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(7, 17, 22, 0.26);
  border-radius: 6px;
  color: var(--ink);
}

.app-column h3 .icon svg {
  width: 36px;
  height: 36px;
}

.wide-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  overflow: hidden;
}

.solutions-applications .wide-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.solutions-applications .check-list li::before {
  background: var(--yellow);
  color: var(--ink);
}

.solutions-focus .feature-strip {
  box-shadow: none;
}

.solutions-focus .feature-item {
  padding: 24px 28px;
}

.solutions-focus .feature-item .icon {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
}

.solutions-focus .feature-item .icon svg {
  width: 38px;
  height: 38px;
}

body[data-page="soluciones"] .hero--solutions {
  min-height: 610px;
  background:
    linear-gradient(90deg, #f6efe4 0%, rgba(246, 239, 228, 0.88) 34%, rgba(246, 239, 228, 0.12) 74%),
    var(--cream);
}

body[data-page="soluciones"] .hero--solutions .hero__content {
  padding: 128px 0 88px;
}

body[data-page="soluciones"] .hero--solutions .hero__copy {
  width: 36%;
  min-width: 420px;
}

body[data-page="soluciones"] .hero--solutions .display {
  font-size: 60px;
  line-height: 0.96;
}

body[data-page="soluciones"] .hero--solutions .hero__ghost {
  top: 120px;
  right: 54px;
  color: #fff8ee;
  font-size: clamp(132px, 18vw, 250px);
  opacity: 0.18;
  text-shadow: 0 1px 14px rgba(7, 17, 22, 0.08);
}

body[data-page="soluciones"] .hero--solutions .hero__image::after {
  background:
    linear-gradient(90deg, rgba(246, 239, 228, 0.98) 0%, rgba(246, 239, 228, 0.84) 28%, rgba(246, 239, 228, 0.1) 52%, rgba(246, 239, 228, 0) 72%),
    linear-gradient(0deg, rgba(246, 239, 228, 0.06), rgba(255, 255, 255, 0.08)) !important;
}

body[data-page="soluciones"] .solutions-hero-markers {
  right: 52px;
  bottom: 74px;
  width: 55%;
  gap: 0;
}

body[data-page="soluciones"] .solutions-showcase-section {
  padding: 34px 0 46px;
  background: var(--cream);
}

body[data-page="soluciones"] .solutions-showcase-section .section-head {
  margin-bottom: 28px;
}

body[data-page="soluciones"] .solution-showcase-card {
  color: var(--text);
  background: rgba(255, 250, 240, 0.82);
  border-color: rgba(7, 17, 22, 0.13);
  box-shadow: 0 16px 34px rgba(3, 11, 14, 0.08);
}

body[data-page="soluciones"] .solution-showcase-card:first-child {
  border-color: rgba(225, 100, 0, 0.45);
}

body[data-page="soluciones"] .solution-showcase-card .image-card__media {
  height: 248px;
}

body[data-page="soluciones"] .solution-showcase-card .card-body {
  padding: 24px 24px 24px;
}

body[data-page="soluciones"] .solution-showcase-card .card-title {
  color: var(--text);
  font-size: 25px;
}

body[data-page="soluciones"] .solution-showcase-card .card-body p {
  min-height: 68px;
  color: #4e575a;
}

body[data-page="soluciones"] .solution-showcase-card .card-link {
  color: var(--yellow-2);
}

body[data-page="soluciones"] .solutions-applications {
  padding-top: 44px;
  padding-bottom: 42px;
}

body[data-page="soluciones"] .app-columns {
  gap: 28px;
}

body[data-page="soluciones"] .app-column {
  padding: 0 34px;
}

body[data-page="soluciones"] .app-column h3 {
  gap: 16px;
}

body[data-page="soluciones"] .app-column h3 .icon {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.72);
  border-color: rgba(7, 17, 22, 0.28);
}

body[data-page="soluciones"] .sectors-band {
  width: min(var(--site-max), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 44px 0;
  border-radius: 10px;
  overflow: hidden;
}

body[data-page="soluciones"] .solutions-focus {
  padding-top: 34px;
  padding-bottom: 32px;
}

body[data-page="soluciones"] .solutions-focus .feature-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.7);
}

body[data-page="transformacion"] .hero,
body[data-page="estructuras"] .hero,
body[data-page="taller"] .hero {
  min-height: 570px;
}

body[data-page="transformacion"] .hero--light {
  min-height: 700px;
  background:
    linear-gradient(90deg, #f7f0e5 0%, #f7f0e5 30%, rgba(247, 240, 229, 0.46) 43%, rgba(247, 240, 229, 0.04) 58%),
    var(--cream);
  color: var(--text);
}

body[data-page="transformacion"] .hero__content,
body[data-page="estructuras"] .hero__content,
body[data-page="taller"] .hero__content {
  padding: 148px 0 104px;
}

body[data-page="transformacion"] .hero--light .hero__content {
  padding: 158px 0 128px;
}

body[data-page="transformacion"] .hero__copy,
body[data-page="estructuras"] .hero__copy,
body[data-page="taller"] .hero__copy {
  width: 40%;
  min-width: 440px;
}

body[data-page="transformacion"] .hero--light .hero__copy {
  width: 48%;
  min-width: 620px;
}

body[data-page="transformacion"] .display,
body[data-page="estructuras"] .display,
body[data-page="taller"] .display {
  font-size: 64px;
}

body[data-page="transformacion"] .hero--light .display {
  max-width: 700px;
  font-size: 56px;
  line-height: 0.94;
  color: #111d23;
}

body[data-page="transformacion"] .hero--light .display .accent {
  white-space: nowrap;
}

body[data-page="transformacion"] .hero--light .lead {
  max-width: 500px;
  color: #26353a;
}

body[data-page="transformacion"] .hero__ghost,
body[data-page="estructuras"] .hero__ghost,
body[data-page="taller"] .hero__ghost,
body[data-page="steel"] .hero__ghost,
body[data-page="proyectos"] .hero__ghost {
  top: 48px;
  right: 62px;
  font-size: 164px;
  opacity: 0.03;
}

body[data-page="transformacion"] .hero--light .hero__ghost {
  top: 120px;
  right: 64px;
  color: #fff8ee;
  font-size: clamp(150px, 18vw, 265px);
  opacity: 0.18;
  text-shadow: 0 1px 10px rgba(7, 17, 22, 0.05);
}

body[data-page="transformacion"] .hero--light .hero__image {
  background-position: right 38% center;
  background-size: cover;
  filter: brightness(1.08) contrast(1.03) saturate(0.98);
}

body[data-page="transformacion"] .hero--light .hero__image::after {
  background:
    linear-gradient(90deg, rgba(247, 240, 229, 0.98) 0%, rgba(247, 240, 229, 0.94) 31%, rgba(247, 240, 229, 0.34) 43%, rgba(247, 240, 229, 0.02) 58%, rgba(247, 240, 229, 0) 68%),
    linear-gradient(0deg, rgba(247, 240, 229, 0.04), rgba(255, 255, 255, 0.03)) !important;
}

body[data-page="nosotros"] .hero__ghost {
  display: none;
}

body[data-page="transformacion"] .section--paper,
body[data-page="transformacion"] .section--cream {
  background: #f7f0e5;
}

body[data-page="transformacion"] .container,
body[data-page="transformacion"] .hero__content {
  width: min(1320px, calc(100% - 72px));
}

body[data-page="transformacion"] .hero--light .eyebrow {
  color: var(--yellow-2);
  margin-bottom: 14px;
}

body[data-page="transformacion"] .hero--light .actions {
  margin-top: 28px;
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="transformacion"] .hero--light .actions .btn {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="transformacion"] .hero--light .actions .btn:not(.btn--ghost) {
  background: var(--yellow);
  color: #fff8ee;
  border-color: var(--yellow);
}

body[data-page="transformacion"] .hero--light .actions .btn--ghost {
  color: #18242a;
  background: rgba(255, 250, 240, 0.62);
  border-color: rgba(7, 17, 22, 0.42);
}

body[data-page="transformacion"] .cta-banner {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body[data-page="transformacion"] .cta-content {
  min-height: 148px;
  padding: 28px 34px;
  grid-template-columns: minmax(360px, 0.9fr) 1fr auto;
}

body[data-page="transformacion"] .cta-title {
  max-width: 440px;
  font-size: 34px;
}

body[data-page="transformacion"] .cta-content p {
  max-width: 370px;
  margin: 0;
}

body[data-page="transformacion"] .site-footer {
  margin-top: -1px;
}

body[data-page="steel"] .hero--light {
  min-height: 520px;
}

body[data-page="steel"] .hero--light .hero__content {
  padding: 144px 0 88px;
}

body[data-page="steel"] .hero--light .hero__copy {
  width: 42%;
  min-width: 520px;
}

body[data-page="steel"] .hero--light .display {
  font-size: 66px;
}

body[data-page="steel"] .hero--light .display .accent {
  max-width: 540px;
  font-size: 50px;
  line-height: 1.04;
}

body[data-page="proyectos"] .hero--light {
  min-height: 505px;
}

body[data-page="proyectos"] .hero--light .hero__content {
  padding: 144px 0 72px;
}

body[data-page="proyectos"] .hero--light .hero__copy {
  width: 38%;
  min-width: 455px;
}

body[data-page="proyectos"] .hero--light .display {
  max-width: 430px;
  font-size: 64px;
}

body[data-page="proyectos"] .hero--light .hero__image {
  background-position: right 42% center;
  background-size: auto 104%;
}

body[data-page="proyectos"] .hero--light .hero__image::after {
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244, 239, 230, 0.7) 27%, rgba(244, 239, 230, 0.02) 70%);
}

.project-hero-labels {
  position: relative;
  z-index: 6;
  height: 0;
}

.project-hero-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(7, 17, 22, 0.12);
  border-radius: 5px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 14px 30px rgba(4, 12, 16, 0.16);
  color: var(--text);
  font-weight: 800;
  pointer-events: none;
}

.project-hero-label .icon {
  color: var(--yellow);
}

.project-hero-label--container {
  right: 40%;
  top: -186px;
}

.project-hero-label--structure {
  right: 50%;
  top: -92px;
}

.project-hero-label--steel {
  right: 14%;
  top: -78px;
}

body[data-page="nosotros"] .hero--light {
  min-height: 520px;
}

body[data-page="nosotros"] .hero--light .hero__content {
  padding: 144px 0 86px;
}

body[data-page="nosotros"] .hero--light .hero__copy {
  width: 38%;
  min-width: 440px;
}

body[data-page="nosotros"] .hero--light .display {
  font-size: 56px;
}

body[data-page="nosotros"] .feature-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="contacto"] .contact-layout {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  min-height: 980px;
  padding: 168px 0 60px;
}

body[data-page="contacto"] .contact-aside {
  padding-top: 70px;
}

body[data-page="contacto"] .contact-aside .display {
  font-size: 62px;
  max-width: 530px;
}

body[data-page="contacto"] .form-card {
  padding: 50px 48px;
  border-radius: 20px;
}

.service-intro-section {
  position: relative;
  z-index: 4;
  padding: 0 0 42px;
  margin-top: -44px;
  background: var(--paper);
}

.service-intro-section .cards-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 22px 46px rgba(3, 11, 14, 0.18);
}

.service-intro-section .plain-card {
  min-height: 190px;
  padding: 32px 38px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.service-intro-section .plain-card .icon {
  width: 56px;
  height: 56px;
  color: var(--yellow-2);
}

.service-intro-section .plain-card:first-child h3 {
  max-width: 240px;
  font-size: 36px;
  line-height: 0.98;
}

.transform-applications {
  padding-top: 36px;
}

.transform-applications .section-head {
  justify-content: center;
  text-align: center;
}

.transform-applications .image-card {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.transform-applications .image-card .card-body p {
  color: rgba(255, 255, 255, 0.76);
}

.transform-applications .image-card__media::after,
.project-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(7, 17, 22, 0.9), transparent);
  pointer-events: none;
}

.include-section {
  padding-top: 44px;
  padding-bottom: 42px;
}

.include-section .split {
  grid-template-columns: 0.55fr 1.45fr;
}

.include-section .cards-grid--2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.include-section .plain-card {
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.interior-section {
  padding-top: 42px;
  padding-bottom: 48px;
}

.interior-section .split {
  grid-template-columns: 0.72fr 1.28fr;
}

.interior-section .image-frame img {
  min-height: 310px;
  object-position: center;
}

body[data-page="transformacion"] .service-intro-section {
  margin-top: -68px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, transparent 0 68px, #f7f0e5 68px);
}

body[data-page="transformacion"] .service-intro-section .cards-grid {
  border: 1px solid rgba(215, 205, 189, 0.9);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 40px rgba(3, 11, 14, 0.11);
}

body[data-page="transformacion"] .service-intro-section .plain-card {
  min-height: 206px;
  padding: 32px 36px;
}

body[data-page="transformacion"] .service-intro-section .plain-card > .icon svg {
  width: 50px;
  height: 50px;
  stroke-width: 1.55;
}

body[data-page="transformacion"] .service-intro-section .plain-card > .icon {
  color: var(--yellow);
}

body[data-page="transformacion"] .transform-applications {
  padding-top: 34px;
  padding-bottom: 42px;
  background: #f7f0e5;
}

body[data-page="transformacion"] .transform-applications .section-title,
body[data-page="transformacion"] .include-section .section-title,
body[data-page="transformacion"] .interior-section .section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

body[data-page="transformacion"] .transform-applications .section-title::before,
body[data-page="transformacion"] .transform-applications .section-title::after,
body[data-page="transformacion"] .include-section .section-title::before,
body[data-page="transformacion"] .include-section .section-title::after,
body[data-page="transformacion"] .interior-section .section-title::before,
body[data-page="transformacion"] .interior-section .section-title::after {
  content: "";
  width: 130px;
  height: 1px;
  background: rgba(225, 100, 0, 0.55);
}

body[data-page="transformacion"] .transform-applications .section-head,
body[data-page="transformacion"] .include-section .section-head,
body[data-page="transformacion"] .interior-section .section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}

body[data-page="transformacion"] .transform-applications .image-card {
  color: var(--text);
  background: rgba(255, 250, 240, 0.94);
  border-color: rgba(7, 17, 22, 0.12);
  box-shadow: 0 12px 26px rgba(3, 11, 14, 0.07);
}

body[data-page="transformacion"] .transform-applications .image-card .card-body {
  padding: 22px 22px 24px;
}

body[data-page="transformacion"] .transform-applications .image-card .card-body p {
  color: #4d565a;
}

body[data-page="transformacion"] .transform-applications .image-card__media {
  height: 190px;
}

body[data-page="transformacion"] .transform-applications .image-card__media::after {
  display: none;
}

body[data-page="transformacion"] .transform-applications .card-title {
  font-size: 23px;
}

body[data-page="transformacion"] .transform-app-grid {
  gap: 20px;
}

body[data-page="transformacion"] .transform-app-card {
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
}

body[data-page="transformacion"] .transform-app-card .image-card__media {
  height: 218px;
  overflow: visible;
  background: #e7ded2;
}

body[data-page="transformacion"] .transform-app-card .image-card__media img {
  border-radius: 8px 8px 0 0;
  filter: brightness(1.03) contrast(1.03) saturate(1.02);
}

body[data-page="transformacion"] .transform-app-card .card-body {
  min-height: 174px;
  padding: 34px 22px 22px;
}

.transform-card-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--yellow);
  color: #111d23;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(225, 100, 0, 0.22);
}

body[data-page="transformacion"] .transform-app-card .card-badge {
  left: 18px;
  bottom: -24px;
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 7px;
  background: var(--yellow);
  color: #111d23;
  box-shadow: 0 12px 24px rgba(225, 100, 0, 0.26);
}

body[data-page="transformacion"] .transform-app-card .card-badge .icon {
  width: 29px;
  height: 29px;
  stroke-width: 1.8;
}

body[data-page="transformacion"] .transform-app-card .card-badge .icon svg {
  width: 29px;
  height: 29px;
}

body[data-page="transformacion"] .transform-process-section {
  padding: 36px 0 42px;
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 120, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #071116, #08171d);
}

body[data-page="transformacion"] .transform-process-section .section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

body[data-page="transformacion"] .transform-process-section .section-title {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: 38px;
}

body[data-page="transformacion"] .transform-process-section .section-copy {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.transform-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255, 120, 0, 0.22);
  border-radius: 12px;
  background: rgba(3, 12, 16, 0.78);
  overflow: hidden;
}

.transform-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 44px;
  right: 44px;
  border-top: 1px dashed rgba(255, 120, 0, 0.62);
}

.transform-timeline-step {
  position: relative;
  min-height: 206px;
  padding: 26px 18px 22px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.transform-timeline-step:last-child {
  border-right: 0;
}

.transform-timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -5px;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 120, 0, 0.88);
  border-right: 1px solid rgba(255, 120, 0, 0.88);
  transform: rotate(45deg);
  background: #071116;
}

.transform-timeline-step.is-final {
  border: 2px solid var(--yellow);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 120, 0, 0.18), 0 0 32px rgba(225, 100, 0, 0.12);
}

.timeline-num {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #071116;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.timeline-icon {
  display: block;
  margin: 24px 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.timeline-icon .icon,
.timeline-icon .icon svg {
  width: 40px;
  height: 40px;
}

.timeline-icon .icon svg {
  stroke-width: 1.45;
}

.transform-timeline-step h3 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.transform-timeline-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.38;
}

body[data-page="transformacion"] .transform-process-section .process {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255, 120, 0, 0.22);
  border-radius: 10px;
  overflow: hidden;
}

body[data-page="transformacion"] .transform-process-section .process-step {
  min-height: 206px;
  padding: 24px 20px;
}

body[data-page="transformacion"] .transform-process-section .process-step:last-child {
  border: 1px solid var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 120, 0, 0.25);
}

body[data-page="transformacion"] .include-section {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #f7f0e5;
}

body[data-page="transformacion"] .include-section .cards-grid--4 {
  gap: 0;
  border: 1px solid rgba(215, 205, 189, 0.88);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.74);
  overflow: hidden;
}

body[data-page="transformacion"] .include-section .plain-card {
  min-height: 154px;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
}

body[data-page="transformacion"] .include-section .plain-card:first-child {
  border-left: 0;
}

body[data-page="transformacion"] .include-section .accent-icon,
body[data-page="transformacion"] .include-section .plain-card > .icon {
  width: 54px;
  height: 54px;
  color: var(--yellow);
}

body[data-page="transformacion"] .include-section .accent-icon .icon svg,
body[data-page="transformacion"] .include-section .plain-card > .icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

body[data-page="transformacion"] .include-section .plain-card h3 {
  font-size: 18px;
}

body[data-page="transformacion"] .interior-section {
  padding-top: 28px;
  padding-bottom: 36px;
  background: #f7f0e5;
}

.interior-callout-layout {
  display: grid;
  grid-template-columns: minmax(205px, 0.72fr) minmax(580px, 1.9fr) minmax(205px, 0.72fr);
  gap: 18px;
  align-items: center;
}

.interior-container-visual {
  position: relative;
  overflow: visible;
  border-radius: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  align-self: center;
}

.interior-container-visual::before,
.interior-container-visual::after {
  display: none;
}

.interior-container-visual::before {
  left: 11%;
}

.interior-container-visual::after {
  right: 11%;
}

.interior-container-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(7, 17, 22, 0.16));
}

.container-cutaway {
  width: 100%;
  aspect-ratio: 3.25 / 1;
  position: relative;
  filter: drop-shadow(0 18px 30px rgba(7, 17, 22, 0.2));
}

.cutaway-shell {
  position: absolute;
  inset: 0;
  border: 10px solid #172126;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, #30383a 0%, #d2c6b8 16%, #b9aea1 72%, #202b2f 100%);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px #2e3b40,
    inset 0 18px 26px rgba(255, 255, 255, 0.14),
    inset 0 -18px 26px rgba(0, 0, 0, 0.28);
}

.cutaway-shell::before,
.cutaway-shell::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 16px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 9px, rgba(0, 0, 0, 0.16) 9px 18px),
    #151f24;
}

.cutaway-shell::before {
  left: 0;
}

.cutaway-shell::after {
  right: 0;
}

.cutaway-corner {
  position: absolute;
  z-index: 7;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #11191d;
  box-shadow: inset 0 0 0 3px #2c383e;
}

.cutaway-corner--tl { top: -1px; left: -1px; }
.cutaway-corner--tr { top: -1px; right: -1px; }
.cutaway-corner--bl { bottom: -1px; left: -1px; }
.cutaway-corner--br { bottom: -1px; right: -1px; }

.cutaway-ceiling {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  top: 0;
  height: 28%;
  background:
    repeating-linear-gradient(90deg, rgba(30, 37, 39, 0.12) 0 2px, transparent 2px 62px),
    linear-gradient(180deg, rgba(45, 54, 55, 0.55), rgba(236, 221, 202, 0.12));
}

.cutaway-ceiling span {
  position: absolute;
  top: 28%;
  width: 16%;
  height: 16px;
  border-radius: 3px;
  background: #f7efe0;
  box-shadow: 0 0 14px rgba(255, 231, 187, 0.92), 0 14px 32px rgba(255, 194, 93, 0.22);
}

.cutaway-ceiling span:nth-child(1) { left: 9%; }
.cutaway-ceiling span:nth-child(2) { left: 32%; }
.cutaway-ceiling span:nth-child(3) { left: 55%; }
.cutaway-ceiling span:nth-child(4) { left: 78%; }

.cutaway-back {
  position: absolute;
  z-index: 2;
  inset: 21% 24px 20%;
  background:
    repeating-linear-gradient(90deg, rgba(58, 63, 62, 0.25) 0 2px, transparent 2px 52px),
    linear-gradient(90deg, #b9aea0, #d6cabb 42%, #a99e92);
  box-shadow: inset 0 0 0 1px rgba(55, 61, 64, 0.45);
}

.cutaway-door {
  position: absolute;
  left: 48%;
  top: 9%;
  width: 18%;
  height: 82%;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 42%, rgba(0, 0, 0, 0.18)),
    #b6aca1;
  box-shadow: inset 0 0 0 2px rgba(46, 54, 57, 0.42);
}

.cutaway-door::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: rgba(37, 46, 49, 0.36);
}

.cutaway-panel {
  position: absolute;
  top: 18%;
  width: 13%;
  height: 52%;
  border-radius: 3px;
  background: #a99f94;
  box-shadow: inset 0 0 0 2px rgba(45, 53, 56, 0.35), 0 7px 18px rgba(0, 0, 0, 0.12);
}

.cutaway-panel::before,
.cutaway-panel::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  background: rgba(39, 47, 49, 0.28);
}

.cutaway-panel::before { top: 24%; }
.cutaway-panel::after { bottom: 24%; }
.cutaway-panel--one { left: 12%; }
.cutaway-panel--two { left: 28%; }

.cutaway-cabinet {
  position: absolute;
  bottom: 8%;
  width: 8.5%;
  height: 34%;
  border-radius: 2px;
  background: #55534f;
  box-shadow: inset 0 0 0 2px rgba(24, 31, 33, 0.42), 0 8px 16px rgba(0, 0, 0, 0.14);
}

.cutaway-cabinet--left { left: 9%; }
.cutaway-cabinet--center { left: 24%; }
.cutaway-cabinet--right { right: 16%; }

.cutaway-board {
  position: absolute;
  top: 22%;
  width: 11%;
  height: 34%;
  border-radius: 3px;
  background:
    radial-gradient(circle at 28% 28%, #e16400 0 3px, transparent 4px),
    radial-gradient(circle at 70% 28%, #e16400 0 3px, transparent 4px),
    radial-gradient(circle at 28% 68%, #e16400 0 3px, transparent 4px),
    radial-gradient(circle at 70% 68%, #e16400 0 3px, transparent 4px),
    #8e847a;
  box-shadow: inset 0 0 0 2px rgba(40, 48, 50, 0.36);
}

.cutaway-board--left { left: 36%; }
.cutaway-board--right { right: 6%; top: 30%; }

.cutaway-bench {
  position: absolute;
  left: 21%;
  bottom: 9%;
  width: 18%;
  height: 10%;
  background: #494947;
  box-shadow:
    0 -18px 0 rgba(88, 86, 82, 0.8),
    inset 0 -3px 0 rgba(0, 0, 0, 0.22);
}

.cutaway-floor {
  position: absolute;
  z-index: 3;
  left: 21px;
  right: 21px;
  bottom: 0;
  height: 23%;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 16px),
    #554f49;
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
}

.interior-callouts {
  display: grid;
  gap: 22px;
}

.interior-callouts article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
}

.interior-callouts article::before {
  content: "";
  position: absolute;
  top: 21px;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 120, 0, 0.12);
}

.interior-callouts article::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 92px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.72;
}

.interior-callouts--left article::after {
  right: -86px;
  transform-origin: right center;
}

.interior-callouts--left article::before {
  right: -92px;
}

.interior-callouts--right article::after {
  left: -86px;
  transform-origin: left center;
}

.interior-callouts--right article::before {
  left: -92px;
}

.interior-callout--clima::after {
  top: 20px;
  width: 112px;
  transform: rotate(-9deg);
}

.interior-callout--aislamiento::after {
  top: 26px;
  width: 92px;
}

.interior-callout--accesos::after {
  top: 30px;
  width: 108px;
  transform: rotate(8deg);
}

.interior-callout--electrico::after {
  top: 20px;
  width: 112px;
  transform: rotate(-10deg);
}

.interior-callout--iluminacion::after {
  top: 24px;
  width: 94px;
}

.interior-callout--acabados::after {
  top: 30px;
  width: 108px;
  transform: rotate(9deg);
}

.interior-callouts .icon {
  width: 44px;
  height: 44px;
  color: var(--yellow-2);
  border: 1px solid rgba(225, 100, 0, 0.42);
  border-radius: 8px;
}

.interior-callouts .icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.55;
}

.interior-callouts h3 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.interior-callouts p {
  margin: 6px 0 0;
  color: #555f62;
  font-size: 14px;
  line-height: 1.35;
}

.structures-examples,
.usages-section,
.structures-process-section,
.steel-sense-section,
.steel-layers-section,
.steel-applications {
  padding-top: 48px;
  padding-bottom: 48px;
}

.structures-examples .section-head,
.usages-section .section-head,
.structures-process-section .section-head,
.steel-sense-section .section-head,
.steel-applications .section-head {
  margin-bottom: 24px;
}

.usages-section .feature-strip,
.structures-process-section .process,
.steel-sense-section .feature-strip {
  box-shadow: 0 16px 34px rgba(3, 11, 14, 0.12);
}

.layers {
  display: grid;
  grid-template-columns: 0.58fr 1.52fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.layers .image-frame img {
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.steel-layers-section .layers {
  grid-template-columns: 0.58fr 1.45fr 0.9fr;
  gap: 26px;
}

.steel-layers-section .image-frame {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.layer-visual {
  position: relative;
  overflow: visible;
}

.layer-line {
  position: absolute;
  right: -22px;
  width: 100px;
  height: 1px;
  background: var(--yellow);
}

.layer-line::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.layer-line--1 { top: 20%; }
.layer-line--2 { top: 34%; }
.layer-line--3 { top: 49%; }
.layer-line--4 { top: 63%; }
.layer-line--5 { top: 78%; }

body[data-page="soluciones"] .hero__ghost,
body[data-page="transformacion"] .hero__ghost,
body[data-page="estructuras"] .hero__ghost,
body[data-page="steel"] .hero__ghost,
body[data-page="proyectos"] .hero__ghost,
body[data-page="taller"] .hero__ghost {
  animation: none !important;
  transform: none !important;
}

body[data-page="soluciones"] .hero__ghost {
  opacity: 0.028 !important;
}

body[data-page="transformacion"] .hero__ghost,
body[data-page="estructuras"] .hero__ghost,
body[data-page="taller"] .hero__ghost {
  opacity: 0.04 !important;
}

body[data-page="steel"] .hero__ghost,
body[data-page="proyectos"] .hero__ghost {
  opacity: 0.026 !important;
}

.numbered-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
}

.numbered-card .step-num {
  margin: 0;
}

.projects-grid-section,
.project-resolve-section,
.project-read-section {
  padding: 36px 0;
}

.projects-grid-section .section-head {
  align-items: center;
  margin-bottom: 24px;
}

.project-resolve-section .section-head {
  justify-content: center;
  text-align: center;
}

body[data-page="proyectos"] .project-card__media {
  height: 180px;
}

body[data-page="proyectos"] .project-card__body {
  padding: 15px 18px;
}

.project-resolve-section .plain-cards--4 {
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.project-resolve-section .plain-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  min-height: 132px;
  box-shadow: none;
}

.project-resolve-section .plain-card:last-child {
  border-right: 0;
}

.project-read-section .section-head {
  justify-content: center;
  text-align: center;
}

body[data-page="oficina"] .project-read-section .section-head {
  align-items: center;
  flex-direction: column;
}

.project-read-section .process {
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: none;
}

body[data-page="taller"] .hero__image {
  background-position: center;
}

body[data-page="taller"] .floating-strip {
  margin-top: -62px;
}

body[data-page="taller"] .section--paper .split--wide {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 42px;
}

.workshop-main-image img {
  height: 590px;
}

.workshop-timeline {
  margin-top: 22px;
}

.workshop-timeline .numbered-card {
  grid-template-columns: 64px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  min-height: 94px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.numbered-card__thumb {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(4, 12, 16, 0.14);
}

.workshop-visit-banner {
  min-height: 360px;
  border-radius: 8px;
}

.workshop-visit-banner::before {
  width: 58%;
  opacity: 0.88;
}

.workshop-visit-banner .cta-content {
  grid-template-columns: 1fr 250px;
  min-height: 360px;
}

.visit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 650px;
  margin-top: 32px;
}

.visit-points article {
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.visit-points .icon {
  width: 36px;
  height: 36px;
  color: var(--yellow);
}

.visit-points h3 {
  margin: 10px 0 6px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.visit-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

body[data-page="taller"] .section:has(.workshop-visit-banner) {
  padding: 36px 0;
}

body[data-page="taller"] .section:last-of-type {
  padding-top: 38px;
}

body[data-page="taller"] .section:last-of-type .process-step {
  padding: 22px 18px;
}

body[data-page="nosotros"] .about-overview {
  grid-template-columns: minmax(310px, 0.9fr) repeat(3, 1fr);
  gap: 20px;
}

body[data-page="nosotros"] .about-intro {
  min-width: 0;
}

body[data-page="nosotros"] .about-intro .section-title {
  overflow-wrap: normal;
  word-break: normal;
}

body[data-page="nosotros"] .hero--light .hero__image::after {
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244, 239, 230, 0.66) 24%, rgba(244, 239, 230, 0.02) 72%);
}

body[data-page="nosotros"] .founders-section {
  padding: 56px 0;
}

body[data-page="nosotros"] .founders-layout {
  align-items: stretch;
}

body[data-page="nosotros"] .founders-copy {
  min-width: 0;
  align-self: center;
}

body[data-page="nosotros"] .founders-copy .section-title {
  max-width: 760px;
}

body[data-page="nosotros"] .founders-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

body[data-page="nosotros"] .founders-principles article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(7, 17, 22, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

body[data-page="nosotros"] .founders-principles strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

body[data-page="nosotros"] .founders-principles span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="nosotros"] .founders-photo {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #d7cec2;
  box-shadow: 0 20px 40px rgba(8, 15, 18, 0.11);
}

body[data-page="nosotros"] .founders-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

body[data-page="nosotros"] .founders-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(7, 17, 22, 0.72);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body[data-page="nosotros"] .about-overview .image-card__media {
  height: 190px;
}

body[data-page="nosotros"] .section--dark {
  padding: 46px 0;
}

body[data-page="nosotros"] .section--dark .section-head {
  align-items: center;
}

body[data-page="nosotros"] .section--paper:has(.cards-grid--4) {
  padding: 48px 0 40px;
}

body[data-page="nosotros"] .section--paper:has(.cards-grid--4) .cards-grid--4 {
  gap: 12px;
}

body[data-page="nosotros"] .section--paper:has(.cards-grid--4) .image-frame img {
  height: 215px;
}

body[data-page="nosotros"] #diferencia {
  padding: 38px 0;
}

body[data-page="contacto"] .next-steps {
  padding: 42px 0 54px;
}

body[data-page="contacto"] .next-steps .section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}

body[data-page="contacto"] .contact-hero::before {
  width: 68%;
  opacity: 0.9;
  background-size: cover;
  background-position: left bottom;
}

body[data-page="contacto"] .contact-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 13, 17, 0.86) 0%, rgba(5, 13, 17, 0.68) 38%, rgba(5, 13, 17, 0.2) 63%, rgba(5, 13, 17, 0.88) 100%),
    linear-gradient(0deg, rgba(5, 13, 17, 0.08), rgba(5, 13, 17, 0.28));
}

body[data-page="contacto"] .contact-benefit .icon {
  width: 58px;
  height: 58px;
  padding: 13px;
  border: 1px solid rgba(255, 120, 0, 0.62);
  border-radius: 999px;
}

.project-card {
  position: relative;
  min-height: 270px;
  background: var(--ink);
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card__media {
  height: 190px;
}

.project-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px 16px;
}

.project-card h3 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 22px;
  line-height: 1.02;
  text-transform: uppercase;
}

.project-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.plus {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease;
}

.project-card:hover .plus {
  background: #ffc21c;
}

.project-gallery {
  position: relative;
  margin-top: 8px;
  max-width: 1240px;
  margin-inline: auto;
}

.project-gallery__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding: 2px 0 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.project-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.project-gallery__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.project-gallery__item {
  position: relative;
  height: clamp(430px, 54vw, 680px);
  padding: 0;
  border: 1px solid rgba(7, 17, 22, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(7, 17, 22, 0.16);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.project-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 17, 22, 0) 0%, rgba(7, 17, 22, 0.34) 100%);
  pointer-events: none;
}

.project-gallery__item:hover,
.project-gallery__item:focus-visible {
  border-color: rgba(255, 122, 0, 0.72);
  box-shadow: 0 24px 48px rgba(7, 17, 22, 0.22);
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
  user-select: none;
  pointer-events: none;
}

.project-gallery__hint {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}

.project-gallery__hint span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(7, 17, 22, 0.28);
}

.project-gallery__hint span:first-child {
  background: var(--yellow);
}

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

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 13, 0.82);
  backdrop-filter: blur(10px);
}

.project-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.project-lightbox__dialog img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.project-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

body.modal-open {
  overflow: hidden;
}
.contact-page {
  background: var(--ink);
  color: #fff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  background-image: var(--contact-image);
  background-size: cover;
  background-position: bottom left;
  opacity: 0.64;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 22, 0.88) 0%, rgba(7, 17, 22, 0.78) 42%, rgba(7, 17, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 17, 22, 0.34), rgba(7, 17, 22, 0.05));
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: start;
  padding: 168px 0 58px;
}

.contact-aside {
  padding-top: 42px;
}

.contact-aside .display {
  font-size: 58px;
}

.contact-benefits {
  display: grid;
  gap: 26px;
  margin-top: 40px;
}

.contact-benefit {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-benefit h3 {
  margin: 0 0 6px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.contact-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.form-card {
  padding: 42px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.form-card h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}

.form-card h2::after,
.decor-line::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 12px;
  background: var(--yellow);
}

.form-intro {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

.field.is-hidden {
  display: none;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfc6b8;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  min-height: 52px;
  padding: 0 16px;
}

.field textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

.upload-zone {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 122px;
  border: 1px dashed #a8a095;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
  cursor: pointer;
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-zone strong {
  display: block;
}

.upload-zone span {
  color: var(--muted);
  font-size: 14px;
}

.upload-zone.is-dragging {
  border-color: var(--yellow-2);
  background: rgba(255, 120, 0, 0.12);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(17, 124, 80, 0.12);
  color: #116342;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 18px;
  background: linear-gradient(180deg, rgba(20, 24, 24, 0), rgba(20, 24, 24, 0.22));
}

.cookie-consent__panel {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(21, 31, 30, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  color: #f5f0e6;
  backdrop-filter: blur(18px);
}

.cookie-consent__copy h2 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 760;
  text-transform: uppercase;
}

.cookie-consent__copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

.cookie-consent__copy a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 760;
  text-decoration: none;
}

.cookie-consent__settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cookie-toggle {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.cookie-toggle strong,
.cookie-toggle small {
  display: block;
}

.cookie-toggle strong {
  color: #fff;
  font-size: 0.94rem;
}

.cookie-toggle small {
  margin-top: 4px;
  color: rgba(245, 240, 230, 0.68);
  line-height: 1.45;
}

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

.cookie-consent__actions .btn {
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

.cookie-consent__actions .btn--ghost {
  border: 1px solid rgba(245, 240, 230, 0.28);
  color: #f5f0e6;
  background: transparent;
}

.next-steps {
  padding: 58px 0;
  background: var(--ink-2);
}

.next-steps .process {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
}

.legal-content {
  padding: 80px 0;
}

.legal-box {
  max-width: 860px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-box h1 {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 46px;
  text-transform: uppercase;
}

.legal-box h2 {
  margin-top: 30px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.site-footer {
  background: radial-gradient(circle at top right, rgba(47, 68, 75, 0.26), transparent 34%), var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 0.9fr 1.25fr;
  gap: 34px;
  padding: 42px 0 28px;
}

.footer-logo {
  width: auto;
  height: 96px;
  max-width: 104px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-title {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  font-weight: 900;
}

.footer-bottom {
  padding: 0 0 24px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 6px;
  }

  .nav-link {
    padding: 0 7px;
    font-size: 12px;
  }

  .display {
    font-size: 58px;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item:nth-child(3) {
    border-right: 0;
  }

  .feature-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .feature-strip--dark .feature-item:nth-child(n + 4) {
    border-top-color: var(--line-dark);
  }

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

  .projects-home-layout,
  .home-flow {
    grid-template-columns: 1fr;
  }

  .home-flow__cta {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-flow__actions {
    flex-wrap: wrap;
  }

  .solutions-hero-markers {
    position: static;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 28px;
    color: var(--text);
    text-shadow: none;
  }

  .solutions-hero-markers span {
    color: var(--text);
    padding: 0 12px;
  }

  .solutions-hero-markers strong {
    color: var(--yellow-2);
  }

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

  .sectors-band--center .sectors {
    grid-template-columns: repeat(3, 1fr);
  }

  .sectors h2 {
    max-width: none;
    padding-bottom: 20px;
    grid-column: 1 / -1;
  }

  .sector:nth-child(2),
  .sector:nth-child(6) {
    border-left: 0;
  }

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

@media (max-width: 1180px) {
  .site-header {
    top: 12px;
  }

  .header-inner {
    width: min(100% - 34px, 1120px);
    min-height: 68px;
    padding: 0 16px 0 18px;
    border-radius: 14px;
  }

  .brand {
    width: 78px;
  }

  .brand img {
    width: auto;
    height: 54px;
    max-width: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 0;
    padding: 0 18px;
    background: rgba(7, 17, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    box-shadow: 0 22px 44px rgba(3, 11, 14, 0.3);
    transition: max-height 200ms ease, padding 200ms ease;
  }

  body.nav-open .site-nav {
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 14px 18px 22px;
  }

  .nav-list {
    display: grid;
    gap: 2px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, border-color 160ms ease, color 160ms ease;
  }

  body.nav-open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 14px;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero,
  .hero--light {
    min-height: auto;
  }

  .hero__image {
    position: relative;
    width: 100%;
    height: 300px;
    inset: auto;
  }

  .hero__image::after {
    background: linear-gradient(0deg, var(--ink), rgba(7, 17, 22, 0.18)) !important;
  }

  .hero--light .hero__image::after {
    background: linear-gradient(0deg, var(--cream), rgba(244, 239, 230, 0.06)) !important;
  }

  .hero__content {
    width: min(100% - 40px, 1120px);
    min-height: 0;
    padding: 38px 0 58px;
  }

  .hero__copy {
    width: 100%;
    min-width: 0;
  }

  .hero--light .hero__copy {
    width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .hero--light {
    min-height: auto;
  }

  body[data-page="home"] .hero--light .hero__image {
    height: 360px;
    background-position: center right;
  }

  body[data-page="home"] .hero--light .hero__content {
    width: min(100% - 40px, 1120px);
    padding: 34px 0 58px;
  }

  body[data-page="home"] .hero--light .hero__copy {
    width: 100%;
    min-width: 0;
  }

  .hero--solutions .hero__copy {
    width: 100%;
    min-width: 0;
  }

  .hero--solutions .display {
    font-size: 48px;
  }

  .hero__ghost {
    top: 278px;
    left: 20px;
    right: auto;
    font-size: 92px;
  }

  .display {
    font-size: 48px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .container {
    width: min(100% - 40px, 1120px);
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .split,
  .split--wide,
  .solutions-overview,
  .about-overview,
  .fabrication-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .fabrication-section {
    padding: 0 0 44px;
    background: var(--paper);
  }

  .fabrication-band {
    gap: 0;
    width: 100%;
    min-height: 0;
    padding-right: 0;
  }

  .fabrication-image {
    width: 100%;
  }

  .fabrication-image img {
    min-height: 280px;
  }

  .fabrication-copy {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    padding: 34px 0 24px;
  }

  .quality-panel {
    width: min(100% - 40px, 420px);
    margin: 0 auto;
    min-height: 220px;
  }

  .contact-layout {
    gap: 36px;
    padding-top: 44px;
  }

  body[data-page="contacto"] .contact-layout {
    padding-top: 128px;
  }

  .contact-aside {
    padding-top: 0;
  }

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

  .cards-grid--2,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process--dark .process-step {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

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

  .app-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-column:last-child {
    border-bottom: 0;
  }

  .cta-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .display {
    font-size: 38px;
  }

  body[data-page="home"] .hero--light .display {
    font-size: 42px;
  }

  body[data-page="home"] .hero--light .hero__image {
    height: 270px;
  }

  body[data-page="transformacion"] .hero--light .hero__content {
    padding: 32px 0 54px;
  }

  body[data-page="transformacion"] .hero--light .hero__copy {
    width: 100%;
    min-width: 0;
  }

  body[data-page="transformacion"] .hero--light .display {
    max-width: 100%;
    font-size: 35px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  body[data-page="transformacion"] .hero--light .eyebrow {
    max-width: calc(100vw - 54px);
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 12px;
  }

  body[data-page="transformacion"] .hero--light .lead {
    max-width: calc(100vw - 58px);
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  body[data-page="transformacion"] .service-intro-section .plain-card,
  body[data-page="transformacion"] .transform-app-card .card-body,
  .transform-timeline-step,
  body[data-page="transformacion"] .include-section .plain-card {
    overflow-wrap: anywhere;
  }

  body[data-page="transformacion"] .hero--light .hero__image {
    height: 270px;
  }

  .hero--solutions .display {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .hero--solutions .hero__copy {
    max-width: 100%;
  }

  body[data-page="soluciones"] .hero--solutions .hero__content {
    padding: 32px 0 54px;
  }

  body[data-page="soluciones"] .hero--solutions .hero__copy {
    width: 100%;
    min-width: 0;
  }

  body[data-page="soluciones"] .hero--solutions .display {
    max-width: 100%;
    font-size: 42px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  body[data-page="soluciones"] .hero--solutions .lead {
    max-width: calc(100vw - 46px);
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  body[data-page="soluciones"] .solutions-hero-markers {
    display: none;
  }

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

  .eyebrow {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .solutions-intro .section-title {
    font-size: 30px;
    overflow-wrap: break-word;
  }

  .contact-aside .display {
    font-size: 36px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero__image {
    height: 245px;
  }

  .floating-strip {
    margin-top: 0;
  }

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

  .feature-item,
  .feature-item:nth-child(n) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .feature-item:first-child {
    border-top: 0;
  }

  .feature-strip--dark .feature-item:nth-child(n) {
    border-top-color: var(--line-dark);
  }

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

  .solutions-hero-markers {
    grid-template-columns: 1fr;
    gap: 12px;
    display: none;
  }

  .solutions-showcase-section .section-title,
  .solutions-applications .section-title,
  .solutions-focus .section-title {
    display: block;
  }

  body[data-page="transformacion"] .transform-applications .section-title,
  body[data-page="transformacion"] .include-section .section-title,
  body[data-page="transformacion"] .interior-section .section-title {
    display: block;
  }

  body[data-page="transformacion"] .transform-applications .section-title::before,
  body[data-page="transformacion"] .transform-applications .section-title::after,
  body[data-page="transformacion"] .include-section .section-title::before,
  body[data-page="transformacion"] .include-section .section-title::after,
  body[data-page="transformacion"] .interior-section .section-title::before,
  body[data-page="transformacion"] .interior-section .section-title::after {
    display: none;
  }

  body[data-page="transformacion"] .transform-process-section .process,
  body[data-page="transformacion"] .include-section .cards-grid--4,
  .transform-timeline,
  .interior-callout-layout {
    grid-template-columns: 1fr;
  }

  .transform-timeline::before,
  .transform-timeline-step::after,
  .interior-callouts article::before {
    display: none;
  }

  .transform-timeline-step,
  .transform-timeline-step.is-final {
    min-height: auto;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .transform-timeline-step:last-child {
    border-bottom: 0;
  }

  .timeline-icon {
    margin: 14px 0 12px;
  }

  body[data-page="transformacion"] .transform-process-section .process-step,
  body[data-page="transformacion"] .transform-process-section .process-step:last-child,
  body[data-page="transformacion"] .include-section .plain-card,
  body[data-page="transformacion"] .include-section .plain-card:first-child {
    border-left: 0;
    border-right: 0;
  }

  .interior-callouts article::after {
    display: none;
  }

  .interior-container-visual img {
    height: 260px;
  }

  .solutions-showcase-section .section-title::before,
  .solutions-showcase-section .section-title::after,
  .solutions-applications .section-title::before,
  .solutions-applications .section-title::after,
  .solutions-focus .section-title::before,
  .solutions-focus .section-title::after {
    display: none;
  }

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

  body[data-page="soluciones"] .sectors-band {
    width: min(100% - 24px, var(--site-max));
  }

  .sectors h2 {
    width: 100%;
    max-width: 320px;
    font-size: 23px;
    overflow-wrap: break-word;
  }

  .sectors-band--center .sectors h2 {
    max-width: 260px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.08;
  }

  .solutions-focus .section-title {
    font-size: 24px;
  }

  .solutions-focus .feature-item {
    padding: 20px 18px;
  }

  .solutions-focus .feature-item h3,
  .solutions-focus .feature-item p {
    overflow-wrap: anywhere;
  }

  .cta-title {
    overflow-wrap: anywhere;
  }

  .sector {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sector span:last-child {
    font-size: 13px;
  }

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

  .fabrication-points {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

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

  .cta-banner::before {
    width: 100%;
    opacity: 0.22;
  }

  .cta-content {
    padding: 26px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

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

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

@media (max-width: 440px) {
  .header-inner,
  .container,
  .hero__content,
  .contact-layout {
    width: calc(100% - 28px);
  }

  .display {
    font-size: 30px;
    line-height: 0.98;
  }

  .hero--light .display,
  .hero--solutions .display,
  .contact-aside .display {
    font-size: 30px;
    line-height: 0.98;
  }

  .hero__copy,
  .contact-aside,
  .form-card,
  .lead,
  .section-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero__ghost {
    max-width: calc(100vw - 28px);
    overflow: hidden;
    font-size: 70px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.2;
  }

  .section-title,
  .solutions-intro .section-title,
  .card-title,
  .lead,
  .section-copy,
  .card-body p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta-actions,
  .inline-actions {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .cookie-consent {
    padding: 10px;
  }

  .cookie-consent__panel {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 14px;
  }

  .cookie-consent__settings {
    grid-template-columns: 1fr;
  }

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

  .cookie-consent__actions .btn {
    flex: 1 1 140px;
    justify-content: center;
  }

  body[data-page] .hero__copy,
  body[data-page] .hero--light .hero__copy,
  body[data-page] .hero--solutions .hero__copy {
    width: 100%;
    min-width: 0;
  }

  body[data-page="proyectos"] .hero--light,
  body[data-page="taller"] .hero {
    min-height: 620px;
  }

  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content {
    padding: 220px 0 42px;
  }

  body[data-page="proyectos"] .hero--light .display,
  body[data-page="taller"] .display {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 44px);
    line-height: 0.96;
  }

  body[data-page="proyectos"] .hero--light .lead,
  body[data-page="taller"] .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body[data-page="proyectos"] .hero__content,
  body[data-page="taller"] .hero__content {
    overflow: hidden;
  }

  body[data-page="proyectos"] .hero__copy > *,
  body[data-page="taller"] .hero__copy > *,
  body[data-page="taller"] .feature-item,
  body[data-page="taller"] .feature-item > div,
  body[data-page="taller"] .numbered-card > div {
    min-width: 0;
  }

  body[data-page="taller"] .feature-item h3,
  body[data-page="taller"] .feature-item p,
  body[data-page="taller"] .numbered-card p,
  body[data-page="taller"] .numbered-card h3 {
    overflow-wrap: anywhere;
  }

  .project-hero-labels {
    display: none;
  }

  .projects-grid-section .section-head {
    display: block;
  }

  .project-resolve-section .plain-cards--4 {
    grid-template-columns: 1fr;
  }

  .project-resolve-section .plain-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-resolve-section .plain-card:last-child {
    border-bottom: 0;
  }

  body[data-page="taller"] .section--paper .split--wide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="taller"] .floating-strip {
    margin-top: 0;
    margin-bottom: 0;
  }

  .workshop-main-image img {
    height: 360px;
  }

  .workshop-timeline .numbered-card {
    grid-template-columns: 56px 1fr;
    align-items: start;
    padding: 18px;
  }

  .numbered-card__thumb {
    grid-column: 1 / -1;
    height: 130px;
  }

  .workshop-visit-banner,
  .workshop-visit-banner .cta-content {
    min-height: 0;
  }

  .workshop-visit-banner .cta-content {
    grid-template-columns: 1fr;
  }

  .visit-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visit-points article {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .visit-points article:last-child {
    border-bottom: 0;
  }

  body[data-page="nosotros"] .about-overview {
    grid-template-columns: 1fr;
  }

  body[data-page="contacto"] .contact-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 104px 0 38px;
  }

  body[data-page="contacto"] .contact-aside {
    padding-top: 0;
  }

  body[data-page="contacto"] .contact-aside .display {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 42px);
    line-height: 0.98;
    overflow-wrap: break-word;
  }
}

@media (max-width: 760px) {
  .hero__ghost {
    display: none;
  }

  .hero__image {
    height: 260px;
  }

  body[data-page="home"] .hero--light .hero__image {
    height: 300px;
  }

  .hero__content,
  body[data-page="home"] .hero--light .hero__content,
  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content {
    padding: 30px 0 44px;
  }

  body[data-page="proyectos"] .hero--light,
  body[data-page="taller"] .hero {
    min-height: auto;
  }

  body[data-page] .display,
  body[data-page] .hero--light .display,
  body[data-page] .hero--solutions .display,
  body[data-page="proyectos"] .hero--light .display,
  body[data-page="taller"] .display,
  body[data-page="contacto"] .contact-aside .display {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  body[data-page="nosotros"] .hero--light .display {
    font-size: clamp(30px, 9vw, 38px);
  }

  .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .floating-strip {
    margin-top: 0;
    margin-bottom: 0;
  }

  .feature-strip,
  .usage-strip,
  .approach-strip,
  body[data-page="nosotros"] .feature-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .feature-item,
  .usage-item,
  .approach-item {
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip--dark .feature-item {
    border-right: 0;
    border-bottom-color: var(--line-dark);
  }

  .feature-item:last-child,
  .usage-item:last-child,
  .approach-item:last-child {
    border-bottom: 0;
  }

  .feature-item > div,
  .usage-item > div,
  .approach-item > div {
    min-width: 0;
  }

  .feature-item h3,
  .feature-item p,
  .usage-item h3,
  .usage-item p,
  .approach-item h3,
  .approach-item p {
    overflow-wrap: break-word;
  }

  .feature-item .icon,
  .approach-item .icon,
  .usage-item .icon,
  .accent-icon {
    width: 44px;
    height: 44px;
  }

  .feature-item .icon svg {
    width: 34px;
    height: 34px;
  }

  body[data-page="nosotros"] .about-overview .image-card__media {
    height: 180px;
  }

  body[data-page="nosotros"] .founders-section {
    padding: 42px 0;
  }

  body[data-page="nosotros"] .founders-principles {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  body[data-page="nosotros"] .founders-photo {
    min-height: 320px;
  }

  body[data-page="nosotros"] .founders-photo img {
    min-height: 320px;
  }

  body[data-page="nosotros"] .founders-photo figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 11px;
  }

  body[data-page="nosotros"] .about-overview .image-card__media img[src$="about-blueprint.webp"],
  body[data-page="nosotros"] .section--paper img[src$="team-table.webp"] {
    object-fit: contain;
    padding: 12px;
    background: var(--paper);
  }

  .footer-grid {
    gap: 24px;
    padding: 34px 0 24px;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .home-flow__actions,
  .section-head .inline-actions {
    width: 100%;
    align-items: stretch;
  }

  .home-flow__actions .btn,
  .section-head .inline-actions .btn {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .hero__image,
  body[data-page="home"] .hero--light .hero__image {
    height: 250px;
  }

  .hero__content,
  body[data-page="home"] .hero--light .hero__content,
  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content {
    padding: 26px 0 40px;
  }

  body[data-page] .display,
  body[data-page] .hero--light .display,
  body[data-page] .hero--solutions .display,
  body[data-page="contacto"] .contact-aside .display {
    font-size: clamp(30px, 9.6vw, 36px);
  }

  body[data-page="nosotros"] .hero--light .display {
    font-size: clamp(28px, 8.5vw, 34px);
  }
}

/* Mobile polish layer: keep desktop untouched and normalize small screens. */
@media (max-width: 760px) {
  html,
  body,
  .page {
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    right: 8px;
  }

  .hero,
  .hero--light,
  .hero--dark,
  .hero--solutions,
  .contact-hero {
    min-height: 0 !important;
  }

  .hero__image,
  body[data-page="home"] .hero--light .hero__image,
  body[data-page="transformacion"] .hero--light .hero__image,
  body[data-page="proyectos"] .hero--light .hero__image,
  body[data-page="taller"] .hero__image {
    width: 100%;
    height: clamp(190px, 48vw, 245px);
    transform: none !important;
  }

  .hero__content,
  .hero--solutions .hero__content,
  body[data-page="home"] .hero--light .hero__content,
  body[data-page="transformacion"] .hero--light .hero__content,
  body[data-page="estructuras"] .hero__content,
  body[data-page="steel"] .hero--light .hero__content,
  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="oficina"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content,
  body[data-page="nosotros"] .hero--light .hero__content {
    width: min(100% - 32px, 1120px);
    padding: 24px 0 38px !important;
  }

  .hero__copy,
  .hero--light .hero__copy,
  .hero--solutions .hero__copy {
    gap: 0;
  }

  body[data-page] .display,
  body[data-page] .hero--light .display,
  body[data-page] .hero--solutions .display,
  body[data-page="contacto"] .contact-aside .display {
    font-size: clamp(29px, 8.8vw, 38px);
    line-height: 1.04;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  body[data-page] .display .accent,
  body[data-page] .hero--light .display .accent,
  body[data-page] .hero--solutions .display .accent {
    display: inline-block;
    max-width: 100%;
    font-size: inherit;
    line-height: inherit;
  }

  body[data-page="steel"] .hero--light .display,
  body[data-page="transformacion"] .hero--light .display,
  body[data-page="nosotros"] .hero--light .display {
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.05;
  }

  body[data-page="soluciones"] .hero--solutions .display,
  body[data-page="oficina"] .hero--light .display {
    font-size: clamp(29px, 8.6vw, 36px);
    line-height: 1.05;
  }

  .lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 12px;
    max-width: 100%;
    white-space: normal;
  }

  .hero__actions,
  .cta-actions,
  .inline-actions,
  .home-flow__actions,
  .section-head .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .btn,
  .hero__actions .btn,
  .cta-actions .btn,
  .inline-actions .btn,
  .home-flow__actions .btn,
  .section-head .inline-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    justify-content: center;
    text-align: center;
  }

  .cta-banner {
    border-radius: 8px;
  }

  .cta-banner::before {
    inset: 0;
    width: 100%;
    opacity: 0.16;
  }

  .cta-banner::after {
    background: linear-gradient(0deg, rgba(7, 17, 22, 0.96), rgba(7, 17, 22, 0.82));
  }

  .cta-content,
  body[data-page="transformacion"] .cta-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 18px;
  }

  .cta-title {
    font-size: clamp(25px, 7.5vw, 31px);
    line-height: 1.08;
  }

  .cta-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .cards-grid,
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4,
  .app-columns,
  .layers,
  .steel-layers-section .layers {
    grid-template-columns: 1fr;
  }

  .plain-card,
  .image-card,
  .project-card,
  .process-step,
  .numbered-card,
  .dark-card {
    border-radius: 8px;
  }

  .plain-card,
  .dark-card {
    padding: 22px 18px;
  }

  .image-card .card-body,
  .project-card__body {
    padding: 18px;
  }

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

  .project-card .plus {
    justify-self: start;
  }

  .project-gallery__viewport {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 12px;
  }

  .project-gallery__item {
    height: clamp(260px, 78vw, 420px);
  }

  .project-lightbox {
    padding: 14px;
  }

  .project-lightbox__dialog {
    width: 96vw;
    max-height: 84vh;
  }

  .project-lightbox__dialog img {
    max-height: 84vh;
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.08;
  }

  .section-head {
    gap: 14px;
  }

  .steel-layers-section .image-frame,
  .layer-visual {
    min-height: 0;
  }

  .layers .image-frame img,
  .steel-layers-section .image-frame img {
    height: auto;
    min-height: 0;
    max-height: 260px;
    object-fit: contain;
  }

  .layer-line {
    display: none;
  }

  body[data-page="contacto"] .contact-layout {
    width: min(100% - 32px, 1120px);
    padding: 88px 0 34px;
    gap: 24px;
  }

  body[data-page="contacto"] .contact-aside .lead {
    margin-bottom: 0;
  }

  .contact-benefits {
    gap: 12px;
  }

  .contact-benefit {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
  }

  body[data-page="contacto"] .contact-benefit .icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .form-card h2 {
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.05;
  }

  .form-grid {
    gap: 16px;
  }
}

@media (max-width: 440px) {
  .header-inner,
  .container,
  .hero__content,
  .contact-layout {
    width: calc(100% - 24px);
  }

  .hero__image,
  body[data-page="home"] .hero--light .hero__image,
  body[data-page="transformacion"] .hero--light .hero__image,
  body[data-page="proyectos"] .hero--light .hero__image,
  body[data-page="taller"] .hero__image {
    height: clamp(178px, 50vw, 220px);
  }

  .hero__content,
  .hero--solutions .hero__content,
  body[data-page="home"] .hero--light .hero__content,
  body[data-page="transformacion"] .hero--light .hero__content,
  body[data-page="estructuras"] .hero__content,
  body[data-page="steel"] .hero--light .hero__content,
  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="oficina"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content,
  body[data-page="nosotros"] .hero--light .hero__content {
    width: calc(100% - 24px);
    padding: 22px 0 34px !important;
  }

  body[data-page] .display,
  body[data-page] .hero--light .display,
  body[data-page] .hero--solutions .display,
  body[data-page="contacto"] .contact-aside .display {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  body[data-page="steel"] .hero--light .display,
  body[data-page="transformacion"] .hero--light .display,
  body[data-page="nosotros"] .hero--light .display {
    font-size: clamp(27px, 7.8vw, 32px);
  }

  body[data-page="contacto"] .contact-layout {
    width: calc(100% - 24px);
    padding-top: 82px;
  }

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

/* Mobile refinement pass for legal, cookies and dense content blocks. */
@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-nav {
    max-height: calc(100svh - 92px);
  }

  .nav-link {
    padding: 0 4px;
    font-size: 14px;
  }

  .cookie-consent {
    padding: 8px;
    background: linear-gradient(180deg, rgba(7, 17, 22, 0), rgba(7, 17, 22, 0.52));
  }

  .cookie-consent__panel {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 18px);
    overflow: auto;
    gap: 14px;
    align-items: stretch;
    padding: 16px;
    border-radius: 14px;
  }

  .cookie-consent__copy h2 {
    font-size: 22px;
    line-height: 1.05;
  }

  .cookie-consent__copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-consent__copy a {
    min-height: 40px;
    align-items: center;
  }

  .cookie-toggle {
    padding: 12px;
    border-radius: 10px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-consent__actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .legal-content {
    padding: 92px 0 42px;
  }

  .legal-box {
    width: min(100% - 28px, 860px);
    padding: 24px 18px;
    border-radius: 8px;
  }

  .legal-box h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.05;
  }

  .legal-box h2 {
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.12;
  }

  .legal-box p,
  .legal-box li {
    font-size: 15px;
    line-height: 1.62;
  }

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

  .mini-item {
    align-items: flex-start;
  }

  .quote-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .quote-card h3 {
    font-size: clamp(26px, 7.8vw, 32px);
  }

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

  .process-step,
  .process--dark .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process--dark .process-step {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .upload-zone {
    min-height: 106px;
    padding: 16px 12px;
  }
}

@media (max-width: 440px) {
  .cookie-consent__panel {
    width: calc(100vw - 12px);
    padding: 14px;
  }

  .legal-box {
    width: calc(100% - 24px);
  }
}

@media (max-width: 360px) {
  .hero__image,
  body[data-page="home"] .hero--light .hero__image,
  body[data-page="transformacion"] .hero--light .hero__image,
  body[data-page="proyectos"] .hero--light .hero__image,
  body[data-page="taller"] .hero__image {
    height: 158px;
  }

  .hero__content,
  .hero--solutions .hero__content,
  body[data-page="home"] .hero--light .hero__content,
  body[data-page="transformacion"] .hero--light .hero__content,
  body[data-page="estructuras"] .hero__content,
  body[data-page="steel"] .hero--light .hero__content,
  body[data-page="proyectos"] .hero--light .hero__content,
  body[data-page="oficina"] .hero--light .hero__content,
  body[data-page="taller"] .hero__content,
  body[data-page="nosotros"] .hero--light .hero__content {
    padding: 18px 0 28px !important;
  }

  body[data-page] .display,
  body[data-page] .hero--light .display,
  body[data-page] .hero--solutions .display,
  body[data-page="contacto"] .contact-aside .display {
    font-size: clamp(27px, 8.4vw, 32px);
  }

  body[data-page="steel"] .hero--light .display,
  body[data-page="transformacion"] .hero--light .display,
  body[data-page="nosotros"] .hero--light .display {
    font-size: clamp(26px, 7.8vw, 30px);
  }

  .lead {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .hero__actions,
  .cta-actions,
  .inline-actions {
    gap: 8px;
  }

  body[data-page="transformacion"] .cta-banner {
    width: calc(100% - 24px);
  }

  body[data-page="transformacion"] .cta-content {
    padding: 24px 16px;
  }

  body[data-page="contacto"] .form-card {
    padding: 24px 16px;
  }

  body[data-page="contacto"] .btn--block {
    max-width: 100%;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero__copy > *,
  .hero__image,
  .hero__ghost,
  .reveal,
  .media-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .media-reveal::after {
    display: none !important;
  }
}
