:root {
  --black: #040404;
  --yellow: #efbf57;
  --white: #ffffff;
  --gray-100: #f6f6f3;
  --gray-200: #e8e8e2;
  --gray-500: #8b8b86;
  --gray-800: #1c1c1b;
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(4, 4, 4, 0.14);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--black);
  background: var(--yellow);
}

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

.section {
  position: relative;
  padding: 120px 0;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
}

h1,
h2 {
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.4vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 em {
  color: var(--yellow);
  font-style: normal;
}

p {
  color: #52524e;
}

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

/* Preloader */
.preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  color: var(--yellow);
  background: var(--black);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

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

.preloader span {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.preloader__triangle {
  width: 70px;
  height: 62px;
  margin-inline: auto;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: preloaderSpin 1.2s ease-in-out infinite alternate;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(180deg) scale(0.72);
  }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-h);
  padding: 10px 32px;
  color: var(--white);
  background: rgba(4, 4, 4, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: min-height 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(4, 4, 4, 0.97);
}

.brand {
  position: relative;
  z-index: 4;
  display: block;
  width: 68px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(239, 191, 87, 0.35);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 28px 0;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.74rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 22px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 50%, calc(100% - 17px) 100%, 0 100%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Common components */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.section-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section--dark .section-number {
  color: var(--yellow);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.section-heading--split > p {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.8;
}

.large-copy {
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn--primary {
  color: var(--black);
  background: var(--yellow);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.btn--primary:hover {
  background: var(--white);
}

.section--light .btn--primary:hover {
  color: var(--white);
  background: var(--black);
}

.btn--light {
  color: var(--black);
  background: var(--white);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

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

.btn--text {
  min-height: auto;
  padding: 0 0 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--black);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.72);
}

.triangle {
  position: absolute;
  pointer-events: none;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.triangle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.triangle-field span {
  position: absolute;
  display: block;
  width: 260px;
  height: 230px;
  border: 1px solid rgba(239, 191, 87, 0.16);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(18deg);
}

.triangle-field span:nth-child(1) { top: -70px; left: 5%; }
.triangle-field span:nth-child(2) { top: 25%; right: -100px; width: 400px; height: 350px; transform: rotate(-24deg); }
.triangle-field span:nth-child(3) { bottom: -130px; left: 35%; width: 340px; height: 300px; transform: rotate(43deg); }
.triangle-field span:nth-child(4) { bottom: 18%; left: -90px; width: 190px; height: 170px; transform: rotate(-8deg); }

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

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

/* Home hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 56px);
  gap: 30px;
  padding: 60px 0 40px;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-right: 20px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 7.4vw, 7.3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span:nth-child(2) {
  padding-left: 0.42em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);
}

.hero h1 strong {
  color: var(--yellow);
}

.hero__lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  z-index: 2;
  inset: 6% -12% 4% 4%;
  overflow: hidden;
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.35), transparent 35%), linear-gradient(0deg, rgba(4, 4, 4, 0.45), transparent 45%);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triangle--hero-a {
  z-index: 3;
  top: -3%;
  left: -2%;
  width: 250px;
  height: 225px;
  background: var(--yellow);
  transform: rotate(-12deg);
  opacity: 0.93;
}

.triangle--hero-b {
  z-index: 1;
  right: -3%;
  bottom: -2%;
  width: 280px;
  height: 250px;
  background: transparent;
  border: 2px solid rgba(239, 191, 87, 0.45);
  transform: rotate(24deg);
}

.hero__badge {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  min-width: 185px;
  padding: 18px 20px;
  color: var(--black);
  background: var(--yellow);
  clip-path: polygon(0 0, 87% 0, 100% 31%, 100% 100%, 0 100%);
}

.hero__badge strong {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.hero__badge span {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__rail {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 12px 24px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.hero__rail i {
  width: 10px;
  height: 10px;
  background: var(--black);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* Home intro */
.intro--image {
  position: relative;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.intro--image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4,4,4,0.88), rgba(4,4,4,0.72)), url("../media/maquinaria-detalle.jpg") center/cover;
}

.intro--image .container,
.intro--image .visual-panel {
  position: relative;
  z-index: 2;
}

.intro--image h2,
.intro--image .large-copy {
  color: var(--white);
}

.intro--image p:not(.large-copy) {
  color: rgba(255,255,255,0.78);
}

.intro--image .intro__grid {
  margin-bottom: 60px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  margin-bottom: 80px;
}

.intro__copy {
  padding-top: 45px;
}

.intro__copy > p:not(.large-copy) {
  max-width: 580px;
  line-height: 1.8;
}

.visual-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 520px;
  background: rgba(4,4,4,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 0 100%);
}

.visual-panel__image {
  position: relative;
  min-height: 520px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.visual-panel__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 40%, rgba(4,4,4,0.65));
}

.visual-panel__image img {
  height: 100%;
  object-fit: cover;
}

.visual-panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 54px 60px 24px;
  color: var(--white);
}

