* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  background: #050505;
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(70,70,70,.30), rgba(15,15,15,.86) 40%, #030303 83%),
    linear-gradient(180deg, #111, #050505);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .65;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.018 .055' numOctaves='5' seed='11'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.26 0 0 0 0 0.26 0 0 0 0 0.26 0 0 0 .42 0'/%3E%3C/filter%3E%3Crect width='520' height='520' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 760px 760px;
  mix-blend-mode: overlay;
}

.page::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 70px rgba(0,0,0,.55);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  padding: 112px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: 270px;
  height: 270px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.72));
}

h1 {
  color: #ef3030;
  font-size: 104px;
  font-weight: 400;
  line-height: .95;
  letter-spacing: 35px;
  margin-left: 35px;
  text-shadow: 0 14px 28px rgba(0,0,0,.68);
}

h2 {
  margin-top: 24px;
  color: #ef3030;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 15px;
  margin-left: 15px;
}

.line {
  width: 520px;
  max-width: 70vw;
  height: 1px;
  margin: 58px auto 38px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}

h3 {
  color: #f1f1f1;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 18px;
  margin-left: 18px;
}

h3 span {
  color: #ef3030;
  padding: 0 12px;
}

.contact-button {
  margin-top: 72px;
  width: 285px;
  height: 66px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.46);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 9px;
  padding-left: 9px;
  cursor: pointer;
  transition: .22s ease;
}

.contact-button:hover {
  color: #ef3030;
  border-color: #ef3030;
  background: rgba(255,255,255,.035);
}

.contact-panel {
  position: fixed;
  z-index: 20;
  left: 50%;
  top: 50%;
  width: 800px;
  max-width: calc(100vw - 42px);
  max-height: calc(100vh - 42px);
  overflow-y: auto;
  padding: 48px 58px;
  transform: translate(-50%, -46%) scale(.96);
  opacity: 0;
  pointer-events: none;
  background: #090909;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 42px 120px rgba(0,0,0,.86);
  transition: .22s ease;
}

.contact-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 24px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
}

.contact-panel h4 {
  margin-bottom: 28px;
  color: #ef3030;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 12px;
}

.contact-panel p {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 2px;
}

.contact-panel b {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
}

.contact-panel a {
  color: #fff;
  text-decoration: none;
}

.contact-panel a:hover {
  color: #ef3030;
}

/* TABLET */
@media (max-width: 1024px) {
  .brand {
    padding-top: 82px;
  }

  .logo {
    width: 190px;
    height: 190px;
  }

  h1 {
    font-size: 62px;
    letter-spacing: 20px;
    margin-left: 20px;
  }

  h2 {
    font-size: 15px;
    letter-spacing: 8px;
    margin-left: 8px;
  }

  h3 {
    font-size: 20px;
    letter-spacing: 10px;
    margin-left: 10px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .page {
    min-height: 100svh;
  }

  .page::after {
    inset: 14px;
  }

  .brand {
    min-height: 100svh;
    padding: 58px 18px 52px;
    justify-content: flex-start;
  }

  .logo {
    width: 138px;
    height: 138px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: 9px;
    margin-left: 9px;
  }

  h2 {
    max-width: 340px;
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 4px;
    margin-left: 4px;
  }

  .line {
    width: 76vw;
    margin: 42px auto 30px;
  }

  h3 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 4px;
    margin-left: 4px;
  }

  h3 span {
    padding: 0 8px;
  }

  .contact-button {
    margin-top: 46px;
    width: 210px;
    height: 54px;
    font-size: 15px;
    letter-spacing: 5px;
    padding-left: 5px;
  }

  .contact-panel {
    width: calc(100vw - 30px);
    max-height: calc(100svh - 30px);
    padding: 36px 24px;
  }

  .close-button {
    top: 10px;
    right: 18px;
    font-size: 34px;
  }

  .contact-panel h4 {
    font-size: 22px;
    letter-spacing: 6px;
    margin-bottom: 18px;
  }

  .contact-panel p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 1px;
    word-break: break-word;
  }

  .contact-panel b {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

/* SMALL MOBILE */
@media (max-width: 390px) {
  .brand {
    padding-top: 50px;
  }

  .logo {
    width: 122px;
    height: 122px;
  }

  h1 {
    font-size: 35px;
    letter-spacing: 7px;
    margin-left: 7px;
  }

  h2 {
    font-size: 10px;
    letter-spacing: 3px;
    margin-left: 3px;
  }

  h3 {
    font-size: 13px;
    letter-spacing: 3px;
    margin-left: 3px;
  }

  .contact-button {
    width: 198px;
  }
}

/* PHONE LANDSCAPE */
@media (max-height: 520px) and (orientation: landscape) {
  .brand {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .logo {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    margin-top: 10px;
  }

  .line {
    margin: 24px auto 18px;
  }

  .contact-button {
    margin-top: 26px;
  }
}