:root {
  --charcoal: #30251f;
  --charcoal-soft: #5d493d;
  --cream: #f7f1e3;
  --cream-light: #fffaf1;
  --cream-deep: #e2d0b8;
  --taupe: #8e7760;
  --gold: #b0852e;
  --line: rgba(92, 71, 58, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 50% 22%, rgba(176, 133, 46, 0.13), transparent 34%),
    linear-gradient(180deg, #fbf6eb 0%, #f2e6d5 58%, #e7d4bc 100%);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    max(28px, env(safe-area-inset-top))
    18px
    max(28px, env(safe-area-inset-bottom));
}

.coming-soon-card {
  width: min(100%, 760px);
  padding: 42px 22px 38px;
  border: 1px solid rgba(142, 119, 96, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 239, 226, 0.94));
  box-shadow:
    0 28px 80px rgba(75, 54, 42, 0.14),
    0 0 44px rgba(176, 133, 46, 0.08);
  text-align: center;
}

.brand-mark {
  display: block;
  width: clamp(96px, 24vw, 142px);
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}

.location-line {
  margin: 0 0 13px;
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.86rem, 3.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 13vw, 5.9rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.coming-soon-copy {
  max-width: 530px;
  margin: 24px auto 0;
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  line-height: 1.65;
  text-wrap: balance;
}

.quiet-divider {
  width: 72px;
  height: 1px;
  margin: 30px auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.return-note {
  margin: 0;
  color: rgba(48, 37, 31, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
}

@media (min-width: 720px) {
  .coming-soon-card {
    padding: 58px 54px 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