.visual-panel__content::before {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 230px;
  height: 205px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(20deg);
  opacity: 0.14;
}

.visual-panel__index {
  display: none;
  margin-bottom: 30px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.visual-panel h3 {
  margin-bottom: 42px;
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
  font-weight: 600;
  text-transform: uppercase;
}

.visual-panel__list {
  display: grid;
  gap: 10px;
}

.visual-panel__list span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-panel__list span::before {
  width: 10px;
  height: 9px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* Services preview */
.services-preview {
  overflow: hidden;
}

.service-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.service-feature {
  position: relative;
  min-height: 420px;
  padding: 42px 34px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.015);
  transform-style: preserve-3d;
  transition: background 0.3s ease, transform 0.2s ease;
}

.service-feature::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85px;
  height: 75px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-feature:hover {
  background: rgba(239, 191, 87, 0.08);
}

.service-feature:hover::after {
  opacity: 1;
}

.service-feature__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
}

.service-feature__icon {
  display: grid;
  place-content: center;
  width: 92px;
  height: 82px;
  margin-bottom: 42px;
  color: var(--black);
  background: var(--yellow);
  font-size: 2.1rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.service-feature__icon--image {
  width: 92px;
  height: 92px;
  background: transparent;
  clip-path: none;
  place-content: start;
}

.service-feature__icon--image img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.service-feature h3 {
  margin-bottom: 18px;
  font-size: 2.1rem;
  text-transform: uppercase;
}

.service-feature p {
  min-height: 76px;
  margin-bottom: 28px;
}

.service-feature a {
  display: inline-flex;
  gap: 18px;
  padding-bottom: 4px;
  color: var(--yellow);
  border-bottom: 1px solid rgba(239, 191, 87, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-preview__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
}

.services-preview__footer p {
  max-width: 630px;
  margin-bottom: 0;
}

/* Why */
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 86px;
}

.why__image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
}

.why__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4,4,4,0.58), transparent 55%);
}

.why__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.triangle--why {
  z-index: 2;
  right: -42px;
  bottom: -35px;
  width: 225px;
  height: 200px;
  background: var(--yellow);
  transform: rotate(-18deg);
}

.reason-list {
  margin-top: 58px;
  border-top: 1px solid var(--border-light);
}

.reason-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-light);
}

.reason-list article > strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.2rem;
}

