/* ============================================
   REKLAIM — Base Styles
   Shared across all pages
   ============================================ */

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --accent: #F5F5F5;
  --border: #2A2A2A;
  --error: #ef4444;
}

/* Base Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  z-index: 100;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.header--bordered {
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--text-primary);
}

/* Navigation */
.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text-primary);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer--bordered {
  border-top: 1px solid var(--border);
}

/* Back to Home Link */
.back-home {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.back-home:hover {
  color: var(--text-primary);
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  .header, .footer, .nav, .skip-link, .form-container, .social {
    display: none;
  }
  a { color: black; }
}

/* Mobile */
@media (max-width: 480px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}
