/* Pixel-aligned to https://lalensvip.com/ homepage (Impulse/Montserrat)
   Page body bg = #f2f2f2. Only header/announcement/hero use white. */

.lalens-home {
  --lalens-text: #4b4848;
  --lalens-announcement: #433f3e;
  --lalens-nav: #214261;
  --lalens-page-bg: #f2f2f2;
  --lalens-btn-bg: #f2f2f2;
  --lalens-max: 1500px;

  color: var(--lalens-text);
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  /* Transparent so page gray (#f2f2f2) shows through features/brand/contact */
  background: transparent;
}

.lalens-page-width {
  max-width: var(--lalens-max);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ===== Hero ===== */
.lalens-hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #fff;
}

.lalens-hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.lalens-hero__image {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.3);
  will-change: transform, opacity;
}

.lalens-hero__text-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
}

.lalens-hero__text-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 45px 0; /* Impulse hero__text-content; horizontal via page-width */
  text-align: center;
  box-sizing: border-box;
}

.lalens-hero__text-shadow {
  max-width: 380px;
  width: 100%;
}

.lalens-hero__title {
  margin: 0;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: normal;
}

.lalens-hero__subtitle {
  margin: 5px 0;
  color: #fff;
  font-size: 23.4px;
  font-weight: 400;
  line-height: 35.1px;
  white-space: nowrap;
}

.lalens-hero__link {
  margin-top: 15px;
  display: block;
  text-align: center;
}

/* Impulse animation-cropper / rise-up / zoom-fade / fade-in */
.lalens-anim-cropper {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
}

.lalens-anim-contents {
  display: block;
  opacity: 0;
  transform: translateY(120%);
  will-change: transform, opacity;
}

.lalens-hero__link .lalens-btn {
  opacity: 0;
  will-change: opacity;
}

@keyframes lalens-zoom-fade {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lalens-rise-up {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lalens-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lalens-hero.is-ready .lalens-hero__image {
  animation: lalens-zoom-fade 2.5s cubic-bezier(0.26, 0.54, 0.32, 1) forwards;
}

.lalens-hero.is-ready .lalens-hero__title .lalens-anim-contents {
  animation: lalens-rise-up 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0.3s forwards;
}

.lalens-hero.is-ready .lalens-hero__subtitle .lalens-anim-contents {
  animation: lalens-rise-up 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.7s forwards;
}

.lalens-hero.is-ready .lalens-hero__link .lalens-btn:first-child {
  animation: lalens-fade-in 2s ease 1.3s forwards;
}

.lalens-hero.is-ready .lalens-hero__link .lalens-btn:nth-child(2) {
  animation: lalens-fade-in 2s ease 1.6s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .lalens-hero__image,
  .lalens-anim-contents,
  .lalens-hero__link .lalens-btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.lalens-btn {
  display: inline-block;
  box-sizing: border-box;
  margin: 0 5px 2px 0;
  padding: 11px 20px;
  background: #f2f2f2 !important;
  color: #000 !important;
  border: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.2px;
  line-height: 19.88px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.lalens-btn--spaced {
  /* Impulse: .btn + .btn { margin-left: 10px } + whitespace ≈ 20px gap */
  margin: 0 5px 2px 10px;
}

.lalens-btn:hover {
  opacity: 0.9;
}

/* ===== Features — page gray, 3-col flush grid like Impulse ===== */
.lalens-features {
  margin: 75px 0;
  background: transparent;
  color: #4b4848;
}

.lalens-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 -22px -22px;
  width: calc(100% + 22px);
}

.lalens-feature {
  padding: 0 0 0 22px;
  margin: 0 0 22px;
  text-align: left;
  box-sizing: border-box;
}

.lalens-feature__image-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  background: transparent;
}

.lalens-feature__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lalens-feature__title {
  margin: 0 0 15px;
  color: #4b4848;
  font-family: Montserrat, sans-serif;
  font-size: 20.3px;
  font-weight: 400;
  line-height: 24.36px;
}

.lalens-feature__text {
  margin: 0 0 15px;
  color: #4b4848;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.lalens-feature__text:last-child {
  margin-bottom: 0;
}

/* ===== Brand Overview — 50/50 with 22px column gap ===== */
.lalens-brand {
  margin: 75px 0;
  background: transparent;
  color: #4b4848;
}

.lalens-brand__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* Impulse custom-content: margin 0 0 -22px -22px */
  margin: 0 0 -22px -22px;
  width: calc(100% + 22px);
}

.lalens-brand__media,
.lalens-brand__content {
  width: 50%;
  min-width: 0;
  padding: 0 0 0 22px;
  margin: 0 0 22px;
  box-sizing: border-box;
}

.lalens-brand__image-wrap {
  width: 100%;
  overflow: hidden;
}

.lalens-brand__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.lalens-brand__title {
  margin: 0 0 25px;
  color: #4b4848;
  font-family: Montserrat, sans-serif;
  font-size: 24.94px;
  font-weight: 400;
  line-height: 29.93px;
  text-align: left;
}

.lalens-brand__text {
  color: #4b4848;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.lalens-brand__text p {
  margin: 0;
}

/* ===== Contact — form exactly 1015px centered ===== */
.lalens-contact {
  margin: 75px 0;
  padding: 0;
  background: transparent;
}

.lalens-contact__inner {
  width: calc(100% - 80px);
  max-width: 1015px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.lalens-contact__title {
  margin: 0 0 50px; /* section-header margin-bottom: 50px */
  color: #4b4848;
  font-family: Montserrat, sans-serif;
  font-size: 24.94px;
  font-weight: 400;
  line-height: 29.93px;
  text-align: center;
}

.lalens-contact__form-wrap,
.lalens-contact__form-wrap form {
  display: block;
  width: 100%;
  text-align: center;
}

.lalens-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  text-align: left;
}

.lalens-field {
  display: block;
  margin: 0 0 30px;
  text-align: left;
}

.lalens-field__label {
  display: block;
  margin: 0 0 10px;
  color: #4b4848;
  font-family: Montserrat, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 4.05px;
  line-height: 20.25px;
  text-transform: uppercase;
}

.lalens-field__input {
  display: block;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #214261;
  border-radius: 0;
  background: transparent;
  color: #4b4848;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  outline: none;
  appearance: none;
  box-shadow: none;
}

.lalens-field__textarea {
  height: 153px;
  min-height: 153px;
  resize: vertical;
}

.lalens-contact__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-align: center;
}