.reason-list h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.reason-list p {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 82px 0;
  color: var(--black);
  background: var(--yellow);
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cta-band::before {
  top: -140px;
  right: 7%;
  width: 360px;
  height: 320px;
  border: 2px solid rgba(4,4,4,0.25);
  transform: rotate(25deg);
}

.cta-band::after {
  bottom: -90px;
  left: 3%;
  width: 220px;
  height: 195px;
  background: rgba(4,4,4,0.08);
  transform: rotate(-16deg);
}

.cta-band__texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url("../media/maquinaria-detalle.jpg") center/cover;
  mix-blend-mode: multiply;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band__inner span:not(.btn span) {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

/* Inner hero */
.inner-hero {
  position: relative;
  min-height: 720px;
  padding-top: var(--header-h);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

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

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero--about .inner-hero__media img {
  object-position: center 58%;
}

.inner-hero--services .inner-hero__media img {
  object-position: center;
}

.inner-hero--contact .inner-hero__media img {
  object-position: center 15%;
}

.inner-hero__overlay {
  background: linear-gradient(90deg, rgba(4,4,4,0.96) 0%, rgba(4,4,4,0.75) 42%, rgba(4,4,4,0.18) 78%), linear-gradient(0deg, rgba(4,4,4,0.65), transparent 70%);
}

.inner-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding-top: 40px;
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.inner-hero h1 strong {
  color: var(--yellow);
}

.inner-hero__content > p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.inner-hero__label {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 28px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.triangle--inner-a {
  z-index: 2;
  top: 18%;
  right: 9%;
  width: 310px;
  height: 280px;
  background: rgba(239, 191, 87, 0.83);
  transform: rotate(14deg);
  mix-blend-mode: multiply;
}

.triangle--inner-b {
  z-index: 2;
  right: -80px;
  bottom: -95px;
  width: 360px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(-18deg);
}

/* About page */
.company-story__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 90px;
  margin-bottom: 90px;
}

.company-story__copy {
  padding-top: 42px;
}

.company-story__copy > p:not(.large-copy) {
  line-height: 1.85;
}

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

.about-composition__image {
  position: absolute;
  inset: 0 17% 0 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.about-composition__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-composition__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(4,4,4,0.3));
}

.about-composition__card {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  width: min(440px, 42%);
  padding: 54px 48px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-50%);
  clip-path: polygon(0 0, 88% 0, 100% 15%, 100% 100%, 0 100%);
}

.about-composition__card span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-composition__card h3 {
  margin: 26px 0 0;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
}

.about-composition__triangle {
  position: absolute;
  z-index: 2;
  right: 24%;
  bottom: -55px;
  width: 230px;
  height: 205px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(12deg);
}

.mission-vision {
  overflow: hidden;
}

.mission-vision__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.statement-card {
  position: relative;
  min-height: 630px;
  padding: 60px 54px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.statement-card::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 260px;
  height: 230px;
  content: "";
  border: 1px solid rgba(239,191,87,0.4);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(25deg);
}

.statement-card--yellow {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.statement-card--yellow p,
.statement-card--yellow .eyebrow {
  color: rgba(4,4,4,0.72);
}

.statement-card--yellow .eyebrow span {
  background: var(--black);
}

.statement-card--yellow::after {
  border-color: rgba(4,4,4,0.22);
}

.statement-card__number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(255,255,255,0.25);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
}

.statement-card--yellow .statement-card__number {
  color: rgba(4,4,4,0.18);
}

.statement-card h2 {
  margin-bottom: 34px;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
}

.statement-card > p:not(.eyebrow) {
  max-width: 600px;
  line-height: 1.8;
}

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

.value-card {
  position: relative;
  min-height: 300px;
  padding: 36px 30px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  color: var(--white);
  background: var(--black);
}

.value-card > strong {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gray-500);
  font-family: var(--display);
}

.value-card > span {
  display: block;
  margin-bottom: 55px;
  color: var(--yellow);
  font-size: 2.5rem;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  text-transform: uppercase;
}

.value-card p {
  margin-bottom: 0;
}

.value-card:hover p {
  color: rgba(255,255,255,0.66);
}

/* Services page */
.services-detailed {
  border-top: 1px solid var(--border-light);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(260px, 1.2fr) minmax(240px, 0.8fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
  padding: 30px 26px 30px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.service-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  content: "";
  background: var(--yellow);
  transition: width 0.3s ease;
}

.service-row:hover {
  padding-left: 22px;
  background: var(--black);
}

.service-row:hover::before {
  width: 5px;
}

.service-row:hover h3,
.service-row:hover p,
.service-row:hover a {
  color: var(--white);
}

.service-row__number {
  position: relative;
  z-index: 2;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}

.service-row__title {
  position: relative;
  z-index: 2;
}

.service-row__title span {
  display: block;
  margin-bottom: 9px;
  color: var(--gray-500);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-row h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.service-row p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-row a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.equipment-focus {
  overflow: hidden;
}

.equipment-focus__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.equipment-focus__content {
  position: relative;
  z-index: 2;
}

.equipment-focus__content h2 {
  margin-bottom: 30px;
}

.equipment-focus__content > p {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.check-list li::before {
  width: 13px;
  height: 12px;
  flex: 0 0 auto;
  content: "";
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.equipment-focus__visual {
  position: relative;
  min-height: 560px;
}

.equipment-focus__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 18%);
}

.equipment-focus__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4,4,4,0.7), transparent 60%);
  clip-path: polygon(18% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 18%);
}


