/**
 * a_note_on_aesthetics_section.css — cream gradient BG, 2-col text + 2-image grid.
 */

.ncm-aesthetics {
  padding: clamp(3.750rem, calc(-0.536rem + 8.929vw), 7.500rem) 0;
  background: linear-gradient(180deg, var(--clr-bg-warm) 0%, #FCFAF8 75%);
  color: var(--clr-text);
  min-height: 811px;
}

.ncm-aesthetics__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.ncm-aesthetics__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ncm-aesthetics__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin: 0;
}

.ncm-aesthetics__subtitle {
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--clr-text);
  margin: 0;
}

.ncm-aesthetics__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 123px;
  align-items: flex-start;
}

.ncm-aesthetics__col-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 497px;
}

.ncm-aesthetics__description {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: var(--clr-text);
}

.ncm-aesthetics__description p {
  margin: 0 0 20px;
}

.ncm-aesthetics__cta {
  align-self: flex-start;
}

.ncm-aesthetics__col-right {
  position: relative;
}

.ncm-aesthetics .ncm-collage--double {
  display: grid;
  grid-template-columns: 301px 301px;
  gap: 20px;
  height: auto;
}

.ncm-aesthetics .ncm-collage__primary,
.ncm-aesthetics .ncm-collage__secondary {
  position: static;
  width: 301px;
  height: 373px;
  display: block;
}

.ncm-aesthetics .ncm-collage__primary img {
  height: 100%;
  object-position: 8% 0%;
}

.ncm-aesthetics .ncm-collage__secondary img {
  height: 100%;
  object-position: 8% 13%;
}

@media (max-width: 1024px) {
  .ncm-aesthetics {
   
    min-height: auto;
  }
  .ncm-aesthetics__row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ncm-aesthetics__col-left {
    max-width: none;
  }
  .ncm-aesthetics .ncm-collage--double {
    grid-template-columns: 1fr 1fr;
  }
  .ncm-aesthetics .ncm-collage__primary,
  .ncm-aesthetics .ncm-collage__secondary {
    width: 100%;
  }
}

@media (max-width: 767px) {
  
  .ncm-aesthetics__title {
    font-size: 32px;
    line-height: 38px;
  }
  .ncm-aesthetics__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
  .ncm-aesthetics__description {
    font-size: 17px;
    line-height: 24px;
  }
  .ncm-aesthetics .ncm-collage--double {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ncm-aesthetics .ncm-collage__primary,
  .ncm-aesthetics .ncm-collage__secondary {
    width: 100%;
    height: auto;
    aspect-ratio: 301 / 373;
  }
  .ncm-aesthetics .ncm-collage__primary img,
  .ncm-aesthetics .ncm-collage__secondary img {
    height: 100%;
  }
  .ncm-aesthetics__inner {
    gap: 56px;
  }
}
