@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-var.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/work-sans-var.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --bg: #f6f6f2;
  --ink: #16202c;
  --ink-2: #525b64;
  --chilli: #e0402c;
  --lotus: #d88aa8;
  --line: #e2e1d9;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 6vw;
}

.wrap {
  max-width: 520px;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 18px;
}

.kicker {
  margin: 0 0 28px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-2);
}

.tag {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--ink-2);
  margin: 0 0 28px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 28px;
}
.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 64px;
  background: var(--line);
}
.motif-sm {
  width: 20px;
  height: 20px;
  color: var(--lotus);
  margin: 0;
}

.note {
  font-size: 0.98rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