.triangle--equipment {
  z-index: 2;
  top: -50px;
  left: -75px;
  width: 230px;
  height: 205px;
  background: var(--yellow);
  transform: rotate(-17deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.process-step {
  min-height: 310px;
  padding: 34px 28px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-step > span {
  display: grid;
  place-content: center;
  width: 65px;
  height: 58px;
  margin-bottom: 65px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.process-step h3 {
  margin-bottom: 15px;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.process-step p {
  margin-bottom: 0;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.contact-info > p {
  max-width: 570px;
  line-height: 1.8;
}

.contact-cards {
  margin-top: 50px;
  border-top: 1px solid var(--border-light);
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  padding-inline: 14px;
  background: var(--gray-100);
}

.contact-card > span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--gray-500);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: var(--display);
  font-size: 1.4rem;
}

.contact-card b {
  color: var(--yellow);
}

.quote-form {
  position: relative;
  padding: 45px;
  color: var(--white);
  background: var(--black);
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 0 100%);
}

.quote-form::after {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 195px;
  content: "";
  border: 1px solid rgba(239,191,87,0.3);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(25deg);
  pointer-events: none;
}

.quote-form__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.quote-form__head span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form__head strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2.2rem;
}

.form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.form-grid label > span {
  color: rgba(255,255,255,0.64);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.26);
  outline: 0;
  padding: 10px 0 13px;
  transition: border-color 0.25s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form select {
  color-scheme: dark;
}

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

.quote-form .btn {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.form-note {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: rgba(255,255,255,0.42);
  font-size: 0.68rem;
  text-align: center;
}

.location {
  overflow: hidden;
}

.location__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.location__copy {
  position: relative;
  z-index: 2;
}

.location__copy h2 {
  margin-bottom: 28px;
}

.location__copy p {
  margin-bottom: 34px;
}

.location__map {
  position: relative;
  min-height: 570px;
}

.location__map iframe {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.15);
  clip-path: polygon(13% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 13%);
}

.triangle--map {
  z-index: 3;
  right: -45px;
  bottom: -55px;
  width: 230px;
  height: 205px;
  background: var(--yellow);
  transform: rotate(22deg);
  opacity: 0.94;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--border-dark);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1fr;
  gap: 80px;
  padding: 80px 0 55px;
}

.site-footer__top--expanded {
  grid-template-columns: 1.25fr 0.65fr 1fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 112px;
  margin-bottom: 22px;
  border: 1px solid rgba(239,191,87,0.25);
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.52);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-col > span {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  border-top: 1px solid var(--border-dark);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.42);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 135px;
  padding: 13px 16px 13px 20px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.floating-contact:hover {
  background: var(--white);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --container: min(100% - 36px, 1040px);
  }

  .site-nav {
    gap: 20px;
  }

  .header-cta {
    padding-inline: 16px;
  }

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

  .hero__visual {
    min-height: 520px;
  }

  .visual-panel__content {
    padding-right: 34px;
  }

  .why__grid,
  .equipment-focus__grid,
  .contact-layout,
  .location__grid {
    gap: 50px;
  }

  .service-row {
    grid-template-columns: 60px minmax(220px, 1fr) minmax(200px, 0.8fr) auto;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .section {
    padding: 90px 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: var(--header-h);
    padding-inline: 18px;
  }

  .brand {
    width: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 100px 28px 40px;
    background: var(--black);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  }

  .site-nav::before,
  .site-nav::after {
    position: absolute;
    content: "";
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }

  .site-nav::before {
    right: -50px;
    top: 18%;
    width: 260px;
    height: 230px;
    background: var(--yellow);
    opacity: 0.15;
    transform: rotate(24deg);
  }

  .site-nav::after {
    left: -70px;
    bottom: -50px;
    width: 240px;
    height: 215px;
    border: 1px solid rgba(239,191,87,0.4);
    transform: rotate(-17deg);
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-dark);
    font-family: var(--display);
    font-size: clamp(2.4rem, 9vw, 4.8rem);
    font-weight: 800;
  }

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

  .site-nav a span {
    font-family: var(--body);
    font-size: 0.7rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero__image-wrap {
    inset: 3% -10% 0 5%;
  }

  .hero__rail {
    justify-content: flex-start;
  }

  .intro__grid,
  .company-story__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro__copy,
  .company-story__copy {
    padding-top: 0;
  }

  .visual-panel {
    grid-template-columns: 1fr;
  }

  .visual-panel__image {
    min-height: 440px;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
  }

  .visual-panel__content {
    padding: 45px 34px 55px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .service-feature {
    min-height: 340px;
  }

  .why__grid,
  .equipment-focus__grid,
  .contact-layout,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .why__image,
  .equipment-focus__visual,
  .location__map {
    min-height: 460px;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-hero,
  .inner-hero__content {
    min-height: 650px;
  }

  .about-composition {
    min-height: 760px;
  }

  .about-composition__image {
    inset: 0 0 22% 0;
  }

  .about-composition__card {
    top: auto;
    right: 30px;
    bottom: 0;
    width: min(500px, calc(100% - 30px));
    transform: none;
  }

  .about-composition__triangle {
    right: auto;
    left: -20px;
    bottom: 110px;
  }

  .mission-vision__grid {
    grid-template-columns: 1fr;
  }

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

  .service-row {
    grid-template-columns: 56px 1fr auto;
  }

  .service-row > p {
    grid-column: 2 / -1;
    padding-right: 100px;
  }

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

  .contact-layout {
    gap: 60px;
  }

  .site-footer__top,
  .site-footer__top--expanded {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero__grid {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero h1 span:nth-child(2) {
    padding-left: 0;
  }

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

  .hero__visual {
    min-height: 440px;
  }

  .hero__image-wrap {
    inset: 8% -35% 0 0;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  }

  .triangle--hero-a {
    width: 150px;
    height: 135px;
  }

  .triangle--hero-b {
    width: 220px;
    height: 195px;
  }

  .hero__badge {
    right: 0;
    bottom: 3%;
  }

  .hero__rail {
    gap: 14px;
    font-size: 0.75rem;
  }

  .visual-panel__image {
    min-height: 320px;
  }

  .visual-panel__content {
    padding: 38px 24px 48px;
  }

  .service-feature {
    min-height: 360px;
    padding-inline: 28px;
  }

  .service-feature__icon--image,
  .service-feature__icon--image img {
    width: 78px;
    height: 78px;
  }

  .services-preview__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .why__image,
  .equipment-focus__visual,
  .location__map {
    min-height: 360px;
  }

  .inner-hero,
  .inner-hero__content {
    min-height: 600px;
  }

  .inner-hero h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .inner-hero__content {
    padding-top: 60px;
  }

  .inner-hero__label {
    right: 14px;
  }

  .triangle--inner-a {
    right: -25%;
    width: 230px;
    height: 205px;
  }

  .about-composition {
    min-height: 680px;
  }

  .about-composition__image {
    bottom: 28%;
  }

  .about-composition__card {
    right: 0;
    width: calc(100% - 16px);
    padding: 38px 28px;
  }

  .statement-card {
    min-height: auto;
    padding: 48px 28px;
  }

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

  .value-card,
  .process-step {
    min-height: 260px;
  }

  .service-row {
    grid-template-columns: 45px 1fr;
    padding-right: 0;
  }

  .service-row > p {
    grid-column: 2;
    padding-right: 0;
  }

  .service-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .service-row:hover {
    padding-left: 10px;
  }

  .equipment-focus__tag {
    right: 12px;
    bottom: 14px;
    width: 210px;
  }

  .quote-form {
    padding: 34px 22px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .contact-card {
    grid-template-columns: 38px 1fr auto;
    gap: 12px;
  }

  .contact-card strong {
    font-size: 1.1rem;
    word-break: break-word;
  }

  .site-footer__top,
  .site-footer__top--expanded {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    min-width: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.inner-hero__label { display: none; }
.section--compact { padding-top: 90px; padding-bottom: 90px; }

/* =========================================================
   Refinement v3: Nosotros, Servicios y Contacto
   ========================================================= */

/* Nosotros: misión y visión */
.about-purpose {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
}

.about-purpose__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,0.98) 0%, rgba(4,4,4,0.91) 55%, rgba(4,4,4,0.52) 100%),
    url("../media/maquinaria-detalle.jpg") center/cover no-repeat;
}

.about-purpose__background::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(239,191,87,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,191,87,0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, black 0%, transparent 85%);
}

.about-purpose__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
}

.purpose-block {
  position: relative;
  grid-column: 1 / 8;
  padding: 0 0 46px;
  border-bottom: 1px solid rgba(239,191,87,0.55);
}

.purpose-block--vision {
  grid-column: 1 / 10;
  padding-top: 24px;
}

.purpose-block__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.purpose-block__heading > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 52px;
  flex: 0 0 auto;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.purpose-block h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.purpose-block p {
  max-width: 840px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
  text-align: justify;
}

.purpose-block p strong {
  color: var(--yellow);
  font-weight: 500;
}

/* Nosotros: valores */
.values--refined {
  background: #f7f7f4;
}

.values-grid--icons .value-card {
  min-height: 320px;
  background: var(--white);
}

.values-grid--icons .value-card:hover {
  background: var(--black);
}

.value-card__icon {
  display: grid !important;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 48px !important;
  color: var(--yellow) !important;
  background: var(--black);
  border: 1px solid rgba(239,191,87,0.45);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.55rem !important;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.values-grid--icons .value-card:hover .value-card__icon {
  color: var(--black) !important;
  background: var(--yellow);
}

/* Nosotros: por qué elegirnos */
.about-reasons {
  padding-top: 110px;
  background: var(--white);
  overflow: hidden;
}

.about-reasons__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 70px;
}

.about-reasons__intro h2 {
  margin-bottom: 50px;
}

.about-reasons__list {
  border-top: 1px solid var(--border-light);
}

.about-reasons__list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-reasons__list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.about-reasons__list h3,
.reason-highlight h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-reasons__list p,
.reason-highlight p {
  margin: 0;
}

.about-reasons__cards {
  display: grid;
  gap: 20px;
}

.reason-highlight {
  position: relative;
  min-height: 230px;
  padding: 38px 36px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(239,191,87,0.45);
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

.reason-highlight::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 150px;
  height: 135px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.13;
  transform: rotate(20deg);
}

.reason-highlight > span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.reason-highlight h3 {
  max-width: 430px;
  color: var(--yellow);
}

.reason-highlight p {
  color: rgba(255,255,255,0.68);
}

.about-reasons__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 0 100%);
}

.about-reasons__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.about-reasons__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,4,0.82), rgba(4,4,4,0.12) 70%), linear-gradient(0deg, rgba(4,4,4,0.62), transparent 55%);
}

