/* Deluxe Digital — holding page.
   No images, no external assets. */

:root {
  --ink:   #14140f;
  --muted: #8a8a82;
  --line:  #e2e0da;
  --paper: #ffffff;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 30rem;
  text-align: center;
}

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.wordmark em {
  font-style: normal;
  color: var(--muted);
}

/* aperture mark, drawn in CSS */
.mark {
  width: 0.72em;
  height: 0.72em;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.mark::after {
  content: "";
  position: absolute;
  inset: 0.18em;
  background: var(--ink);
  border-radius: 50%;
}

.tagline {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

hr {
  width: 2.5rem;
  margin: 2.5rem auto;
  border: 0;
  border-top: 1px solid var(--line);
}

.notice {
  margin: 0;
  font-size: 0.95rem;
  color: #4a4a44;
}

@media (max-width: 30rem) {
  .tagline { font-size: 0.72rem; letter-spacing: 0.14em; }
  hr { margin: 2rem auto; }
}
