*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #041716;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: #f5f7f2;
  background: #041716;
}

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

.dummy {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 55px;
  overflow: hidden;
  background:
   
    url("./zaglushka-bg.jpg") center center / cover no-repeat;
}

.dummy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 10%, rgba(220, 188, 146, .16), transparent 24%),
    radial-gradient(circle at 50% 46%, rgba(8, 44, 42, .12), transparent 38%),
    linear-gradient(90deg, rgba(1, 10, 11, .48) 0%, rgba(4, 22, 22, .08) 38%, rgba(4, 22, 22, .04) 62%, rgba(1, 10, 11, .44) 100%);
  pointer-events: none;
}

.dummy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .24)),
    radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, .43) 100%);
  pointer-events: none;
}

.dummy__header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
}

.dummy__brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .42);
}

.dummy__brand-mark {
  width: 56px;
  height: 74px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .34));
}

.dummy__brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(2px);
}

.dummy__brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: .95;
  font-weight: 600;
  letter-spacing: .1em;
}

.dummy__brand-subtitle {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.dummy__card {
  position: relative;
  width: min(766px, 100%);
  min-height: 678px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 49px 36px 32px;
  text-align: center;
  border:  1px solid rgba(255, 255, 255, .32);;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(21, 52, 49, .70), rgba(0, 25, 24, .76)),
    rgba(1, 21, 20, .72);
}

.dummy__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 23px;
  color: rgb(214, 171, 128);
  opacity: .93;
}

.dummy__ornament-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(214, 171, 128));
}

.dummy__ornament-line:last-child {
  background: linear-gradient(90deg, rgb(214, 171, 128), transparent);
}

.dummy__ornament-icon {
  width: 32px;
  height: auto;
  flex: 0 0 auto;
  filter: invert(1);
}

.dummy__title {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(47px, 4.9vw, 66px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: .015em;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .44);

    text-transform: none;
}

.dummy__lead {
  max-width: 650px;
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, .36);
}

.dummy__divider {
  display: block;
  width: 46px;
  height: 1px;
  margin: 30px 0 22px;
  background: linear-gradient(90deg, transparent, #d1a56e, transparent);
  opacity: .9;
}

.dummy__text {
  max-width: 620px;
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, .70);
  text-shadow: 0 6px 18px rgba(0, 0, 0, .36);
}

.dummy__button {
  width: min(372px, 100%);
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-top: 35px;
  border-radius: 7px;
  color: #fff;
  background:#D6AB80;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.dummy__button:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.dummy__button:focus-visible,
.dummy__contact:focus-visible,
.dummy__brand:focus-visible {
  outline: 2px solid rgba(245, 211, 164, .92);
  outline-offset: 4px;
}

.dummy__button-text {
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
}

.dummy__button-icon {
  width: 30px;
  height: 18px;
  flex: 0 0 auto;
}

.dummy__contacts {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1.26fr;
  align-items: center;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .32);
}

.dummy__contact {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, .92);
}

.dummy__contact + .dummy__contact {
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.dummy__contact-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #fff;
  border-radius: 10px;
  color: rgba(255, 255, 255, .86);
  background:#386A72;
}

.dummy__contact-label {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.dummy__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 36px;
  color: rgba(255, 255, 255, .58);
  text-align: center;
}

.dummy__shield {
  width: 36px;
  height: 42px;
  color: rgb(214, 171, 128);
  margin-bottom: 11px;
  opacity: .9;
}

.dummy__footer-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: .01em;
  text-shadow: 0 7px 18px rgba(0, 0, 0, .42);
}

@media (max-width: 900px) {
  .dummy {
    padding: 32px 18px 42px;
  }

  .dummy__header {
    margin-bottom: 34px;
  }

  .dummy__brand {
    gap: 14px;
  }

  .dummy__brand-mark {
    width: 48px;
    height: 64px;
  }

  .dummy__brand-name {
    font-size: 31px;
  }

  .dummy__brand-subtitle {
    font-size: 11px;
    letter-spacing: .31em;
  }

  .dummy__card {
    min-height: auto;
    padding: 38px 24px 25px;
  }

  .dummy__lead {
    font-size: 20px;
  }

  .dummy__text {
    font-size: 17px;
  }

  .dummy__contacts {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 21px;
  }

  .dummy__contact {
    min-height: 58px;
    justify-content: flex-start;
    width: min(310px, 100%);
    margin: 0 auto;
  }

  .dummy__contact + .dummy__contact {
    border-left: 0;
  }

  .dummy__contact-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 540px) {
  .dummy {
    justify-content: flex-start;
    padding: 24px 14px 32px;
  }

  .dummy__header {
    margin-bottom: 24px;
  }

  .dummy__brand {
    gap: 11px;
  }

  .dummy__brand-mark {
    width: 40px;
    height: 54px;
  }

  .dummy__brand-name {
    font-size: 25px;
    letter-spacing: .075em;
  }

  .dummy__brand-subtitle {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: .23em;
  }

  .dummy__card {
    padding: 30px 17px 22px;
    border-radius: 12px;
  }

  .dummy__ornament {
    gap: 12px;
    margin-bottom: 18px;
  }

  .dummy__ornament-line {
    width: 48px;
  }

  .dummy__ornament-icon {
    width: 44px;
    height: 44px;
  }

  .dummy__title {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .dummy__lead {
    font-size: 16px;
    line-height: 1.4;
  }

  .dummy__text {
    font-size: 16px;
  }

  .dummy__desktop-break {
    display: none;
  }

  .dummy__divider {
    margin: 24px 0 19px;
  }

  .dummy__button {
    height: 60px;
    gap: 24px;
    margin-top: 29px;
  }

  .dummy__button-text {
    font-size: 17px;
  }

  .dummy__contacts {
    margin-top: 28px;
  }

  .dummy__contact {
    width: 100%;
    min-height: 54px;
  }

  .dummy__contact-label {
    font-size: 15px;
  }

  .dummy__footer {
    margin-top: 27px;
  }

  .dummy__footer-text {
    max-width: 300px;
    font-size: 14px;
  }
}
