:root {
  color-scheme: light;
  --ink: #090909;
  --muted: #5e625b;
  --line: rgba(9, 9, 9, 0.14);
  --paper: #f7f5f0;
  --stone: #ded8cc;
  --sage: #788272;
  --clay: #b96f4f;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(247, 245, 240, 0.72)),
    url("https://images.unsplash.com/photo-1604061986761-d9d0cc41b0d1?auto=format&fit=crop&w=1800&q=85")
      center / cover;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(115deg, black, transparent 68%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
  place-items: center;
}

.coming-soon {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - clamp(40px, 8vw, 112px)));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 30px 90px rgba(31, 27, 20, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand::after {
  width: min(260px, 32vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0.38;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(8px, 1.4vw, 16px);
  color: var(--ink);
  text-decoration: none;
}

.brand-primary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.9;
}

.brand-secondary {
  padding-left: clamp(8px, 1vw, 14px);
  border-left: 1px solid var(--ink);
  font-size: clamp(0.92rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
}

.intro {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 14vw, 10.5rem);
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 640px;
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-panel > div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
}

.status-panel > div + div {
  padding-left: clamp(18px, 4vw, 42px);
  border-left: 1px solid var(--line);
}

.status-label {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-panel strong {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.2;
}

.footer {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--clay);
}

.footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .coming-soon {
    min-height: calc(100vh - 28px);
    padding: 24px;
  }

  .brand {
    display: block;
  }

  .brand::after {
    display: none;
  }

  .brand-mark {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .brand-secondary {
    letter-spacing: 0.2em;
  }

  .status-panel {
    grid-template-columns: 1fr;
  }

  .status-panel > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer span {
    display: none;
  }
}