.about-reasons__image-copy {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 5vw, 68px);
  bottom: clamp(28px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.about-reasons__image-copy span {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-reasons__image-copy strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
}

/* Contacto: fondo negro y formulario blanco */
.contact-section--dark {
  color: var(--white);
  background: var(--black);
}

.contact-section--dark::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 75%);
  pointer-events: none;
}

.contact-section--dark .contact-layout {
  position: relative;
  z-index: 2;
}

.contact-section--dark .contact-info h2 {
  color: var(--white);
}

.contact-section--dark .contact-info > p {
  color: rgba(255,255,255,0.68);
}

.contact-cards--complete {
  margin-top: 38px;
  border-top-color: var(--border-dark);
}

.contact-section--dark .contact-card {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  border-bottom-color: var(--border-dark);
}

.contact-section--dark .contact-card:hover {
  background: rgba(239,191,87,0.08);
}

.contact-section--dark .contact-card small {
  color: rgba(255,255,255,0.44);
}

.contact-section--dark .contact-card strong {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.35;
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--black) !important;
  background: var(--yellow);
  border-radius: 8px;
  font-family: var(--body) !important;
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em;
}

.quote-form--light {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
}

.quote-form--light::after {
  border-color: rgba(239,191,87,0.55);
}

.quote-form--light .quote-form__head {
  border-bottom-color: rgba(4,4,4,0.15);
}

