:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --silver: #d8d8d8;
  --silver-bright: #f2f2f2;
  --silver-dim: #9a9a9a;
  --red: #8c1c1c;
  --red-bright: #c62828;
  --border: #2a2a2a;
}

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

html, body {
  height: 100%;
}

body {
  background:
    radial-gradient(ellipse at top, rgba(140,28,28,0.18), transparent 60%),
    linear-gradient(180deg, var(--black-soft), var(--black));
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.coming-soon {
  text-align: center;
  max-width: 640px;
}

.cs-logo {
  height: 220px;
  margin-bottom: 24px;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red-bright);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--silver-bright);
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cs-sub {
  color: var(--silver-dim);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cs-contact {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.cs-contact a {
  color: var(--silver-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-contact a:hover {
  color: var(--red-bright);
}

.cs-contact .divider {
  color: var(--border);
  margin: 0 14px;
}

.cs-address {
  color: var(--silver-dim);
  font-size: 0.9rem;
}

@media (max-width: 500px) {
  .cs-logo { height: 160px; }
  h1 { font-size: 1.9rem; }
  .cs-contact { display: flex; flex-direction: column; gap: 10px; }
  .cs-contact .divider { display: none; }
}
