:root {
  color-scheme: light;
  --red: #ee3127;
  --ink: #211f20;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #171717;
  color: var(--ink);
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 6vw, 88px);
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.72) 48%, rgba(18, 18, 18, 0.88) 100%),
    url("assets/hero-construction.jpg") center / cover no-repeat;
}

.holding-page::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(9px, 1.2vw, 18px);
  background: var(--red);
  content: "";
  z-index: -1;
}

.holding-page::after {
  position: absolute;
  right: -14vw;
  bottom: -34vw;
  width: 64vw;
  height: 64vw;
  border: clamp(22px, 4vw, 64px) solid rgba(238, 49, 39, 0.72);
  content: "";
  transform: rotate(24deg);
  z-index: -1;
}

.industrial-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}

.contact-panel {
  position: relative;
  display: grid;
  width: min(780px, 100%);
  min-height: min(460px, 72svh);
  place-content: center;
  gap: clamp(36px, 7vw, 72px);
  padding: clamp(42px, 8vw, 92px);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.contact-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 8px;
  background: var(--red);
  content: "";
}

.brand {
  display: flex;
  justify-content: center;
}

.brand img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--ink);
  font-size: clamp(17px, 2.1vw, 24px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.email span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  background: var(--red);
  color: var(--paper);
  font-size: 21px;
}

.email:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.email:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 7px;
}

@media (max-width: 600px) {
  .holding-page {
    padding: 22px;
  }

  .contact-panel {
    min-height: 380px;
    gap: 44px;
    padding: 44px 25px;
  }

  .holding-page::after {
    right: -32vw;
    bottom: -26vw;
    width: 92vw;
    height: 92vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .email {
    transition: none;
  }
}
