.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
  font: 18px/1 'Silkscreen', monospace;
  transition: color .2s, background .2s, transform .2s;
}

.theme-toggle:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

[data-theme='dark'] {
  --orange: #ff8b3d;
  --orange-dark: #ffab70;
  --cream: #30231f;
  --skin: #d89b7d;
  --brown: #a8664d;
  --ink: #fff7ef;
  --muted: #cdbdb3;
  --line: #5a443b;
  --white: #171311;
}

[data-theme='dark'] .topbar,
[data-theme='dark'] .footer {
  border-color: var(--line);
}

[data-theme='dark'] .hero-art:before,
[data-theme='dark'] .invite-banner:before {
  opacity: .18;
}

[data-theme='dark'] .card-orange p {
  color: #3b2118;
}

[data-theme='dark'] .card-cream {
  color: var(--ink);
}

[data-theme='dark'] .button-ghost {
  background: #241b18;
}

[data-theme='dark'] .language-switcher,
[data-theme='dark'] .nav-links,
[data-theme='dark'] .hero-note,
[data-theme='dark'] .footer {
  color: #cdbdb3;
}

@media (max-width: 800px) {
  .theme-toggle {
    margin-left: auto;
  }
}
