:root {
  --page-black: #050505;
  --warm-white: #f4f0e8;
  --amber: #db994f;
  --serif: "Bodoni MT", Didot, Baskerville, "Times New Roman", serif;
  --sans: "Century Gothic", "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --gutter: clamp(2rem, 4.8vw, 4.75rem);
}

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

html {
  min-width: 20rem;
  min-height: 100%;
  background: var(--page-black);
  color-scheme: dark;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--page-black);
}

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2.75rem, 7.8vh, 4.85rem) var(--gutter)
    clamp(2.75rem, 8.15vh, 5.05rem);
  overflow: hidden;
  background-color: var(--page-black);
  background-image: url("assets/garner-production-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.brand,
.domain,
.status {
  margin: 0;
}

.brand {
  align-self: start;
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.32vw, 1.32rem);
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__strong {
  font-weight: 700;
}

.brand__light {
  font-weight: 400;
}

.status {
  align-self: center;
  max-width: 70rem;
  color: var(--warm-white);
  font-family: var(--serif);
  font-size: clamp(4.75rem, 8.2vw, 8.15rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.046em;
  text-wrap: balance;
}

.status span {
  display: block;
}

.domain {
  align-self: end;
  color: var(--amber);
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.18vw, 1.18rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 44rem) {
  :root {
    --gutter: clamp(1.4rem, 6vw, 2.25rem);
  }

  .page {
    padding-top: clamp(2rem, 7svh, 3.5rem);
    padding-bottom: clamp(2rem, 7svh, 3.5rem);
    background-position: 58% center;
  }

  .brand {
    font-size: clamp(0.72rem, 3.3vw, 0.92rem);
    letter-spacing: 0.27em;
  }

  .status {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

  .domain {
    font-size: clamp(0.7rem, 3vw, 0.86rem);
    letter-spacing: 0.24em;
  }
}

@media (min-width: 44.01rem) {
  .status span {
    white-space: nowrap;
  }
}

@media (max-height: 35rem) and (min-width: 44.01rem) {
  .page {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .status {
    font-size: min(8.2vw, 17vh);
  }
}
