.industrial-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  color: var(--white);
  background: var(--dark);
}

.hero-visual {
  position: relative;
  background: url("../img/industriale1.jpg") center / cover no-repeat;
  min-height: 100%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,26,32,.25), rgba(23,26,32,.72));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8rem, 13vw, 12rem) clamp(1.4rem, 5vw, 5rem) 5rem;
  overflow: hidden;
}

.hero-content::before {
  content: "INDUSTRIA";
  position: absolute;
  right: -4vw;
  bottom: -1vw;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 13vw, 15rem);
  line-height: .75;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

.industrial-hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7.5vw, 8rem);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.spec-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--wine);
  color: var(--white);
}

.spec {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: 1px solid rgba(255,255,255,.18);
}

.spec strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.5vw, 3.7rem);
  line-height: .95;
}

.spec span {
  display: block;
  margin-top: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}

.mission {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.mission-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(23,26,32,.1);
}

.mission-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
}

.mission-card h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.criterion {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(23,26,32,.08);
}

.criterion h3 {
  margin: 0 0 .5rem;
  color: var(--wine);
  font-size: 1.55rem;
}

.criterion p {
  margin: 0;
}

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

.service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-panel {
  min-height: 430px;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.1);
}

.service-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: .92;
}

.service-panel p {
  color: rgba(255,255,255,.78);
}

.tag {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--steel);
  padding: .4rem .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.photo-process {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 85vh;
  background: var(--white);
}

.photo-process__image {
  background: url("../img/industriale2.jpg") center / cover no-repeat;
}

.photo-process__text {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  counter-reset: stage;
}

.process-item {
  counter-increment: stage;
  position: relative;
  padding: 1.1rem 1rem 1.1rem 4rem;
  border-bottom: 1px solid rgba(23,26,32,.14);
}

.process-item::before {
  content: counter(stage, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--wine);
  font-weight: 900;
}

.process-item strong {
  display: block;
  margin-bottom: .25rem;
}

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

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.application {
  padding: 1.5rem;
  min-height: 210px;
  border-radius: 1.3rem;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(23,26,32,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.application strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--wine);
}

@media (max-width: 980px) {
  .industrial-hero,
  .mission,
  .photo-process {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 42vh;
    order: -1;
  }

  .hero-content {
    padding-top: 3rem;
  }

  .spec-bar,
  .service-row,
  .application-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .photo-process__image {
    min-height: 45vh;
  }
}

@media (max-width: 620px) {
  .spec-bar,
  .service-row,
  .application-grid {
    grid-template-columns: 1fr;
  }
}