/* =========================
   Kyndred Studios — Styles
   ========================= */

:root {
  --blue-primary: #5a8ba0;
  --sand: #e6d8c4;
  --orange: #d85a2a;
  --rose: #c45a7a;
  --teal: #2f6f6a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--blue-primary);
  color: var(--sand);
  font-family: "tisa-pro", serif;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
}

.tagline {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.coming-soon {
  font-family: "trade-gothic-next", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
