/* Base */
:root { --floofsie-blue: #3881E1; --wordmark-nudge-y: 3px; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--floofsie-blue);
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
/* Optional stacked layout: add class "stack" to .brand */
.brand.stack { flex-direction: column; gap: 24px; }
.brand.stack .logo { width: 120px; }
.logo {
  width: 72px;
  height: auto;
}
.wordmark {
  font-weight: 800;
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1;
  transform: translateY(var(--wordmark-nudge-y));
}
.tagline {
  margin: 16px 0 0;
  font-size: clamp(16px, 2.4vw, 22px);
  opacity: 0.95;
}

/* Footer */
.site-footer {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* Mobile: stack logo above wordmark on small screens */
@media (max-width: 899px) {
  .brand { flex-direction: column; gap: 24px; }
  .logo { width: 120px; }
}

/* Larger screens */
@media (min-width: 900px) {
  .hero { text-align: center; align-items: center; padding: 72px; }
  .brand { gap: 24px; }
  .logo { width: 90px; }
  .tagline { margin-top: 20px; }
}
