/* Parallel Works - plain vanilla, no frills */

:root {
  --bg: #ffffff;
  --text: #000000;
  --max: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

main {
  max-width: var(--max);
  margin: 64px auto;
  padding: 0 20px;
}

header {
  margin-bottom: 32px;
}

.wordmark {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 28px;
  margin: 0 0 12px 0;
}

nav a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-right: 14px;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
}

p { margin: 0 0 14px; }

ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

li { margin: 6px 0; }

footer {
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #666;
}

footer .note {
  margin-top: 18px;
  font-size: 10.5px;
  line-height: 1.55;
  color: #9b9b9b;
}

label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

input, textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: var(--bg);
}

textarea { min-height: 140px; resize: vertical; }

button {
  margin-top: 14px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font: inherit;
  padding: 10px 14px;
  cursor: pointer;
}

button:focus, input:focus, textarea:focus, a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.note {
  font-size: 14px;
  margin-top: 10px;
}

/* Centered confirmation / utility pages (e.g. Thank You) */
.page-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 128px); /* accounts for main margin */
}

.page-centered h1 {
  margin-top: 0;
}

