@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');
:root {
  --text: #050505;
  --title-font: 48px;
  --title-weight: 800;
}

.landing-custom {
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  /* font-style: italic; */
  /* font-variation-settings: "wdth" 100; */
}

/* =========================
   HERO
========================= */
.landing-hero {
  position: relative;
  min-height: 580px;
  /* height: 580px; */
  display: flex;
  align-items: center;
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/lp1__bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.landing-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  /* grid-template-columns: 1fr 30% 1fr; */
  align-items: center;
  gap: 20px;
  height: 100%;
}

.landing-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* width: 33%; */
}

.landing-hero__media img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  display: block;
}

.landing-hero__content {
  text-align: center;
  color: #fff;
  min-width: 520px;
}

.landing-hero__title {
  margin: 0 0 16px;
  font-size: 96px;
  line-height: 1.1;
  font-weight: 800;
}

.landing-hero__text {
  margin: 0;
  font-size: 35px;
  line-height: 1.6;
}

/* =========================
   ABOUT SECTION
========================= */
.landing-about {
  position: relative;
  padding: 60px 20px;
  background-image: url('../images/lp1__bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-about__container {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.landing-about__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.7;
  color: var(--text1);
}

/* =========================
   BIG TABLET
========================= */
@media (max-width: 1280px) {
  .landing-hero {
    height: auto;
    min-height: unset;
    padding: 40px 0;
  }

  .landing-hero__inner {
    /* grid-template-columns: 1fr; */
    /* gap: 24px; */
  }
  .landing-hero__content {
    min-width: 400px;
    order: 2;
  }

  .landing-hero__media--left {
    order: 1;
  }

  .landing-hero__media--right {
    order: 3;
  }

  .landing-hero__media img {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .landing-hero__title {
    font-size: 60px;
  }

  .landing-hero__text {
    font-size: 22px;
  }
  .landing-about__text {
    font-size: 18px;
  }
}
/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
  .landing-hero {
    height: auto;
    min-height: unset;
    padding: 40px 0;
  }

  .landing-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .landing-hero__content {
    min-width: 285px;
    order: 2;
  }

  .landing-hero__media--left {
    order: 1;
  }

  .landing-hero__media--right {
    order: 3;
  }

  .landing-hero__media img {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .landing-hero__title {
    font-size: 44px;
  }

  .landing-hero__text {
    font-size: 18px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .landing-hero__inner {
    flex-wrap: wrap;
  }
  .landing-hero__media {
    width: 46%;
    order: 1;
  }
  .landing-hero__content {
    width: 100%;
  }
  .landing-hero {
    padding: 32px 0;
  }

  .landing-hero__inner {
    padding: 0 16px;
    gap: 20px;
  }

  .landing-hero__media img {
    max-height: 240px;
  }

  .landing-hero__title {
    font-size: 50px;
  }
  .landing-hero__text {
    font-size: 18px;
  }

  .landing-about {
    padding: 56px 16px;
  }

  .landing-about__text {
    font-size: 16px;
    text-align: right;
  }
}

/* =========================
   SEC VIDEO
========================= */
.landing-videos {
  padding: 100px 20px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, #9b9388 0%, #7b6f5e 100%);
}

.landing-videos__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.landing-videos__title {
  margin: 0 0 60px;
  text-align: center;
  color: #fef8f1;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 800;
}

.landing-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.landing-video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.landing-video__bigvideo .landing-video-card {
  box-shadow: 0 21px 27px -7px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}
.landing-video__bigvideo .landing-video-card .landing-video-card__poster-wrap {
  border-radius: 20px;
}

.landing-video-card__poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
  border: 0 !important;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.landing-video-card__poster {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  display: block;
}

.landing-video-card__poster--empty {
  width: 100%;
  aspect-ratio: 14 / 9;
  display: block;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    linear-gradient(135deg, #8c8378 0%, #6c6255 100%);
}
.landing-video__bigvideo .landing-video-card__poster {
  aspect-ratio: 21 / 9;
}

.landing-video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.landing-video-card__poster-wrap:hover .landing-video-card__overlay {
  opacity: 0;
}

.landing-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.landing-video-card__play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.landing-video-card__content {
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.landing-video-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.landing-video-card__description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.decor-divider {
  background-color: #9b9388;
  width: 100%;
  height: 2px;
  margin: 60px 0;
}

/* modal */
.video-modal-open {
  overflow: hidden;
}

.landing-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.landing-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.landing-video-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  margin: 5vh auto 0;
}

.landing-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.landing-video-modal__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.landing-video-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .landing-videos {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .landing-videos__title {
    margin-bottom: 40px;
    font-size: 34px;
  }

  .landing-videos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .decor-divider {
    margin: 30px 0;
  }
  .landing-videos {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .landing-videos__title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .landing-videos__grid {
    /* grid-template-columns: 1fr; */
    gap: 20px;
  }

  .landing-video-card__content {
    padding: 5px 15px;
    gap: 0;
  }

  .landing-video__bigvideo .landing-video-card .landing-video-card__poster-wrap {
    border-radius: 10px;
  }

  .landing-video__bigvideo .landing-video-card__poster {
    aspect-ratio: 16 / 9;
  }

  .landing-video-card__title {
    font-size: 18px;
  }

  .landing-video-card__description {
    font-size: 14px;
  }

  .landing-video-card__play {
    width: 40px;
    height: 40px;
  }

  .landing-video-modal__dialog {
    width: 94vw;
    margin-top: 12vh;
  }
}

/* =========================
   LEARN / CTA SECTION
========================= */
.landing-learn {
  padding: 100px 20px;
  background-image: url('../images/lp1__bg5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position-x: right;
}

.landing-learn__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.landing-learn__inner {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-right: 30%;
}

.landing-learn__icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.landing-learn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.landing-learn__title {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
}

.landing-learn__description {
  font-size: 22px;
  line-height: 1.9;
  color: #2d2d2d;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-learn__description p {
  margin: 0;
}

.landing-learn__buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.landing-learn__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  background: #cf2427;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 5px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.landing-learn__button.landing-learn__button-secondary {
  background: #9d191b;
}

.landing-learn__button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #fff;
}

.landing-learn__button:focus {
  color: #fff;
}

/* tablet */
@media (max-width: 1024px) {
  .landing-learn {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .landing-learn__inner {
    max-width: 720px;
  }

  .landing-learn__title {
    font-size: 42px;
  }

  .landing-learn__description {
    font-size: 22px;
    line-height: 1.8;
  }
}

/* mobile */
@media (max-width: 767px) {
  .landing-learn {
    padding: 250px 10px 60px;
    background-image: url('../images/lp1__bg5-mob.jpg');
    background-position: center top;
  }

  .landing-learn__inner {
    max-width: 100%;
    gap: 16px;
    padding: 0;
  }

  .landing-learn__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 4px;
  }

  .landing-learn__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .landing-learn__description {
    font-size: 16px;
    line-height: 1.75;
    gap: 16px;
  }

  .landing-learn__buttons {
    width: 100%;
    margin-top: 14px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .landing-learn__button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 16px;
  }
}

/* =========================
   POSTS SECTION
========================= */
.landing-posts {
  padding: 100px 20px;
  background: #9b9388;
  background-image: url('../images/lp1__bg4-cut.jpg');
  background-size: auto 100%;
  background-position: center;
  background-repeat: repeat-x;
  background-position-x: right;
}

.landing-posts__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.landing-posts__title {
  margin: 0 0 60px;
  text-align: center;
  color: #f5f5f5;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -2px;
}

.landing-posts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.landing-post-card {
  height: 100%;
}

.landing-post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.landing-post-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.landing-post-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d7d3cd;
}

.landing-post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-post-card__image--empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b3aba1 0%, #8a8176 100%);
}

.landing-post-card__content {
  background: #f5f5f5;
  min-height: 112px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-post-card__title {
  margin: 0;
  text-align: center;
  color: #222;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

/* tablet */
@media (max-width: 1024px) {
  .landing-posts {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .landing-posts__title {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .landing-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .landing-posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .landing-posts__title {
    margin-bottom: 30px;
    font-size: 26px;
  }

  .landing-posts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-post-card__content {
    min-height: auto;
    padding: 16px;
  }

  .landing-post-card__title {
    font-size: 17px;
  }
}

/* =========================
   CONTACT US SECTION
========================= */
.landing-contact {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fdf8f2 0%, #f5f5f5 100%);
}
.landing-contact__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.landing-contact__title {
  margin: 0 0 60px;
  text-align: right;
  color: #050505;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.landing-contact__form {
  margin: 3rem auto 1rem;
}
.landing-contact__form .field-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: space-between;
}

.landing-contact__form .hidden-fields-container {
  border: 0;
}

.landing-contact__form .field {
  width: 23%;
}
.landing-contact__form .field.field-accept {
  width: 70%;
}
.landing-contact__form .submit-wr {
  width: 23%;
}
.landing-contact__form .submit-bt {
  width: 100%;
  text-align: center;
  display: block;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  border: 0;
  color: #fff;
  background: linear-gradient(270deg, #cf2427 0%, #9d191b 100%);
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}
.landing-contact__form .submit-bt:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.landing-contact__form .checkbox:after {
  margin: 4px 4px 0 0;
}

.landing-contact__form .field .label {
  display: none;
}
.landing-contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.landing-contact__form input,
.landing-contact__form select {
  border: none;
  text-decoration: none;
  border-bottom: 1px solid #173552;
  border-radius: 0;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  padding: 5px;
  background: transparent;
  font-size: 18px;
  outline: none;
}

/* tablet */
@media (max-width: 1024px) {
  .landing-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .landing-contact__title {
    margin-bottom: 40px;
    font-size: 26px;
    text-align: center;
  }
}

/* mobile */
@media (max-width: 767px) {
  .landing-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .landing-contact__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .landing-contact__form .field,
  .landing-contact__form .field.field-accept,
  .landing-contact__form .submit-wr {
    width: 100%;
  }

  .landing-contact__form .submit-bt {
    font-size: 18px;
  }
  .landing-contact__form input,
  .landing-contact__form .checkbox span,
  .landing-contact__form select {
    font-size: 16px;
  }
}
