:root {
  color-scheme: dark;
  --cream: #f5f0e6;
  --cream-muted: rgba(245, 240, 230, 0.74);
  --gold: #c9a967;
  --ink: #171713;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1.25rem, 6vw, 6rem);
}

.coming-soon__image,
.coming-soon__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.coming-soon__image {
  background: url("../images/hero-background.jpg") center 58% / cover no-repeat;
  animation: reveal 1.4s ease-out both;
}

.coming-soon__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 13, 10, 0.91) 0%, rgba(13, 13, 10, 0.7) 42%, rgba(13, 13, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 13, 10, 0.74) 0%, transparent 42%);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  width: max-content;
  column-gap: 0.9rem;
  text-transform: uppercase;
}

.brand__mark {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 169, 103, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Italiana", serif;
  font-size: 1.5rem;
}

.brand__name {
  align-self: end;
  font-family: "Italiana", serif;
  font-size: 1.45rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

.brand__descriptor {
  align-self: start;
  color: var(--cream-muted);
  font-size: 0.56rem;
  letter-spacing: 0.38em;
  line-height: 1.7;
}

.announcement {
  align-self: center;
  max-width: 47rem;
  padding: clamp(4rem, 10vh, 8rem) 0;
}

.announcement__eyebrow {
  margin: 0 0 1.4rem;
  color: var(--gold);
  font-size: clamp(0.67rem, 1vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}

.announcement__rule {
  width: 4.5rem;
  height: 1px;
  margin: clamp(2rem, 4vw, 3.2rem) 0 1.5rem;
  background: var(--gold);
}

.announcement__copy {
  max-width: 34rem;
  margin: 0;
  color: var(--cream-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--cream-muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer a {
  color: inherit;
  text-decoration-color: rgba(201, 169, 103, 0.55);
  text-underline-offset: 0.45rem;
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--cream);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .coming-soon__image {
    background-position: 63% center;
  }

  .coming-soon__veil {
    background: linear-gradient(90deg, rgba(13, 13, 10, 0.88), rgba(13, 13, 10, 0.55));
  }

  .announcement {
    align-self: end;
    padding-bottom: 3.5rem;
  }

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

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

  .footer a {
    transition: none;
  }
}
