/* Panot Tattoo Studio — coming soon splash */

.cs-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 20%, rgba(178, 58, 46, 0.16), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23f3ecdd' stroke-opacity='0.05' stroke-width='1.5'%3E%3Ccircle cx='60' cy='38' r='16'/%3E%3Ccircle cx='60' cy='82' r='16'/%3E%3Ccircle cx='38' cy='60' r='16'/%3E%3Ccircle cx='82' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 120px 120px;
}

.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
}

.cs-header .brand-word { font-size: 20px; }
.cs-header .brand-sub { font-size: 9px; }

.cs-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px 60px;
}

.cs-emblem {
  width: min(360px, 70vw);
  height: auto;
  border-radius: 26px;
  filter: drop-shadow(0 0 40px rgba(178, 58, 46, 0.35));
  animation: cs-glow 5s ease-in-out infinite;
}

@keyframes cs-glow {
  0%, 100% { filter: drop-shadow(0 0 26px rgba(178, 58, 46, 0.28)); }
  50% { filter: drop-shadow(0 0 48px rgba(178, 58, 46, 0.5)); }
}

.cs-word {
  margin-top: 8px;
  font-size: clamp(56px, 12vw, 120px);
  line-height: 0.9;
  color: var(--cream);
}

.cs-sub {
  margin-top: 10px;
  color: var(--cream-dim);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.cs-note {
  margin-top: 28px;
  color: var(--cream-dim);
  font-size: 15px;
  max-width: 420px;
}
.cs-note strong { color: var(--cream); font-weight: 600; }

.cs-contact {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-footer {
  text-align: center;
  padding: 22px 24px 30px;
  color: var(--cream-dim);
  font-size: 12px;
}

@media (max-width: 480px) {
  .cs-header { padding: 20px; }
}
