
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  background: #f5f1e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  color: #2c2117;
}

.wrap {
  width: 100%;
  max-width: 720px;
}

.card {
  background: #fffdf8;
  border-radius: 24px;
  padding: 32px 28px 24px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.7) inset;
  text-align: center;
}

.tagline {
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 4px;
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7d6a54;
  margin-bottom: 8px;
}

.wip {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

.wip-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7560;
  margin-bottom: 8px;
}

.wip-content {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.wip img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.wip h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.wip p {
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.wip a {
  color: #4a3826;
  text-decoration: none;
  border-bottom: 1px solid rgba(74,56,38,0.25);
}

.wip a:hover {
  border-bottom-color: rgba(74,56,38,0.6);
}
