:root {
  --bg: #f4f1ea;
  --text: #171717;
  --muted: #666666;
  --border: #d7d1c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

a {
  color: inherit;
}

h1,
p {
  margin: 0;
}

.holding-page {
  display: grid;
  place-items: center;
  padding: 24px;
}

.holding-shell {
  width: min(560px, 100%);
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.holding-eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.holding-shell h1 {
  margin-top: 14px;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 0.98;
}

.holding-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.holding-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 22px;
}

.holding-links a {
  text-decoration: none;
}

.holding-links a:hover {
  text-decoration: underline;
}
