:root {
  --row-h: 164px;
  /* высота всего блока */
  --img-h: 95px;
  /* фактическая высота SVG */
  --gap: 50px;
  /* расстояние между картинками */
  --speed: 30s;
  /* больше — медленнее */
}

/********************/

.landing__wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.landing__main {
  height: 665px;
  width: 100%;
  position: relative;
}

.landing__main-back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.landing__main-back img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.landing__main-text {
  position: absolute;
  width: 486px;
  height: 256px;
  top: 80px;
  right: 10%;
}

.landing__main-text h2 {
  font-family: 'Playfair Display', serif;
  width: 100%;
  text-align: center;
  color: #fff;

  font-weight: 700;
  font-style: Bold;
  font-size: 48px;

  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  margin-bottom: 20px;
}

.landing__main-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;

  line-height: 32px;
  letter-spacing: 0%;
  text-align: right;
  margin-bottom: 20px;
}

.landing__main-text p:first-child {}

/*****LANDING ANIMATION*******/
/*****LANDING ANIMATION*******/
/*****LANDING ANIMATION*******/
/* ВНЕШНИЙ КОНТЕЙНЕР */
.landing__animation {
  background: #fff;
  height: var(--row-h);
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  /* вертикальное выравнивание внутри */
}

/* ДОРОЖКА, КОТОРУЮ ДВИГАЕМ */
.landing__animation-track {
  display: flex;
  width: max-content;
  /* ширина = сумме содержимого */
  will-change: transform;
  animation: landing-marquee var(--speed) linear infinite;
}

/* ОДНА ПАРТИЯ КАРТИНОК */
.landing__animation-set {
  display: flex;
  align-items: center;
  gap: var(--gap);
  margin-left: 30px;
}

.animation-desc {
  display: flex;
  height: 95px;
  margin-left: 40px;
}

.animation-desc img {
  height: 100%;
}

.animation-desc img:nth-child(2) {
  margin-left: 10px;
  margin-right: 10px;
}

/* САМИ КАРТИНКИ */
.landing__animation img {
  height: var(--img-h);
  width: auto;
  flex: 0 0 auto;
  /* запретить ужимание/перенос */
  display: block;
  margin: 0;
}

/* СКРОЛЛ ВЛЕВО НА ПОЛОВИНУ ШИРИНЫ (т.к. 2 одинаковых набора подряд) */
@keyframes landing-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* если у пользователя выключены анимации */
@media (prefers-reduced-motion: reduce) {
  .landing__animation-track {
    animation: none;
  }
}

