/* ====== base ====== */
:root{
  --container: 1320px;
  --pad: 20px;
  --text: #EAE6DE;
  --text-dim: rgba(234,230,222,.85);
  --gold: #b89a5b;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "Muller W00 UltraLight", Arial, sans-serif;
  font-weight: normal;
  color: var(--text);
  background: #0b0f10;
}

img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

/* ====== header ====== */
.site-header{
  background: rgba(10,14,15,.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header__inner{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo img{
  height: 60px; /* подгони под свой логотип */
  width: auto;
}

.header__right{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header__phone{
  color: var(--text-dim);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: .2px;
  transition: color .2s ease, opacity .2s ease;
}
.header__phone:hover{
  color: var(--text);
}

.header__tg{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, background .2s ease;
}
.header__tg:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
/* .header__tg img{
  width: 18px;
  height: 18px;
} */

/* ====== hero ====== */
.hero{
  /* фон полностью картинкой */
  background-image: url("/assets/templates/gd2026/images/background_block_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* чтобы читалось на любом фоне */
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  /* лёгкая затемняющая вуаль под текст слева */
  background: linear-gradient(90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.30) 45%,
    rgba(0,0,0,.00) 75%
  );
  pointer-events:none;
}

.hero__inner{
  position: relative;
  z-index: 1;

  min-height: 560px; /* подгони под макет */
  display: grid;
  grid-template-columns: 1.05fr .95fr; /* слева текст, справа "воздух" под монеты */
  align-items: center;
  gap: 24px;

  padding: 70px 0 80px;
}

.hero__content{
  max-width: 760px;
}

.hero__title-img{
  width: 760px;          /* подгони под картинку заголовка */
  max-width: 100%;
  margin-bottom: 28px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.45));
}

.hero__subtitle{
  margin: 0 0 46px;
  font-size: 34px;       /* подгони под макет */
  line-height: 1.1;
  font-weight: 300;
  color: rgba(255,255,255,.78);
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 64px;
  min-width: 240px;
  padding: 0 42px;

  border-radius: 999px;
  border: 1px solid rgba(184,154,91,.65);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 24px;
  letter-spacing: .6px;

  background: rgba(0,0,0,.12);
  backdrop-filter: blur(4px);

  transition: transform .15s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.hero__badge:hover{
  transform: translateY(-1px);
  border-color: rgba(184,154,91,.95);
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.18);
}

/* ====== responsive ====== */
@media (max-width: 1024px){
  .hero__inner{
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 56px 0 64px;
  }
  .hero__spacer{ display: none; }
  .hero::before{
    background: linear-gradient(180deg,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.25) 55%,
      rgba(0,0,0,.00) 100%
    );
  }
  .hero__subtitle{ font-size: 28px; margin-bottom: 34px; }
}

@media (max-width: 640px){
  .header__inner{ min-height: 64px; }
  .header__right{ gap: 14px; }
  .header__phone{ font-size: 16px; }

  .hero__inner{ min-height: 460px; padding: 46px 0 56px; }
  .hero__subtitle{ font-size: 22px; }
  .hero__badge{ height: 56px; min-width: 200px; font-size: 20px; padding: 0 28px; }
}
/* ====== text section ====== */
.text-section{
  background-image: url("/assets/templates/gd2026/images/background_block_2.jpg"); /* фон из Figma */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
}

/* затемнение для читаемости */
.text-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.78); /* светлая бумага */
  pointer-events: none;
}

.text-section .container{
  position: relative;
  z-index: 1;
}

.text-section__content{
  max-width: 1320px;
  padding: 20px 0 20px;

  font-size: 20px;
  line-height: 1.75;
  color: #2b2b2b;

  text-align: justify;
  text-justify: inter-word;
}


.text-section__content p{
  margin: 0 0 28px;
  hyphens: auto;
}

.text-section__content p:last-child{
  margin-bottom: 0;
}

/* ====== responsive ====== */
@media (max-width: 1024px){
  .text-section__content{
    padding: 64px 0 72px;
    font-size: 18px;
  }
}

