.nav-back {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 8px 14px;
  margin-left: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.nav-back:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.page-header {
  background: var(--black);
  padding-top: 64px;
}

.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 60px;
}

.page-header-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-header-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.93;
  color: white;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-header-subtitle {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

.form-section {
  background: var(--off-white);
  padding: 64px 0 96px;
}

.form-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 48px;
}

@media (max-width: 768px) {
  .page-header-inner { padding: 56px 20px 48px; }
  .form-section { padding: 40px 0 64px; }
  .form-container { padding: 28px 20px; }
}
