*,
*::before,
*::after {
  box-sizing: border-box;
}

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

:root {
  --dark: #1e140a;
  --light: #faf0e6;
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.container {
  min-height: 100vh;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 3.75rem;
  opacity: 0.9;
}

.statement p {
  font-size: clamp(2.5rem, 6.25vw, 4.375rem);
  line-height: 1.15;
  margin: 0;
}

.statement p + p {
  margin-top: 0.625rem;
}

.status {
  margin-top: 3.125rem;
  font-size: 1.05rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.cta {
  margin-top: 3.75rem;
  font-size: 1.05rem;
  color: var(--light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.cta:hover {
  opacity: 1;
}