@media (max-width: 640px){
  .text-section__content{
    padding: 48px 0 56px;
    font-size: 16px;
    line-height: 1.65;
  }
}
/* ====== block 3: process ====== */
.process{
  background-image: url("/assets/templates/gd2026/images/background_block_3.jpg"); /* фон из Figma */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;

  /* весь блок (кроме кнопки) — этот шрифт */
  font-family: "Muller W00 Light", "Muller", Arial, sans-serif;
  color: rgba(255,255,255,.82);
}

/* лёгкое затемнение для читаемости */
.process::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.28);
  pointer-events:none;
}

.process .container{
  position: relative;
  z-index: 1;
}

.process__p{
  margin: 0;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .2px;
}

.process__p--wide{
  max-width: 100%;
}

.process__bottom{
  margin-top: 34px;

  /* ключевой момент: ограничиваем ширину, чтобы шкатулка справа была видна */
  max-width: 52%;
}

/* дополнительные отступы как в макете */
.process__bottom .process__p{
  margin-bottom: 28px;
}

.process__p--note{
  margin-top: 10px;
  margin-bottom: 30px;
}

/* кнопка: можно НЕ наследовать light-шрифт */
.process__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  padding: 0 34px;
  border-radius: 999px;

  border: 1px solid rgba(184,154,91,.7);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.75);
  text-decoration: none;

  font-family: "Muller", Arial, sans-serif; /* не Light */
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .4px;

  transition: transform .15s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.process__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(184,154,91,.95);
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.24);
}

/* ====== responsive ====== */
@media (max-width: 1200px){
  .process__p{ font-size: 20px; }
  .process__bottom{ max-width: 58%; }
}

@media (max-width: 1024px){
  .process{
    padding: 56px 0 62px;
    background-position: right center; /* чтобы шкатулка чаще оставалась в кадре */
  }

  .process__bottom{
    max-width: 62%;
  }
}

@media (max-width: 768px){
  .process{
    padding: 46px 0 54px;
  }

  /* на планшете/мобиле лучше дать тексту ширину побольше */
  .process__bottom{
    max-width: 100%;
  }

  .process__p{ font-size: 18px; line-height: 1.6; }
  .process__btn{ height: 52px; font-size: 18px; padding: 0 28px; }
}

/* ====== block 4: full-width image band ====== */
.image-band{
  background-image: url("/assets/templates/gd2026/images/video_block_4.jpg"); /* картинка из Figma */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 100%;
  min-height: 560px; /* подгони под высоту блока в макете */
}


/* если нужно, чтобы кадр был чуть правее/левее — меняй position */
/* .image-band{ background-position: 60% center; } */

@media (max-width: 1024px){
  .image-band{
    min-height: 420px;
  }
}

@media (max-width: 640px){
  .image-band{
    min-height: 320px;
  }
}

/* ====== block 5: coin specs (x3) ====== */
.coin-specs{
 background-image: var(--specs-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
}

.coin-specs::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  pointer-events:none;
}

.coin-specs .container{
  position: relative;
  z-index: 1;
}

.coin-specs__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}

/* LEFT */
.coin-specs__left{
  font-family: "Inter", Arial, sans-serif;
  color: rgba(255,255,255,.90);
}

.coin-specs__title{
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .2px;
}

.coin-specs__subtitle{
  margin: 0 0 44px;
  font-family: "Bad Script Regular", "Bad Script", cursive;
  font-size: 22px;
  line-height: 1.2;
  color: rgba(255,255,255,.78);
}

.coin-specs__dl{
  margin: 0 0 44px;
}

.coin-specs__row{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  padding: 2px 0;
}

.coin-specs__row dt,
.coin-specs__row dd{
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.coin-specs__row dt{ color: rgba(255,255,255,.88); }
.coin-specs__row dd{ color: rgba(255,255,255,.82); }

/* button (как предыдущие) */
.coin-specs__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  min-width: 210px;
  padding: 0 36px;

  border-radius: 999px;
  border: 1px solid rgba(184,154,91,.7);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.75);
  text-decoration: none;

  font-family: "Muller", Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .4px;

  transition: transform .15s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.coin-specs__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(184,154,91,.95);
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.24);
}

/* RIGHT (one image) */
.coin-specs__right{
  position: relative;
  min-height: 520px; /* высота зоны под монету, чтобы совпадало с макетом */
}

