:root {
  --red: #d71920;
  --black: #111111;
  --text: #202020;
  --muted: #3e3e3e;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 16%, #ffffff 0%, #ffffff 42%, #f7f7f7 100%);
  overflow-x: hidden;
  text-align: center;
}

body::before,
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  width: 38vw;
  height: 125px;
  z-index: 0;
  pointer-events: none;
}

body::before {
  left: 0;
  background: linear-gradient(25deg, var(--red) 0 49%, transparent 50%);
}

body::after {
  right: 0;
  background: linear-gradient(-25deg, var(--black) 0 49%, transparent 50%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 42px);
  display: grid;
  place-items: center;
  padding: 48px 18px 30px;
}

.center-column {
  width: min(860px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: block;
  width: min(680px, 94vw);
  height: auto;
  margin: 0 auto 42px;
}

.kicker {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 1.02rem;
  font-weight: 900;
}

.kicker strong {
  transform: translateX(0.17em);
}

.kicker span {
  width: 46px;
  height: 2px;
  background: var(--red);
  display: block;
}

h1 {
  margin: 0;
  width: 100%;
  color: var(--black);
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 1.13;
  letter-spacing: -0.045em;
  font-weight: 900;
  text-align: center;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.red-line {
  width: 132px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  margin: 31px auto 25px;
}

.intro {
  margin: 0 auto;
  max-width: 760px;
  color: #333333;
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  line-height: 1.58;
  text-align: center;
}

.roof-icon {
  width: 280px;
  max-width: 58vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 38px auto 30px;
}

.roof-icon::before,
.roof-icon::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--red);
  opacity: 0.68;
}

.roof-icon svg {
  width: 78px;
  flex: 0 0 78px;
  display: block;
}

.contact {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 26px;
  margin: 0 auto;
}

.contact-item {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--black);
  font-size: clamp(1.08rem, 2.15vw, 1.32rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.contact-item a {
  color: var(--black);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--red);
}

.contact-item p {
  margin: 0;
}

.icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: var(--red);
}

footer {
  position: relative;
  z-index: 1;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777777;
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  body::before,
  body::after {
    width: 52vw;
    height: 84px;
  }

  .page {
    padding: 32px 16px 28px;
  }

  .logo {
    width: min(430px, 94vw);
    margin-bottom: 34px;
  }

  .kicker {
    gap: 12px;
    margin-bottom: 22px;
    letter-spacing: 0.22em;
    font-size: 0.82rem;
  }

  .kicker strong {
    transform: translateX(0.11em);
  }

  .kicker span {
    width: 30px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
    line-height: 1.14;
  }

  .intro br {
    display: none;
  }

  .roof-icon {
    width: 230px;
    margin: 32px auto 26px;
  }

  .contact {
    gap: 24px;
  }

  .icon {
    width: 46px;
    height: 46px;
  }
}
