:root {
  color-scheme: light;
  --bg: #f7f1e8;
  --ink: #1f1d1b;
  --muted: #6d6258;
  --accent: #b64b32;
  --frame: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(182, 75, 50, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 85%, rgba(182, 75, 50, 0.1), transparent 26rem),
    linear-gradient(135deg, #fff8ee 0%, var(--bg) 48%, #efe2d1 100%);
}

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

.coming-soon {
  width: min(100%, 40rem);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  background: rgba(255, 250, 243, 0.55);
  border: 1px solid rgba(182, 75, 50, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px -40px rgba(35, 29, 24, 0.45);
  backdrop-filter: blur(6px);
  animation: rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.monogram {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  background: var(--frame);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(182, 75, 50, 0.18),
    0 14px 30px -14px rgba(182, 75, 50, 0.55);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.divider {
  width: 3.5rem;
  height: 3px;
  margin: 1.4rem auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.caption {
  max-width: 30rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.6;
}

.tag {
  margin: 1.6rem 0 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 520px) {
  .page-shell {
    align-items: start;
    padding-top: 1.5rem;
  }

  h1 {
    font-size: clamp(2.1rem, 14vw, 3.6rem);
  }
}