.quote-form--light .quote-form__head strong {
  color: var(--black);
}

.quote-form--light .form-grid label > span {
  color: rgba(4,4,4,0.54);
}

.quote-form--light input,
.quote-form--light textarea,
.quote-form--light select {
  color: var(--black);
  border-bottom-color: rgba(4,4,4,0.28);
  color-scheme: light;
}

.quote-form--light input::placeholder,
.quote-form--light textarea::placeholder {
  color: rgba(4,4,4,0.46);
}

.quote-form--light input:focus,
.quote-form--light textarea:focus,
.quote-form--light select:focus {
  border-color: var(--yellow);
}

.quote-form--light .form-note {
  color: rgba(4,4,4,0.48);
}

/* Contacto: mapa sobre fondo blanco */
.location--light {
  color: var(--black);
  background: var(--white);
}

.location--light .location__copy h2 {
  color: var(--black);
}

.location--light .location__copy p {
  color: #52524e;
}

.location--light .location__map {
  filter: drop-shadow(0 22px 38px rgba(4,4,4,0.14));
}

.location--light .location__map iframe {
  border: 1px solid rgba(4,4,4,0.12);
  filter: grayscale(1) contrast(1.08);
}

/* Tablet */
@media (max-width: 900px) {
  .about-purpose {
    min-height: auto;
  }

  .about-purpose__background {
    background:
      linear-gradient(rgba(4,4,4,0.94), rgba(4,4,4,0.94)),
      url("../media/maquinaria-detalle.jpg") center/cover no-repeat;
  }

  .about-purpose__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .purpose-block,
  .purpose-block--vision {
    grid-column: auto;
    padding-top: 0;
  }

  .purpose-block p {
    text-align: left;
  }

  .about-reasons__top {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-reasons__cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-reasons__image {
    min-height: 440px;
  }

  .contact-section--dark .contact-layout {
    gap: 52px;
  }

  .contact-cards--complete {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid var(--border-dark);
  }

  .contact-section--dark .contact-card {
    padding: 22px 18px;
    border-right: 1px solid var(--border-dark);
  }

  .location--light .location__grid {
    gap: 44px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .company-story__grid {
    gap: 34px;
  }

  .about-purpose {
    padding: 76px 0;
  }

  .purpose-block__heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  .purpose-block__heading > span {
    width: 48px;
    height: 44px;
  }

  .purpose-block h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .purpose-block p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .values-grid--icons {
    grid-template-columns: 1fr;
  }

  .values-grid--icons .value-card {
    min-height: 250px;
    padding: 30px 24px;
  }

  .value-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 34px !important;
  }

  .about-reasons {
    padding-top: 72px;
  }

  .about-reasons__intro h2 {
    margin-bottom: 34px;
  }

  .about-reasons__list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .about-reasons__list article > span {
    width: 30px;
    height: 30px;
  }

  .about-reasons__cards {
    grid-template-columns: 1fr;
  }

  .reason-highlight {
    min-height: 205px;
    padding: 30px 24px;
  }

  .about-reasons__image {
    min-height: 390px;
    clip-path: polygon(0 0, 88% 0, 100% 10%, 100% 100%, 0 100%);
  }

  .about-reasons__image img {
    object-position: 62% center;
  }

  .about-reasons__image-copy {
    right: 22px;
    left: 22px;
    bottom: 28px;
  }

  .about-reasons__image-copy strong {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .contact-section--dark {
    padding-top: 72px;
  }

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

  .contact-section--dark .contact-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 18px 12px;
  }

  .contact-card__icon {
    width: 40px;
    height: 40px;
  }

  .contact-section--dark .contact-card strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .quote-form--light {
    clip-path: none;
    padding: 32px 22px;
  }

  .quote-form--light::after {
    display: none;
  }

  .location--light {
    padding-top: 72px;
  }

  .location--light .location__copy h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .location--light .location__map {
    min-height: 360px;
  }

  .location--light .location__map iframe {
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 10%);
  }
}

