/* The Velvet Static — links page */
:root {
  --ink: #1c1330;
  --paper: #f4f1ea;
  --accent: #d94f2b;
  --accent-dark: #b03a1c;
  --muted: #5c5470;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

.page {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero { text-align: center; margin-bottom: 2rem; }

.logo {
  width: 5.5rem; height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

h1 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  line-height: 1.2;
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.link-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-list a {
  display: block;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  background: var(--paper);
  transition: background 0.15s, color 0.15s;
}

.link-list a:hover {
  background: var(--ink);
  color: var(--paper);
}

.link-list a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.contact h2 { font-size: 1.4rem; margin: 0 0 0.25rem; }
.contact-intro { margin: 0 0 1.25rem; color: var(--muted); }

.field { margin-bottom: 1rem; }

label {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

input, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0.4rem;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.error {
  margin: 0.3rem 0 0;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.submit {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-family: "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
}

.submit:hover { background: var(--accent-dark); }

.submit:disabled { opacity: 0.6; cursor: wait; }

.status { margin: 1rem 0 0; font-weight: 700; }
.status.ok { color: #1e6b3a; }
.status.err { color: var(--accent-dark); }

.footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
