@font-face {
  font-family: 'Blacker Sans Pro';
  src: url('../fonts/blacker_sans/Blacker-Sans-Extrabold-trial.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Blacker Sans Pro', sans-serif;
  background: #ffffff;
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.logo {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-link {
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #111;
  font-size: 12px;
}

.footer-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}