.quote-form--light .btn--primary:hover {
  color: var(--white);
  background: var(--black);
}

@media (max-width: 600px) {
  .inner-hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.4rem);
    line-height: 1.02;
  }

  .service-row h3 {
    font-size: clamp(1.65rem, 8.5vw, 2.35rem);
    line-height: 1.08;
  }

  .service-row__title span {
    line-height: 1.35;
  }

  .equipment-focus__content h2,
  .contact-info h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .site-footer__top,
  .site-footer__top--expanded {
    padding-top: 58px;
    padding-bottom: 40px;
    gap: 36px;
  }
}

/* =========================================================
   INDEX V4 — hero editorial + presentación en flecha
   ========================================================= */
.page-home .site-header {
  position: absolute;
  min-height: 82px;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.page-home .site-header.is-scrolled {
  position: fixed;
  min-height: 70px;
  background: rgba(4, 4, 4, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
}

.page-home .site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.page-home .site-nav a span {
  display: none;
}

.page-home .header-cta {
  color: var(--black);
  background: var(--white);
  clip-path: none;
  border-radius: 2px;
}

.page-home .header-cta:hover {
  background: var(--yellow);
}

.hero--editorial {
  min-height: 760px;
  padding-top: 0;
  background: var(--black);
}

.hero--editorial::before {
  display: none;
}

.hero-editorial__layout {
  display: grid;
  grid-template-columns: minmax(0, 61%) minmax(0, 39%);
  min-height: 760px;
}

.hero-editorial__content {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 150px max(40px, calc((100vw - 1180px) / 2)) 80px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-editorial__content::before,
.hero-editorial__content::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-editorial__content::before {
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.55) 68%, transparent 100%);
}

.hero-editorial__content::after {
  right: -135px;
  bottom: -145px;
  width: 360px;
  height: 325px;
  border: 1px solid rgba(239,191,87,0.25);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(24deg);
}

.hero-editorial__inner {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
}

.hero--editorial h1 {
  margin-bottom: 25px;
  font-size: clamp(4rem, 6.8vw, 7.25rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero--editorial h1 span,
.hero--editorial h1 strong {
  display: block;
}

.hero--editorial h1 span:nth-child(2) {
  padding-left: 0;
  color: var(--white);
  -webkit-text-stroke: 0;
}

.hero--editorial h1 strong {
  color: var(--yellow);
}

.hero--editorial .hero__lead {
  max-width: 545px;
}

.hero-editorial__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--yellow);
}

.hero-editorial__media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(239,191,87,0.9) 0%, rgba(239,191,87,0.36) 38%, rgba(239,191,87,0.08) 78%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-editorial__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% top;
  transform: scale(1.07);
  filter: saturate(0.92) contrast(1.04);
}

