:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --ink: #20231d;
  --muted: #62675d;
  --green: #335f46;
  --green-dark: #203f31;
  --gold: #c99848;
  --line: rgba(32, 35, 29, 0.16);
  --shadow: rgba(22, 31, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(51, 95, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 95, 70, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.72;
}

.coming-soon {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.hero {
  width: 100%;
  max-width: 760px;
  padding: clamp(2rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
}

.logo-wrap {
  display: inline-block;
  width: min(64vw, 240px);
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  overflow: hidden;
  background: #070707;
  border: 1px solid rgba(201, 152, 72, 0.5);
  border-radius: 8px;
  box-shadow: 0 22px 60px var(--shadow);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.intro {
  max-width: 620px;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(201, 152, 72, 0.38);
  outline-offset: 3px;
}

.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.primary:hover,
.primary:focus-visible {
  background: var(--green-dark);
}

@media (max-width: 700px) {
  h1 {
    font-size: 3.8rem;
  }

  .intro {
    font-size: 1.08rem;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    align-items: start;
    padding-top: 2.5rem;
  }

  .hero {
    padding-right: 0;
    padding-left: 0;
  }

  .actions {
    flex-direction: column;
    width: 100%;
    max-width: 18rem;
    margin-right: auto;
    margin-left: auto;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.95rem;
  }
}
