@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/montserrat-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat Alternates';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/montserrat-alternates-500.woff2') format('woff2');
}

:root {
  --bg: #0f0e0c;
  --fg: #f4efe6;
  --muted: #a89f8f;
  --accent: #c9a96e;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Montserrat", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 1.5rem;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand h1 {
  font-family: "Montserrat Alternates", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

.logo {
  display: block;
  width: clamp(8rem, 18vw, 14rem);
  height: auto;
}

.kicker {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
}

.tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--accent);
}

.contact a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  .message,
  .contact {
    animation: fade-in 600ms ease-out both;
  }
  .message  { animation-delay: 150ms; }
  .contact  { animation-delay: 300ms; }
}