.hero-editorial__pattern {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(135deg, transparent 46%, rgba(4,4,4,0.3) 47%, transparent 48%),
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,0.28) 47%, transparent 48%);
  background-size: 115px 115px;
  pointer-events: none;
}

.hero-editorial__accent {
  position: absolute;
  z-index: 4;
  right: -60px;
  bottom: 30px;
  width: 240px;
  height: 130px;
  background: rgba(4,4,4,0.14);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

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

.home-about-arrow {
  padding-top: 115px;
  padding-bottom: 115px;
  overflow: hidden;
}

.home-about-arrow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 82px;
}

.home-about-arrow__media {
  position: relative;
  min-height: 620px;
}

.home-about-arrow__frame {
  position: absolute;
  inset: 0 70px 0 0;
  overflow: hidden;
  background: var(--black);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%, 18% 50%);
}

.home-about-arrow__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4,4,4,0.12), transparent 52%), linear-gradient(0deg, rgba(4,4,4,0.28), transparent 42%);
}

.home-about-arrow__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% top;
  transform: scale(1.04);
}

.home-about-arrow__shape {
  position: absolute;
  z-index: -1;
  top: 45px;
  right: 0;
  bottom: 45px;
  left: 70px;
  background: var(--yellow);
  clip-path: polygon(0 0, 77% 0, 100% 50%, 77% 100%, 0 100%, 18% 50%);
}

.home-about-arrow__content h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
}

.home-about-arrow__copy {
  display: grid;
  gap: 17px;
  margin-bottom: 35px;
}

.home-about-arrow__copy p {
  margin: 0;
  color: #41413d;
  font-size: 1rem;
  line-height: 1.8;
}

.commitment-panel {
  padding: 30px 32px;
  color: var(--white);
  background: var(--black);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(4,4,4,0.12);
}

.commitment-panel__title {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 16px;
  color: var(--yellow);
  border-bottom: 1px solid rgba(239,191,87,0.42);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.commitment-panel__items article {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 65px;
  padding: 10px 18px 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.commitment-panel__items article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.commitment-panel__items article:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.commitment-panel__items strong {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.75rem;
}

.commitment-panel__items span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero-editorial__layout {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-editorial__content {
    padding-left: 34px;
    padding-right: 34px;
  }

  .home-about-arrow__grid {
    gap: 48px;
  }

  .home-about-arrow__media {
    min-height: 560px;
  }

  .commitment-panel__items {
    grid-template-columns: 1fr;
  }

  .commitment-panel__items article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .commitment-panel__items article:last-child {
    border-bottom: 0;
  }

  .commitment-panel__items article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .page-home .site-header {
    position: absolute;
    padding-inline: 18px;
  }

  .page-home .site-nav a {
    font-size: clamp(2.2rem, 9vw, 4.5rem);
  }

  .hero--editorial,
  .hero-editorial__layout {
    min-height: auto;
  }

  .hero-editorial__layout {
    grid-template-columns: 1fr;
  }

  .hero-editorial__content {
    min-height: 650px;
    padding: 150px 28px 76px;
  }

  .hero-editorial__media {
    min-height: 520px;
  }

  .hero-editorial__media img {
    object-position: center top;
  }

  .home-about-arrow__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .home-about-arrow__media {
    min-height: 520px;
  }

  .home-about-arrow__frame {
    right: 45px;
  }
}

@media (max-width: 600px) {
  .hero-editorial__content {
    min-height: 600px;
    padding: 128px 20px 66px;
  }

  .hero--editorial h1 {
    font-size: clamp(3.55rem, 17vw, 5.35rem);
  }

  .hero-editorial__media {
    min-height: 400px;
  }

  .hero-editorial__accent {
    width: 170px;
    height: 95px;
  }

  .home-about-arrow {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .home-about-arrow__media {
    min-height: 370px;
  }

  .home-about-arrow__frame {
    inset: 0 30px 0 0;
    clip-path: polygon(0 0, 76% 0, 100% 50%, 76% 100%, 0 100%, 13% 50%);
  }

  .home-about-arrow__shape {
    top: 28px;
    right: 0;
    bottom: 28px;
    left: 38px;
    clip-path: polygon(0 0, 76% 0, 100% 50%, 76% 100%, 0 100%, 13% 50%);
  }

  .home-about-arrow__content h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .home-about-arrow__copy p {
    font-size: 0.94rem;
  }

  .commitment-panel {
    padding: 25px 22px;
    border-radius: 12px;
  }

  .commitment-panel__items {
    grid-template-columns: 1fr;
  }

  .commitment-panel__items article {
    padding-right: 0;
  }
}
