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

:root {
  --color-white: #ffffff;
  --color-medium-gray: #888888;
  --color-dark-gray: #333333;
  --color-near-black: #1a1a1a;
  --color-accent: #b87333;
  --color-accent-dark: #8f5a26;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark-gray);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.coming-soon {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.mission {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-medium-gray);
  max-width: 540px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 2.5rem 0;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}

.footer {
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer p {
  font-size: 0.8rem;
  color: var(--color-medium-gray);
}

@media (max-width: 600px) {
  .logo {
    max-width: 560px;
  }

  .coming-soon {
    font-size: 1.2rem;
  }

  .mission {
    font-size: 1rem;
  }
}