.coin-specs__coins{
  position: absolute;
  right: -20px;      /* чтобы чуть вылезало за контейнер как в макете */
  top: 50%;
  transform: translateY(-50%);
  width: 720px;      /* подгони под твой PNG */
  height: auto;

  max-width: none;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
  user-select: none;
  pointer-events: none;
}

/* ====== responsive ====== */
@media (max-width: 1200px){
  .coin-specs__inner{ grid-template-columns: 1.15fr .85fr; }
  .coin-specs__title{ font-size: 38px; }
  .coin-specs__row{ grid-template-columns: 250px 1fr; }
  .coin-specs__row dt, .coin-specs__row dd{ font-size: 20px; }
  .coin-specs__right{ min-height: 460px; }
  .coin-specs__coins{ width: 620px; right: -10px; }
}

@media (max-width: 1024px){
  .coin-specs{
    padding: 60px 0 70px;
    background-position: right center;
  }
  .coin-specs__inner{ grid-template-columns: 1fr; }
  .coin-specs__right{
    min-height: 520px;
    order: 2;
  }
  .coin-specs__coins{
    position: relative;
    top: auto;
    right: auto;
    transform: none;

    display: block;
    margin: 10px auto 0;
    width: min(680px, 100%);
  }
}

@media (max-width: 640px){
  .coin-specs{ padding: 46px 0 54px; }
  .coin-specs__title{ font-size: 30px; }
  .coin-specs__subtitle{ font-size: 18px; margin-bottom: 28px; }

  .coin-specs__row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .coin-specs__row dt, .coin-specs__row dd{ font-size: 18px; }

  .coin-specs__right{ min-height: auto; }
  .coin-specs__coins{ width: 100%; }
}

/* ====== block 7: consultation form ====== */
.consult{
  background-image: url("/assets/templates/gd2026/images/consult-bg.jpg"); /* фон из Figma */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}

/* затемнение для читабельности формы */
.consult::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  pointer-events:none;
}

.consult .container{
  position: relative;
  z-index: 1;
}

.consult__inner{
  display: grid;
  grid-template-columns: 1fr 520px; /* форма справа */
  align-items: flex-start;
  gap: 40px;
}

/* просто воздух слева */
.consult__spacer{
  min-height: 1px;
}

/* контейнер формы */
.consult__form{
  background: rgba(32,38,41,.95); /* как на скрине */
  border-radius: 12px;
  padding: 24px;

  /* чтобы iframe/форма не вылазили */
  overflow: hidden;

  /* визуально */
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

/* если форма iframe — полезно */
.consult__form iframe{
  width: 100%;
  border: none;
}

/* ====== responsive ====== */
@media (max-width: 1200px){
  .consult__inner{
    grid-template-columns: 1fr 460px;
  }
}

@media (max-width: 1024px){
  .consult{
    padding: 70px 0 80px;
    background-position: left center;
  }

  .consult__inner{
    grid-template-columns: 1fr;
  }

  .consult__form{
    margin-left: auto;   /* форма всё равно справа */
    width: min(520px, 100%);
  }
}

@media (max-width: 640px){
  .consult{
    padding: 50px 0 60px;
  }

  .consult__form{
    padding: 18px;
    border-radius: 10px;
  }
}
.b24-iframe{
  width: 100%;
  height: 518px; /* подгони под реальную высоту формы */
  border: 0;
  display: block;
}
/* ====== text-section: dark variant ====== */
.text-section--dark{
  background: #232c21;
}

.text-section--dark::before{
  display: none; /* убираем светлую подложку */
}

.text-section--dark .text-section__content{
  color: #ffffff;
}

/* ====== consult: left variant ====== */
.consult--left{
  background-image: url("/assets/templates/gd2026/images/consult-bg-2.jpg"); /* ДРУГОЙ фон */
}

/* на десктопе форма слева */
.consult--left .consult__inner{
  grid-template-columns: 520px 1fr;
}

/* адаптив */
@media (max-width: 1024px){
  .consult--left .consult__inner{
    grid-template-columns: 1fr;
  }

  .consult--left .consult__form{
    margin-right: auto;
  }
}

