/* Studio Seicho — coming soon */

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

html, body { height: 100%; }

body {
  background: #FBFAF8;
  color: #2A2929;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 10vmin, 6rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: clamp(180px, 42vw, 300px);
  height: auto;
  display: block;
  opacity: 0;
  animation: reveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.tagline {
  margin-top: clamp(2.25rem, 6vmin, 3.5rem);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-indent: 0.42em; /* compenseert letter-spacing voor perfecte centrering */
  text-transform: uppercase;
  color: rgba(42, 41, 41, 0.55);
  opacity: 0;
  animation: reveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.tagline a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 41, 41, 0.25);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.tagline a:hover,
.tagline a:focus-visible {
  color: #2A2929;
  border-color: #2A2929;
}

.contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: clamp(1.5rem, 5vmin, 3rem);
  text-align: center;
  opacity: 0;
  animation: reveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.contact a {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(42, 41, 41, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #2A2929;
}

.cookie {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 4vmin, 2rem);
  transform: translateX(-50%);
  z-index: 10;
  width: min(92vw, 420px);
  background: #FFFFFF;
  border: 1px solid rgba(42, 41, 41, 0.08);
  box-shadow: 0 8px 32px rgba(42, 41, 41, 0.08);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.cookie p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(42, 41, 41, 0.7);
}

.cookie-actions {
  margin-top: 0.875rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.cookie button {
  font: inherit;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.125rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease, color 0.3s ease;
}

#cookie-accept {
  background: #2A2929;
  color: #FBFAF8;
  border: 1px solid #2A2929;
}

#cookie-accept:hover { opacity: 0.85; }

#cookie-deny {
  background: transparent;
  color: rgba(42, 41, 41, 0.55);
  border: 1px solid rgba(42, 41, 41, 0.2);
}

#cookie-deny:hover { color: #2A2929; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .tagline, .contact { animation: none; opacity: 1; }
}
