/* ===========================
   SPOLLEN CONCRETE — Coming Soon
   =========================== */

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

:root {
  --red:    #C8102E;
  --dark:   #1C1C1C;
  --white:  #FFFFFF;
  --mid:    #888888;
  --font:   'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  min-height: 100%;
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  -webkit-text-size-adjust: 100%;
}

/* Particle canvas — sits behind everything */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Main wrapper */
.cs-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cs-wrap.loaded {
  opacity: 1;
  transform: none;
}

/* Logo */
.cs-logo {
  margin-bottom: 2.5rem;
}
.cs-logo span { color: var(--red); }

/* Label */
.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

/* Headline */
.cs-headline {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.cs-headline em {
  font-style: normal;
  color: var(--red);
}

/* Subtext */
.cs-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(28,28,28,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* Contact pills */
.cs-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid rgba(28,28,28,0.2);
  color: rgba(28,28,28,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.cs-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,16,46,0.06);
}
.cs-pill svg { flex-shrink: 0; }

/* Stats row */
.cs-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(28,28,28,0.1);
  width: 100%;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.cs-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.cs-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(28,28,28,0.45);
}

/* Footer */
.cs-footer {
  font-size: 0.75rem;
  color: rgba(28,28,28,0.35);
  margin-top: 1rem;
  white-space: nowrap;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 600px) {
  .cs-wrap { padding: 3rem 1.25rem 3rem; }
  .cs-logo { margin-bottom: 1.75rem; }
  .cs-logo img { height: 48px; }
  .cs-headline { font-size: clamp(2rem, 11vw, 3rem); margin-bottom: 1.25rem; }
  .cs-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .cs-contact { flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
  .cs-stats { gap: 1.5rem; padding-top: 1.75rem; margin-bottom: 1.5rem; }
  .cs-stat-num { font-size: 1.6rem; }
  .cs-footer { white-space: normal; text-align: center; width: 90%; }
}

@media (max-width: 380px) {
  .cs-headline { font-size: 1.9rem; }
  .cs-stats { gap: 1.25rem; }
}

/* Logo image */
.cs-logo img { height: 60px; width: auto; display: block; margin: 0 auto; }
