/* Dark Editorial Design System */
:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --text: #F0EDE8;
  --text-muted: #8A8580;
  --rose: #C8A4A0;
  --rose-light: #E8D5D2;
  --cream: #F0EDE8;
  --border: rgba(240, 237, 232, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  position: relative;
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1em;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--rose);
  text-decoration: none;
}

a:hover {
  color: var(--rose-light);
  text-decoration: none;
}

a:visited {
  color: var(--rose);
}

label {
  display: block;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.4em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text);
}

input:disabled {
  color: var(--text-muted);
}
