.hero-civile {
  min-height: 100vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--dark);
  color: var(--white);
}

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

.hero-panel::before {
  content: "CIVILE";
  position: absolute;
  left: -1vw;
  bottom: -1vw;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 15vw, 17rem);
  line-height: .75;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

.hero-civile h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 8.3rem);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-text {
  max-width: 640px;
  margin-top: 1.7rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.55;
}

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

.hero-image {
  position: relative;
  min-height: 100%;
  background: url("../img/civile1.jpg") center / cover no-repeat;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,26,32,.04), rgba(23,26,32,.34));
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--wine);
  color: var(--white);
}

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

.intro-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  margin-bottom: .5rem;
}

.intro-item span {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .92rem;
}

.overview {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

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

.sticky-note img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 1.3rem;
}

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

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(23,26,32,.08);
}

.number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-weight: 900;
}

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

.feature p {
  margin: 0;
}

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

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

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

.service-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .95;
}

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

.service-card .tag {
  align-self: flex-start;
  color: var(--stone);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .4rem .7rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.split-photo {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 82vh;
  background: var(--white);
}

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

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

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

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

@media (max-width: 980px) {
  .hero-civile,
  .overview,
  .split-photo {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 42vh;
    clip-path: none;
    order: -1;
  }

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

  .intro-strip,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .sticky-note {
    position: static;
  }

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

@media (max-width: 620px) {
  .feature {
    grid-template-columns: 1fr;
  }
}