:root {
  --vv-green: #0b3b32;
  --vv-secondary: #D4AB67;
  --vv-grey: #6f7a78;
  --vv-font: "Georgia", "Times New Roman", serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #f7f8f8; color: var(--vv-green);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.wrapper { padding: 40px 24px; text-align: center; max-width: 520px; }
.logo { margin-bottom: 32px; }
.logo img { max-width: 300px; width: 100%; height: auto; }
h1 {
  font-family: var(--vv-font); font-weight: 400; font-size: 2rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
  color: var(--vv-secondary);
}
.subtitle {
  font-family: var(--vv-font); font-size: 0.95rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 28px;
}
p { font-size: 0.98rem; line-height: 1.6; color: var(--vv-grey); margin-bottom: 18px; }
a {
  color: var(--vv-green); text-decoration: none;
  border-bottom: 1px solid var(--vv-secondary); padding-bottom: 2px;
}
a:hover { border-bottom-color: #b68f54; }
.website { margin-top: 8px; font-size: 0.9rem; color: var(--vv-secondary); }
footer {
  margin-top: 36px; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #9aa3a0;
}
