/* Chisos Consulting — see STYLE_GUIDE.md */

:root {
  --color-bg:       #FFE5DB; /* Blush Sand */
  --color-text:     #4C4C4C; /* Slate Gray */
  --color-accent:   #9A4439; /* Canyon Red */
  --color-accent-2: #005B60; /* Deep Teal  */

  --font: 'Rethink Sans', system-ui, -apple-system, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.logo {
  width: clamp(120px, 30vw, 220px);
  height: auto;
  margin-bottom: 32px;
}

.brand-name {
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.divider {
  width: 64px;
  height: 3px;
  background-color: var(--color-accent);
  border: none;
  border-radius: 2px;
  margin: 24px auto;
}

.status {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}

.footer {
  margin-top: 48px;
  font-size: 0.875rem;
  color: var(--color-text);
  opacity: 0.7;
}
