@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:host {
  display: block;
  min-height: 100vh;
}

.cs-page {
  --cs-ink: #1a2026;
  --cs-ink-soft: #46505a;
  --cs-mist: #f7f3ee;
  --cs-sand: #efe7dc;
  --cs-olive: #1f5d50;
  --cs-gold: #caa15a;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #ffffff, #f6f1ea 45%, #e7ddd1 100%);
  color: var(--cs-ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
}

.cs-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 32, 38, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.cs-shell {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 3.5rem 3.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 232, 0.65));
  border-radius: 24px;
  border: 1px solid rgba(26, 32, 38, 0.08);
  box-shadow: 0 30px 80px rgba(31, 36, 44, 0.12);
  backdrop-filter: blur(6px);
}

.cs-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}

.cs-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, #1f5d50 0%, #14433a 100%);
  color: #f8f3ea;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.cs-wordmark {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.cs-content {
  animation: cs-rise 0.8s ease-out both;
}


.cs-content h1 {
  font-family: "Playfair Display", "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
}

.cs-subtitle {
  font-size: 1.05rem;
  color: var(--cs-ink-soft);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.cs-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cs-gold), transparent);
  margin: 1.6rem 0;
}

.cs-note {
  font-size: 0.95rem;
  color: var(--cs-ink-soft);
}

@keyframes cs-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .cs-shell {
    padding: 2.6rem 2.1rem;
  }

  .cs-logo {
    margin-bottom: 2rem;
  }
}