.lalens-contact .lalens-btn--send {
  display: inline-block;
  width: auto;
  min-width: 100px;
  margin: 0;
  padding: 11px 20px;
  background: #fff !important;
  color: #605756 !important;
  border: 1px solid transparent !important;
  border-radius: 3px;
  font-family: Montserrat, sans-serif;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 4.2px !important;
  line-height: 19.88px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

.lalens-contact .lalens-btn--send:hover {
  opacity: 0.92;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lalens-page-width {
    padding: 0 17px;
  }

  .lalens-hero {
    height: auto;
    min-height: 280px;
    aspect-ratio: 1296 / 702;
  }

  .lalens-hero__title {
    font-size: 40px;
    line-height: 1.2;
  }

  .lalens-hero__subtitle {
    font-size: 16px;
    line-height: 1.4;
    white-space: normal;
  }

  .lalens-hero__text-shadow {
    max-width: 280px;
  }

  .lalens-btn {
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 10px 14px;
  }

  .lalens-features {
    margin: 40px 0;
  }

  .lalens-features__grid {
    grid-template-columns: 1fr;
    margin: 0;
    width: 100%;
  }

  .lalens-feature {
    padding: 0;
    margin: 0 0 40px;
  }

  .lalens-feature__title {
    font-size: 18px;
  }

  .lalens-feature__text {
    font-size: 15px;
  }

  .lalens-brand__row {
    margin: 0;
    width: 100%;
  }

  .lalens-brand__media,
  .lalens-brand__content {
    width: 100%;
    padding: 0;
    margin: 0 0 24px;
  }

  .lalens-brand__title,
  .lalens-contact__title {
    font-size: 22px;
  }

  .lalens-brand__text {
    font-size: 15px;
  }

  .lalens-contact__row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .lalens-contact {
    margin-top: 40px;
    padding-bottom: 55px;
  }

  .lalens-contact__inner {
    width: calc(100% - 34px);
    padding: 0;
  }

  .lalens-contact__title {
    margin-bottom: 32px;
  }
}
