* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #080706;
  color: #f7efe3;
}

a {
  color: inherit;
  text-decoration: none;
}

.md-page {
  overflow: hidden;
}

.md-container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.md-hero {
  position: relative;
  min-height: 100vh;
  padding: 72px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(199, 139, 69, 0.28), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(105, 32, 16, 0.38), transparent 34%),
    linear-gradient(135deg, #080706 0%, #15100c 54%, #070605 100%);
}

.md-hero::before {
  content: "МЯСО & ДЫМ";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: clamp(72px, 14vw, 230px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.09em;
  white-space: nowrap;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
}

.md-hero__smoke {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 70% 35%, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at 88% 65%, rgba(255,255,255,0.045), transparent 20%),
    radial-gradient(circle at 38% 28%, rgba(255,255,255,0.035), transparent 18%);
  filter: blur(28px);
  opacity: 0.75;
  pointer-events: none;
}

.md-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.md-hero__content {
  position: relative;
  z-index: 3;
}

.md-hero__label {
  display: inline-flex;
  padding: 10px 15px;
  margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid rgba(199,139,69,0.36);
  background: rgba(255,255,255,0.05);
  color: #e0a85f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.md-hero__title {
  margin: 0;
  font-size: clamp(62px, 9vw, 144px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.md-hero__title span {
  color: #d19343;
}

.md-hero__text {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(247,239,227,0.78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}

.md-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.md-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s ease;
}

.md-btn--gold {
  background: #d19343;
  color: #130b05;
  box-shadow: 0 20px 60px rgba(209,147,67,0.28);
}

.md-btn--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f7efe3;
}

.md-btn:hover {
  transform: translateY(-2px);
}

.md-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-top: 46px;
}

.md-hero__facts div {
  min-height: 92px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(14px);
}

.md-hero__facts strong {
  display: block;
  color: #e0a85f;
  font-size: 21px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.md-hero__facts span {
  display: block;
  color: rgba(247,239,227,0.7);
  font-size: 14px;
  line-height: 1.35;
}

.md-hero__product {
  position: relative;
  min-height: 590px;
}

.md-hero__product img {
  position: absolute;
  right: -14vw;
  top: 50%;
  width: min(860px, 70vw);
  max-width: none;
  transform: translateY(-50%) rotate(-4deg);
  filter:
    drop-shadow(0 50px 90px rgba(0,0,0,0.58))
    drop-shadow(0 0 70px rgba(209,147,67,0.14));
}

@media (max-width: 980px) {
  .md-hero {
    min-height: auto;
    padding: 52px 0 70px;
  }

  .md-hero__inner {
    grid-template-columns: 1fr;
  }

  .md-hero__product {
    min-height: 380px;
  }

  .md-hero__product img {
    right: -18vw;
    width: min(680px, 105vw);
  }
}

@media (max-width: 620px) {
  .md-container {
    width: min(100% - 22px, 1320px);
  }

  .md-hero__label {
    font-size: 11px;
    line-height: 1.35;
  }

  .md-hero__title {
    font-size: clamp(56px, 20vw, 88px);
  }

  .md-hero__actions {
    flex-direction: column;
  }

  .md-btn {
    width: 100%;
  }

  .md-hero__facts {
    grid-template-columns: 1fr;
  }

  .md-hero__product {
    min-height: 300px;
  }

  .md-hero__product img {
    right: -32vw;
    width: 130vw;
  }
}



.md-products {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(209,147,67,0.09), transparent 28%),
    linear-gradient(180deg, #080706 0%, #120d09 100%);
}

.md-section-head {
  max-width: 860px;
  margin: 0 0 58px;
}

.md-section-label {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(209,147,67,0.34);
  color: #d19343;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.md-section-title {
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.md-section-text {
  max-width: 720px;
  margin: 0;
  color: rgba(247,239,227,0.68);
  font-size: 20px;
  line-height: 1.6;
}

.md-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.md-product {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.md-product:hover {
  transform: translateY(-6px);
  border-color: rgba(209,147,67,0.34);
  background: rgba(255,255,255,0.06);
}

.md-product__photo {
  height: 250px;
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(209,147,67,0.22), transparent 52%),
    linear-gradient(145deg, #21150d, #0f0b08);
  color: rgba(247,239,227,0.38);
  font-weight: 800;
  text-align: center;
}

.md-product__photo span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(247,239,227,0.18);
  font-size: 13px;
}

.md-product__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.md-product__body h3 {
  min-height: 68px;
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.md-product__body p {
  min-height: 112px;
  margin: 0;
  color: rgba(247,239,227,0.65);
  font-size: 15px;
  line-height: 1.55;
}

.md-product__bottom {
  margin-top: auto;
  padding-top: 22px;
}

.md-product__price {
  margin-bottom: 16px;
  color: #d19343;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.md-product__order {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.md-product__cart {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 16px;
  background: #d19343;
  color: #130b05;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.md-product__cart:hover {
  transform: translateY(-2px);
  background: #e0a85f;
}

.md-product__counter {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 10px;
}

.md-product__counter button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  color: #f7efe3;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  transition: 0.25s ease;
}

.md-product__counter button:hover {
  background: #d19343;
  color: #130b05;
}

.md-product__counter span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #f7efe3;
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .md-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .md-products {
    padding: 82px 0;
  }

  .md-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .md-product__photo {
    height: 230px;
    flex-basis: 230px;
  }
}

@media (max-width: 620px) {
  .md-products__grid {
    grid-template-columns: 1fr;
  }

  .md-section-text {
    font-size: 18px;
  }

  .md-product__body h3,
  .md-product__body p {
    min-height: auto;
  }
}