/* Eynon Software — brand tokens carried over from the previous site. */
:root {
  --orange: #fe4902;
  --orange-dark: #d63c02;
  --slate: #445562;
  --ink: #2f3338;
  --muted: #6b7280;
  --line: #e5e7eb;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: underline; }

.page {
  max-width: 560px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: flex;
  flex-direction: column;
}

.logo { width: 150px; height: 63px; margin-bottom: 36px; }

.brief {
  font-size: 1.2rem;
  color: var(--slate);
  margin: 0 0 40px;
}

.contact {
  margin: 0 0 40px;
  border-top: 3px solid var(--orange);
  padding-top: 24px;
}
.contact div { margin-bottom: 20px; }
.contact dt {
  font-size: .76rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.contact dd { margin: 0; font-size: 1.08rem; font-weight: 500; color: var(--slate); }

footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
}

h1 { color: var(--slate); font-size: 1.6rem; margin: 0 0 12px; }

@media (max-width: 640px) {
  .page { padding-top: 48px; }
}
