/* DONDONDESIGN holding page. Dark only, to sit with the logo's own
   charcoal square. No web fonts: the CSP allows nothing off-site. */

:root {
  --bg: #1b1a1d;
  --panel: #252428;
  --text: #f4f3f1;
  --muted: #a9a7ad;
  --line: #3a393e;
  --focus: #ffffff;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.holding {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  text-align: center;
}

.logo {
  margin: 0 0 40px;
  line-height: 0;
}

.logo img {
  display: block;
  width: min(200px, 50vw);
  height: auto;
}

.status {
  margin: 0;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.note {
  margin: 8px 0 0;
  color: var(--muted);
}

.note a {
  color: var(--text);
}

.social ul {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
}

.social a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s;
}

.social a:hover {
  border-color: var(--text);
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .social a {
    transition: none;
  }
}
