:root {
  --paper: #f5efe2;
  --paper-deep: #ece4d2;
  --ink: #2b3f3d;
  --ink-soft: #4d6663;
  --sage: #6b9b95;
  --sage-deep: #4d7c77;
  --rule: rgba(43, 63, 61, 0.18);

  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: radial-gradient(ellipse at 50% 20%, var(--paper-deep), var(--paper));
  color: var(--ink);
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.compass {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  transform: translate(-50%, -50%);
  color: var(--ink);
  opacity: 0.05;
  pointer-events: none;
}

.wip {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
}
.brand-symbol svg { width: 100%; height: 100%; }

.brand-word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0;
  letter-spacing: 0.01em;
}
.brand-word em {
  font-style: italic;
  color: var(--sage-deep);
}

.overline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.wip-tag {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0.75rem 0 0.5rem;
}
.wip-tag strong { color: var(--ink); font-weight: 500; }

.cta {
  margin-top: 0.75rem;
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--paper);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cta:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--paper);
  transform: translateY(-1px);
}
