@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Staatliches&display=swap");

:root {
  --black: #050505;
  --white: #ffffff;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-300: #cfcfcf;
  --gray-200: #e5e5e5;
  --font-main: "Staatliches", "PT Sans", Arial, system-ui, sans-serif;
  --font-sub: "PT Sans", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sub);
}

img {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.construction-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 20px;
}

.construction-panel {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: pageIn 800ms ease both;
}

.brand-mark {
  width: clamp(150px, 24vw, 240px);
  height: auto;
  margin-bottom: 36px;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(54px, 9vw, 106px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

.message {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--gray-700);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.contact-icon:hover {
  background: var(--black);
  color: var(--white);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon:first-child svg path {
  fill: currentColor;
  stroke: none;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .construction-shell {
    padding: 38px 18px;
  }

  .brand-mark {
    width: clamp(136px, 44vw, 184px);
    margin-bottom: 30px;
  }

  .message {
    margin-top: 22px;
  }

  .contact-icons {
    gap: 12px;
    margin-top: 32px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .construction-panel {
    animation: none;
  }
}
