html,
body {
  margin: 0;
  padding: 0;
  background: black;
  /* или другой фоновый */
}




.site-header {
  padding: 50px 20px 0;
  /* отступ сверху и по бокам */
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(95, 95, 95, 0.425);
  /* полупрозрачный тёмный фон */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  border-radius: 3px;

}


.logo img {
  height: 70px;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #e0dcdc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffffff;
  /* акцент при наведении */
}

.header-icons {
  display: flex;
  gap: 20px;
}

.header-icons img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.header-icons a:hover img {
  opacity: 0.7;
}



















/* === HERO с параллакс-фоном === */
.hero-wrapper_2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* фон-слой с параллаксом */
.hero-wrapper_2::before {
  content: "";
  position: absolute;
  inset: -1%;
  background: url('/static/image/fon_1.png') center 5%/cover no-repeat;
  transform: translate(var(--px, 0), var(--py, 0)) scale(1.08);
  will-change: transform;
  transition: transform .06s linear;
  z-index: -1;
}

/* затемнение */
.hero-wrapper_2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: -1;
}

/* шапка поверх */
.site-header {
  position: relative;
  z-index: 5;
}

/* контент героя */
.main-hero_2 {
  position: relative;
  padding: 45px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  overflow: hidden;
}

.hero-content_2 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

/* лого адаптивное, но не больше 320 */
.hero-logo {
  height: clamp(140px, 26vw, 320px);
  width: auto;
}

.hero-tit {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 120px);
  margin: 0;
  letter-spacing: .02em;
  color: rgba(190, 190, 190, .76);
}

.hero-op {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(18px, 3vw, 30px);
  color: #fff;
  opacity: .9;
  margin: 0;
}







.price-section {
  position: relative;
  background: url('/static/image/fon_contact.jpg') center/cover no-repeat;
  padding: 80px 0;
  /* отступы сверху и снизу */
}

.price-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  /* затемнение */
}

.price-menu {
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
  color: #dfdfdf;
  position: relative;
  z-index: 1;
  /* чтобы было поверх затемнения */
}

.price-group+.price-group {
  margin-top: 80px;
}

.price-title {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  border-bottom: 4px solid #c4b65e;
  padding-bottom: 18px;
  margin: 0 0 20px;
}

.price-table {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(90px, auto));
  /* шире колонки цен */
  column-gap: 30px;
  row-gap: 18px;
}

.price-head {
  display: contents;
}

.price-row {
  display: contents;
}

.col {
  align-self: center;
}

.col.name {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 500;
}

.col.size {
  font-size: 22px;
  text-align: center;
  opacity: .85;
  transform: translateY(-2px);
}

.col.price {
  font-size: 28px;
  font-weight: 500;
  text-align: right;
  color: rgb(228, 228, 228);
}

.col.price:empty::before {
  content: " ";
}



.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.addon-name {
  font-family: 'Playfair Display', serif;
  max-width: 75%;
  font-size: 28px;
  font-weight: 700;
}

.addon-name p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin: 4px 0 0;
  line-height: 1.4;
}

.addon-price {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}












@media (max-width: 767px) {

  .hero-logo {
    z-index: 0;
  }

  .main-hero_2 {
    z-index: 0;
  }

  .price-section {
    padding: 36px 0 60px;
  }

  .price-menu {
    padding: 0 14px;
  }

  .price-title {
    font-size: 34px;
    border-bottom-width: 3px;
    padding-bottom: 10px;
    margin: 0 0 14px;
    letter-spacing: 1px;
  }

  .price-table {
    grid-template-columns: 1fr 70px 70px 70px;
    /* узкие столбцы цен */
    column-gap: 14px;
    row-gap: 12px;
  }

  .price-head .col.size {
    font-size: 14px;
    letter-spacing: .08em;
  }

  .col.name {
    font-size: 16px;
    line-height: 1.15;
  }

  .col.price {
    font-size: 16px;
    text-align: right;
  }

  /* плотнее группы */
  .price-group+.price-group {
    margin-top: 46px;
  }

  /* мелочь по читабельности */
  .addon-name {
    font-size: 22px;
  }

  .addon-name p {
    font-size: 16px;
  }

  .addon-price {
    font-size: 18px;
  }

  /* чтобы длинные названия не ломали сетку */
  .col.name {
    word-wrap: break-word;
    hyphens: auto;
  }
}




































@media (min-width:768px) and (max-width:1194px) {

  /* шапка компактнее */
  .hero-logo {
    z-index: 0;
  }

  .main-hero_2 {
    z-index: 0;
  }

  .site-header {
    padding: 12px 10px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .logo img {
    height: 48px;
    max-width: 100%;
  }


  .burger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #2b2b2b;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    z-index: 1000;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 4px;
    gap: unset;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 10px 14px;
    /* было 14px 16px — уменьшил */
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    color: #eaeaea;
    font-size: 15px;
    /* чуть меньше текст */
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #1f4a28;
    box-sizing: border-box;
    /* зелёный фон */
  }

  .main-nav a:first-child {
    background: #3a3a3a;
    /* верхний серый */
  }

  .main-nav a:active {
    opacity: .85;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    grid-column: 1/2;
    justify-self: start;
  }

  .burger {
    grid-column: 2/3;
    justify-self: center;
  }

  .header-icons {
    grid-column: 3/4;
    justify-self: end;
    gap: 12px;
  }

  .logo img {
    height: 48px;
  }

  .header-icons img {
    width: 26px;
    height: 26px;
  }

  .main-nav:not(.open) {
    position: absolute;
  }


  .price-section {
    padding: 50px 0;
  }

  .price-menu {
    padding: 0 40px;
  }

  .price-title {
    font-size: 40px;
    padding-bottom: 14px;
    margin-bottom: 16px;
  }

  .price-table {
    grid-template-columns: 1fr repeat(3, 80px);
    column-gap: 20px;
    row-gap: 14px;
  }

  .col.name {
    font-size: 24px;
    line-height: 1.2;
  }

  .col.size {
    font-size: 18px;
  }

  .col.price {
    font-size: 20px;
    text-align: right;
  }

  .addon-name {
    font-size: 22px;
  }

  .addon-name p {
    font-size: 16px;
  }

  .addon-price {
    font-size: 20px;
  }
}