/********LANDING OUR STORY*********/
.landing__story {
  width: 100%;
  height: 500px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story__wrapper {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story__image {
  width: 478px;
  height: 100%;
  margin-right: 68px;
}

.story__image picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.story__content {
  margin-left: 68px;
  height: 100%;
  width: 478px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  text-align: left;
}

.story__content h2 {
  font-family: 'Noto Serif', serif;

  font-size: 34px;

  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 27px;
}

.story__content p {
  margin-top: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;

  line-height: 32px;
  letter-spacing: 0%;
}

/*******LANDING COLLECTIONS**********/

.landing__collections {
  width: 100%;
  height: 450px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collections__wrapper {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collections__text {
  width: 600px;
  height: 100%;
}

.collections__text h2 {
  font-family: 'Noto Serif', serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 75px;
  letter-spacing: 0%;
}

.landing_sixpics {
  overflow: hidden;
  width: 100%;
  /* при желании убери */
  user-select: none;
  pointer-events: none;
  /* отключает взаимодействие */
}

.landing_sixpics_wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing_sixpics-track {
  display: flex;
  align-items: center;
  width: calc(200%);
  /* чтобы был запас для плавной прокрутки */
  animation: scrollPics 40s linear infinite;
}

.landing_sixpics-image {
  flex: 0 0 auto;
  margin: 0px 25px;
  width: 16.666%;
  /* 6 штук в ряд */
}

.landing_sixpics-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes scrollPics {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.collections__text-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 110px;
  margin-top: 25px;
}

.collections__text-container p {
  display: block;
  font-family: 'Noto Serif', serif;

  font-size: 34px;
  margin-bottom: 20px;
  line-height: 100%;
  letter-spacing: 0%;

  margin-right: 40px;
  cursor: pointer;
}

.collections__image {
  width: 420px;
  height: 420px;
}

.collections__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

/************LANDING GOODS******************/
/************LANDING GOODS******************/
/************LANDING GOODS******************/
.landing__goods {
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goods__wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.goods__element {
  height: 450px;
  display: flex;
}

.goods__element-image {
  height: 435px;
  width: 630px;
  margin-right: 15px;
}

.goods__element-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.goods__element-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.goods__element-image picture {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.goods__element-desc {
  height: 430px;
  width: 452px;
  margin-left: 15px;
}

.goods__element-name {
  font-family: 'Noto Serif', serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 20px;
  letter-spacing: 0%;
}

.goods__element-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0%;
}

.goods__element-price {
  font-family: 'Noto Serif', serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 34px;

  line-height: 100%;
  letter-spacing: 0%;
}

/*******LANDING CONCEPT**********/
.landind__concept {
  width: 100%;
  height: 638px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
}

.concept__wrapper {
  width: 1320px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.concept__image {
  width: 550px;
  height: 511px;
}

.concept__image picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept__desc {
  width: 650px;
  color: #fff;
}

.concept__desc p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;

  line-height: 60px;
  letter-spacing: -2px;
}

.concept__desc h2 {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;

  line-height: 60px;
  letter-spacing: -2px;
}

.concept__desc div {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 25px;
  line-height: 40px;
  letter-spacing: -2px;
}

.concept__desc button {
  width: 148px;
  height: 52px;
  background-color: #ffffff00;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 35px;
}

/******LANDING GOLD *******/
.landing__gold {
  background-color: #fff;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold__wrapper {
  width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.gold__text {
  width: 452px;
}

.gold__text h2 {
  font-family: 'Noto Serif', serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 60px;

  line-height: 105px;
  letter-spacing: 0%;
}

.gold__text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;

  line-height: 40px;
  letter-spacing: 0%;
}

.gold__image {
  width: 350px;
  height: 500px;
}

.gold__image img {
  height: 100%;

  object-fit: cover;
}

/**********LANDING VIDEO***********/

.landing__video {
  width: 100%;
  height: 638px;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__wrapper {
  width: 1440px;
  height: 100%;
}





/****************** HERO ***********/
.hero-video {
  position: relative;
  height: 665px;
  overflow: hidden;
  background-image: url('/static/img/landing/hero.jpg');
  background-size: cover;
  /* Optional: Adjust as needed */
  background-repeat: no-repeat;
  /* Optional: Adjust as needed */
  background-position: 0 65%;
  /* Optional: Adjust as needed */
}

.hero-video__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video__bg {
  height: 100%;
  width: 100%;
  background-image: url('./static/img/landing/hero.jpg');
  background-size: cover;
  /* Optional: Adjust as needed */
  background-repeat: no-repeat;
  /* Optional: Adjust as needed */
  background-position: 0 65%;
  /* Optional: Adjust as needed */
}

.hero-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120;
  height: 90px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  background: #ffffff00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-video__text {
  position: absolute;
  right: 74px;
  bottom: 79px;
  color: #fff;
  text-align: right;
}

.hero-video__text h2 {
  font-family: 'Noto Serif', serif;
  font-weight: 500;

  font-size: 60px;

  line-height: 105px;
  letter-spacing: 0%;
  text-align: right;
}

.hero-video__text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;

  font-size: 30px;

  line-height: 60px;
  letter-spacing: 3px;
}

/* MODAL */
.video-modal[hidden] {
  display: none;
}

.video-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.video-modal__dialog {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  z-index: 2000;
}

.video-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

/* Контейнер под Shorts (вертикальное соотношение 9:16) */
.video-modal__player {
  /* желаемый базовый размер */
  width: 560px;
  aspect-ratio: 9 / 16;
  /* портретное */
  /* но не больше экрана */
  max-width: 96vw;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

/* кнопки навигации */
.video-modal__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  z-index: 2100;
}

.video-modal__prev {
  left: 16px;
}

.video-modal__next {
  right: 16px;
}

.video-modal__nav[hidden] {
  display: none;
}




/**************LANDING 3element****************/

.landing__3element {
  width: 100%;
  height: 683px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elements__wrapper {
  width: 1280px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.elements-element {
  width: 400px;
  height: 530px;
  position: relative;
}

.elements-img {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 320px;

}

.elements-img a {
  width: 100%;
  height: 100%;
  display: block;
}

.elements-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.elements-img picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.elements-desc {
  width: 340px;
  height: 125px;
  z-index: 200;
  position: absolute;
  bottom: 67px;
  left: calc(50% - 170px);
  background-color: #ffffffe5;
  padding: 25px;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;

  font-size: 30px;

  line-height: 40px;
  letter-spacing: 1px;
}

.elements-name {
  font-size: 20px;
}

.elements-price {
  font-size: 18px;
}

/*******SIGN UP FOR EMAIL*********/
.langind__sing {
  background-color: #eaecf029;
  height: 267px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sing__wrapper {
  width: 1100px;
  display: flex;
  justify-content: space-between;
}

.sing__desc {
  width: 416px;
}

.sing__desc h2 {
  color: #1e1e1e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;

  font-size: 24px;

  line-height: 60px;
  letter-spacing: 0.5px;
}

.sing__desc p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;

  line-height: 30px;
  letter-spacing: 0.5px;
  color: #1e1e1e;
}

.sing__field {
  width: 620px;
  height: 64px;
  border: 1px solid #000;
}

.sing__field form {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.sing__field input {
  color: #1e1e1e;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  width: calc(100% - 177px);
  height: 100%;
  padding: 17px 21px;
  color: #1e1e1e;
  line-height: 30px;
  letter-spacing: 0.5px;
  background-color: #ffffff00;
}

.sing__field button {
  width: 177px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  color: #fff;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;

  font-size: 16px;

  line-height: 100%;
  letter-spacing: 0%;
}












/* ===== Concept Modal (basic) ===== */
.concept-modal[hidden] {
  display: none;
}

.concept-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 3000;
  animation: cm-fade .18s ease;
}

.concept-modal__dialog {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3010;
  outline: 0;
}

.concept-modal__body {
  max-width: min(900px, 92vw);
  max-height: 650px;
  background: #fff;
  color: #1e1e1e;
  border-radius: 14px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .35);
  padding: 24px 24px 28px;
  overflow: hidden;
  animation: cm-pop .22s ease;
  display: flex;
  flex-direction: column;
}

.concept-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  z-index: 3020;
}

.concept-modal__body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0 0 12px;
  font: 600 24px/1.25 'Plus Jakarta Sans', sans-serif;
}

.concept-modal__content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* плавный скролл на iOS */
  flex: 1 1 auto;
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
  font: 400 16px/1.7 'Inter', sans-serif;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.concept-modal__content p {
  margin-bottom: 10px;
}

/* animations */
@keyframes cm-fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes cm-pop {
  from {
    transform: translateY(10px);
    opacity: .96
  }

  to {
    transform: none;
    opacity: 1
  }
}







@media only screen and (max-width: 1370px) {
  .collections__text h2 {
    font-size: 58px;
    line-height: 66px;
  }

  .goods__element-name {
    font-size: 50px;
  }

  .collections__text-container p {
    font-size: 31px;
  }

  .concept__desc p {
    font-size: 28px;
  }

  .concept__desc h2 {
    font-size: 47px;
  }

  .concept__desc div {
    font-size: 19px;
    letter-spacing: -1px;
  }

  .elements-element {
    width: 360px;
    height: 500px;
  }

  .elements-name {
    font-size: 18px;
  }

  .elements-price {
    font-size: 15px;
  }

  .landing__animation img {
    transform: scale(0.7);
  }

}

@media (min-width: 1024px) {
  .video-modal__player {
    width: min(60vw, 560px);
  }
}

@media only screen and (max-width: 980px) {
  .landind__concept {
    width: 100%;
    height: initial;
  }

  .concept__wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .goods__wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .goods__element {
    flex-direction: column;
    align-items: center;
    height: initial;
  }

  .goods__element-image {
    width: 300px;
    height: 300px;
  }

  .goods__element:nth-child(2) {
    flex-direction: column-reverse;
  }

  .goods__element-desc {
    width: 100%;
    height: initial;
  }

  .landind__concept {
    margin-top: 20px;
  }

  .concept__wrapper {
    flex-direction: column;
  }

  .concept__wrapper {
    padding: 30px 0px
  }

  .landing__3element {
    width: 100%;
    height: initial;
  }

  .elements__wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    padding: 30px 0px
  }

  .elements-element {
    width: 300px;
    height: 480px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .landing__story {
    height: initial;
    flex-direction: column;
  }

  .story__wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }

  .story__image {
    width: 100%;
    margin: 0 auto;
  }

  .story__content {
    margin: 0 auto;
    width: 100%;
  }

  .landing__collections {
    height: initial;
    width: 100%;
  }

  .collections__wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column-reverse;
    margin-top: 30px;
  }

  .collections__text {
    width: 100%;
  }

  .collections__text h2 {
    font-size: 31px;
    line-height: 48px;
  }

  .landing__gold {
    width: 100%;
    height: initial;
  }

  .gold__wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }

  .collections__text-container p {
    font-size: 19px;
    margin-right: 30px;
  }

  .collections__image {
    width: 90%;
    margin: 0 auto;
  }

  .goods__element-name {
    font-size: 37px;
    line-height: 45px;
    margin-bottom: 10px;
  }

  .goods__element-text {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .goods__element-price {
    font-size: 25px;
  }

  .concept__image {
    width: 100%;
    height: 450px;
  }

  .landing__main-text {
    width: 90%;
    right: 20px;
  }

  .landing__main-text h2 {
    font-size: 35px;
  }

  .landing__main-text p {
    font-size: 16px;
    line-height: 29px;
  }

  .story__image {}

  .concept__desc {
    width: 100%;
  }

  .collections__text-container {
    height: initial;
  }

  .gold__wrapper {
    margin-top: 30px;
  }

  .gold__text {
    width: 100%;
    font-size: 40px;
    line-height: 80px;
  }

  .gold__wrapper {
    padding-bottom: 40px;
  }

  .langind__sing {
    width: 100%;
  }

  .sing__wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }

  .sing__desc {
    width: 100%
  }

  .sing__field {
    width: 100%;
    margin-top: 20px;
  }

  .sing__field button {
    width: 130px;
  }

  .animation-desc {
    margin-left: 0px;
  }

  .elements-desc {
    left: initial;
    width: 100%;
  }
}