* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

:root {
  --logo-width: min(200px, 60vw);
  --band-width: var(--logo-width);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #e8ddc4;
  color: #2b2620;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 480px;
}

.logo {
  width: var(--logo-width);
  height: auto;
  margin-bottom: 24px;
}

.band {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--band-width);
  background: #ffffff;
  z-index: 0;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1f1b16;
}

h1 span {
  color: #4a5d3a;
}

.tagline {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #5c5448;
}

.coming-soon {
  margin-top: 32px;
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8ddc4;
  background: #2b2620;
  border-radius: 999px;
}
