:root {
  --color-ink: #f8f4eb;
  --color-muted: rgba(248, 244, 235, 0.74);
  --color-shadow: rgba(0, 0, 0, 0.48);
  --color-panel: rgba(13, 15, 14, 0.38);
  --content-width: min(100%, 64rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #111412;
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  isolation: isolate;
}

.hero-image,
.image-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.image-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.56) 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.68));
}

.brand,
.contact {
  align-self: start;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  width: var(--content-width);
  max-width: 36rem;
  border: 1px solid rgba(248, 244, 235, 0.2);
  background: var(--color-panel);
  box-shadow: 0 18px 55px var(--color-shadow);
  backdrop-filter: blur(14px);
}

.brand {
  gap: 0.7rem;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 7px;
  object-fit: contain;
}

.center-message {
  align-self: center;
  justify-self: center;
  width: var(--content-width);
  padding: 0 0.25rem;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.52);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--color-muted);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.contact {
  align-self: end;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--color-muted);
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  font-weight: 700;
}

.contact a {
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--color-ink);
}

.contact a:focus-visible {
  outline: 3px solid rgba(248, 244, 235, 0.36);
  outline-offset: 5px;
  border-radius: 4px;
}

@media (max-width: 560px) {
  :root {
    --content-width: calc(100vw - 1.7rem);
  }

  .coming-soon {
    padding: 0.85rem;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .brand,
  .contact {
    max-width: var(--content-width);
    justify-content: center;
  }

  .brand {
    min-height: 3.4rem;
  }

  .brand-logo {
    width: 2rem;
    height: 2rem;
  }

  h1 {
    font-size: clamp(2.1rem, 11.5vw, 4.25rem);
    line-height: 1;
    margin-inline: auto;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: clamp(1.85rem, 11vw, 3rem);
  }

  .brand,
  .contact {
    padding-inline: 0.75rem;
  }
}
