:root {
  --clr-bg: #000;
  --clr-fg: #fff;

  --ff-display: owners-xxwide, sans-serif;
  --ff-body: input-mono, monospace;

  --fw-bold: 700;
  --fw-light: 300;

  --fs-hero: clamp(2.1rem, 0.83rem + 6.08vw, 8.125rem);

  --fs-body: clamp(1rem, 0.87rem + 0.52vw, 1.5rem);

  --lh-hero: 1.15;
  --lh-body: 1.3;

  --page-pad: clamp(1.25rem, 0.93rem + 1.31vw, 2.5rem);

  --logo-w: clamp(5.625rem, 5.15rem + 1.96vw, 7.5rem);

  --hero-visual-w: clamp(17rem, 2.89rem + 57.9vw, 55rem);
}


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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-fg);
  font-family: var(--ff-body), sans-serif;
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: var(--page-pad);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header__logo {
  display: block;
  width: var(--logo-w);
  flex-shrink: 0;
}

.header__status {
  text-transform: uppercase;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__headline {
  text-align: center;
  font-family: var(--ff-display), sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  text-rendering: geometricPrecision;
  position: relative;
  z-index: 1;
}

.hero__visual {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  translate: -50% -50%;
  width: var(--hero-visual-w);
  pointer-events: none;
  z-index: 2;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.875rem;
}

.footer__description {
  text-transform: capitalize;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  text-align: end;
}

@media (width <= 48em) {
  .hero__headline {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__contact {
    order: -1;
    text-align: start;
  }
}
