:root {
  --primary: #EAB84E;
  --primaryLight: #F2D495;
  --primaryLightest: #FFFCEE;
  --muted: #e5e7eb;
  --ink: #171208;
  --ink-60: rgba(23,18,8,0.6);
}

body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--ink);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.app-header,
.app-footer {
  background: white;
  border-bottom: 1px solid var(--muted);
}

.app-footer {
  border-top: 1px solid var(--muted);
  margin-top: 4rem;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text span {
  font-size: 12px;
  color: var(--ink-60);
}

.nav-link {
  font-size: 14px;
  margin-left: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}
