/* subhasta.dev placeholder. Cormorant Garamond + EB Garamond, paper palette
   matching the buyer-brief house style. */

:root {
  --paper: #faf8f3;
  --ink: #1a1a1a;
  --muted: #777;
  --rule: #d8d4c8;
}

* { box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wordmark {
  margin: 0 0 1.25rem 0;
  line-height: 1;
}
.wordmark img {
  display: block;
  width: clamp(260px, 70vw, 520px);
  height: auto;
}

.tagline {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.tagline em {
  font-style: italic;
  color: var(--ink);
}

footer {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 1.5rem 0 1rem 0;
  border-top: 1px solid var(--rule);
  max-width: 36rem;
}
