:root {
  --ink: #0a0a0a;
  --paper: #fafaf8;
  --muted: #6b6b6b;
  --rule: #1a1a1a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 78vw);
  height: 1px;
  background: var(--rule);
  opacity: 0.85;
}
body::before { top: 32px; }
body::after  { bottom: 32px; }

.splash {
  width: 100%;
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tagline {
  font-family: "Italianno", "Dancing Script", cursive;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.logo {
  display: block;
  width: clamp(220px, 38vw, 320px);
  height: auto;
  margin: 0 0 28px;
  user-select: none;
  -webkit-user-drag: none;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 160ms ease;
}

.contact a:hover { opacity: 0.55; }

.services {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.7rem, 1.3vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin: 0 0 56px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9em;
  font-weight: 500;
}

.services .dot {
  color: var(--muted);
  font-size: 0.6em;
  line-height: 1;
}

.licence {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 480px) {
  body { padding: 56px 20px; }
  body::before { top: 24px; }
  body::after  { bottom: 24px; }
  .services { margin-bottom: 40px; gap: 0.7em; }
  .logo { margin-bottom: 24px; }
}

@media (prefers-reduced-motion: no-preference) {
  .splash > * {
    opacity: 0;
    transform: translateY(8px);
    animation: rise 700ms ease forwards;
  }
  .tagline { animation-delay: 60ms; }
  .logo    { animation-delay: 180ms; }
  .contact { animation-delay: 320ms; }
  .services{ animation-delay: 460ms; }
  .licence { animation-delay: 600ms; }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
